@twin.org/web 0.0.3-next.21 → 0.0.3-next.23
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/README.md +1 -1
- package/docs/changelog.md +41 -1
- package/docs/examples.md +108 -1
- package/docs/reference/classes/CookieHelper.md +4 -4
- package/docs/reference/classes/FetchError.md +453 -1
- package/docs/reference/classes/FetchHelper.md +8 -8
- package/docs/reference/classes/HeaderHelper.md +7 -7
- package/docs/reference/classes/Jwk.md +6 -6
- package/docs/reference/classes/Jws.md +3 -3
- package/docs/reference/classes/Jwt.md +13 -13
- package/docs/reference/classes/MimeTypeHelper.md +2 -2
- package/docs/reference/interfaces/IFetchOptions.md +6 -6
- package/docs/reference/variables/HeaderTypes.md +32 -32
- package/docs/reference/variables/HttpMethod.md +9 -9
- package/docs/reference/variables/HttpStatusCode.md +62 -62
- package/docs/reference/variables/MimeTypes.md +65 -65
- package/package.json +6 -6
|
@@ -6,7 +6,7 @@ Standard HTTP status codes.
|
|
|
6
6
|
|
|
7
7
|
## Type Declaration
|
|
8
8
|
|
|
9
|
-
### continue
|
|
9
|
+
### continue {#continue}
|
|
10
10
|
|
|
11
11
|
> `readonly` **continue**: `100` = `100`
|
|
12
12
|
|
|
@@ -16,7 +16,7 @@ Continue status code.
|
|
|
16
16
|
|
|
17
17
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100
|
|
18
18
|
|
|
19
|
-
### switchingProtocols
|
|
19
|
+
### switchingProtocols {#switchingprotocols}
|
|
20
20
|
|
|
21
21
|
> `readonly` **switchingProtocols**: `101` = `101`
|
|
22
22
|
|
|
@@ -26,7 +26,7 @@ Switching Protocols status code.
|
|
|
26
26
|
|
|
27
27
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101
|
|
28
28
|
|
|
29
|
-
### processing
|
|
29
|
+
### processing {#processing}
|
|
30
30
|
|
|
31
31
|
> `readonly` **processing**: `102` = `102`
|
|
32
32
|
|
|
@@ -36,7 +36,7 @@ Processing status code.
|
|
|
36
36
|
|
|
37
37
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/102
|
|
38
38
|
|
|
39
|
-
### earlyHints
|
|
39
|
+
### earlyHints {#earlyhints}
|
|
40
40
|
|
|
41
41
|
> `readonly` **earlyHints**: `103` = `103`
|
|
42
42
|
|
|
@@ -46,7 +46,7 @@ Early Hints status code.
|
|
|
46
46
|
|
|
47
47
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/103
|
|
48
48
|
|
|
49
|
-
### ok
|
|
49
|
+
### ok {#ok}
|
|
50
50
|
|
|
51
51
|
> `readonly` **ok**: `200` = `200`
|
|
52
52
|
|
|
@@ -56,7 +56,7 @@ OK status code.
|
|
|
56
56
|
|
|
57
57
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/200
|
|
58
58
|
|
|
59
|
-
### created
|
|
59
|
+
### created {#created}
|
|
60
60
|
|
|
61
61
|
> `readonly` **created**: `201` = `201`
|
|
62
62
|
|
|
@@ -66,7 +66,7 @@ Created status code.
|
|
|
66
66
|
|
|
67
67
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/201
|
|
68
68
|
|
|
69
|
-
### accepted
|
|
69
|
+
### accepted {#accepted}
|
|
70
70
|
|
|
71
71
|
> `readonly` **accepted**: `202` = `202`
|
|
72
72
|
|
|
@@ -76,7 +76,7 @@ Accepted status code.
|
|
|
76
76
|
|
|
77
77
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/202
|
|
78
78
|
|
|
79
|
-
### nonAuthoritativeInformation
|
|
79
|
+
### nonAuthoritativeInformation {#nonauthoritativeinformation}
|
|
80
80
|
|
|
81
81
|
> `readonly` **nonAuthoritativeInformation**: `203` = `203`
|
|
82
82
|
|
|
@@ -86,7 +86,7 @@ Non-Authoritative Information status code.
|
|
|
86
86
|
|
|
87
87
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/203
|
|
88
88
|
|
|
89
|
-
### noContent
|
|
89
|
+
### noContent {#nocontent}
|
|
90
90
|
|
|
91
91
|
> `readonly` **noContent**: `204` = `204`
|
|
92
92
|
|
|
@@ -96,7 +96,7 @@ No Content status code.
|
|
|
96
96
|
|
|
97
97
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/204
|
|
98
98
|
|
|
99
|
-
### resetContent
|
|
99
|
+
### resetContent {#resetcontent}
|
|
100
100
|
|
|
101
101
|
> `readonly` **resetContent**: `205` = `205`
|
|
102
102
|
|
|
@@ -106,7 +106,7 @@ Reset Content status code.
|
|
|
106
106
|
|
|
107
107
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/205
|
|
108
108
|
|
|
109
|
-
### partialContent
|
|
109
|
+
### partialContent {#partialcontent}
|
|
110
110
|
|
|
111
111
|
> `readonly` **partialContent**: `206` = `206`
|
|
112
112
|
|
|
@@ -116,7 +116,7 @@ Partial Content status code.
|
|
|
116
116
|
|
|
117
117
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/206
|
|
118
118
|
|
|
119
|
-
### multiStatus
|
|
119
|
+
### multiStatus {#multistatus}
|
|
120
120
|
|
|
121
121
|
> `readonly` **multiStatus**: `207` = `207`
|
|
122
122
|
|
|
@@ -126,7 +126,7 @@ Multi-Status status code.
|
|
|
126
126
|
|
|
127
127
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/207
|
|
128
128
|
|
|
129
|
-
### alreadyReported
|
|
129
|
+
### alreadyReported {#alreadyreported}
|
|
130
130
|
|
|
131
131
|
> `readonly` **alreadyReported**: `208` = `208`
|
|
132
132
|
|
|
@@ -136,7 +136,7 @@ Already Reported status code.
|
|
|
136
136
|
|
|
137
137
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/208
|
|
138
138
|
|
|
139
|
-
### imUsed
|
|
139
|
+
### imUsed {#imused}
|
|
140
140
|
|
|
141
141
|
> `readonly` **imUsed**: `226` = `226`
|
|
142
142
|
|
|
@@ -146,7 +146,7 @@ IM Used status code.
|
|
|
146
146
|
|
|
147
147
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/226
|
|
148
148
|
|
|
149
|
-
### multipleChoices
|
|
149
|
+
### multipleChoices {#multiplechoices}
|
|
150
150
|
|
|
151
151
|
> `readonly` **multipleChoices**: `300` = `300`
|
|
152
152
|
|
|
@@ -156,7 +156,7 @@ Multiple Choices status code.
|
|
|
156
156
|
|
|
157
157
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/300
|
|
158
158
|
|
|
159
|
-
### movedPermanently
|
|
159
|
+
### movedPermanently {#movedpermanently}
|
|
160
160
|
|
|
161
161
|
> `readonly` **movedPermanently**: `301` = `301`
|
|
162
162
|
|
|
@@ -166,7 +166,7 @@ Moved Permanently status code.
|
|
|
166
166
|
|
|
167
167
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/301
|
|
168
168
|
|
|
169
|
-
### found
|
|
169
|
+
### found {#found}
|
|
170
170
|
|
|
171
171
|
> `readonly` **found**: `302` = `302`
|
|
172
172
|
|
|
@@ -176,7 +176,7 @@ Found status code.
|
|
|
176
176
|
|
|
177
177
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/302
|
|
178
178
|
|
|
179
|
-
### seeOther
|
|
179
|
+
### seeOther {#seeother}
|
|
180
180
|
|
|
181
181
|
> `readonly` **seeOther**: `303` = `303`
|
|
182
182
|
|
|
@@ -186,7 +186,7 @@ See Other status code.
|
|
|
186
186
|
|
|
187
187
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/303
|
|
188
188
|
|
|
189
|
-
### notModified
|
|
189
|
+
### notModified {#notmodified}
|
|
190
190
|
|
|
191
191
|
> `readonly` **notModified**: `304` = `304`
|
|
192
192
|
|
|
@@ -196,7 +196,7 @@ Not Modified status code.
|
|
|
196
196
|
|
|
197
197
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/304
|
|
198
198
|
|
|
199
|
-
### useProxy
|
|
199
|
+
### useProxy {#useproxy}
|
|
200
200
|
|
|
201
201
|
> `readonly` **useProxy**: `305` = `305`
|
|
202
202
|
|
|
@@ -206,7 +206,7 @@ Use Proxy status code.
|
|
|
206
206
|
|
|
207
207
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/305
|
|
208
208
|
|
|
209
|
-
### temporaryRedirect
|
|
209
|
+
### temporaryRedirect {#temporaryredirect}
|
|
210
210
|
|
|
211
211
|
> `readonly` **temporaryRedirect**: `307` = `307`
|
|
212
212
|
|
|
@@ -216,7 +216,7 @@ Temporary Redirect status code.
|
|
|
216
216
|
|
|
217
217
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/307
|
|
218
218
|
|
|
219
|
-
### permanentRedirect
|
|
219
|
+
### permanentRedirect {#permanentredirect}
|
|
220
220
|
|
|
221
221
|
> `readonly` **permanentRedirect**: `308` = `308`
|
|
222
222
|
|
|
@@ -226,7 +226,7 @@ Permanent Redirect status code.
|
|
|
226
226
|
|
|
227
227
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/308
|
|
228
228
|
|
|
229
|
-
### badRequest
|
|
229
|
+
### badRequest {#badrequest}
|
|
230
230
|
|
|
231
231
|
> `readonly` **badRequest**: `400` = `400`
|
|
232
232
|
|
|
@@ -236,7 +236,7 @@ Bad Request status code.
|
|
|
236
236
|
|
|
237
237
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/400
|
|
238
238
|
|
|
239
|
-
### unauthorized
|
|
239
|
+
### unauthorized {#unauthorized}
|
|
240
240
|
|
|
241
241
|
> `readonly` **unauthorized**: `401` = `401`
|
|
242
242
|
|
|
@@ -246,7 +246,7 @@ Unauthorized status code.
|
|
|
246
246
|
|
|
247
247
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/401
|
|
248
248
|
|
|
249
|
-
### paymentRequired
|
|
249
|
+
### paymentRequired {#paymentrequired}
|
|
250
250
|
|
|
251
251
|
> `readonly` **paymentRequired**: `402` = `402`
|
|
252
252
|
|
|
@@ -256,7 +256,7 @@ Payment Required status code.
|
|
|
256
256
|
|
|
257
257
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/402
|
|
258
258
|
|
|
259
|
-
### forbidden
|
|
259
|
+
### forbidden {#forbidden}
|
|
260
260
|
|
|
261
261
|
> `readonly` **forbidden**: `403` = `403`
|
|
262
262
|
|
|
@@ -266,7 +266,7 @@ Forbidden status code.
|
|
|
266
266
|
|
|
267
267
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/403
|
|
268
268
|
|
|
269
|
-
### notFound
|
|
269
|
+
### notFound {#notfound}
|
|
270
270
|
|
|
271
271
|
> `readonly` **notFound**: `404` = `404`
|
|
272
272
|
|
|
@@ -276,7 +276,7 @@ Not Found status code.
|
|
|
276
276
|
|
|
277
277
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404
|
|
278
278
|
|
|
279
|
-
### methodNotAllowed
|
|
279
|
+
### methodNotAllowed {#methodnotallowed}
|
|
280
280
|
|
|
281
281
|
> `readonly` **methodNotAllowed**: `405` = `405`
|
|
282
282
|
|
|
@@ -286,7 +286,7 @@ Method Not Allowed status code.
|
|
|
286
286
|
|
|
287
287
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/405
|
|
288
288
|
|
|
289
|
-
### notAcceptable
|
|
289
|
+
### notAcceptable {#notacceptable}
|
|
290
290
|
|
|
291
291
|
> `readonly` **notAcceptable**: `406` = `406`
|
|
292
292
|
|
|
@@ -296,7 +296,7 @@ Not Acceptable status code.
|
|
|
296
296
|
|
|
297
297
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/406
|
|
298
298
|
|
|
299
|
-
### proxyAuthenticationRequired
|
|
299
|
+
### proxyAuthenticationRequired {#proxyauthenticationrequired}
|
|
300
300
|
|
|
301
301
|
> `readonly` **proxyAuthenticationRequired**: `407` = `407`
|
|
302
302
|
|
|
@@ -306,7 +306,7 @@ Proxy Authentication Required status code.
|
|
|
306
306
|
|
|
307
307
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/407
|
|
308
308
|
|
|
309
|
-
### requestTimeout
|
|
309
|
+
### requestTimeout {#requesttimeout}
|
|
310
310
|
|
|
311
311
|
> `readonly` **requestTimeout**: `408` = `408`
|
|
312
312
|
|
|
@@ -316,7 +316,7 @@ Request Timeout status code.
|
|
|
316
316
|
|
|
317
317
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408
|
|
318
318
|
|
|
319
|
-
### conflict
|
|
319
|
+
### conflict {#conflict}
|
|
320
320
|
|
|
321
321
|
> `readonly` **conflict**: `409` = `409`
|
|
322
322
|
|
|
@@ -326,7 +326,7 @@ Conflict status code.
|
|
|
326
326
|
|
|
327
327
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/409
|
|
328
328
|
|
|
329
|
-
### gone
|
|
329
|
+
### gone {#gone}
|
|
330
330
|
|
|
331
331
|
> `readonly` **gone**: `410` = `410`
|
|
332
332
|
|
|
@@ -336,7 +336,7 @@ Gone status code.
|
|
|
336
336
|
|
|
337
337
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/410
|
|
338
338
|
|
|
339
|
-
### lengthRequired
|
|
339
|
+
### lengthRequired {#lengthrequired}
|
|
340
340
|
|
|
341
341
|
> `readonly` **lengthRequired**: `411` = `411`
|
|
342
342
|
|
|
@@ -346,7 +346,7 @@ Length Required status code.
|
|
|
346
346
|
|
|
347
347
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/411
|
|
348
348
|
|
|
349
|
-
### preconditionFailed
|
|
349
|
+
### preconditionFailed {#preconditionfailed}
|
|
350
350
|
|
|
351
351
|
> `readonly` **preconditionFailed**: `412` = `412`
|
|
352
352
|
|
|
@@ -356,7 +356,7 @@ Precondition Failed status code.
|
|
|
356
356
|
|
|
357
357
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/412
|
|
358
358
|
|
|
359
|
-
### payloadTooLarge
|
|
359
|
+
### payloadTooLarge {#payloadtoolarge}
|
|
360
360
|
|
|
361
361
|
> `readonly` **payloadTooLarge**: `413` = `413`
|
|
362
362
|
|
|
@@ -366,7 +366,7 @@ Payload Too Large status code.
|
|
|
366
366
|
|
|
367
367
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/413
|
|
368
368
|
|
|
369
|
-
### uriTooLong
|
|
369
|
+
### uriTooLong {#uritoolong}
|
|
370
370
|
|
|
371
371
|
> `readonly` **uriTooLong**: `414` = `414`
|
|
372
372
|
|
|
@@ -376,7 +376,7 @@ URI Too Long status code.
|
|
|
376
376
|
|
|
377
377
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/414
|
|
378
378
|
|
|
379
|
-
### unsupportedMediaType
|
|
379
|
+
### unsupportedMediaType {#unsupportedmediatype}
|
|
380
380
|
|
|
381
381
|
> `readonly` **unsupportedMediaType**: `415` = `415`
|
|
382
382
|
|
|
@@ -386,7 +386,7 @@ Unsupported Media Type status code.
|
|
|
386
386
|
|
|
387
387
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/415
|
|
388
388
|
|
|
389
|
-
### rangeNotSatisfiable
|
|
389
|
+
### rangeNotSatisfiable {#rangenotsatisfiable}
|
|
390
390
|
|
|
391
391
|
> `readonly` **rangeNotSatisfiable**: `416` = `416`
|
|
392
392
|
|
|
@@ -396,7 +396,7 @@ Range Not Satisfiable status code.
|
|
|
396
396
|
|
|
397
397
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/416
|
|
398
398
|
|
|
399
|
-
### expectationFailed
|
|
399
|
+
### expectationFailed {#expectationfailed}
|
|
400
400
|
|
|
401
401
|
> `readonly` **expectationFailed**: `417` = `417`
|
|
402
402
|
|
|
@@ -406,7 +406,7 @@ Expectation Failed status code.
|
|
|
406
406
|
|
|
407
407
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/417
|
|
408
408
|
|
|
409
|
-
### imATeapot
|
|
409
|
+
### imATeapot {#imateapot}
|
|
410
410
|
|
|
411
411
|
> `readonly` **imATeapot**: `418` = `418`
|
|
412
412
|
|
|
@@ -416,7 +416,7 @@ I'm a Teapot status code.
|
|
|
416
416
|
|
|
417
417
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/418
|
|
418
418
|
|
|
419
|
-
### misdirectedRequest
|
|
419
|
+
### misdirectedRequest {#misdirectedrequest}
|
|
420
420
|
|
|
421
421
|
> `readonly` **misdirectedRequest**: `421` = `421`
|
|
422
422
|
|
|
@@ -426,7 +426,7 @@ Misdirected Request status code.
|
|
|
426
426
|
|
|
427
427
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/421
|
|
428
428
|
|
|
429
|
-
### unprocessableEntity
|
|
429
|
+
### unprocessableEntity {#unprocessableentity}
|
|
430
430
|
|
|
431
431
|
> `readonly` **unprocessableEntity**: `422` = `422`
|
|
432
432
|
|
|
@@ -436,7 +436,7 @@ Unprocessable Entity status code.
|
|
|
436
436
|
|
|
437
437
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/422
|
|
438
438
|
|
|
439
|
-
### locked
|
|
439
|
+
### locked {#locked}
|
|
440
440
|
|
|
441
441
|
> `readonly` **locked**: `423` = `423`
|
|
442
442
|
|
|
@@ -446,7 +446,7 @@ Locked status code.
|
|
|
446
446
|
|
|
447
447
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/423
|
|
448
448
|
|
|
449
|
-
### failedDependency
|
|
449
|
+
### failedDependency {#faileddependency}
|
|
450
450
|
|
|
451
451
|
> `readonly` **failedDependency**: `424` = `424`
|
|
452
452
|
|
|
@@ -456,7 +456,7 @@ Failed Dependency status code.
|
|
|
456
456
|
|
|
457
457
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/424
|
|
458
458
|
|
|
459
|
-
### tooEarly
|
|
459
|
+
### tooEarly {#tooearly}
|
|
460
460
|
|
|
461
461
|
> `readonly` **tooEarly**: `425` = `425`
|
|
462
462
|
|
|
@@ -466,7 +466,7 @@ Too Early status code.
|
|
|
466
466
|
|
|
467
467
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/425
|
|
468
468
|
|
|
469
|
-
### upgradeRequired
|
|
469
|
+
### upgradeRequired {#upgraderequired}
|
|
470
470
|
|
|
471
471
|
> `readonly` **upgradeRequired**: `426` = `426`
|
|
472
472
|
|
|
@@ -476,7 +476,7 @@ Upgrade Required status code.
|
|
|
476
476
|
|
|
477
477
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/426
|
|
478
478
|
|
|
479
|
-
### preconditionRequired
|
|
479
|
+
### preconditionRequired {#preconditionrequired}
|
|
480
480
|
|
|
481
481
|
> `readonly` **preconditionRequired**: `428` = `428`
|
|
482
482
|
|
|
@@ -486,7 +486,7 @@ Precondition Required status code.
|
|
|
486
486
|
|
|
487
487
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/428
|
|
488
488
|
|
|
489
|
-
### tooManyRequests
|
|
489
|
+
### tooManyRequests {#toomanyrequests}
|
|
490
490
|
|
|
491
491
|
> `readonly` **tooManyRequests**: `429` = `429`
|
|
492
492
|
|
|
@@ -496,7 +496,7 @@ Too Many Requests status code.
|
|
|
496
496
|
|
|
497
497
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429
|
|
498
498
|
|
|
499
|
-
### requestHeaderFieldsTooLarge
|
|
499
|
+
### requestHeaderFieldsTooLarge {#requestheaderfieldstoolarge}
|
|
500
500
|
|
|
501
501
|
> `readonly` **requestHeaderFieldsTooLarge**: `431` = `431`
|
|
502
502
|
|
|
@@ -506,7 +506,7 @@ Request Header Fields Too Large status code.
|
|
|
506
506
|
|
|
507
507
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/431
|
|
508
508
|
|
|
509
|
-
### unavailableForLegalReasons
|
|
509
|
+
### unavailableForLegalReasons {#unavailableforlegalreasons}
|
|
510
510
|
|
|
511
511
|
> `readonly` **unavailableForLegalReasons**: `451` = `451`
|
|
512
512
|
|
|
@@ -516,7 +516,7 @@ Unavailable For Legal Reasons status code.
|
|
|
516
516
|
|
|
517
517
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/451
|
|
518
518
|
|
|
519
|
-
### internalServerError
|
|
519
|
+
### internalServerError {#internalservererror}
|
|
520
520
|
|
|
521
521
|
> `readonly` **internalServerError**: `500` = `500`
|
|
522
522
|
|
|
@@ -526,7 +526,7 @@ Internal Server Error status code.
|
|
|
526
526
|
|
|
527
527
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500
|
|
528
528
|
|
|
529
|
-
### notImplemented
|
|
529
|
+
### notImplemented {#notimplemented}
|
|
530
530
|
|
|
531
531
|
> `readonly` **notImplemented**: `501` = `501`
|
|
532
532
|
|
|
@@ -536,7 +536,7 @@ Not Implemented status code.
|
|
|
536
536
|
|
|
537
537
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/501
|
|
538
538
|
|
|
539
|
-
### badGateway
|
|
539
|
+
### badGateway {#badgateway}
|
|
540
540
|
|
|
541
541
|
> `readonly` **badGateway**: `502` = `502`
|
|
542
542
|
|
|
@@ -546,7 +546,7 @@ Bad Gateway status code.
|
|
|
546
546
|
|
|
547
547
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/502
|
|
548
548
|
|
|
549
|
-
### serviceUnavailable
|
|
549
|
+
### serviceUnavailable {#serviceunavailable}
|
|
550
550
|
|
|
551
551
|
> `readonly` **serviceUnavailable**: `503` = `503`
|
|
552
552
|
|
|
@@ -556,7 +556,7 @@ Service Unavailable status code.
|
|
|
556
556
|
|
|
557
557
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/503
|
|
558
558
|
|
|
559
|
-
### gatewayTimeout
|
|
559
|
+
### gatewayTimeout {#gatewaytimeout}
|
|
560
560
|
|
|
561
561
|
> `readonly` **gatewayTimeout**: `504` = `504`
|
|
562
562
|
|
|
@@ -566,7 +566,7 @@ Gateway Timeout status code.
|
|
|
566
566
|
|
|
567
567
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/504
|
|
568
568
|
|
|
569
|
-
### httpVersionNotSupported
|
|
569
|
+
### httpVersionNotSupported {#httpversionnotsupported}
|
|
570
570
|
|
|
571
571
|
> `readonly` **httpVersionNotSupported**: `505` = `505`
|
|
572
572
|
|
|
@@ -576,7 +576,7 @@ HTTP Version Not Supported status code.
|
|
|
576
576
|
|
|
577
577
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/505
|
|
578
578
|
|
|
579
|
-
### variantAlsoNegotiates
|
|
579
|
+
### variantAlsoNegotiates {#variantalsonegotiates}
|
|
580
580
|
|
|
581
581
|
> `readonly` **variantAlsoNegotiates**: `506` = `506`
|
|
582
582
|
|
|
@@ -586,7 +586,7 @@ Variant Also Negotiates status code.
|
|
|
586
586
|
|
|
587
587
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/506
|
|
588
588
|
|
|
589
|
-
### insufficientStorage
|
|
589
|
+
### insufficientStorage {#insufficientstorage}
|
|
590
590
|
|
|
591
591
|
> `readonly` **insufficientStorage**: `507` = `507`
|
|
592
592
|
|
|
@@ -596,7 +596,7 @@ Insufficient Storage status code.
|
|
|
596
596
|
|
|
597
597
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/507
|
|
598
598
|
|
|
599
|
-
### loopDetected
|
|
599
|
+
### loopDetected {#loopdetected}
|
|
600
600
|
|
|
601
601
|
> `readonly` **loopDetected**: `508` = `508`
|
|
602
602
|
|
|
@@ -606,7 +606,7 @@ Loop Detected status code.
|
|
|
606
606
|
|
|
607
607
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/508
|
|
608
608
|
|
|
609
|
-
### notExtended
|
|
609
|
+
### notExtended {#notextended}
|
|
610
610
|
|
|
611
611
|
> `readonly` **notExtended**: `510` = `510`
|
|
612
612
|
|
|
@@ -616,7 +616,7 @@ Not Extended status code.
|
|
|
616
616
|
|
|
617
617
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/510
|
|
618
618
|
|
|
619
|
-
### networkAuthenticationRequired
|
|
619
|
+
### networkAuthenticationRequired {#networkauthenticationrequired}
|
|
620
620
|
|
|
621
621
|
> `readonly` **networkAuthenticationRequired**: `511` = `511`
|
|
622
622
|
|