@emoyly/problem 4.1.10 → 4.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/{dist/defaults → defaults}/4xx.d.ts +147 -147
  2. package/{dist/defaults → defaults}/4xx.js +151 -151
  3. package/{dist/defaults → defaults}/5xx.d.ts +57 -57
  4. package/{dist/defaults → defaults}/5xx.js +61 -61
  5. package/{dist/defaults → defaults}/aws.d.ts +12 -12
  6. package/{dist/defaults → defaults}/aws.js +16 -16
  7. package/{dist/defaults → defaults}/cloudflare.d.ts +47 -47
  8. package/{dist/defaults → defaults}/cloudflare.js +52 -52
  9. package/{dist/defaults → defaults}/iis.d.ts +17 -17
  10. package/{dist/defaults → defaults}/iis.js +21 -21
  11. package/{dist/defaults → defaults}/index.d.ts +7 -7
  12. package/{dist/defaults → defaults}/index.js +17 -17
  13. package/{dist/defaults → defaults}/nginx.d.ts +32 -32
  14. package/{dist/defaults → defaults}/nginx.js +36 -36
  15. package/{dist/defaults → defaults}/others.d.ts +37 -37
  16. package/{dist/defaults → defaults}/others.js +40 -40
  17. package/{dist/index.d.ts → index.d.ts} +4 -4
  18. package/{dist/index.js → index.js} +34 -34
  19. package/{dist/middleware → middleware}/axios.d.ts +13 -13
  20. package/{dist/middleware → middleware}/axios.js +36 -36
  21. package/{dist/middleware → middleware}/base.d.ts +24 -24
  22. package/{dist/middleware → middleware}/base.js +49 -49
  23. package/{dist/middleware → middleware}/express.d.ts +19 -19
  24. package/{dist/middleware → middleware}/express.js +57 -57
  25. package/package.json +7 -19
  26. package/{dist/parsers → parsers}/axios.d.ts +3 -3
  27. package/{dist/parsers → parsers}/axios.js +39 -39
  28. package/{dist/parsers → parsers}/http.d.ts +3 -3
  29. package/{dist/parsers → parsers}/http.js +15 -15
  30. package/{dist/parsers → parsers}/jsonwebtoken.d.ts +3 -3
  31. package/{dist/parsers → parsers}/jsonwebtoken.js +96 -96
  32. package/{dist/parsers → parsers}/mikroorm.d.ts +3 -3
  33. package/{dist/parsers → parsers}/mikroorm.js +15 -15
  34. package/{dist/parsers → parsers}/tsoa.d.ts +3 -3
  35. package/{dist/parsers → parsers}/tsoa.js +17 -17
  36. package/{dist/problem.d.ts → problem.d.ts} +13 -13
  37. package/{dist/problem.js → problem.js} +50 -50
  38. package/{dist/tsconfig.tsbuildinfo → tsconfig.tsbuildinfo} +793 -793
  39. package/{dist/typings → typings}/events.d.ts +2 -2
  40. package/{dist/typings → typings}/events.js +2 -2
  41. package/{dist/typings → typings}/index.d.ts +5 -5
  42. package/{dist/typings → typings}/index.js +17 -17
  43. package/{dist/typings → typings}/middleware.d.ts +9 -9
  44. package/{dist/typings → typings}/middleware.js +2 -2
  45. package/{dist/typings → typings}/misc.d.ts +3 -3
  46. package/{dist/typings → typings}/misc.js +2 -2
  47. package/{dist/typings → typings}/parser.d.ts +9 -9
  48. package/{dist/typings → typings}/parser.js +2 -2
  49. package/{dist/typings → typings}/problem.d.ts +23 -23
  50. package/{dist/typings → typings}/problem.js +12 -12
  51. package/{dist/util → util}/events.d.ts +16 -16
  52. package/{dist/util → util}/events.js +29 -29
  53. package/{dist/util → util}/getProblems.d.ts +5 -5
  54. package/{dist/util → util}/getProblems.js +45 -45
  55. package/{dist/util → util}/version.d.ts +3 -3
  56. package/{dist/util → util}/version.js +20 -20
  57. package/dist/LICENSE +0 -21
  58. package/dist/README.md +0 -59
  59. package/dist/SECURITY.md +0 -12
  60. package/dist/package.json +0 -45
  61. package/dist/yarn.lock +0 -2076
