3 const common
= require('./common');
4 const { Enum
} = require('@squeep/api-dingus');
6 common
.mergeEnum(Enum
, {
11 InvalidAuthentication: {
13 errorMessage: 'Invalid Authentication',
17 errorMessage: 'Not Found',
18 details: 'not a valid link id',
20 InvalidURLParameter: {
22 errorMessage: 'Bad Request',
23 details: 'invalid url parameter',
28 Authorization: 'Authorization',
29 LastSeen: 'Last-Seen',
30 Signature: 'Signature',
31 WWWAuthenticate: 'WWW-Authenticate',
35 module
.exports
= Enum
;