@twin.org/web 0.0.3-next.13 → 0.0.3-next.14
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/es/models/headerTypes.js +95 -0
- package/dist/es/models/headerTypes.js.map +1 -1
- package/dist/es/models/httpMethod.js +36 -0
- package/dist/es/models/httpMethod.js.map +1 -1
- package/dist/es/models/httpStatusCode.js +63 -0
- package/dist/es/models/httpStatusCode.js.map +1 -1
- package/dist/es/models/mimeTypes.js +170 -1
- package/dist/es/models/mimeTypes.js.map +1 -1
- package/dist/es/utils/mimeTypeHelper.js +42 -1
- package/dist/es/utils/mimeTypeHelper.js.map +1 -1
- package/dist/types/models/headerTypes.d.ts +95 -0
- package/dist/types/models/httpMethod.d.ts +36 -0
- package/dist/types/models/httpStatusCode.d.ts +63 -0
- package/dist/types/models/mimeTypes.d.ts +169 -0
- package/docs/changelog.md +20 -0
- package/docs/reference/variables/HeaderTypes.md +190 -0
- package/docs/reference/variables/HttpMethod.md +54 -0
- package/docs/reference/variables/HttpStatusCode.md +252 -0
- package/docs/reference/variables/MimeTypes.md +256 -0
- package/package.json +4 -4
|
@@ -12,368 +12,620 @@ Standard HTTP status codes.
|
|
|
12
12
|
|
|
13
13
|
Continue status code.
|
|
14
14
|
|
|
15
|
+
#### See
|
|
16
|
+
|
|
17
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100
|
|
18
|
+
|
|
15
19
|
### switchingProtocols
|
|
16
20
|
|
|
17
21
|
> `readonly` **switchingProtocols**: `101` = `101`
|
|
18
22
|
|
|
19
23
|
Switching Protocols status code.
|
|
20
24
|
|
|
25
|
+
#### See
|
|
26
|
+
|
|
27
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101
|
|
28
|
+
|
|
21
29
|
### processing
|
|
22
30
|
|
|
23
31
|
> `readonly` **processing**: `102` = `102`
|
|
24
32
|
|
|
25
33
|
Processing status code.
|
|
26
34
|
|
|
35
|
+
#### See
|
|
36
|
+
|
|
37
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/102
|
|
38
|
+
|
|
27
39
|
### earlyHints
|
|
28
40
|
|
|
29
41
|
> `readonly` **earlyHints**: `103` = `103`
|
|
30
42
|
|
|
31
43
|
Early Hints status code.
|
|
32
44
|
|
|
45
|
+
#### See
|
|
46
|
+
|
|
47
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/103
|
|
48
|
+
|
|
33
49
|
### ok
|
|
34
50
|
|
|
35
51
|
> `readonly` **ok**: `200` = `200`
|
|
36
52
|
|
|
37
53
|
OK status code.
|
|
38
54
|
|
|
55
|
+
#### See
|
|
56
|
+
|
|
57
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/200
|
|
58
|
+
|
|
39
59
|
### created
|
|
40
60
|
|
|
41
61
|
> `readonly` **created**: `201` = `201`
|
|
42
62
|
|
|
43
63
|
Created status code.
|
|
44
64
|
|
|
65
|
+
#### See
|
|
66
|
+
|
|
67
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/201
|
|
68
|
+
|
|
45
69
|
### accepted
|
|
46
70
|
|
|
47
71
|
> `readonly` **accepted**: `202` = `202`
|
|
48
72
|
|
|
49
73
|
Accepted status code.
|
|
50
74
|
|
|
75
|
+
#### See
|
|
76
|
+
|
|
77
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/202
|
|
78
|
+
|
|
51
79
|
### nonAuthoritativeInformation
|
|
52
80
|
|
|
53
81
|
> `readonly` **nonAuthoritativeInformation**: `203` = `203`
|
|
54
82
|
|
|
55
83
|
Non-Authoritative Information status code.
|
|
56
84
|
|
|
85
|
+
#### See
|
|
86
|
+
|
|
87
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/203
|
|
88
|
+
|
|
57
89
|
### noContent
|
|
58
90
|
|
|
59
91
|
> `readonly` **noContent**: `204` = `204`
|
|
60
92
|
|
|
61
93
|
No Content status code.
|
|
62
94
|
|
|
95
|
+
#### See
|
|
96
|
+
|
|
97
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/204
|
|
98
|
+
|
|
63
99
|
### resetContent
|
|
64
100
|
|
|
65
101
|
> `readonly` **resetContent**: `205` = `205`
|
|
66
102
|
|
|
67
103
|
Reset Content status code.
|
|
68
104
|
|
|
105
|
+
#### See
|
|
106
|
+
|
|
107
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/205
|
|
108
|
+
|
|
69
109
|
### partialContent
|
|
70
110
|
|
|
71
111
|
> `readonly` **partialContent**: `206` = `206`
|
|
72
112
|
|
|
73
113
|
Partial Content status code.
|
|
74
114
|
|
|
115
|
+
#### See
|
|
116
|
+
|
|
117
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/206
|
|
118
|
+
|
|
75
119
|
### multiStatus
|
|
76
120
|
|
|
77
121
|
> `readonly` **multiStatus**: `207` = `207`
|
|
78
122
|
|
|
79
123
|
Multi-Status status code.
|
|
80
124
|
|
|
125
|
+
#### See
|
|
126
|
+
|
|
127
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/207
|
|
128
|
+
|
|
81
129
|
### alreadyReported
|
|
82
130
|
|
|
83
131
|
> `readonly` **alreadyReported**: `208` = `208`
|
|
84
132
|
|
|
85
133
|
Already Reported status code.
|
|
86
134
|
|
|
135
|
+
#### See
|
|
136
|
+
|
|
137
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/208
|
|
138
|
+
|
|
87
139
|
### imUsed
|
|
88
140
|
|
|
89
141
|
> `readonly` **imUsed**: `226` = `226`
|
|
90
142
|
|
|
91
143
|
IM Used status code.
|
|
92
144
|
|
|
145
|
+
#### See
|
|
146
|
+
|
|
147
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/226
|
|
148
|
+
|
|
93
149
|
### multipleChoices
|
|
94
150
|
|
|
95
151
|
> `readonly` **multipleChoices**: `300` = `300`
|
|
96
152
|
|
|
97
153
|
Multiple Choices status code.
|
|
98
154
|
|
|
155
|
+
#### See
|
|
156
|
+
|
|
157
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/300
|
|
158
|
+
|
|
99
159
|
### movedPermanently
|
|
100
160
|
|
|
101
161
|
> `readonly` **movedPermanently**: `301` = `301`
|
|
102
162
|
|
|
103
163
|
Moved Permanently status code.
|
|
104
164
|
|
|
165
|
+
#### See
|
|
166
|
+
|
|
167
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/301
|
|
168
|
+
|
|
105
169
|
### found
|
|
106
170
|
|
|
107
171
|
> `readonly` **found**: `302` = `302`
|
|
108
172
|
|
|
109
173
|
Found status code.
|
|
110
174
|
|
|
175
|
+
#### See
|
|
176
|
+
|
|
177
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/302
|
|
178
|
+
|
|
111
179
|
### seeOther
|
|
112
180
|
|
|
113
181
|
> `readonly` **seeOther**: `303` = `303`
|
|
114
182
|
|
|
115
183
|
See Other status code.
|
|
116
184
|
|
|
185
|
+
#### See
|
|
186
|
+
|
|
187
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/303
|
|
188
|
+
|
|
117
189
|
### notModified
|
|
118
190
|
|
|
119
191
|
> `readonly` **notModified**: `304` = `304`
|
|
120
192
|
|
|
121
193
|
Not Modified status code.
|
|
122
194
|
|
|
195
|
+
#### See
|
|
196
|
+
|
|
197
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/304
|
|
198
|
+
|
|
123
199
|
### useProxy
|
|
124
200
|
|
|
125
201
|
> `readonly` **useProxy**: `305` = `305`
|
|
126
202
|
|
|
127
203
|
Use Proxy status code.
|
|
128
204
|
|
|
205
|
+
#### See
|
|
206
|
+
|
|
207
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/305
|
|
208
|
+
|
|
129
209
|
### temporaryRedirect
|
|
130
210
|
|
|
131
211
|
> `readonly` **temporaryRedirect**: `307` = `307`
|
|
132
212
|
|
|
133
213
|
Temporary Redirect status code.
|
|
134
214
|
|
|
215
|
+
#### See
|
|
216
|
+
|
|
217
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/307
|
|
218
|
+
|
|
135
219
|
### permanentRedirect
|
|
136
220
|
|
|
137
221
|
> `readonly` **permanentRedirect**: `308` = `308`
|
|
138
222
|
|
|
139
223
|
Permanent Redirect status code.
|
|
140
224
|
|
|
225
|
+
#### See
|
|
226
|
+
|
|
227
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/308
|
|
228
|
+
|
|
141
229
|
### badRequest
|
|
142
230
|
|
|
143
231
|
> `readonly` **badRequest**: `400` = `400`
|
|
144
232
|
|
|
145
233
|
Bad Request status code.
|
|
146
234
|
|
|
235
|
+
#### See
|
|
236
|
+
|
|
237
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/400
|
|
238
|
+
|
|
147
239
|
### unauthorized
|
|
148
240
|
|
|
149
241
|
> `readonly` **unauthorized**: `401` = `401`
|
|
150
242
|
|
|
151
243
|
Unauthorized status code.
|
|
152
244
|
|
|
245
|
+
#### See
|
|
246
|
+
|
|
247
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/401
|
|
248
|
+
|
|
153
249
|
### paymentRequired
|
|
154
250
|
|
|
155
251
|
> `readonly` **paymentRequired**: `402` = `402`
|
|
156
252
|
|
|
157
253
|
Payment Required status code.
|
|
158
254
|
|
|
255
|
+
#### See
|
|
256
|
+
|
|
257
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/402
|
|
258
|
+
|
|
159
259
|
### forbidden
|
|
160
260
|
|
|
161
261
|
> `readonly` **forbidden**: `403` = `403`
|
|
162
262
|
|
|
163
263
|
Forbidden status code.
|
|
164
264
|
|
|
265
|
+
#### See
|
|
266
|
+
|
|
267
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/403
|
|
268
|
+
|
|
165
269
|
### notFound
|
|
166
270
|
|
|
167
271
|
> `readonly` **notFound**: `404` = `404`
|
|
168
272
|
|
|
169
273
|
Not Found status code.
|
|
170
274
|
|
|
275
|
+
#### See
|
|
276
|
+
|
|
277
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404
|
|
278
|
+
|
|
171
279
|
### methodNotAllowed
|
|
172
280
|
|
|
173
281
|
> `readonly` **methodNotAllowed**: `405` = `405`
|
|
174
282
|
|
|
175
283
|
Method Not Allowed status code.
|
|
176
284
|
|
|
285
|
+
#### See
|
|
286
|
+
|
|
287
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/405
|
|
288
|
+
|
|
177
289
|
### notAcceptable
|
|
178
290
|
|
|
179
291
|
> `readonly` **notAcceptable**: `406` = `406`
|
|
180
292
|
|
|
181
293
|
Not Acceptable status code.
|
|
182
294
|
|
|
295
|
+
#### See
|
|
296
|
+
|
|
297
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/406
|
|
298
|
+
|
|
183
299
|
### proxyAuthenticationRequired
|
|
184
300
|
|
|
185
301
|
> `readonly` **proxyAuthenticationRequired**: `407` = `407`
|
|
186
302
|
|
|
187
303
|
Proxy Authentication Required status code.
|
|
188
304
|
|
|
305
|
+
#### See
|
|
306
|
+
|
|
307
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/407
|
|
308
|
+
|
|
189
309
|
### requestTimeout
|
|
190
310
|
|
|
191
311
|
> `readonly` **requestTimeout**: `408` = `408`
|
|
192
312
|
|
|
193
313
|
Request Timeout status code.
|
|
194
314
|
|
|
315
|
+
#### See
|
|
316
|
+
|
|
317
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408
|
|
318
|
+
|
|
195
319
|
### conflict
|
|
196
320
|
|
|
197
321
|
> `readonly` **conflict**: `409` = `409`
|
|
198
322
|
|
|
199
323
|
Conflict status code.
|
|
200
324
|
|
|
325
|
+
#### See
|
|
326
|
+
|
|
327
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/409
|
|
328
|
+
|
|
201
329
|
### gone
|
|
202
330
|
|
|
203
331
|
> `readonly` **gone**: `410` = `410`
|
|
204
332
|
|
|
205
333
|
Gone status code.
|
|
206
334
|
|
|
335
|
+
#### See
|
|
336
|
+
|
|
337
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/410
|
|
338
|
+
|
|
207
339
|
### lengthRequired
|
|
208
340
|
|
|
209
341
|
> `readonly` **lengthRequired**: `411` = `411`
|
|
210
342
|
|
|
211
343
|
Length Required status code.
|
|
212
344
|
|
|
345
|
+
#### See
|
|
346
|
+
|
|
347
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/411
|
|
348
|
+
|
|
213
349
|
### preconditionFailed
|
|
214
350
|
|
|
215
351
|
> `readonly` **preconditionFailed**: `412` = `412`
|
|
216
352
|
|
|
217
353
|
Precondition Failed status code.
|
|
218
354
|
|
|
355
|
+
#### See
|
|
356
|
+
|
|
357
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/412
|
|
358
|
+
|
|
219
359
|
### payloadTooLarge
|
|
220
360
|
|
|
221
361
|
> `readonly` **payloadTooLarge**: `413` = `413`
|
|
222
362
|
|
|
223
363
|
Payload Too Large status code.
|
|
224
364
|
|
|
365
|
+
#### See
|
|
366
|
+
|
|
367
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/413
|
|
368
|
+
|
|
225
369
|
### uriTooLong
|
|
226
370
|
|
|
227
371
|
> `readonly` **uriTooLong**: `414` = `414`
|
|
228
372
|
|
|
229
373
|
URI Too Long status code.
|
|
230
374
|
|
|
375
|
+
#### See
|
|
376
|
+
|
|
377
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/414
|
|
378
|
+
|
|
231
379
|
### unsupportedMediaType
|
|
232
380
|
|
|
233
381
|
> `readonly` **unsupportedMediaType**: `415` = `415`
|
|
234
382
|
|
|
235
383
|
Unsupported Media Type status code.
|
|
236
384
|
|
|
385
|
+
#### See
|
|
386
|
+
|
|
387
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/415
|
|
388
|
+
|
|
237
389
|
### rangeNotSatisfiable
|
|
238
390
|
|
|
239
391
|
> `readonly` **rangeNotSatisfiable**: `416` = `416`
|
|
240
392
|
|
|
241
393
|
Range Not Satisfiable status code.
|
|
242
394
|
|
|
395
|
+
#### See
|
|
396
|
+
|
|
397
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/416
|
|
398
|
+
|
|
243
399
|
### expectationFailed
|
|
244
400
|
|
|
245
401
|
> `readonly` **expectationFailed**: `417` = `417`
|
|
246
402
|
|
|
247
403
|
Expectation Failed status code.
|
|
248
404
|
|
|
405
|
+
#### See
|
|
406
|
+
|
|
407
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/417
|
|
408
|
+
|
|
249
409
|
### imATeapot
|
|
250
410
|
|
|
251
411
|
> `readonly` **imATeapot**: `418` = `418`
|
|
252
412
|
|
|
253
413
|
I'm a Teapot status code.
|
|
254
414
|
|
|
415
|
+
#### See
|
|
416
|
+
|
|
417
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/418
|
|
418
|
+
|
|
255
419
|
### misdirectedRequest
|
|
256
420
|
|
|
257
421
|
> `readonly` **misdirectedRequest**: `421` = `421`
|
|
258
422
|
|
|
259
423
|
Misdirected Request status code.
|
|
260
424
|
|
|
425
|
+
#### See
|
|
426
|
+
|
|
427
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/421
|
|
428
|
+
|
|
261
429
|
### unprocessableEntity
|
|
262
430
|
|
|
263
431
|
> `readonly` **unprocessableEntity**: `422` = `422`
|
|
264
432
|
|
|
265
433
|
Unprocessable Entity status code.
|
|
266
434
|
|
|
435
|
+
#### See
|
|
436
|
+
|
|
437
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/422
|
|
438
|
+
|
|
267
439
|
### locked
|
|
268
440
|
|
|
269
441
|
> `readonly` **locked**: `423` = `423`
|
|
270
442
|
|
|
271
443
|
Locked status code.
|
|
272
444
|
|
|
445
|
+
#### See
|
|
446
|
+
|
|
447
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/423
|
|
448
|
+
|
|
273
449
|
### failedDependency
|
|
274
450
|
|
|
275
451
|
> `readonly` **failedDependency**: `424` = `424`
|
|
276
452
|
|
|
277
453
|
Failed Dependency status code.
|
|
278
454
|
|
|
455
|
+
#### See
|
|
456
|
+
|
|
457
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/424
|
|
458
|
+
|
|
279
459
|
### tooEarly
|
|
280
460
|
|
|
281
461
|
> `readonly` **tooEarly**: `425` = `425`
|
|
282
462
|
|
|
283
463
|
Too Early status code.
|
|
284
464
|
|
|
465
|
+
#### See
|
|
466
|
+
|
|
467
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/425
|
|
468
|
+
|
|
285
469
|
### upgradeRequired
|
|
286
470
|
|
|
287
471
|
> `readonly` **upgradeRequired**: `426` = `426`
|
|
288
472
|
|
|
289
473
|
Upgrade Required status code.
|
|
290
474
|
|
|
475
|
+
#### See
|
|
476
|
+
|
|
477
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/426
|
|
478
|
+
|
|
291
479
|
### preconditionRequired
|
|
292
480
|
|
|
293
481
|
> `readonly` **preconditionRequired**: `428` = `428`
|
|
294
482
|
|
|
295
483
|
Precondition Required status code.
|
|
296
484
|
|
|
485
|
+
#### See
|
|
486
|
+
|
|
487
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/428
|
|
488
|
+
|
|
297
489
|
### tooManyRequests
|
|
298
490
|
|
|
299
491
|
> `readonly` **tooManyRequests**: `429` = `429`
|
|
300
492
|
|
|
301
493
|
Too Many Requests status code.
|
|
302
494
|
|
|
495
|
+
#### See
|
|
496
|
+
|
|
497
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429
|
|
498
|
+
|
|
303
499
|
### requestHeaderFieldsTooLarge
|
|
304
500
|
|
|
305
501
|
> `readonly` **requestHeaderFieldsTooLarge**: `431` = `431`
|
|
306
502
|
|
|
307
503
|
Request Header Fields Too Large status code.
|
|
308
504
|
|
|
505
|
+
#### See
|
|
506
|
+
|
|
507
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/431
|
|
508
|
+
|
|
309
509
|
### unavailableForLegalReasons
|
|
310
510
|
|
|
311
511
|
> `readonly` **unavailableForLegalReasons**: `451` = `451`
|
|
312
512
|
|
|
313
513
|
Unavailable For Legal Reasons status code.
|
|
314
514
|
|
|
515
|
+
#### See
|
|
516
|
+
|
|
517
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/451
|
|
518
|
+
|
|
315
519
|
### internalServerError
|
|
316
520
|
|
|
317
521
|
> `readonly` **internalServerError**: `500` = `500`
|
|
318
522
|
|
|
319
523
|
Internal Server Error status code.
|
|
320
524
|
|
|
525
|
+
#### See
|
|
526
|
+
|
|
527
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500
|
|
528
|
+
|
|
321
529
|
### notImplemented
|
|
322
530
|
|
|
323
531
|
> `readonly` **notImplemented**: `501` = `501`
|
|
324
532
|
|
|
325
533
|
Not Implemented status code.
|
|
326
534
|
|
|
535
|
+
#### See
|
|
536
|
+
|
|
537
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/501
|
|
538
|
+
|
|
327
539
|
### badGateway
|
|
328
540
|
|
|
329
541
|
> `readonly` **badGateway**: `502` = `502`
|
|
330
542
|
|
|
331
543
|
Bad Gateway status code.
|
|
332
544
|
|
|
545
|
+
#### See
|
|
546
|
+
|
|
547
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/502
|
|
548
|
+
|
|
333
549
|
### serviceUnavailable
|
|
334
550
|
|
|
335
551
|
> `readonly` **serviceUnavailable**: `503` = `503`
|
|
336
552
|
|
|
337
553
|
Service Unavailable status code.
|
|
338
554
|
|
|
555
|
+
#### See
|
|
556
|
+
|
|
557
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/503
|
|
558
|
+
|
|
339
559
|
### gatewayTimeout
|
|
340
560
|
|
|
341
561
|
> `readonly` **gatewayTimeout**: `504` = `504`
|
|
342
562
|
|
|
343
563
|
Gateway Timeout status code.
|
|
344
564
|
|
|
565
|
+
#### See
|
|
566
|
+
|
|
567
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/504
|
|
568
|
+
|
|
345
569
|
### httpVersionNotSupported
|
|
346
570
|
|
|
347
571
|
> `readonly` **httpVersionNotSupported**: `505` = `505`
|
|
348
572
|
|
|
349
573
|
HTTP Version Not Supported status code.
|
|
350
574
|
|
|
575
|
+
#### See
|
|
576
|
+
|
|
577
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/505
|
|
578
|
+
|
|
351
579
|
### variantAlsoNegotiates
|
|
352
580
|
|
|
353
581
|
> `readonly` **variantAlsoNegotiates**: `506` = `506`
|
|
354
582
|
|
|
355
583
|
Variant Also Negotiates status code.
|
|
356
584
|
|
|
585
|
+
#### See
|
|
586
|
+
|
|
587
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/506
|
|
588
|
+
|
|
357
589
|
### insufficientStorage
|
|
358
590
|
|
|
359
591
|
> `readonly` **insufficientStorage**: `507` = `507`
|
|
360
592
|
|
|
361
593
|
Insufficient Storage status code.
|
|
362
594
|
|
|
595
|
+
#### See
|
|
596
|
+
|
|
597
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/507
|
|
598
|
+
|
|
363
599
|
### loopDetected
|
|
364
600
|
|
|
365
601
|
> `readonly` **loopDetected**: `508` = `508`
|
|
366
602
|
|
|
367
603
|
Loop Detected status code.
|
|
368
604
|
|
|
605
|
+
#### See
|
|
606
|
+
|
|
607
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/508
|
|
608
|
+
|
|
369
609
|
### notExtended
|
|
370
610
|
|
|
371
611
|
> `readonly` **notExtended**: `510` = `510`
|
|
372
612
|
|
|
373
613
|
Not Extended status code.
|
|
374
614
|
|
|
615
|
+
#### See
|
|
616
|
+
|
|
617
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/510
|
|
618
|
+
|
|
375
619
|
### networkAuthenticationRequired
|
|
376
620
|
|
|
377
621
|
> `readonly` **networkAuthenticationRequired**: `511` = `511`
|
|
378
622
|
|
|
379
623
|
Network Authentication Required status code.
|
|
624
|
+
|
|
625
|
+
#### See
|
|
626
|
+
|
|
627
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/511
|
|
628
|
+
|
|
629
|
+
## See
|
|
630
|
+
|
|
631
|
+
https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status
|