@twin.org/web 0.0.3-next.3 → 0.0.3-next.31

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