vona-core 5.0.61 → 5.0.63
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.
- package/dist/lib/bean/beanSimple.d.ts +1 -1
- package/dist/lib/bean/resource/error/errorApplication.d.ts +2 -2
- package/dist/lib/bean/resource/error/errorClass.js +8 -4
- package/dist/lib/bean/resource/error/errorGlobal.d.ts +2 -1
- package/dist/lib/bean/resource/error/errorInternal.d.ts +69 -0
- package/dist/lib/bean/resource/error/errorInternal.js +68 -0
- package/dist/lib/bean/resource/error/index.d.ts +1 -0
- package/dist/lib/bean/resource/error/index.js +1 -0
- package/dist/lib/bean/resource/error/type.d.ts +1 -1
- package/dist/lib/bean/type.d.ts +12 -0
- package/dist/lib/core/locales.d.ts +130 -128
- package/dist/lib/locale/en-us.d.ts +65 -64
- package/dist/lib/locale/en-us.js +2 -65
- package/dist/lib/locale/zh-cn.d.ts +65 -64
- package/dist/lib/locale/zh-cn.js +65 -64
- package/dist/lib/module/errors.js +2 -2
- package/dist/types/enum/index.d.ts +0 -1
- package/dist/types/enum/index.js +0 -1
- package/dist/types/interface/module.d.ts +2 -2
- package/package.json +1 -1
- package/dist/lib/bean/resource/error/_errorInternal.d.ts +0 -66
- package/dist/lib/bean/resource/error/_errorInternal.js +0 -66
- package/dist/types/enum/httpStatus.d.ts +0 -68
- package/dist/types/enum/httpStatus.js +0 -69
|
@@ -3,5 +3,5 @@ import type { VonaApplication } from '../core/application.ts';
|
|
|
3
3
|
export declare class BeanSimple {
|
|
4
4
|
protected app: VonaApplication;
|
|
5
5
|
protected get ctx(): VonaContext;
|
|
6
|
-
protected get bean(): import("
|
|
6
|
+
protected get bean(): import("vona").BeanContainer;
|
|
7
7
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { TypeErrorsInternal } from 'vona';
|
|
2
2
|
import type { IErrorObject } from './errorObject.ts';
|
|
3
3
|
type TypeErrorMethodNames = 'parseFail' | 'parseSuccess';
|
|
4
4
|
interface TypeErrorMethodCommon {
|
|
@@ -8,7 +8,7 @@ interface TypeErrorMethodFail {
|
|
|
8
8
|
(code: number | string, ...args: any[]): void;
|
|
9
9
|
}
|
|
10
10
|
interface TypeErrorMethodThrow {
|
|
11
|
-
(code:
|
|
11
|
+
(code: keyof TypeErrorsInternal | number, ...args: any[]): never;
|
|
12
12
|
}
|
|
13
13
|
interface TypeErrorMethodSuccess {
|
|
14
14
|
(data?: any, ...args: any[]): void;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { HttpStatus } from "../../../../types/enum/httpStatus.js";
|
|
2
1
|
import { BeanSimple } from "../../beanSimple.js";
|
|
3
2
|
export class ErrorClass extends BeanSimple {
|
|
4
3
|
ebErrors;
|
|
@@ -42,8 +41,14 @@ export class ErrorClass extends BeanSimple {
|
|
|
42
41
|
// parseCode
|
|
43
42
|
parseCode(module, codeDefault, code, ...args) {
|
|
44
43
|
const ebError = this.ebErrors[module];
|
|
44
|
+
// '403'->403
|
|
45
|
+
if (typeof code === 'string' && /^\d+$/.test(code)) {
|
|
46
|
+
code = Number(code);
|
|
47
|
+
}
|
|
45
48
|
// convert from enum
|
|
49
|
+
let text;
|
|
46
50
|
if (ebError && code && typeof code === 'string') {
|
|
51
|
+
text = code;
|
|
47
52
|
code = ebError[code];
|
|
48
53
|
}
|
|
49
54
|
if (code === undefined || code === null || code === '') {
|
|
@@ -51,11 +56,10 @@ export class ErrorClass extends BeanSimple {
|
|
|
51
56
|
}
|
|
52
57
|
let message;
|
|
53
58
|
if (typeof code === 'number' && code <= 1000) {
|
|
54
|
-
|
|
55
|
-
message = this.app.meta.locale.getText(true, undefined, undefined, httpStatusMessageKey, ...args);
|
|
59
|
+
message = this.app.meta.locale.getText(true, undefined, undefined, String(code), ...args);
|
|
56
60
|
}
|
|
57
61
|
else {
|
|
58
|
-
message = this.app.meta.locale.getText(false, module, undefined,
|
|
62
|
+
message = this.app.meta.locale.getText(false, module, undefined, text || code, ...args);
|
|
59
63
|
}
|
|
60
64
|
code = __combineErrorCode(module, code);
|
|
61
65
|
return { code, message };
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
export declare const errorsInternal: {
|
|
2
|
+
'0': string;
|
|
3
|
+
'1': string;
|
|
4
|
+
'100': string;
|
|
5
|
+
'101': string;
|
|
6
|
+
'102': string;
|
|
7
|
+
'103': string;
|
|
8
|
+
'200': string;
|
|
9
|
+
'201': string;
|
|
10
|
+
'202': string;
|
|
11
|
+
'203': string;
|
|
12
|
+
'204': string;
|
|
13
|
+
'205': string;
|
|
14
|
+
'206': string;
|
|
15
|
+
'207': string;
|
|
16
|
+
'208': string;
|
|
17
|
+
'226': string;
|
|
18
|
+
'300': string;
|
|
19
|
+
'301': string;
|
|
20
|
+
'302': string;
|
|
21
|
+
'303': string;
|
|
22
|
+
'304': string;
|
|
23
|
+
'305': string;
|
|
24
|
+
'307': string;
|
|
25
|
+
'308': string;
|
|
26
|
+
'400': string;
|
|
27
|
+
'401': string;
|
|
28
|
+
'402': string;
|
|
29
|
+
'403': string;
|
|
30
|
+
'404': string;
|
|
31
|
+
'405': string;
|
|
32
|
+
'406': string;
|
|
33
|
+
'407': string;
|
|
34
|
+
'408': string;
|
|
35
|
+
'409': string;
|
|
36
|
+
'410': string;
|
|
37
|
+
'411': string;
|
|
38
|
+
'412': string;
|
|
39
|
+
'413': string;
|
|
40
|
+
'414': string;
|
|
41
|
+
'415': string;
|
|
42
|
+
'416': string;
|
|
43
|
+
'417': string;
|
|
44
|
+
'418': string;
|
|
45
|
+
'421': string;
|
|
46
|
+
'422': string;
|
|
47
|
+
'423': string;
|
|
48
|
+
'424': string;
|
|
49
|
+
'425': string;
|
|
50
|
+
'426': string;
|
|
51
|
+
'428': string;
|
|
52
|
+
'429': string;
|
|
53
|
+
'431': string;
|
|
54
|
+
'451': string;
|
|
55
|
+
'500': string;
|
|
56
|
+
'501': string;
|
|
57
|
+
'502': string;
|
|
58
|
+
'503': string;
|
|
59
|
+
'504': string;
|
|
60
|
+
'505': string;
|
|
61
|
+
'506': string;
|
|
62
|
+
'507': string;
|
|
63
|
+
'508': string;
|
|
64
|
+
'509': string;
|
|
65
|
+
'510': string;
|
|
66
|
+
'511': string;
|
|
67
|
+
};
|
|
68
|
+
export type TypeErrorsInternal = typeof errorsInternal;
|
|
69
|
+
export type TypeErrorsInternalKeys = keyof TypeErrorsInternal;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
export const errorsInternal = {
|
|
3
|
+
'0': 'Success',
|
|
4
|
+
'1': 'Unknown Error',
|
|
5
|
+
'100': 'Continue',
|
|
6
|
+
'101': 'Switching Protocols',
|
|
7
|
+
'102': 'Processing',
|
|
8
|
+
'103': 'Early hints',
|
|
9
|
+
'200': 'OK',
|
|
10
|
+
'201': 'Created',
|
|
11
|
+
'202': 'Accepted',
|
|
12
|
+
'203': 'Non-Authoritative Information',
|
|
13
|
+
'204': 'No Content',
|
|
14
|
+
'205': 'Reset Content',
|
|
15
|
+
'206': 'Partial Content',
|
|
16
|
+
'207': 'Multi-Status',
|
|
17
|
+
'208': 'Already Reported',
|
|
18
|
+
'226': 'IM Used',
|
|
19
|
+
'300': 'Multiple Choices',
|
|
20
|
+
'301': 'Moved Permanently',
|
|
21
|
+
'302': 'Found',
|
|
22
|
+
'303': 'See Other',
|
|
23
|
+
'304': 'Not Modified',
|
|
24
|
+
'305': 'Use Proxy',
|
|
25
|
+
'307': 'Temporary Redirect',
|
|
26
|
+
'308': 'Permanent Redirect',
|
|
27
|
+
'400': 'Bad Request',
|
|
28
|
+
'401': 'Unauthorized',
|
|
29
|
+
'402': 'Payment Required',
|
|
30
|
+
'403': 'Forbidden',
|
|
31
|
+
'404': 'Not Found',
|
|
32
|
+
'405': 'Method Not Allowed',
|
|
33
|
+
'406': 'Not Acceptable',
|
|
34
|
+
'407': 'Proxy Authentication Required',
|
|
35
|
+
'408': 'Request Timeout',
|
|
36
|
+
'409': 'Conflict',
|
|
37
|
+
'410': 'Gone',
|
|
38
|
+
'411': 'Length Required',
|
|
39
|
+
'412': 'Precondition Failed',
|
|
40
|
+
'413': 'Payload Too Large',
|
|
41
|
+
'414': 'URI Too Long',
|
|
42
|
+
'415': 'Unsupported Media Type',
|
|
43
|
+
'416': 'Range Not Satisfiable',
|
|
44
|
+
'417': 'Expectation Failed',
|
|
45
|
+
'418': "I'm a teapot",
|
|
46
|
+
'421': 'Misdirected Request',
|
|
47
|
+
'422': 'Unprocessable Entity',
|
|
48
|
+
'423': 'Locked',
|
|
49
|
+
'424': 'Failed Dependency',
|
|
50
|
+
'425': 'Too Early',
|
|
51
|
+
'426': 'Upgrade Required',
|
|
52
|
+
'428': 'Precondition Required',
|
|
53
|
+
'429': 'Too Many Requests',
|
|
54
|
+
'431': 'Request Header Fields Too Large',
|
|
55
|
+
'451': 'Unavailable For Legal Reasons',
|
|
56
|
+
'500': 'Internal Server Error',
|
|
57
|
+
'501': 'Not Implemented',
|
|
58
|
+
'502': 'Bad Gateway',
|
|
59
|
+
'503': 'Service Unavailable',
|
|
60
|
+
'504': 'Gateway Timeout',
|
|
61
|
+
'505': 'HTTP Version Not Supported',
|
|
62
|
+
'506': 'Variant Also Negotiates',
|
|
63
|
+
'507': 'Insufficient Storage',
|
|
64
|
+
'508': 'Loop Detected',
|
|
65
|
+
'509': 'Bandwidth Limit Exceeded',
|
|
66
|
+
'510': 'Not Extended',
|
|
67
|
+
'511': 'Network Authentication Required',
|
|
68
|
+
};
|
package/dist/lib/bean/type.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/** bean merge: bean.instance */
|
|
2
|
+
import type { TypeRecordValues } from '../../types/utils/type.ts';
|
|
2
3
|
import type { IBeanSceneRecord } from '../decorator/interface/beanOptions.ts';
|
|
4
|
+
import type { TypeErrorsInternal } from './resource/error/errorInternal.ts';
|
|
3
5
|
export interface IBeanRecordGlobal {
|
|
4
6
|
}
|
|
5
7
|
export interface IBeanRecordGeneral {
|
|
@@ -19,3 +21,13 @@ export type TypeBeanScopeConfigKeys = keyof IBeanScopeConfig;
|
|
|
19
21
|
export interface IBeanScopeLocale {
|
|
20
22
|
}
|
|
21
23
|
export type TypeBeanScopeLocaleKeys = keyof IBeanScopeLocale;
|
|
24
|
+
export interface IBeanScopeErrors {
|
|
25
|
+
}
|
|
26
|
+
export type TypeBeanScopeErrorsKeys = keyof IBeanScopeErrors;
|
|
27
|
+
export type TypeScopesErrorsHelper<ModuleName extends keyof IBeanScopeErrors, Errors extends IBeanScopeErrors[ModuleName]> = {
|
|
28
|
+
[K in keyof Errors as `${ModuleName}:${Errors[K]}`]: K;
|
|
29
|
+
};
|
|
30
|
+
export type TypeScopesErrorCodes = TypeRecordValues<{
|
|
31
|
+
[ModuleName in keyof IBeanScopeErrors]: keyof TypeScopesErrorsHelper<ModuleName, IBeanScopeErrors[ModuleName]>;
|
|
32
|
+
}>;
|
|
33
|
+
export type TypeAllErrorCodes = TypeScopesErrorCodes | keyof TypeErrorsInternal;
|
|
@@ -1,137 +1,139 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
'en-us': {
|
|
3
3
|
ValidationFailedDev: string;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
4
|
+
'0': string;
|
|
5
|
+
'1': string;
|
|
6
|
+
'100': string;
|
|
7
|
+
'101': string;
|
|
8
|
+
'102': string;
|
|
9
|
+
'103': string;
|
|
10
|
+
'200': string;
|
|
11
|
+
'201': string;
|
|
12
|
+
'202': string;
|
|
13
|
+
'203': string;
|
|
14
|
+
'204': string;
|
|
15
|
+
'205': string;
|
|
16
|
+
'206': string;
|
|
17
|
+
'207': string;
|
|
18
|
+
'208': string;
|
|
19
|
+
'226': string;
|
|
20
|
+
'300': string;
|
|
21
|
+
'301': string;
|
|
22
|
+
'302': string;
|
|
23
|
+
'303': string;
|
|
24
|
+
'304': string;
|
|
25
|
+
'305': string;
|
|
26
|
+
'307': string;
|
|
27
|
+
'308': string;
|
|
28
|
+
'400': string;
|
|
29
|
+
'401': string;
|
|
30
|
+
'402': string;
|
|
31
|
+
'403': string;
|
|
32
|
+
'404': string;
|
|
33
|
+
'405': string;
|
|
34
|
+
'406': string;
|
|
35
|
+
'407': string;
|
|
36
|
+
'408': string;
|
|
37
|
+
'409': string;
|
|
38
|
+
'410': string;
|
|
39
|
+
'411': string;
|
|
40
|
+
'412': string;
|
|
41
|
+
'413': string;
|
|
42
|
+
'414': string;
|
|
43
|
+
'415': string;
|
|
44
|
+
'416': string;
|
|
45
|
+
'417': string;
|
|
46
|
+
'418': string;
|
|
47
|
+
'421': string;
|
|
48
|
+
'422': string;
|
|
49
|
+
'423': string;
|
|
50
|
+
'424': string;
|
|
51
|
+
'425': string;
|
|
52
|
+
'426': string;
|
|
53
|
+
'428': string;
|
|
54
|
+
'429': string;
|
|
55
|
+
'431': string;
|
|
56
|
+
'451': string;
|
|
57
|
+
'500': string;
|
|
58
|
+
'501': string;
|
|
59
|
+
'502': string;
|
|
60
|
+
'503': string;
|
|
61
|
+
'504': string;
|
|
62
|
+
'505': string;
|
|
63
|
+
'506': string;
|
|
64
|
+
'507': string;
|
|
65
|
+
'508': string;
|
|
66
|
+
'509': string;
|
|
67
|
+
'510': string;
|
|
68
|
+
'511': string;
|
|
68
69
|
};
|
|
69
70
|
'zh-cn': {
|
|
70
71
|
ValidationFailedDev: string;
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
72
|
+
0: string;
|
|
73
|
+
1: string;
|
|
74
|
+
100: string;
|
|
75
|
+
101: string;
|
|
76
|
+
102: string;
|
|
77
|
+
103: string;
|
|
78
|
+
200: string;
|
|
79
|
+
201: string;
|
|
80
|
+
202: string;
|
|
81
|
+
203: string;
|
|
82
|
+
204: string;
|
|
83
|
+
205: string;
|
|
84
|
+
206: string;
|
|
85
|
+
207: string;
|
|
86
|
+
208: string;
|
|
87
|
+
226: string;
|
|
88
|
+
300: string;
|
|
89
|
+
301: string;
|
|
90
|
+
302: string;
|
|
91
|
+
303: string;
|
|
92
|
+
304: string;
|
|
93
|
+
305: string;
|
|
94
|
+
307: string;
|
|
95
|
+
308: string;
|
|
96
|
+
400: string;
|
|
97
|
+
401: string;
|
|
98
|
+
402: string;
|
|
99
|
+
403: string;
|
|
100
|
+
404: string;
|
|
101
|
+
405: string;
|
|
102
|
+
406: string;
|
|
103
|
+
407: string;
|
|
104
|
+
408: string;
|
|
105
|
+
409: string;
|
|
106
|
+
410: string;
|
|
107
|
+
411: string;
|
|
108
|
+
412: string;
|
|
109
|
+
413: string;
|
|
110
|
+
414: string;
|
|
111
|
+
415: string;
|
|
112
|
+
416: string;
|
|
113
|
+
417: string;
|
|
114
|
+
418: string;
|
|
115
|
+
421: string;
|
|
116
|
+
422: string;
|
|
117
|
+
423: string;
|
|
118
|
+
424: string;
|
|
119
|
+
425: string;
|
|
120
|
+
426: string;
|
|
121
|
+
428: string;
|
|
122
|
+
429: string;
|
|
123
|
+
431: string;
|
|
124
|
+
451: string;
|
|
125
|
+
500: string;
|
|
126
|
+
501: string;
|
|
127
|
+
502: string;
|
|
128
|
+
503: string;
|
|
129
|
+
504: string;
|
|
130
|
+
505: string;
|
|
131
|
+
506: string;
|
|
132
|
+
507: string;
|
|
133
|
+
508: string;
|
|
134
|
+
509: string;
|
|
135
|
+
510: string;
|
|
136
|
+
511: string;
|
|
135
137
|
};
|
|
136
138
|
};
|
|
137
139
|
export default _default;
|
|
@@ -1,68 +1,69 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
ValidationFailedDev: string;
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
3
|
+
'0': string;
|
|
4
|
+
'1': string;
|
|
5
|
+
'100': string;
|
|
6
|
+
'101': string;
|
|
7
|
+
'102': string;
|
|
8
|
+
'103': string;
|
|
9
|
+
'200': string;
|
|
10
|
+
'201': string;
|
|
11
|
+
'202': string;
|
|
12
|
+
'203': string;
|
|
13
|
+
'204': string;
|
|
14
|
+
'205': string;
|
|
15
|
+
'206': string;
|
|
16
|
+
'207': string;
|
|
17
|
+
'208': string;
|
|
18
|
+
'226': string;
|
|
19
|
+
'300': string;
|
|
20
|
+
'301': string;
|
|
21
|
+
'302': string;
|
|
22
|
+
'303': string;
|
|
23
|
+
'304': string;
|
|
24
|
+
'305': string;
|
|
25
|
+
'307': string;
|
|
26
|
+
'308': string;
|
|
27
|
+
'400': string;
|
|
28
|
+
'401': string;
|
|
29
|
+
'402': string;
|
|
30
|
+
'403': string;
|
|
31
|
+
'404': string;
|
|
32
|
+
'405': string;
|
|
33
|
+
'406': string;
|
|
34
|
+
'407': string;
|
|
35
|
+
'408': string;
|
|
36
|
+
'409': string;
|
|
37
|
+
'410': string;
|
|
38
|
+
'411': string;
|
|
39
|
+
'412': string;
|
|
40
|
+
'413': string;
|
|
41
|
+
'414': string;
|
|
42
|
+
'415': string;
|
|
43
|
+
'416': string;
|
|
44
|
+
'417': string;
|
|
45
|
+
'418': string;
|
|
46
|
+
'421': string;
|
|
47
|
+
'422': string;
|
|
48
|
+
'423': string;
|
|
49
|
+
'424': string;
|
|
50
|
+
'425': string;
|
|
51
|
+
'426': string;
|
|
52
|
+
'428': string;
|
|
53
|
+
'429': string;
|
|
54
|
+
'431': string;
|
|
55
|
+
'451': string;
|
|
56
|
+
'500': string;
|
|
57
|
+
'501': string;
|
|
58
|
+
'502': string;
|
|
59
|
+
'503': string;
|
|
60
|
+
'504': string;
|
|
61
|
+
'505': string;
|
|
62
|
+
'506': string;
|
|
63
|
+
'507': string;
|
|
64
|
+
'508': string;
|
|
65
|
+
'509': string;
|
|
66
|
+
'510': string;
|
|
67
|
+
'511': string;
|
|
67
68
|
};
|
|
68
69
|
export default _default;
|