@@ -1,57 +1,57 @@
1
- export declare const statusCodes: {
2
- 500: {
3
- status: number;
4
- title: string;
5
- type: string;
6
- };
7
- 501: {
8
- status: number;
9
- title: string;
10
- type: string;
11
- };
12
- 502: {
13
- status: number;
14
- title: string;
15
- type: string;
16
- };
17
- 503: {
18
- status: number;
19
- title: string;
20
- type: string;
21
- };
22
- 504: {
23
- status: number;
24
- title: string;
25
- type: string;
26
- };
27
- 505: {
28
- status: number;
29
- title: string;
30
- type: string;
31
- };
32
- 506: {
33
- status: number;
34
- title: string;
35
- type: string;
36
- };
37
- 507: {
38
- status: number;
39
- title: string;
40
- type: string;
41
- };
42
- 508: {
43
- status: number;
44
- title: string;
45
- type: string;
46
- };
47
- 511: {
48
- status: number;
49
- title: string;
50
- type: string;
51
- };
52
- 510: {
53
- status: number;
54
- title: string;
55
- type: string;
56
- };
57
- };
1
+ export declare const statusCodes: {
2
+ 500: {
3
+ status: number;
4
+ title: string;
5
+ type: string;
6
+ };
7
+ 501: {
8
+ status: number;
9
+ title: string;
10
+ type: string;
11
+ };
12
+ 502: {
13
+ status: number;
14
+ title: string;
15
+ type: string;
16
+ };
17
+ 503: {
18
+ status: number;
19
+ title: string;
20
+ type: string;
21
+ };
22
+ 504: {
23
+ status: number;
24
+ title: string;
25
+ type: string;
26
+ };
27
+ 505: {
28
+ status: number;
29
+ title: string;
30
+ type: string;
31
+ };
32
+ 506: {
33
+ status: number;
34
+ title: string;
35
+ type: string;
36
+ };
37
+ 507: {
38
+ status: number;
39
+ title: string;
40
+ type: string;
41
+ };
42
+ 508: {
43
+ status: number;
44
+ title: string;
45
+ type: string;
46
+ };
47
+ 511: {
48
+ status: number;
49
+ title: string;
50
+ type: string;
51
+ };
52
+ 510: {
53
+ status: number;
54
+ title: string;
55
+ type: string;
56
+ };
57
+ };
@@ -1,61 +1,61 @@
1
- "use strict";
2
- // Source: https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.statusCodes = void 0;
5
- exports.statusCodes = {
6
- 500: {
7
- status: 500,
8
- title: 'Internal Server Error',
9
- type: 'errors/defaults/5xx/internalservererror'
10
- },
11
- 501: {
12
- status: 501,
13
- title: 'Not Implemented',
14
- type: 'errors/defaults/5xx/notimplemented'
15
- },
16
- 502: {
17
- status: 502,
18
- title: 'Bad Gateway',
19
- type: 'errors/defaults/5xx/badgateway'
20
- },
21
- 503: {
22
- status: 503,
23
- title: 'Service Unavailable',
24
- type: 'errors/defaults/5xx/serviceunavailable'
25
- },
26
- 504: {
27
- status: 504,
28
- title: 'Gateway Timeout',
29
- type: 'errors/defaults/5xx/gatewaytimeout'
30
- },
31
- 505: {
32
- status: 505,
33
- title: 'HTTP Version Not Supported',
34
- type: 'errors/defaults/5xx/httpversionnotsupported'
35
- },
36
- 506: {
37
- status: 506,
38
- title: 'Variant Also Negotiates (RFC 2295)',
39
- type: 'errors/defaults/5xx/variantalsonegotiates'
40
- },
41
- 507: {
42
- status: 507,
43
- title: 'Insufficient Storage (WebDAV; RFC 4918)',
44
- type: 'errors/defaults/5xx/insufficientstorage'
45
- },
46
- 508: {
47
- status: 508,
48
- title: 'Loop Detected (WebDAV; RFC 5842)',
49
- type: 'errors/defaults/5xx/loopdetected'
50
- },
51
- 511: {
52
- status: 511,
53
- title: 'Network Authentication Required (RFC 6585)',
54
- type: 'errors/defaults/5xx/networkauthenticationrequired'
55
- },
56
- 510: {
57
- status: 510,
58
- title: 'Not Extended (RFC 2774)',
59
- type: 'errors/defaults/5xx/notextended'
60
- },
61
- };
1
+ "use strict";
2
+ // Source: https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.statusCodes = void 0;
5
+ exports.statusCodes = {
6
+ 500: {
7
+ status: 500,
8
+ title: 'Internal Server Error',
9
+ type: 'errors/defaults/5xx/internalservererror'
10
+ },
11
+ 501: {
12
+ status: 501,
13
+ title: 'Not Implemented',
14
+ type: 'errors/defaults/5xx/notimplemented'
15
+ },
16
+ 502: {
17
+ status: 502,
18
+ title: 'Bad Gateway',
19
+ type: 'errors/defaults/5xx/badgateway'
20
+ },
21
+ 503: {
22
+ status: 503,
23
+ title: 'Service Unavailable',
24
+ type: 'errors/defaults/5xx/serviceunavailable'
25
+ },
26
+ 504: {
27
+ status: 504,
28
+ title: 'Gateway Timeout',
29
+ type: 'errors/defaults/5xx/gatewaytimeout'
30
+ },
31
+ 505: {
32
+ status: 505,
33
+ title: 'HTTP Version Not Supported',
34
+ type: 'errors/defaults/5xx/httpversionnotsupported'
35
+ },
36
+ 506: {
37
+ status: 506,
38
+ title: 'Variant Also Negotiates (RFC 2295)',
39
+ type: 'errors/defaults/5xx/variantalsonegotiates'
40
+ },
41
+ 507: {
42
+ status: 507,
43
+ title: 'Insufficient Storage (WebDAV; RFC 4918)',
44
+ type: 'errors/defaults/5xx/insufficientstorage'
45
+ },
46
+ 508: {
47
+ status: 508,
48
+ title: 'Loop Detected (WebDAV; RFC 5842)',
49
+ type: 'errors/defaults/5xx/loopdetected'
50
+ },
51
+ 511: {
52
+ status: 511,
53
+ title: 'Network Authentication Required (RFC 6585)',
54
+ type: 'errors/defaults/5xx/networkauthenticationrequired'
55
+ },
56
+ 510: {
57
+ status: 510,
58
+ title: 'Not Extended (RFC 2774)',
59
+ type: 'errors/defaults/5xx/notextended'
60
+ },
61
+ };
@@ -1,12 +1,12 @@
1
- export declare const statusCodes: {
2
- 460: {
3
- status: number;
4
- title: string;
5
- type: string;
6
- };
7
- 463: {
8
- status: number;
9
- title: string;
10
- type: string;
11
- };
12
- };
1
+ export declare const statusCodes: {
2
+ 460: {
3
+ status: number;
4
+ title: string;
5
+ type: string;
6
+ };
7
+ 463: {
8
+ status: number;
9
+ title: string;
10
+ type: string;
11
+ };
12
+ };
@@ -1,16 +1,16 @@
1
- "use strict";
2
- // Source: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-troubleshooting.html
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.statusCodes = void 0;
5
- exports.statusCodes = {
6
- 460: {
7
- status: 460,
8
- title: 'Client closed connection before idle timeout period elapsed',
9
- type: '/errors/defaults/aws/clientclosedbeforetimeout',
10
- },
11
- 463: {
12
- status: 463,
13
- title: 'X-Forwarded-For contains more than 30 ips',
14
- type: '/errors/defaults/aws/toomanyips'
15
- }
16
- };
1
+ "use strict";
2
+ // Source: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-troubleshooting.html
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.statusCodes = void 0;
5
+ exports.statusCodes = {
6
+ 460: {
7
+ status: 460,
8
+ title: 'Client closed connection before idle timeout period elapsed',
9
+ type: '/errors/defaults/aws/clientclosedbeforetimeout',
10
+ },
11
+ 463: {
12
+ status: 463,
13
+ title: 'X-Forwarded-For contains more than 30 ips',
14
+ type: '/errors/defaults/aws/toomanyips'
15
+ }
16
+ };
@@ -1,47 +1,47 @@
1
- export declare const statusCodes: {
2
- 520: {
3
- status: number;
4
- title: string;
5
- type: string;
6
- };
7
- 521: {
8
- status: number;
9
- title: string;
10
- type: string;
11
- };
12
- 522: {
13
- status: number;
14
- title: string;
15
- type: string;
16
- };
17
- 523: {
18
- status: number;
19
- title: string;
20
- type: string;
21
- };
22
- 524: {
23
- status: number;
24
- title: string;
25
- type: string;
26
- };
27
- 525: {
28
- status: number;
29
- title: string;
30
- type: string;
31
- };
32
- 526: {
33
- status: number;
34
- title: string;
35
- type: string;
36
- };
37
- 527: {
38
- status: number;
39
- title: string;
40
- type: string;
41
- };
42
- 530: {
43
- status: number;
44
- title: string;
45
- type: string;
46
- };
47
- };
1
+ export declare const statusCodes: {
2
+ 520: {
3
+ status: number;
4
+ title: string;
5
+ type: string;
6
+ };
7
+ 521: {
8
+ status: number;
9
+ title: string;
10
+ type: string;
11
+ };
12
+ 522: {
13
+ status: number;
14
+ title: string;
15
+ type: string;
16
+ };
17
+ 523: {
18
+ status: number;
19
+ title: string;
20
+ type: string;
21
+ };
22
+ 524: {
23
+ status: number;
24
+ title: string;
25
+ type: string;
26
+ };
27
+ 525: {
28
+ status: number;
29
+ title: string;
30
+ type: string;
31
+ };
32
+ 526: {
33
+ status: number;
34
+ title: string;
35
+ type: string;
36
+ };
37
+ 527: {
38
+ status: number;
39
+ title: string;
40
+ type: string;
41
+ };
42
+ 530: {
43
+ status: number;
44
+ title: string;
45
+ type: string;
46
+ };
47
+ };
@@ -1,52 +1,52 @@
1
- "use strict";
2
- // Source: https://support.cloudflare.com/hc/en-us/articles/115003011431
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.statusCodes = void 0;
5
- exports.statusCodes = {
6
- 520: {
7
- status: 520,
8
- title: 'Web Server returned an unknown error',
9
- type: '/errors/defaults/cloudflare/unknownerror',
10
- },
11
- 521: {
12
- status: 521,
13
- title: 'Web server is down',
14
- type: '/errors/defaults/cloudflare/webserverdown',
15
- },
16
- 522: {
17
- status: 522,
18
- title: 'Connection timed out',
19
- type: '/errors/defaults/cloudflare/connectiontimeout',
20
- },
21
- 523: {
22
- status: 523,
23
- title: 'Origin is unreachable',
24
- type: '/errors/defaults/cloudflare/originunreachable'
25
- },
26
- 524: {
27
- status: 524,
28
- title: 'A timeout occurred',
29
- type: '/errors/defaults/cloudflare/timeout'
30
- },
31
- 525: {
32
- status: 525,
33
- title: 'SSL handshake failed',
34
- type: '/errors/defaults/cloudflare/sslhandshakefail'
35
- },
36
- 526: {
37
- status: 526,
38
- title: 'Invalid SSL certificate',
39
- type: '/errors/defaults/cloudflare/invalidssl'
40
- },
41
- // A 527 error indicates an interrupted connection between Cloudflare and your origin's Railgun server (rg-listener)
42
- 527: {
43
- status: 527,
44
- title: 'Railgun Listener to origin error',
45
- type: '/errors/defaults/cloudflare/railgunoriginerr'
46
- },
47
- 530: {
48
- status: 530,
49
- title: 'Cloudflare returned 1xxx error',
50
- type: '/errors/defaults/cloudflare/1xxx'
51
- }
52
- };
1
+ "use strict";
2
+ // Source: https://support.cloudflare.com/hc/en-us/articles/115003011431
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.statusCodes = void 0;
5
+ exports.statusCodes = {
6
+ 520: {
7
+ status: 520,
8
+ title: 'Web Server returned an unknown error',
9
+ type: '/errors/defaults/cloudflare/unknownerror',
10
+ },
11
+ 521: {
12
+ status: 521,
13
+ title: 'Web server is down',
14
+ type: '/errors/defaults/cloudflare/webserverdown',
15
+ },
16
+ 522: {
17
+ status: 522,
18
+ title: 'Connection timed out',
19
+ type: '/errors/defaults/cloudflare/connectiontimeout',
20
+ },
21
+ 523: {
22
+ status: 523,
23
+ title: 'Origin is unreachable',
24
+ type: '/errors/defaults/cloudflare/originunreachable'
25
+ },
26
+ 524: {
27
+ status: 524,
28
+ title: 'A timeout occurred',
29
+ type: '/errors/defaults/cloudflare/timeout'
30
+ },
31
+ 525: {
32
+ status: 525,
33
+ title: 'SSL handshake failed',
34
+ type: '/errors/defaults/cloudflare/sslhandshakefail'
35
+ },
36
+ 526: {
37
+ status: 526,
38
+ title: 'Invalid SSL certificate',
39
+ type: '/errors/defaults/cloudflare/invalidssl'
40
+ },
41
+ // A 527 error indicates an interrupted connection between Cloudflare and your origin's Railgun server (rg-listener)
42
+ 527: {
43
+ status: 527,
44
+ title: 'Railgun Listener to origin error',
45
+ type: '/errors/defaults/cloudflare/railgunoriginerr'
46
+ },
47
+ 530: {
48
+ status: 530,
49
+ title: 'Cloudflare returned 1xxx error',
50
+ type: '/errors/defaults/cloudflare/1xxx'
51
+ }
52
+ };
@@ -1,17 +1,17 @@
1
- export declare const statusCodes: {
2
- 440: {
3
- status: number;
4
- title: string;
5
- type: string;
6
- };
7
- 449: {
8
- status: number;
9
- title: string;
10
- type: string;
11
- };
12
- 451: {
13
- status: number;
14
- title: string;
15
- type: string;
16
- };
17
- };
1
+ export declare const statusCodes: {
2
+ 440: {
3
+ status: number;
4
+ title: string;
5
+ type: string;
6
+ };
7
+ 449: {
8
+ status: number;
9
+ title: string;
10
+ type: string;
11
+ };
12
+ 451: {
13
+ status: number;
14
+ title: string;
15
+ type: string;
16
+ };
17
+ };
@@ -1,21 +1,21 @@
1
- "use strict";
2
- // Source: https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.statusCodes = void 0;
5
- exports.statusCodes = {
6
- 440: {
7
- status: 440,
8
- title: 'Login Time-out',
9
- type: '/errors/defaults/iis/logintimeout',
10
- },
11
- 449: {
12
- status: 449,
13
- title: 'Retry with required information',
14
- type: '/errors/defaults/iis/retrywith'
15
- },
16
- 451: {
17
- status: 451,
18
- title: 'Redirect',
19
- type: '/errors/defaults/iis/redirect'
20
- }
21
- };
1
+ "use strict";
2
+ // Source: https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.statusCodes = void 0;
5
+ exports.statusCodes = {
6
+ 440: {
7
+ status: 440,
8
+ title: 'Login Time-out',
9
+ type: '/errors/defaults/iis/logintimeout',
10
+ },
11
+ 449: {
12
+ status: 449,
13
+ title: 'Retry with required information',
14
+ type: '/errors/defaults/iis/retrywith'
15
+ },
16
+ 451: {
17
+ status: 451,
18
+ title: 'Redirect',
19
+ type: '/errors/defaults/iis/redirect'
20
+ }
21
+ };
@@ -1,7 +1,7 @@
1
- export { statusCodes as codes4xx } from '../defaults/4xx';
2
- export { statusCodes as codes5xx } from '../defaults/5xx';
3
- export { statusCodes as codesAws } from '../defaults/aws';
4
- export { statusCodes as codesCloudflare } from '../defaults/cloudflare';
5
- export { statusCodes as codesIis } from '../defaults/iis';
6
- export { statusCodes as codesNginx } from '../defaults/nginx';
7
- export { otherErrors } from '../defaults/others';
1
+ export { statusCodes as codes4xx } from '../defaults/4xx';
2
+ export { statusCodes as codes5xx } from '../defaults/5xx';
3
+ export { statusCodes as codesAws } from '../defaults/aws';
4
+ export { statusCodes as codesCloudflare } from '../defaults/cloudflare';
5
+ export { statusCodes as codesIis } from '../defaults/iis';
6
+ export { statusCodes as codesNginx } from '../defaults/nginx';
7
+ export { otherErrors } from '../defaults/others';
@@ -1,17 +1,17 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.otherErrors = exports.codesNginx = exports.codesIis = exports.codesCloudflare = exports.codesAws = exports.codes5xx = exports.codes4xx = void 0;
4
- var _4xx_1 = require("../defaults/4xx");
5
- Object.defineProperty(exports, "codes4xx", { enumerable: true, get: function () { return _4xx_1.statusCodes; } });
6
- var _5xx_1 = require("../defaults/5xx");
7
- Object.defineProperty(exports, "codes5xx", { enumerable: true, get: function () { return _5xx_1.statusCodes; } });
8
- var aws_1 = require("../defaults/aws");
9
- Object.defineProperty(exports, "codesAws", { enumerable: true, get: function () { return aws_1.statusCodes; } });
10
- var cloudflare_1 = require("../defaults/cloudflare");
11
- Object.defineProperty(exports, "codesCloudflare", { enumerable: true, get: function () { return cloudflare_1.statusCodes; } });
12
- var iis_1 = require("../defaults/iis");
13
- Object.defineProperty(exports, "codesIis", { enumerable: true, get: function () { return iis_1.statusCodes; } });
14
- var nginx_1 = require("../defaults/nginx");
15
- Object.defineProperty(exports, "codesNginx", { enumerable: true, get: function () { return nginx_1.statusCodes; } });
16
- var others_1 = require("../defaults/others");
17
- Object.defineProperty(exports, "otherErrors", { enumerable: true, get: function () { return others_1.otherErrors; } });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.otherErrors = exports.codesNginx = exports.codesIis = exports.codesCloudflare = exports.codesAws = exports.codes5xx = exports.codes4xx = void 0;
4
+ var _4xx_1 = require("../defaults/4xx");
5
+ Object.defineProperty(exports, "codes4xx", { enumerable: true, get: function () { return _4xx_1.statusCodes; } });
6
+ var _5xx_1 = require("../defaults/5xx");
7
+ Object.defineProperty(exports, "codes5xx", { enumerable: true, get: function () { return _5xx_1.statusCodes; } });
8
+ var aws_1 = require("../defaults/aws");
9
+ Object.defineProperty(exports, "codesAws", { enumerable: true, get: function () { return aws_1.statusCodes; } });
10
+ var cloudflare_1 = require("../defaults/cloudflare");
11
+ Object.defineProperty(exports, "codesCloudflare", { enumerable: true, get: function () { return cloudflare_1.statusCodes; } });
12
+ var iis_1 = require("../defaults/iis");
13
+ Object.defineProperty(exports, "codesIis", { enumerable: true, get: function () { return iis_1.statusCodes; } });
14
+ var nginx_1 = require("../defaults/nginx");
15
+ Object.defineProperty(exports, "codesNginx", { enumerable: true, get: function () { return nginx_1.statusCodes; } });
16
+ var others_1 = require("../defaults/others");
17
+ Object.defineProperty(exports, "otherErrors", { enumerable: true, get: function () { return others_1.otherErrors; } });