nhb-toolbox 4.31.3 → 4.31.4

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.
@@ -1,508 +1,508 @@
1
1
  /** HTTP status data from {@link https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status MDN} */
2
2
  export declare const HTTP_STATUS_DATA: readonly [{
3
- readonly category: "informational";
4
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/100";
3
+ readonly category: 'informational';
4
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/100';
5
5
  readonly code: 100;
6
- readonly name: "CONTINUE";
7
- readonly readableName: "Continue";
8
- readonly message: "Continue the request";
9
- readonly description: "This interim response indicates that the client should continue the request or ignore the response if the request is already finished.";
6
+ readonly name: 'CONTINUE';
7
+ readonly readableName: 'Continue';
8
+ readonly message: 'Continue the request';
9
+ readonly description: 'This interim response indicates that the client should continue the request or ignore the response if the request is already finished.';
10
10
  }, {
11
- readonly category: "informational";
12
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/101";
11
+ readonly category: 'informational';
12
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/101';
13
13
  readonly code: 101;
14
- readonly name: "SWITCHING_PROTOCOLS";
15
- readonly readableName: "Switching Protocols";
16
- readonly message: "Switching Protocols";
17
- readonly description: "This code is sent in response to an Upgrade request header from the client and indicates the protocol the server is switching to.";
14
+ readonly name: 'SWITCHING_PROTOCOLS';
15
+ readonly readableName: 'Switching Protocols';
16
+ readonly message: 'Switching Protocols';
17
+ readonly description: 'This code is sent in response to an Upgrade request header from the client and indicates the protocol the server is switching to.';
18
18
  }, {
19
- readonly category: "informational";
20
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/102";
19
+ readonly category: 'informational';
20
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/102';
21
21
  readonly code: 102;
22
- readonly name: "PROCESSING";
23
- readonly readableName: "Processing";
24
- readonly message: "Processing";
25
- readonly description: "This code was used in WebDAV contexts to indicate that a request has been received by the server, but no status was available at the time of the response.";
22
+ readonly name: 'PROCESSING';
23
+ readonly readableName: 'Processing';
24
+ readonly message: 'Processing';
25
+ readonly description: 'This code was used in WebDAV contexts to indicate that a request has been received by the server, but no status was available at the time of the response.';
26
26
  }, {
27
- readonly category: "informational";
28
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103";
27
+ readonly category: 'informational';
28
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103';
29
29
  readonly code: 103;
30
- readonly name: "EARLY_HINTS";
31
- readonly readableName: "Early Hints";
32
- readonly message: "Early Hints";
33
- readonly description: "This status code is primarily intended to be used with the Link header, letting the user agent start preloading resources while the server prepares a response or preconnect to an origin from which the page will need resources.";
30
+ readonly name: 'EARLY_HINTS';
31
+ readonly readableName: 'Early Hints';
32
+ readonly message: 'Early Hints';
33
+ readonly description: 'This status code is primarily intended to be used with the Link header, letting the user agent start preloading resources while the server prepares a response or preconnect to an origin from which the page will need resources.';
34
34
  }, {
35
- readonly category: "success";
36
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/200";
35
+ readonly category: 'success';
36
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/200';
37
37
  readonly code: 200;
38
- readonly name: "OK";
39
- readonly readableName: "Ok";
40
- readonly message: "The request succeeded";
41
- readonly description: "The request succeeded. The result and meaning of \"success\" depends on the HTTP method: GET: The resource has been fetched and transmitted in the message body. HEAD: Representation headers are included in the response without any message body. PUT or POST: The resource describing the result of the action is transmitted in the message body. TRACE: The message body contains the request as received by the server.";
38
+ readonly name: 'OK';
39
+ readonly readableName: 'Ok';
40
+ readonly message: 'The request succeeded';
41
+ readonly description: 'The request succeeded. The result and meaning of "success" depends on the HTTP method: GET: The resource has been fetched and transmitted in the message body. HEAD: Representation headers are included in the response without any message body. PUT or POST: The resource describing the result of the action is transmitted in the message body. TRACE: The message body contains the request as received by the server.';
42
42
  }, {
43
- readonly category: "success";
44
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/201";
43
+ readonly category: 'success';
44
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/201';
45
45
  readonly code: 201;
46
- readonly name: "CREATED";
47
- readonly readableName: "Created";
48
- readonly message: "The request succeeded, and a new resource was created";
49
- readonly description: "The request succeeded, and a new resource was created as a result. This is typically the response sent after POST requests, or some PUT requests.";
46
+ readonly name: 'CREATED';
47
+ readonly readableName: 'Created';
48
+ readonly message: 'The request succeeded, and a new resource was created';
49
+ readonly description: 'The request succeeded, and a new resource was created as a result. This is typically the response sent after POST requests, or some PUT requests.';
50
50
  }, {
51
- readonly category: "success";
52
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/202";
51
+ readonly category: 'success';
52
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/202';
53
53
  readonly code: 202;
54
- readonly name: "ACCEPTED";
55
- readonly readableName: "Accepted";
56
- readonly message: "The request has been received but not yet acted upon";
57
- readonly description: "The request has been received but not yet acted upon. It is noncommittal, since there is no way in HTTP to later send an asynchronous response indicating the outcome of the request. It is intended for cases where another process or server handles the request, or for batch processing.";
54
+ readonly name: 'ACCEPTED';
55
+ readonly readableName: 'Accepted';
56
+ readonly message: 'The request has been received but not yet acted upon';
57
+ readonly description: 'The request has been received but not yet acted upon. It is noncommittal, since there is no way in HTTP to later send an asynchronous response indicating the outcome of the request. It is intended for cases where another process or server handles the request, or for batch processing.';
58
58
  }, {
59
- readonly category: "success";
60
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/203";
59
+ readonly category: 'success';
60
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/203';
61
61
  readonly code: 203;
62
- readonly name: "NON_AUTHORITATIVE_INFORMATION";
63
- readonly readableName: "Non-Authoritative Information";
64
- readonly message: "Non-Authoritative Information";
65
- readonly description: "This response code means the returned metadata is not exactly the same as is available from the origin server, but is collected from a local or a third-party copy. This is mostly used for mirrors or backups of another resource. Except for that specific case, the 200 OK response is preferred to this status.";
62
+ readonly name: 'NON_AUTHORITATIVE_INFORMATION';
63
+ readonly readableName: 'Non-Authoritative Information';
64
+ readonly message: 'Non-Authoritative Information';
65
+ readonly description: 'This response code means the returned metadata is not exactly the same as is available from the origin server, but is collected from a local or a third-party copy. This is mostly used for mirrors or backups of another resource. Except for that specific case, the 200 OK response is preferred to this status.';
66
66
  }, {
67
- readonly category: "success";
68
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/204";
67
+ readonly category: 'success';
68
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/204';
69
69
  readonly code: 204;
70
- readonly name: "NO_CONTENT";
71
- readonly readableName: "No Content";
72
- readonly message: "There is no content to send for this request";
73
- readonly description: "There is no content to send for this request, but the headers are useful. The user agent may update its cached headers for this resource with the new ones.";
70
+ readonly name: 'NO_CONTENT';
71
+ readonly readableName: 'No Content';
72
+ readonly message: 'There is no content to send for this request';
73
+ readonly description: 'There is no content to send for this request, but the headers are useful. The user agent may update its cached headers for this resource with the new ones.';
74
74
  }, {
75
- readonly category: "success";
76
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/205";
75
+ readonly category: 'success';
76
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/205';
77
77
  readonly code: 205;
78
- readonly name: "RESET_CONTENT";
79
- readonly readableName: "Reset Content";
80
- readonly message: "Reset Content";
81
- readonly description: "Tells the user agent to reset the document which sent this request.";
78
+ readonly name: 'RESET_CONTENT';
79
+ readonly readableName: 'Reset Content';
80
+ readonly message: 'Reset Content';
81
+ readonly description: 'Tells the user agent to reset the document which sent this request.';
82
82
  }, {
83
- readonly category: "success";
84
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/206";
83
+ readonly category: 'success';
84
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/206';
85
85
  readonly code: 206;
86
- readonly name: "PARTIAL_CONTENT";
87
- readonly readableName: "Partial Content";
88
- readonly message: "Partial Content";
89
- readonly description: "This response code is used in response to a range request when the client has requested a part or parts of a resource.";
86
+ readonly name: 'PARTIAL_CONTENT';
87
+ readonly readableName: 'Partial Content';
88
+ readonly message: 'Partial Content';
89
+ readonly description: 'This response code is used in response to a range request when the client has requested a part or parts of a resource.';
90
90
  }, {
91
- readonly category: "success";
92
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/207";
91
+ readonly category: 'success';
92
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/207';
93
93
  readonly code: 207;
94
- readonly name: "MULTI_STATUS";
95
- readonly readableName: "Multi-Status";
96
- readonly message: "Multi-Status";
97
- readonly description: "Conveys information about multiple resources, for situations where multiple status codes might be appropriate.";
94
+ readonly name: 'MULTI_STATUS';
95
+ readonly readableName: 'Multi-Status';
96
+ readonly message: 'Multi-Status';
97
+ readonly description: 'Conveys information about multiple resources, for situations where multiple status codes might be appropriate.';
98
98
  }, {
99
- readonly category: "success";
100
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/208";
99
+ readonly category: 'success';
100
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/208';
101
101
  readonly code: 208;
102
- readonly name: "ALREADY_REPORTED";
103
- readonly readableName: "Already Reported";
104
- readonly message: "Already Reported";
105
- readonly description: "Used inside a \"<dav:propstat>\" response element to avoid repeatedly enumerating the internal members of multiple bindings to the same collection.";
102
+ readonly name: 'ALREADY_REPORTED';
103
+ readonly readableName: 'Already Reported';
104
+ readonly message: 'Already Reported';
105
+ readonly description: 'Used inside a "<dav:propstat>" response element to avoid repeatedly enumerating the internal members of multiple bindings to the same collection.';
106
106
  }, {
107
- readonly category: "success";
108
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/226";
107
+ readonly category: 'success';
108
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/226';
109
109
  readonly code: 226;
110
- readonly name: "IM_USED";
111
- readonly readableName: "IM Used";
112
- readonly message: "Instance-Manipulations applied to the current instance";
113
- readonly description: "The server has fulfilled a GET request for the resource, and the response is a representation of the result of one or more instance-manipulations applied to the current instance.";
110
+ readonly name: 'IM_USED';
111
+ readonly readableName: 'IM Used';
112
+ readonly message: 'Instance-Manipulations applied to the current instance';
113
+ readonly description: 'The server has fulfilled a GET request for the resource, and the response is a representation of the result of one or more instance-manipulations applied to the current instance.';
114
114
  }, {
115
- readonly category: "redirection";
116
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/300";
115
+ readonly category: 'redirection';
116
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/300';
117
117
  readonly code: 300;
118
- readonly name: "MULTIPLE_CHOICES";
119
- readonly readableName: "Multiple Choices";
120
- readonly message: "Multiple Choices";
121
- readonly description: "In agent-driven content negotiation, the request has more than one possible response and the user agent or user should choose one of them. There is no standardized way for clients to automatically choose one of the responses, so this is rarely used.";
118
+ readonly name: 'MULTIPLE_CHOICES';
119
+ readonly readableName: 'Multiple Choices';
120
+ readonly message: 'Multiple Choices';
121
+ readonly description: 'In agent-driven content negotiation, the request has more than one possible response and the user agent or user should choose one of them. There is no standardized way for clients to automatically choose one of the responses, so this is rarely used.';
122
122
  }, {
123
- readonly category: "redirection";
124
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/301";
123
+ readonly category: 'redirection';
124
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/301';
125
125
  readonly code: 301;
126
- readonly name: "MOVED_PERMANENTLY";
127
- readonly readableName: "Moved Permanently";
128
- readonly message: "The URL of the requested resource has been changed permanently";
129
- readonly description: "The URL of the requested resource has been changed permanently. The new URL is given in the response.";
126
+ readonly name: 'MOVED_PERMANENTLY';
127
+ readonly readableName: 'Moved Permanently';
128
+ readonly message: 'The URL of the requested resource has been changed permanently';
129
+ readonly description: 'The URL of the requested resource has been changed permanently. The new URL is given in the response.';
130
130
  }, {
131
- readonly category: "redirection";
132
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/302";
131
+ readonly category: 'redirection';
132
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/302';
133
133
  readonly code: 302;
134
- readonly name: "FOUND";
135
- readonly readableName: "Found";
136
- readonly message: "URI of requested resource has been changed temporarily";
137
- readonly description: "This response code means that the URI of requested resource has been changed temporarily. Further changes in the URI might be made in the future, so the same URI should be used by the client in future requests.";
134
+ readonly name: 'FOUND';
135
+ readonly readableName: 'Found';
136
+ readonly message: 'URI of requested resource has been changed temporarily';
137
+ readonly description: 'This response code means that the URI of requested resource has been changed temporarily. Further changes in the URI might be made in the future, so the same URI should be used by the client in future requests.';
138
138
  }, {
139
- readonly category: "redirection";
140
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/303";
139
+ readonly category: 'redirection';
140
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/303';
141
141
  readonly code: 303;
142
- readonly name: "SEE_OTHER";
143
- readonly readableName: "See Other";
144
- readonly message: "See Other";
145
- readonly description: "The server sent this response to direct the client to get the requested resource at another URI with a GET request.";
142
+ readonly name: 'SEE_OTHER';
143
+ readonly readableName: 'See Other';
144
+ readonly message: 'See Other';
145
+ readonly description: 'The server sent this response to direct the client to get the requested resource at another URI with a GET request.';
146
146
  }, {
147
- readonly category: "redirection";
148
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/304";
147
+ readonly category: 'redirection';
148
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/304';
149
149
  readonly code: 304;
150
- readonly name: "NOT_MODIFIED";
151
- readonly readableName: "Not Modified";
152
- readonly message: "Not Modified";
153
- readonly description: "This is used for caching purposes. It tells the client that the response has not been modified, so the client can continue to use the same cached version of the response.";
150
+ readonly name: 'NOT_MODIFIED';
151
+ readonly readableName: 'Not Modified';
152
+ readonly message: 'Not Modified';
153
+ readonly description: 'This is used for caching purposes. It tells the client that the response has not been modified, so the client can continue to use the same cached version of the response.';
154
154
  }, {
155
- readonly category: "redirection";
156
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status#305_use_proxy";
155
+ readonly category: 'redirection';
156
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status#305_use_proxy';
157
157
  readonly code: 305;
158
- readonly name: "USE_PROXY";
159
- readonly readableName: "Use Proxy";
160
- readonly message: "Use Proxy";
161
- readonly description: "Defined in a previous version of the HTTP specification to indicate that a requested response must be accessed by a proxy. It has been deprecated due to security concerns regarding in-band configuration of a proxy.";
158
+ readonly name: 'USE_PROXY';
159
+ readonly readableName: 'Use Proxy';
160
+ readonly message: 'Use Proxy';
161
+ readonly description: 'Defined in a previous version of the HTTP specification to indicate that a requested response must be accessed by a proxy. It has been deprecated due to security concerns regarding in-band configuration of a proxy.';
162
162
  }, {
163
- readonly category: "redirection";
164
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status#306_unused";
163
+ readonly category: 'redirection';
164
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status#306_unused';
165
165
  readonly code: 306;
166
- readonly name: "UNUSED";
167
- readonly readableName: "unused";
168
- readonly message: "unused";
169
- readonly description: "This response code is no longer used; but is reserved. It was used in a previous version of the HTTP/1.1 specification.";
166
+ readonly name: 'UNUSED';
167
+ readonly readableName: 'unused';
168
+ readonly message: 'unused';
169
+ readonly description: 'This response code is no longer used; but is reserved. It was used in a previous version of the HTTP/1.1 specification.';
170
170
  }, {
171
- readonly category: "redirection";
172
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/307";
171
+ readonly category: 'redirection';
172
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/307';
173
173
  readonly code: 307;
174
- readonly name: "TEMPORARY_REDIRECT";
175
- readonly readableName: "Temporary Redirect";
176
- readonly message: "Temporary Redirect";
177
- readonly description: "The server sends this response to direct the client to get the requested resource at another URI with the same method that was used in the prior request. This has the same semantics as the 302 Found response code, with the exception that the user agent must not change the HTTP method used: if a POST was used in the first request, a POST must be used in the redirected request.";
174
+ readonly name: 'TEMPORARY_REDIRECT';
175
+ readonly readableName: 'Temporary Redirect';
176
+ readonly message: 'Temporary Redirect';
177
+ readonly description: 'The server sends this response to direct the client to get the requested resource at another URI with the same method that was used in the prior request. This has the same semantics as the 302 Found response code, with the exception that the user agent must not change the HTTP method used: if a POST was used in the first request, a POST must be used in the redirected request.';
178
178
  }, {
179
- readonly category: "redirection";
180
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/308";
179
+ readonly category: 'redirection';
180
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/308';
181
181
  readonly code: 308;
182
- readonly name: "PERMANENT_REDIRECT";
183
- readonly readableName: "Permanent Redirect";
184
- readonly message: "Permanent Redirect";
185
- readonly description: "This means that the resource is now permanently located at another URI, specified by the Location response header. This has the same semantics as the 301 Moved Permanently HTTP response code, with the exception that the user agent must not change the HTTP method used: if a POST was used in the first request, a POST must be used in the second request.";
182
+ readonly name: 'PERMANENT_REDIRECT';
183
+ readonly readableName: 'Permanent Redirect';
184
+ readonly message: 'Permanent Redirect';
185
+ readonly description: 'This means that the resource is now permanently located at another URI, specified by the Location response header. This has the same semantics as the 301 Moved Permanently HTTP response code, with the exception that the user agent must not change the HTTP method used: if a POST was used in the first request, a POST must be used in the second request.';
186
186
  }, {
187
- readonly category: "clientError";
188
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/400";
187
+ readonly category: 'clientError';
188
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/400';
189
189
  readonly code: 400;
190
- readonly name: "BAD_REQUEST";
191
- readonly readableName: "Bad Request";
192
- readonly message: "Bad Request";
193
- readonly description: "The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).";
190
+ readonly name: 'BAD_REQUEST';
191
+ readonly readableName: 'Bad Request';
192
+ readonly message: 'Bad Request';
193
+ readonly description: 'The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).';
194
194
  }, {
195
- readonly category: "clientError";
196
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/401";
195
+ readonly category: 'clientError';
196
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/401';
197
197
  readonly code: 401;
198
- readonly name: "UNAUTHORIZED";
199
- readonly readableName: "Unauthorized";
200
- readonly message: "Unauthorized request";
201
- readonly description: "Although the HTTP standard specifies \"unauthorized\", semantically this response means \"unauthenticated\". That is, the client must authenticate itself to get the requested response.";
198
+ readonly name: 'UNAUTHORIZED';
199
+ readonly readableName: 'Unauthorized';
200
+ readonly message: 'Unauthorized request';
201
+ readonly description: 'Although the HTTP standard specifies "unauthorized", semantically this response means "unauthenticated". That is, the client must authenticate itself to get the requested response.';
202
202
  }, {
203
- readonly category: "clientError";
204
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/402";
203
+ readonly category: 'clientError';
204
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/402';
205
205
  readonly code: 402;
206
- readonly name: "PAYMENT_REQUIRED";
207
- readonly readableName: "Payment Required";
208
- readonly message: "Payment Required";
209
- readonly description: "The initial purpose of this code was for digital payment systems, however this status code is rarely used and no standard convention exists.";
206
+ readonly name: 'PAYMENT_REQUIRED';
207
+ readonly readableName: 'Payment Required';
208
+ readonly message: 'Payment Required';
209
+ readonly description: 'The initial purpose of this code was for digital payment systems, however this status code is rarely used and no standard convention exists.';
210
210
  }, {
211
- readonly category: "clientError";
212
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/403";
211
+ readonly category: 'clientError';
212
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/403';
213
213
  readonly code: 403;
214
- readonly name: "FORBIDDEN";
215
- readonly readableName: "Forbidden";
216
- readonly message: "Forbidden request";
214
+ readonly name: 'FORBIDDEN';
215
+ readonly readableName: 'Forbidden';
216
+ readonly message: 'Forbidden request';
217
217
  readonly description: "The client does not have access rights to the content; that is, it is unauthorized, so the server is refusing to give the requested resource. Unlike 401 Unauthorized, the client's identity is known to the server.";
218
218
  }, {
219
- readonly category: "clientError";
220
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/404";
219
+ readonly category: 'clientError';
220
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/404';
221
221
  readonly code: 404;
222
- readonly name: "NOT_FOUND";
223
- readonly readableName: "Not Found";
224
- readonly message: "Not Found";
225
- readonly description: "The server cannot find the requested resource. In the browser, this means the URL is not recognized. In an API, this can also mean that the endpoint is valid but the resource itself does not exist. Servers may also send this response instead of 403 Forbidden to hide the existence of a resource from an unauthorized client. This response code is probably the most well known due to its frequent occurrence on the web.";
222
+ readonly name: 'NOT_FOUND';
223
+ readonly readableName: 'Not Found';
224
+ readonly message: 'Not Found';
225
+ readonly description: 'The server cannot find the requested resource. In the browser, this means the URL is not recognized. In an API, this can also mean that the endpoint is valid but the resource itself does not exist. Servers may also send this response instead of 403 Forbidden to hide the existence of a resource from an unauthorized client. This response code is probably the most well known due to its frequent occurrence on the web.';
226
226
  }, {
227
- readonly category: "clientError";
228
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/405";
227
+ readonly category: 'clientError';
228
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/405';
229
229
  readonly code: 405;
230
- readonly name: "METHOD_NOT_ALLOWED";
231
- readonly readableName: "Method Not Allowed";
232
- readonly message: "Method Not Allowed";
233
- readonly description: "The request method is known by the server but is not supported by the target resource. For example, an API may not allow DELETE on a resource, or the TRACE method entirely.";
230
+ readonly name: 'METHOD_NOT_ALLOWED';
231
+ readonly readableName: 'Method Not Allowed';
232
+ readonly message: 'Method Not Allowed';
233
+ readonly description: 'The request method is known by the server but is not supported by the target resource. For example, an API may not allow DELETE on a resource, or the TRACE method entirely.';
234
234
  }, {
235
- readonly category: "clientError";
236
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/406";
235
+ readonly category: 'clientError';
236
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/406';
237
237
  readonly code: 406;
238
- readonly name: "NOT_ACCEPTABLE";
239
- readonly readableName: "Not Acceptable";
240
- readonly message: "Not Acceptable";
238
+ readonly name: 'NOT_ACCEPTABLE';
239
+ readonly readableName: 'Not Acceptable';
240
+ readonly message: 'Not Acceptable';
241
241
  readonly description: "This response is sent when the web server, after performing server-driven content negotiation, doesn't find any content that conforms to the criteria given by the user agent.";
242
242
  }, {
243
- readonly category: "clientError";
244
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/407";
243
+ readonly category: 'clientError';
244
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/407';
245
245
  readonly code: 407;
246
- readonly name: "PROXY_AUTHENTICATION_REQUIRED";
247
- readonly readableName: "Proxy Authentication Required";
248
- readonly message: "Proxy Authentication Required";
249
- readonly description: "This is similar to 401 Unauthorized but authentication is needed to be done by a proxy.";
246
+ readonly name: 'PROXY_AUTHENTICATION_REQUIRED';
247
+ readonly readableName: 'Proxy Authentication Required';
248
+ readonly message: 'Proxy Authentication Required';
249
+ readonly description: 'This is similar to 401 Unauthorized but authentication is needed to be done by a proxy.';
250
250
  }, {
251
- readonly category: "clientError";
252
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/408";
251
+ readonly category: 'clientError';
252
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/408';
253
253
  readonly code: 408;
254
- readonly name: "REQUEST_TIMEOUT";
255
- readonly readableName: "Request Timeout";
256
- readonly message: "Request Timeout";
257
- readonly description: "This response is sent on an idle connection by some servers, even without any previous request by the client. It means that the server would like to shut down this unused connection. This response is used much more since some browsers use HTTP pre-connection mechanisms to speed up browsing. Some servers may shut down a connection without sending this message.";
254
+ readonly name: 'REQUEST_TIMEOUT';
255
+ readonly readableName: 'Request Timeout';
256
+ readonly message: 'Request Timeout';
257
+ readonly description: 'This response is sent on an idle connection by some servers, even without any previous request by the client. It means that the server would like to shut down this unused connection. This response is used much more since some browsers use HTTP pre-connection mechanisms to speed up browsing. Some servers may shut down a connection without sending this message.';
258
258
  }, {
259
- readonly category: "clientError";
260
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/409";
259
+ readonly category: 'clientError';
260
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/409';
261
261
  readonly code: 409;
262
- readonly name: "CONFLICT";
263
- readonly readableName: "Conflict";
264
- readonly message: "Conflict";
265
- readonly description: "This response is sent when a request conflicts with the current state of the server. In WebDAV remote web authoring, 409 responses are errors sent to the client so that a user might be able to resolve a conflict and resubmit the request.";
262
+ readonly name: 'CONFLICT';
263
+ readonly readableName: 'Conflict';
264
+ readonly message: 'Conflict';
265
+ readonly description: 'This response is sent when a request conflicts with the current state of the server. In WebDAV remote web authoring, 409 responses are errors sent to the client so that a user might be able to resolve a conflict and resubmit the request.';
266
266
  }, {
267
- readonly category: "clientError";
268
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/410";
267
+ readonly category: 'clientError';
268
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/410';
269
269
  readonly code: 410;
270
- readonly name: "GONE";
271
- readonly readableName: "Gone";
272
- readonly message: "Content has been permanently deleted";
273
- readonly description: "This response is sent when the requested content has been permanently deleted from server, with no forwarding address. Clients are expected to remove their caches and links to the resource. The HTTP specification intends this status code to be used for \"limited-time, promotional services\". APIs should not feel compelled to indicate resources that have been deleted with this status code.";
270
+ readonly name: 'GONE';
271
+ readonly readableName: 'Gone';
272
+ readonly message: 'Content has been permanently deleted';
273
+ readonly description: 'This response is sent when the requested content has been permanently deleted from server, with no forwarding address. Clients are expected to remove their caches and links to the resource. The HTTP specification intends this status code to be used for "limited-time, promotional services". APIs should not feel compelled to indicate resources that have been deleted with this status code.';
274
274
  }, {
275
- readonly category: "clientError";
276
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/411";
275
+ readonly category: 'clientError';
276
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/411';
277
277
  readonly code: 411;
278
- readonly name: "LENGTH_REQUIRED";
279
- readonly readableName: "Length Required";
280
- readonly message: "Length Required";
281
- readonly description: "Server rejected the request because the Content-Length header field is not defined and the server requires it.";
278
+ readonly name: 'LENGTH_REQUIRED';
279
+ readonly readableName: 'Length Required';
280
+ readonly message: 'Length Required';
281
+ readonly description: 'Server rejected the request because the Content-Length header field is not defined and the server requires it.';
282
282
  }, {
283
- readonly category: "clientError";
284
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/412";
283
+ readonly category: 'clientError';
284
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/412';
285
285
  readonly code: 412;
286
- readonly name: "PRECONDITION_FAILED";
287
- readonly readableName: "Precondition Failed";
288
- readonly message: "Precondition Failed";
289
- readonly description: "In conditional requests, the client has indicated preconditions in its headers which the server does not meet.";
286
+ readonly name: 'PRECONDITION_FAILED';
287
+ readonly readableName: 'Precondition Failed';
288
+ readonly message: 'Precondition Failed';
289
+ readonly description: 'In conditional requests, the client has indicated preconditions in its headers which the server does not meet.';
290
290
  }, {
291
- readonly category: "clientError";
292
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/413";
291
+ readonly category: 'clientError';
292
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/413';
293
293
  readonly code: 413;
294
- readonly name: "CONTENT_TOO_LARGE";
295
- readonly readableName: "Content Too Large";
296
- readonly message: "Content Too Large";
297
- readonly description: "The request body is larger than limits defined by server. The server might close the connection or return an Retry-After header field.";
294
+ readonly name: 'CONTENT_TOO_LARGE';
295
+ readonly readableName: 'Content Too Large';
296
+ readonly message: 'Content Too Large';
297
+ readonly description: 'The request body is larger than limits defined by server. The server might close the connection or return an Retry-After header field.';
298
298
  }, {
299
- readonly category: "clientError";
300
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/414";
299
+ readonly category: 'clientError';
300
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/414';
301
301
  readonly code: 414;
302
- readonly name: "URI_TOO_LONG";
303
- readonly readableName: "URI Too Long";
304
- readonly message: "URI Too Long";
305
- readonly description: "The URI requested by the client is longer than the server is willing to interpret.";
302
+ readonly name: 'URI_TOO_LONG';
303
+ readonly readableName: 'URI Too Long';
304
+ readonly message: 'URI Too Long';
305
+ readonly description: 'The URI requested by the client is longer than the server is willing to interpret.';
306
306
  }, {
307
- readonly category: "clientError";
308
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/415";
307
+ readonly category: 'clientError';
308
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/415';
309
309
  readonly code: 415;
310
- readonly name: "UNSUPPORTED_MEDIA_TYPE";
311
- readonly readableName: "Unsupported Media Type";
312
- readonly message: "Unsupported Media Type";
313
- readonly description: "The media format of the requested data is not supported by the server, so the server is rejecting the request.";
310
+ readonly name: 'UNSUPPORTED_MEDIA_TYPE';
311
+ readonly readableName: 'Unsupported Media Type';
312
+ readonly message: 'Unsupported Media Type';
313
+ readonly description: 'The media format of the requested data is not supported by the server, so the server is rejecting the request.';
314
314
  }, {
315
- readonly category: "clientError";
316
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/416";
315
+ readonly category: 'clientError';
316
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/416';
317
317
  readonly code: 416;
318
- readonly name: "RANGE_NOT_SATISFIABLE";
319
- readonly readableName: "Range Not Satisfiable";
320
- readonly message: "Range Not Satisfiable";
318
+ readonly name: 'RANGE_NOT_SATISFIABLE';
319
+ readonly readableName: 'Range Not Satisfiable';
320
+ readonly message: 'Range Not Satisfiable';
321
321
  readonly description: "The ranges specified by the Range header field in the request cannot be fulfilled. It's possible that the range is outside the size of the target resource's data.";
322
322
  }, {
323
- readonly category: "clientError";
324
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/417";
323
+ readonly category: 'clientError';
324
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/417';
325
325
  readonly code: 417;
326
- readonly name: "EXPECTATION_FAILED";
327
- readonly readableName: "Expectation Failed";
328
- readonly message: "Expectation Failed";
329
- readonly description: "This response code means the expectation indicated by the Expect request header field cannot be met by the server.";
326
+ readonly name: 'EXPECTATION_FAILED';
327
+ readonly readableName: 'Expectation Failed';
328
+ readonly message: 'Expectation Failed';
329
+ readonly description: 'This response code means the expectation indicated by the Expect request header field cannot be met by the server.';
330
330
  }, {
331
- readonly category: "clientError";
332
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/418";
331
+ readonly category: 'clientError';
332
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/418';
333
333
  readonly code: 418;
334
- readonly name: "I_M_A_TEAPOT";
334
+ readonly name: 'I_M_A_TEAPOT';
335
335
  readonly readableName: "I'm a teapot";
336
336
  readonly message: "I'm a teapot";
337
- readonly description: "The server refuses the attempt to brew coffee with a teapot.";
337
+ readonly description: 'The server refuses the attempt to brew coffee with a teapot.';
338
338
  }, {
339
- readonly category: "clientError";
340
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/421";
339
+ readonly category: 'clientError';
340
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/421';
341
341
  readonly code: 421;
342
- readonly name: "MISDIRECTED_REQUEST";
343
- readonly readableName: "Misdirected Request";
344
- readonly message: "Misdirected Request";
345
- readonly description: "The request was directed at a server that is not able to produce a response. This can be sent by a server that is not configured to produce responses for the combination of scheme and authority that are included in the request URI.";
342
+ readonly name: 'MISDIRECTED_REQUEST';
343
+ readonly readableName: 'Misdirected Request';
344
+ readonly message: 'Misdirected Request';
345
+ readonly description: 'The request was directed at a server that is not able to produce a response. This can be sent by a server that is not configured to produce responses for the combination of scheme and authority that are included in the request URI.';
346
346
  }, {
347
- readonly category: "clientError";
348
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/422";
347
+ readonly category: 'clientError';
348
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/422';
349
349
  readonly code: 422;
350
- readonly name: "UNPROCESSABLE_CONTENT";
351
- readonly readableName: "Unprocessable Content";
352
- readonly message: "Unprocessable Content";
353
- readonly description: "The request was well-formed but was unable to be followed due to semantic errors.";
350
+ readonly name: 'UNPROCESSABLE_CONTENT';
351
+ readonly readableName: 'Unprocessable Content';
352
+ readonly message: 'Unprocessable Content';
353
+ readonly description: 'The request was well-formed but was unable to be followed due to semantic errors.';
354
354
  }, {
355
- readonly category: "clientError";
356
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/423";
355
+ readonly category: 'clientError';
356
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/423';
357
357
  readonly code: 423;
358
- readonly name: "LOCKED";
359
- readonly readableName: "Locked";
360
- readonly message: "The resource is locked";
361
- readonly description: "The resource that is being accessed is locked.";
358
+ readonly name: 'LOCKED';
359
+ readonly readableName: 'Locked';
360
+ readonly message: 'The resource is locked';
361
+ readonly description: 'The resource that is being accessed is locked.';
362
362
  }, {
363
- readonly category: "clientError";
364
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/424";
363
+ readonly category: 'clientError';
364
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/424';
365
365
  readonly code: 424;
366
- readonly name: "FAILED_DEPENDENCY";
367
- readonly readableName: "Failed Dependency";
368
- readonly message: "Failed Dependency";
369
- readonly description: "The request failed due to failure of a previous request.";
366
+ readonly name: 'FAILED_DEPENDENCY';
367
+ readonly readableName: 'Failed Dependency';
368
+ readonly message: 'Failed Dependency';
369
+ readonly description: 'The request failed due to failure of a previous request.';
370
370
  }, {
371
- readonly category: "clientError";
372
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/425";
371
+ readonly category: 'clientError';
372
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/425';
373
373
  readonly code: 425;
374
- readonly name: "TOO_EARLY";
375
- readonly readableName: "Too Early";
376
- readonly message: "Too Early";
377
- readonly description: "Indicates that the server is unwilling to risk processing a request that might be replayed.";
374
+ readonly name: 'TOO_EARLY';
375
+ readonly readableName: 'Too Early';
376
+ readonly message: 'Too Early';
377
+ readonly description: 'Indicates that the server is unwilling to risk processing a request that might be replayed.';
378
378
  }, {
379
- readonly category: "clientError";
380
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/426";
379
+ readonly category: 'clientError';
380
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/426';
381
381
  readonly code: 426;
382
- readonly name: "UPGRADE_REQUIRED";
383
- readonly readableName: "Upgrade Required";
384
- readonly message: "Upgrade Required";
385
- readonly description: "The server refuses to perform the request using the current protocol but might be willing to do so after the client upgrades to a different protocol. The server sends an Upgrade header in a 426 response to indicate the required protocol(s).";
382
+ readonly name: 'UPGRADE_REQUIRED';
383
+ readonly readableName: 'Upgrade Required';
384
+ readonly message: 'Upgrade Required';
385
+ readonly description: 'The server refuses to perform the request using the current protocol but might be willing to do so after the client upgrades to a different protocol. The server sends an Upgrade header in a 426 response to indicate the required protocol(s).';
386
386
  }, {
387
- readonly category: "clientError";
388
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/428";
387
+ readonly category: 'clientError';
388
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/428';
389
389
  readonly code: 428;
390
- readonly name: "PRECONDITION_REQUIRED";
391
- readonly readableName: "Precondition Required";
392
- readonly message: "Precondition Required";
390
+ readonly name: 'PRECONDITION_REQUIRED';
391
+ readonly readableName: 'Precondition Required';
392
+ readonly message: 'Precondition Required';
393
393
  readonly description: "The origin server requires the request to be conditional. This response is intended to prevent the 'lost update' problem, where a client GETs a resource's state, modifies it and PUTs it back to the server, when meanwhile a third party has modified the state on the server, leading to a conflict.";
394
394
  }, {
395
- readonly category: "clientError";
396
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/429";
395
+ readonly category: 'clientError';
396
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/429';
397
397
  readonly code: 429;
398
- readonly name: "TOO_MANY_REQUESTS";
399
- readonly readableName: "Too Many Requests";
400
- readonly message: "Too Many Requests";
401
- readonly description: "The user has sent too many requests in a given amount of time (rate limiting).";
398
+ readonly name: 'TOO_MANY_REQUESTS';
399
+ readonly readableName: 'Too Many Requests';
400
+ readonly message: 'Too Many Requests';
401
+ readonly description: 'The user has sent too many requests in a given amount of time (rate limiting).';
402
402
  }, {
403
- readonly category: "clientError";
404
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/431";
403
+ readonly category: 'clientError';
404
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/431';
405
405
  readonly code: 431;
406
- readonly name: "REQUEST_HEADER_FIELDS_TOO_LARGE";
407
- readonly readableName: "Request Header Fields Too Large";
408
- readonly message: "Request Header Fields Too Large";
409
- readonly description: "The server is unwilling to process the request because its header fields are too large. The request may be resubmitted after reducing the size of the request header fields.";
406
+ readonly name: 'REQUEST_HEADER_FIELDS_TOO_LARGE';
407
+ readonly readableName: 'Request Header Fields Too Large';
408
+ readonly message: 'Request Header Fields Too Large';
409
+ readonly description: 'The server is unwilling to process the request because its header fields are too large. The request may be resubmitted after reducing the size of the request header fields.';
410
410
  }, {
411
- readonly category: "clientError";
412
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/451";
411
+ readonly category: 'clientError';
412
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/451';
413
413
  readonly code: 451;
414
- readonly name: "UNAVAILABLE_FOR_LEGAL_REASONS";
415
- readonly readableName: "Unavailable For Legal Reasons";
416
- readonly message: "Unavailable For Legal Reasons";
417
- readonly description: "The user agent requested a resource that cannot legally be provided, such as a web page censored by a government.";
414
+ readonly name: 'UNAVAILABLE_FOR_LEGAL_REASONS';
415
+ readonly readableName: 'Unavailable For Legal Reasons';
416
+ readonly message: 'Unavailable For Legal Reasons';
417
+ readonly description: 'The user agent requested a resource that cannot legally be provided, such as a web page censored by a government.';
418
418
  }, {
419
- readonly category: "serverError";
420
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/500";
419
+ readonly category: 'serverError';
420
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/500';
421
421
  readonly code: 500;
422
- readonly name: "INTERNAL_SERVER_ERROR";
423
- readonly readableName: "Internal Server Error";
424
- readonly message: "Internal Server Error";
425
- readonly description: "The server has encountered a situation it does not know how to handle. This error is generic, indicating that the server cannot find a more appropriate 5XX status code to respond with.";
422
+ readonly name: 'INTERNAL_SERVER_ERROR';
423
+ readonly readableName: 'Internal Server Error';
424
+ readonly message: 'Internal Server Error';
425
+ readonly description: 'The server has encountered a situation it does not know how to handle. This error is generic, indicating that the server cannot find a more appropriate 5XX status code to respond with.';
426
426
  }, {
427
- readonly category: "serverError";
428
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/501";
427
+ readonly category: 'serverError';
428
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/501';
429
429
  readonly code: 501;
430
- readonly name: "NOT_IMPLEMENTED";
431
- readonly readableName: "Not Implemented";
432
- readonly message: "Not Implemented";
433
- readonly description: "The request method is not supported by the server and cannot be handled. The only methods that servers are required to support (and therefore that must not return this code) are GET and HEAD.";
430
+ readonly name: 'NOT_IMPLEMENTED';
431
+ readonly readableName: 'Not Implemented';
432
+ readonly message: 'Not Implemented';
433
+ readonly description: 'The request method is not supported by the server and cannot be handled. The only methods that servers are required to support (and therefore that must not return this code) are GET and HEAD.';
434
434
  }, {
435
- readonly category: "serverError";
436
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/502";
435
+ readonly category: 'serverError';
436
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/502';
437
437
  readonly code: 502;
438
- readonly name: "BAD_GATEWAY";
439
- readonly readableName: "Bad Gateway";
440
- readonly message: "Bad Gateway";
441
- readonly description: "This error response means that the server, while working as a gateway to get a response needed to handle the request, got an invalid response.";
438
+ readonly name: 'BAD_GATEWAY';
439
+ readonly readableName: 'Bad Gateway';
440
+ readonly message: 'Bad Gateway';
441
+ readonly description: 'This error response means that the server, while working as a gateway to get a response needed to handle the request, got an invalid response.';
442
442
  }, {
443
- readonly category: "serverError";
444
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/503";
443
+ readonly category: 'serverError';
444
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/503';
445
445
  readonly code: 503;
446
- readonly name: "SERVICE_UNAVAILABLE";
447
- readonly readableName: "Service Unavailable";
448
- readonly message: "Service Unavailable";
449
- readonly description: "The server is not ready to handle the request. Common causes are a server that is down for maintenance or that is overloaded. Note that together with this response, a user-friendly page explaining the problem should be sent. This response should be used for temporary conditions and the Retry-After HTTP header should, if possible, contain the estimated time before the recovery of the service. The webmaster must also take care about the caching-related headers that are sent along with this response, as these temporary condition responses should usually not be cached.";
446
+ readonly name: 'SERVICE_UNAVAILABLE';
447
+ readonly readableName: 'Service Unavailable';
448
+ readonly message: 'Service Unavailable';
449
+ readonly description: 'The server is not ready to handle the request. Common causes are a server that is down for maintenance or that is overloaded. Note that together with this response, a user-friendly page explaining the problem should be sent. This response should be used for temporary conditions and the Retry-After HTTP header should, if possible, contain the estimated time before the recovery of the service. The webmaster must also take care about the caching-related headers that are sent along with this response, as these temporary condition responses should usually not be cached.';
450
450
  }, {
451
- readonly category: "serverError";
452
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/504";
451
+ readonly category: 'serverError';
452
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/504';
453
453
  readonly code: 504;
454
- readonly name: "GATEWAY_TIMEOUT";
455
- readonly readableName: "Gateway Timeout";
456
- readonly message: "Gateway Timeout";
457
- readonly description: "This error response is given when the server is acting as a gateway and cannot get a response in time.";
454
+ readonly name: 'GATEWAY_TIMEOUT';
455
+ readonly readableName: 'Gateway Timeout';
456
+ readonly message: 'Gateway Timeout';
457
+ readonly description: 'This error response is given when the server is acting as a gateway and cannot get a response in time.';
458
458
  }, {
459
- readonly category: "serverError";
460
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/505";
459
+ readonly category: 'serverError';
460
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/505';
461
461
  readonly code: 505;
462
- readonly name: "HTTP_VERSION_NOT_SUPPORTED";
463
- readonly readableName: "HTTP Version Not Supported";
464
- readonly message: "HTTP Version Not Supported";
465
- readonly description: "The HTTP version used in the request is not supported by the server.";
462
+ readonly name: 'HTTP_VERSION_NOT_SUPPORTED';
463
+ readonly readableName: 'HTTP Version Not Supported';
464
+ readonly message: 'HTTP Version Not Supported';
465
+ readonly description: 'The HTTP version used in the request is not supported by the server.';
466
466
  }, {
467
- readonly category: "serverError";
468
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/506";
467
+ readonly category: 'serverError';
468
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/506';
469
469
  readonly code: 506;
470
- readonly name: "VARIANT_ALSO_NEGOTIATES";
471
- readonly readableName: "Variant Also Negotiates";
472
- readonly message: "Variant Also Negotiates";
473
- readonly description: "The server has an internal configuration error: during content negotiation, the chosen variant is configured to engage in content negotiation itself, which results in circular references when creating responses.";
470
+ readonly name: 'VARIANT_ALSO_NEGOTIATES';
471
+ readonly readableName: 'Variant Also Negotiates';
472
+ readonly message: 'Variant Also Negotiates';
473
+ readonly description: 'The server has an internal configuration error: during content negotiation, the chosen variant is configured to engage in content negotiation itself, which results in circular references when creating responses.';
474
474
  }, {
475
- readonly category: "serverError";
476
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/507";
475
+ readonly category: 'serverError';
476
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/507';
477
477
  readonly code: 507;
478
- readonly name: "INSUFFICIENT_STORAGE";
479
- readonly readableName: "Insufficient Storage";
480
- readonly message: "Insufficient Storage";
481
- readonly description: "The method could not be performed on the resource because the server is unable to store the representation needed to successfully complete the request.";
478
+ readonly name: 'INSUFFICIENT_STORAGE';
479
+ readonly readableName: 'Insufficient Storage';
480
+ readonly message: 'Insufficient Storage';
481
+ readonly description: 'The method could not be performed on the resource because the server is unable to store the representation needed to successfully complete the request.';
482
482
  }, {
483
- readonly category: "serverError";
484
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/508";
483
+ readonly category: 'serverError';
484
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/508';
485
485
  readonly code: 508;
486
- readonly name: "LOOP_DETECTED";
487
- readonly readableName: "Loop Detected";
488
- readonly message: "Detected an infinite loop";
489
- readonly description: "The server detected an infinite loop while processing the request.";
486
+ readonly name: 'LOOP_DETECTED';
487
+ readonly readableName: 'Loop Detected';
488
+ readonly message: 'Detected an infinite loop';
489
+ readonly description: 'The server detected an infinite loop while processing the request.';
490
490
  }, {
491
- readonly category: "serverError";
492
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/510";
491
+ readonly category: 'serverError';
492
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/510';
493
493
  readonly code: 510;
494
- readonly name: "NOT_EXTENDED";
495
- readonly readableName: "Not Extended";
496
- readonly message: "Not Extended";
497
- readonly description: "The client request declares an HTTP Extension (RFC 2774) that should be used to process the request, but the extension is not supported.";
494
+ readonly name: 'NOT_EXTENDED';
495
+ readonly readableName: 'Not Extended';
496
+ readonly message: 'Not Extended';
497
+ readonly description: 'The client request declares an HTTP Extension (RFC 2774) that should be used to process the request, but the extension is not supported.';
498
498
  }, {
499
- readonly category: "serverError";
500
- readonly link: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/511";
499
+ readonly category: 'serverError';
500
+ readonly link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/511';
501
501
  readonly code: 511;
502
- readonly name: "NETWORK_AUTHENTICATION_REQUIRED";
503
- readonly readableName: "Network Authentication Required";
504
- readonly message: "Network Authentication Required";
505
- readonly description: "Indicates that the client needs to authenticate to gain network access.";
502
+ readonly name: 'NETWORK_AUTHENTICATION_REQUIRED';
503
+ readonly readableName: 'Network Authentication Required';
504
+ readonly message: 'Network Authentication Required';
505
+ readonly description: 'Indicates that the client needs to authenticate to gain network access.';
506
506
  }];
507
507
  /** List of {@link https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status HTTP Status Names with Corresponding Codes} */
508
508
  export declare const HTTP_STATUS_CODES: Readonly<{