1.4.0
[squeep-authentication-module] / lib / enum.js
1 'use strict';
2
3 const { mergeDeep, freezeDeep } = require('./common');
4 const { Enum: DingusEnum } = require('@squeep/api-dingus');
5
6 const Enum = mergeDeep(DingusEnum, {
7 Header: {
8 Authorization: 'Authorization',
9 Cookie: 'Cookie',
10 Location: 'Location',
11 SetCookie: 'Set-Cookie',
12 WWWAuthenticate: 'WWW-Authenticate',
13 },
14 SessionCookie: 'squeepSession',
15 });
16
17 module.exports = freezeDeep(Enum);