@alwatr/nanotron-api-server 4.0.0-alpha.2 → 4.0.0

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/type.d.ts CHANGED
@@ -15,13 +15,13 @@ export type ErrorResponse = {
15
15
  errorMessage: string;
16
16
  meta?: Json;
17
17
  };
18
- export type RouteHandler = (clientRequest: NanotronClientRequest, serverResponse: NanotronServerResponse, sharedMeta: Dictionary) => MaybePromise<void>;
18
+ export type RouteHandler<TSharedMeta extends Dictionary = Dictionary> = (clientRequest: NanotronClientRequest<TSharedMeta>, serverResponse: NanotronServerResponse, sharedMeta: TSharedMeta) => MaybePromise<void>;
19
19
  export type NativeClientRequest = IncomingMessage;
20
20
  export type NativeServerResponse = ServerResponse;
21
21
  /**
22
22
  * Configuration options for defining a route.
23
23
  */
24
- export interface DefineRouteOption {
24
+ export interface DefineRouteOption<TSharedMeta extends Dictionary = Dictionary> {
25
25
  /**
26
26
  * The HTTP method for this route.
27
27
  */
@@ -39,15 +39,15 @@ export interface DefineRouteOption {
39
39
  /**
40
40
  * The functions call before the main handler.
41
41
  */
42
- preHandlers?: RouteHandler[];
42
+ preHandlers?: RouteHandler<TSharedMeta>[];
43
43
  /**
44
44
  * The function to handle requests to this route.
45
45
  */
46
- handler: RouteHandler;
46
+ handler: RouteHandler<TSharedMeta>;
47
47
  /**
48
48
  * The functions call after the main handler.
49
49
  */
50
- postHandlers?: RouteHandler[];
50
+ postHandlers?: RouteHandler<TSharedMeta>[];
51
51
  /**
52
52
  * The maximum size of the request body in bytes.
53
53
  *
@@ -182,4 +182,628 @@ export interface HttpResponseHeaders {
182
182
  'www-authenticate'?: string;
183
183
  [headerName: Lowercase<string>]: string | string[] | number | undefined;
184
184
  }
185
+ /**
186
+ * Represents the collection of all HTTP Request headers.
187
+ */
188
+ export interface HttpRequestHeaders {
189
+ /**
190
+ * Content-Types that are acceptable for the response.
191
+ *
192
+ * Example: `accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,*\/*;q=0.8'`
193
+ */
194
+ accept?: string;
195
+ /**
196
+ * Character sets that are acceptable.
197
+ *
198
+ * Example: `accept-charset: 'utf-8, iso-8859-1;q=0.5'`
199
+ */
200
+ 'accept-charset'?: string;
201
+ /**
202
+ * List of acceptable encodings.
203
+ *
204
+ * Example: `accept-encoding: 'gzip, deflate, br'`
205
+ */
206
+ 'accept-encoding'?: string;
207
+ /**
208
+ * List of acceptable languages for the response.
209
+ *
210
+ * Example: `accept-language: 'en-US,en;q=0.5'`
211
+ */
212
+ 'accept-language'?: string;
213
+ /**
214
+ * Authentication credentials for HTTP authentication.
215
+ *
216
+ * Example: `authorization: 'Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=='`
217
+ */
218
+ authorization?: string;
219
+ /**
220
+ * Used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
221
+ *
222
+ * Example: `cache-control: 'no-cache'`
223
+ */
224
+ 'cache-control'?: string;
225
+ /**
226
+ * The type of encoding used on the data.
227
+ *
228
+ * Example: `content-encoding: 'gzip'`
229
+ */
230
+ 'content-encoding'?: string;
231
+ /**
232
+ * The natural language or languages of the intended audience for the enclosed content.
233
+ *
234
+ * Example: `content-language: 'en-US'`
235
+ */
236
+ 'content-language'?: string;
237
+ /**
238
+ * The length of the request body in octets (8-bit bytes).
239
+ *
240
+ * Example: `content-length: '1234'`
241
+ */
242
+ 'content-length'?: string;
243
+ /**
244
+ * An alternate location for the returned data (like a redirect).
245
+ *
246
+ * Example: `content-location: '/index.html'`
247
+ */
248
+ 'content-location'?: string;
249
+ /**
250
+ * A Base64-encoded binary MD5 sum of the content of the request body.
251
+ *
252
+ * Example: `content-md5: 'Q2hlY2sgSW50ZWdyaXR5IQ=='`
253
+ */
254
+ 'content-md5'?: string;
255
+ /**
256
+ * The MIME type of the body of the request (used with POST and PUT requests).
257
+ *
258
+ * Example: `content-type: 'application/x-www-form-urlencoded'`
259
+ */
260
+ 'content-type'?: string;
261
+ /**
262
+ * An HTTP cookie previously sent by the server with `Set-Cookie`.
263
+ *
264
+ * Example: `cookie: 'sessionid=38afes7a8'`
265
+ */
266
+ cookie?: string;
267
+ /**
268
+ * The date and time that the message was originated (in "HTTP-date" format as defined by RFC 7231).
269
+ *
270
+ * Example: `date: 'Sun, 06 Nov 1994 08:49:37 GMT'`
271
+ */
272
+ date?: string;
273
+ /**
274
+ * The email address of the user making the request.
275
+ *
276
+ * Example: `from: 'user@example.com'`
277
+ */
278
+ from?: string;
279
+ /**
280
+ * The domain name of the server (for virtual hosting), and the TCP port number on which the server is listening.
281
+ * The port number may be omitted if the port is the standard port for the service requested.
282
+ *
283
+ * Example: `host: 'en.wikipedia.org:8080'`
284
+ */
285
+ host?: string;
286
+ /**
287
+ * Only send the response if the entity has not been modified since a specific time.
288
+ *
289
+ * Example: `if-modified-since: 'Sat, 29 Oct 1994 19:43:31 GMT'`
290
+ */
291
+ 'if-modified-since'?: string;
292
+ /**
293
+ * Allows a 304 Not Modified to be returned if content is unchanged.
294
+ *
295
+ * Example: `if-none-match: '"737060cd8c284d8af7ad3082f209582d"'`
296
+ */
297
+ 'if-none-match'?: string;
298
+ /**
299
+ * If the entity is unchanged, send me the part(s) that I am missing; otherwise, send me the entire new entity.
300
+ *
301
+ * Example: `if-range: '"737060cd8c284d8af7ad3082f209582d"'`
302
+ */
303
+ 'if-range'?: string;
304
+ /**
305
+ * Only send the response if the entity has been modified since a specific time.
306
+ *
307
+ * Example: `if-unmodified-since: 'Sat, 29 Oct 1994 19:43:31 GMT'`
308
+ */
309
+ 'if-unmodified-since'?: string;
310
+ /**
311
+ * Limit the number of times the message can be forwarded through proxies or gateways.
312
+ *
313
+ * Example: `max-forwards: '10'`
314
+ */
315
+ 'max-forwards'?: string;
316
+ /**
317
+ * Implementation-specific headers that may have various effects anywhere along the request-response chain.
318
+ *
319
+ * Example: `pragma: 'no-cache'`
320
+ */
321
+ pragma?: string;
322
+ /**
323
+ * Authorization credentials for connecting to a proxy.
324
+ *
325
+ * Example: `proxy-authorization: 'Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=='`
326
+ */
327
+ 'proxy-authorization'?: string;
328
+ /**
329
+ * Request only part of an entity. Bytes are numbered from 0.
330
+ *
331
+ * Example: `range: 'bytes=500-999'`
332
+ */
333
+ range?: string;
334
+ /**
335
+ * This is the address of the previous web page from which a link to the currently requested page was followed.
336
+ * (The word "referrer" is misspelled in the RFC as well as in most implementations.)
337
+ *
338
+ * Example: `referer: 'https://en.wikipedia.org/wiki/Main_Page'`
339
+ */
340
+ referer?: string;
341
+ /**
342
+ * The user agent string of the user agent.
343
+ *
344
+ * Example: `user-agent: 'Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20100101 Firefox/21.0'`
345
+ */
346
+ 'user-agent'?: string;
347
+ /**
348
+ * Ask the server to upgrade to another protocol.
349
+ *
350
+ * Example: `upgrade: 'h2c, HTTPS/1.3, IRC/6.9, RTA/x11, websocket'`
351
+ */
352
+ upgrade?: string;
353
+ /**
354
+ * Informs the server of proxies through which the request was sent.
355
+ *
356
+ * Example: `via: '1.0 fred, 1.1 example.com (Apache/1.1)'`
357
+ */
358
+ via?: string;
359
+ /**
360
+ * A general warning about possible problems with the entity body.
361
+ *
362
+ * Example: `warning: '199 Miscellaneous warning'`
363
+ */
364
+ warning?: string;
365
+ /**
366
+ * Tells all caching mechanisms from server to client whether they may cache this object.
367
+ * It is similar to Cache-Control: no-cache, but only applies to proxies and does not apply to private caches.
368
+ *
369
+ * Example: `age: '12'`
370
+ */
371
+ age?: string;
372
+ /**
373
+ * Appends " trailers " to the list of acceptable transfer encodings in the `TE` header.
374
+ *
375
+ * Example: `allow: 'GET, HEAD'`
376
+ */
377
+ allow?: string;
378
+ /**
379
+ * What partial content range types this server supports via the `Range` header.
380
+ *
381
+ * Example: `a-im: 'feed'`
382
+ */
383
+ 'a-im'?: string;
384
+ /**
385
+ * Alternative addresses (e-mail) to reply to for user agents that support multiple reply addresses
386
+ * in the `From` header field
387
+ *
388
+ * Example: `alt-svc: 'h3-29=":443"; ma=86400, h3-T051=":443"; ma=86400, h3-Q050=":443"; ma=86400,
389
+ * h3-Q046=":443"; ma=86400, h3-Q043=":443"; ma=86400, quic=":443"; ma=86400; v="43,46"'`
390
+ */
391
+ 'alt-used'?: string;
392
+ /**
393
+ * Authentication credentials for HTTP authentication
394
+ *
395
+ * Example: `apply-to-redirect-ref: 'false'`
396
+ */
397
+ 'apply-to-redirect-ref'?: string;
398
+ /**
399
+ * Used in redirection, or when a new resource has been created. This refresh redirects after 5 seconds.
400
+ * This is a proprietary, non-standard header extension introduced by Netscape and supported by most web browsers.
401
+ *
402
+ * Example: `authentication-control: 'max-age=3600'`
403
+ */
404
+ 'authentication-info'?: string;
405
+ /**
406
+ * An HTTP cookie previously sent by the server with `Set-Cookie` (sent when connecting to a proxy)
407
+ *
408
+ * Example: `connection: 'keep-alive'`
409
+ */
410
+ connection?: string;
411
+ /**
412
+ * The MIME type of the body of the request (used with POST and PUT requests)
413
+ *
414
+ * Example: `content-range: 'bytes 200-1000/67589'`
415
+ */
416
+ 'content-range'?: string;
417
+ /**
418
+ * The date and time that the message was sent (in "HTTP-date" format as defined by RFC 7231)
419
+ *
420
+ * Example: `content-security-policy: 'default-src 'self'; img-src *'`
421
+ */
422
+ 'content-security-policy'?: string;
423
+ /**
424
+ * Control options for the current connection and list of hop-by-hop response fields.
425
+ *
426
+ * Example: `content-security-policy-report-only: 'default-src 'self'; report-uri /csp-violation-report-endpoint/'`
427
+ */
428
+ 'content-security-policy-report-only'?: string;
429
+ /**
430
+ * An identifier for a specific dialog in the browser (for cross-document communication), such as prompting the user
431
+ * for a username and password
432
+ *
433
+ * Example: `cross-origin-embedder-policy: 'require-corp'`
434
+ */
435
+ 'cross-origin-embedder-policy'?: string;
436
+ /**
437
+ * An optional token returned by an origin in response to a preflight request
438
+ * that includes the `Access-Control-Request-Headers` to indicate that the actual request can include
439
+ * those headers.
440
+ *
441
+ * Example: `cross-origin-opener-policy: 'same-origin'`
442
+ */
443
+ 'cross-origin-opener-policy'?: string;
444
+ /**
445
+ * The destination of a message (e-mail)
446
+ *
447
+ * Example: `cross-origin-resource-policy: 'cross-origin'`
448
+ */
449
+ 'cross-origin-resource-policy'?: string;
450
+ /**
451
+ * Requests HTTP Public Key Pinning (HPKP) to associate a specific cryptographic public key with a certain web server
452
+ * to decrease the risk of MITM attacks with forged certificates. Deprecated and removed from Browsers
453
+ *
454
+ * Example: `device-memory: '0.25'`
455
+ */
456
+ 'device-memory'?: string;
457
+ /**
458
+ * Used to identify the protocol at the application layer of the OSI model
459
+ *
460
+ * Example: `dnt: '1'`
461
+ */
462
+ dnt?: string;
463
+ /**
464
+ * The `Expect` HTTP header indicates expectations that need to be fulfilled by the server in order to properly
465
+ * handle the request.
466
+ *
467
+ * Example: `downlink: '10'`
468
+ */
469
+ downlink?: string;
470
+ /**
471
+ * Specifies the effective connection type the user agent has to the network.
472
+ *
473
+ * Example: `ect: '4g'`
474
+ */
475
+ ect?: string;
476
+ /**
477
+ * The `Early-Data` header indicates a request that includes an Early Data body
478
+ *
479
+ * Example: `early-data: '1'`
480
+ */
481
+ 'early-data'?: string;
482
+ /**
483
+ * The `Expect-CT` header is used by a server to indicate that browsers should evaluate connections to the host
484
+ * for Certificate Transparency compliance and report failures to the specified URI. Deprecated and removed from browsers.
485
+ *
486
+ * Example: `expect: '100-continue'`
487
+ */
488
+ 'expect-ct'?: string;
489
+ /**
490
+ * Additional information about the client or user agent, typically for statistical purposes
491
+ * or for determining the capabilities of the client software
492
+ *
493
+ * Example: `expect-ct: 'max-age=86400, report-uri="https://report-uri.example.com/report"'`
494
+ */
495
+ forwarded?: string;
496
+ /**
497
+ * The `Keep-Alive` general header allows the sender to hint about how the connection may be used to
498
+ * set a timeout and a maximum amount of requests.
499
+ *
500
+ * Example: `keep-alive: 'timeout=5, max=1000'`
501
+ */
502
+ 'keep-alive'?: string;
503
+ /**
504
+ * Specifies the preferred maximum estimated round trip time (rtt) of the connection
505
+ *
506
+ * Example: `large-allocation: '1'`
507
+ */
508
+ 'large-allocation'?: string;
509
+ /**
510
+ * The `Last-Event-ID` header identifies the last event ID processed by the client.
511
+ *
512
+ * Example: `last-event-id: '123'`
513
+ */
514
+ 'last-event-id'?: string;
515
+ /**
516
+ * An arbitrary, opaque byte sequence used for linking multiple requests together
517
+ *
518
+ * Example: `link: '</feed.xml>; rel="alternate"'`
519
+ */
520
+ link?: string;
521
+ /**
522
+ * Used with the Location response header to indicate the identifier of the payload body sent in the request
523
+ *
524
+ * Example: `location: '/new/document'`
525
+ */
526
+ origin?: string;
527
+ /**
528
+ * The `Ping-From` header specifies a URI where a pong response may be sent.
529
+ *
530
+ * Example: `ping-from: 'https://example.com/pong'`
531
+ */
532
+ 'ping-from'?: string;
533
+ /**
534
+ * The `Ping-To` header specifies a URI that will accept a pong response.
535
+ *
536
+ * Example: `ping-to: 'https://example.com/pong'`
537
+ */
538
+ 'ping-to'?: string;
539
+ /**
540
+ * Initiates an HTTP 2 Server Push. This is a request for the server to push the given resources to the client in
541
+ * anticipation of their use.
542
+ *
543
+ * Example: `push-policy: 'push_critical_resources_first'`
544
+ */
545
+ 'push-policy'?: string;
546
+ /**
547
+ * The `Purpose` header is used to indicate the purpose of the present request
548
+ * (such as prefetch, prerender, or an actual browse).
549
+ *
550
+ * Example: `purpose: 'prefetch'`
551
+ */
552
+ purpose?: string;
553
+ /**
554
+ * Used to indicate the part of a document to return.
555
+ *
556
+ * Example: `referrer-policy: 'no-referrer'`
557
+ */
558
+ 'referrer-policy'?: string;
559
+ /**
560
+ * The `Retry-After` response HTTP header indicates how long the user agent should wait
561
+ * before making a follow-up request.
562
+ *
563
+ * Example: `retry-after: '3600'`
564
+ */
565
+ 'retry-after'?: string;
566
+ /**
567
+ * The `Save-Data` client hint request header indicates the user's preference for reduced data usage.
568
+ *
569
+ * Example: `save-data: 'on'`
570
+ */
571
+ 'save-data'?: string;
572
+ /**
573
+ * The `Sec-Fetch-Dest` header indicates the request's destination. It can be one of the following values:
574
+ * - audio: An audio file.
575
+ * - audioworklet: An audio worklet.
576
+ * - document: A document.
577
+ * - embed: An embedded resource.
578
+ * - empty: An empty response (e.g., in response to a HEAD request).
579
+ * - font: A font file.
580
+ * - frame: An iframe.
581
+ * - image: An image file.
582
+ * - manifest: A manifest file.
583
+ * - object: An object or an EMBED element.
584
+ * - paintworklet: A paint worklet.
585
+ * - report: A report.
586
+ * - script: A script.
587
+ * - serviceworker: A service worker.
588
+ * - sharedworker: A shared worker.
589
+ * - style: A stylesheet.
590
+ * - track: A track file.
591
+ * - video: A video file.
592
+ * - worker: A dedicated worker.
593
+ * - xslt: An XSLT stylesheet.
594
+ *
595
+ * Example: `sec-fetch-dest: 'image'`
596
+ */
597
+ 'sec-fetch-dest'?: string;
598
+ /**
599
+ * The `Sec-Fetch-Mode` header indicates how the resource was fetched.
600
+ * It can be one of the following values:
601
+ * - cors: A cross-origin request using the CORS protocol.
602
+ * - navigate: A navigation request.
603
+ * - nested-navigate: A nested navigation request.
604
+ * - no-cors: A simple cross-origin request that does not use CORS.
605
+ * - same-origin: A same-origin request.
606
+ * - websocket: A WebSocket request.
607
+ *
608
+ * Example: `sec-fetch-mode: 'cors'`
609
+ */
610
+ 'sec-fetch-mode'?: string;
611
+ /**
612
+ * The `Sec-Fetch-Site` header indicates the relationship between the site
613
+ * making the request and the site hosting the resource.
614
+ * It can be one of the following values:
615
+ * - cross-site: The request is made to a different site than the one the request
616
+ * originated from, including when the first-party and third-party sites have the same owner.
617
+ * - same-origin: The request is made to the same site (the same scheme, host, and port).
618
+ * - same-site: The request is made to a different site, but both sites share the same
619
+ * registered domain name (eTLD+1).
620
+ * - none: The request is made to a data URL or Blob URL.
621
+ *
622
+ * Example: `sec-fetch-site: 'cross-site'`
623
+ */
624
+ 'sec-fetch-site'?: string;
625
+ /**
626
+ * The `Sec-Fetch-User` header indicates whether the resource request was initiated by a user gesture or not.
627
+ * It can be one of the following values:
628
+ * - ?1: The request was initiated by a user gesture.
629
+ * - ?0: The request was not initiated by a user gesture.
630
+ *
631
+ * Example: `sec-fetch-user: '?1'`
632
+ */
633
+ 'sec-fetch-user'?: string;
634
+ /**
635
+ * The `Sec-GPC` HTTP header is a signal that the user prefers a Global Privacy Control setting
636
+ * of 1, meaning "Do Not Sell or Share My Personal Information."
637
+ *
638
+ * Example: `sec-gpc: '1'`
639
+ */
640
+ 'sec-gpc'?: string;
641
+ /**
642
+ * The `Sec-WebSocket-Accept` header field is used in the WebSocket opening handshake.
643
+ * It is sent from the server to the client to confirm that the server is willing to initiate a WebSocket connection.
644
+ *
645
+ * Example: `sec-websocket-accept: 's3pPLMBiTxaQ9kYGzzhZRbK+xOo='`
646
+ */
647
+ 'sec-websocket-accept'?: string;
648
+ /**
649
+ * The `Sec-WebSocket-Extensions` header field is used in the WebSocket opening handshake.
650
+ * It is sent from the client to the server to indicate which extensions it would like to use,
651
+ * and from the server to the client to indicate which extensions the server is willing to use.
652
+ *
653
+ * Example: `sec-websocket-extensions: 'permessage-deflate; client_max_window_bits'`
654
+ */
655
+ 'sec-websocket-extensions'?: string;
656
+ /**
657
+ * The `Sec-WebSocket-Key` header field is used in the WebSocket opening handshake.
658
+ * It is sent from the client to the server to provide a random value that the server
659
+ * will use to generate the `Sec-WebSocket-Accept` header field.
660
+ *
661
+ * Example: `sec-websocket-key: 'dGhlIHNhbXBsZSBub25jZQ=='`
662
+ */
663
+ 'sec-websocket-key'?: string;
664
+ /**
665
+ * The `Sec-WebSocket-Protocol` header field is used in the WebSocket opening handshake.
666
+ * It is sent from the client to the server to indicate which subprotocols it would like to use,
667
+ * and from the server to the client to indicate which subprotocol the server has selected.
668
+ *
669
+ * Example: `sec-websocket-protocol: 'chat, superchat'`
670
+ */
671
+ 'sec-websocket-protocol'?: string;
672
+ /**
673
+ * The `Sec-WebSocket-Version` header field is used in the WebSocket opening handshake.
674
+ * It is sent from the client to the server to indicate which version of the WebSocket protocol it is using.
675
+ *
676
+ * Example: `sec-websocket-version: '13'`
677
+ */
678
+ 'sec-websocket-version'?: string;
679
+ /**
680
+ * The `Server` header field contains information about the software used by the origin server
681
+ * to handle the request.
682
+ *
683
+ * Example: `server: 'Apache/2.4.1 (Unix)'`
684
+ */
685
+ server?: string;
686
+ /**
687
+ * The `Service-Worker-Navigation-Preload` header is used to control the behavior of
688
+ * service worker navigation preloads.
689
+ *
690
+ * Example: `service-worker-navigation-preload: 'true'`
691
+ */
692
+ 'service-worker-navigation-preload'?: string;
693
+ /**
694
+ * The `SourceMap` or `X-SourceMap` HTTP header links a generated code file (such as a JavaScript or CSS file)
695
+ * to an original source code file, enabling developers to debug the generated code
696
+ * in the context of the original source code.
697
+ *
698
+ * Example: `sourcemap: '/path/to/file.js.map'`
699
+ */
700
+ sourcemap?: string;
701
+ /**
702
+ * The `Strict-Transport-Security` (HSTS) response header informs browsers that a website
703
+ * should only be accessed using HTTPS, and that any future attempts to access it using HTTP should automatically
704
+ * be converted to HTTPS.
705
+ *
706
+ * Example: `strict-transport-security: 'max-age=31536000; includeSubDomains'`
707
+ */
708
+ 'strict-transport-security'?: string;
709
+ /**
710
+ * The `TE` header specifies the transfer encodings that the user agent is willing to accept
711
+ * in the response and indicates a preference for chunked transfer encoding if the server supports it.
712
+ *
713
+ * Example: `te: 'trailers, deflate'`
714
+ */
715
+ te?: string;
716
+ /**
717
+ * The `Timing-Allow-Origin` response header specifies origins that are allowed to see values of attributes
718
+ * retrieved via features of the Resource Timing API, which would otherwise be reported as zero due to cross-origin restrictions.
719
+ *
720
+ * Example: `timing-allow-origin: 'https://www.example.com'`
721
+ */
722
+ 'timing-allow-origin'?: string;
723
+ /**
724
+ * The `Trailer` general header indicates that the given set of header fields
725
+ * will be present in the trailer of a message encoded with chunked transfer encoding.
726
+ *
727
+ * Example: `trailer: 'Expires'`
728
+ */
729
+ trailer?: string;
730
+ /**
731
+ * The `Transfer-Encoding` header field lists the transfer encodings applied to the message body
732
+ * in order to ensure safe and proper transfer of the message.
733
+ *
734
+ * Example: `transfer-encoding: 'chunked'`
735
+ */
736
+ 'transfer-encoding'?: string;
737
+ /**
738
+ * The `Upgrade-Insecure-Requests` header sends a signal to the server expressing the client’s preference
739
+ * for an encrypted and authenticated response, and that it can successfully handle the upgrade-insecure-requests CSP directive.
740
+ *
741
+ * Example: `upgrade-insecure-requests: '1'`
742
+ */
743
+ 'upgrade-insecure-requests'?: string;
744
+ /**
745
+ * The `Want-Digest` header field specifies one or more digest algorithms that the client would like to
746
+ * receive applied to the message body of a response.
747
+ *
748
+ * Example: `want-digest: 'SHA-256'`
749
+ */
750
+ 'want-digest'?: string;
751
+ /**
752
+ * The `X-Content-Type-Options` response HTTP header indicates whether or not the browser should sniff (determine)
753
+ * the MIME type of a file.
754
+ *
755
+ * Example: `x-content-type-options: 'nosniff'`
756
+ */
757
+ 'x-content-type-options'?: string;
758
+ /**
759
+ * The `X-DNS-Prefetch-Control` HTTP header controls DNS prefetching, a feature by which browsers proactively
760
+ * perform domain name resolution on both links that the user may choose to follow as well as URLs for items referenced
761
+ * by the document, including images, scripts, and style sheets.
762
+ *
763
+ * Example: `x-dns-prefetch-control: 'off'`
764
+ */
765
+ 'x-dns-prefetch-control'?: string;
766
+ /**
767
+ * The `X-Forwarded-For` (XFF) header is a de-facto standard header for identifying the originating IP address
768
+ * of a client connecting to a web server through an HTTP proxy or a load balancer.
769
+ *
770
+ * Example: `x-forwarded-for: 'client1, proxy1, proxy2'`
771
+ */
772
+ 'x-forwarded-for'?: string;
773
+ /**
774
+ * The `X-Forwarded-Host` (XFH) header is a de-facto standard header for identifying the original host requested by the client
775
+ * in the Host HTTP request header, since the Host header is usually overwritten by proxies.
776
+ *
777
+ * Example: `x-forwarded-host: 'en.wikipedia.org'`
778
+ */
779
+ 'x-forwarded-host'?: string;
780
+ /**
781
+ * The `X-Forwarded-Proto` (XFP) header is a de-facto standard header for identifying the protocol (HTTP or HTTPS) that a client
782
+ * used to connect to your proxy or load balancer.
783
+ *
784
+ * Example: `x-forwarded-proto: 'https'`
785
+ */
786
+ 'x-forwarded-proto'?: string;
787
+ /**
788
+ * The `X-Frame-Options` HTTP response header can be used to indicate whether or not a browser should be allowed
789
+ * to render a page in a `<frame>`, `<iframe>`, `<embed>` or `<object>`.
790
+ *
791
+ * Example: `x-frame-options: 'SAMEORIGIN'`
792
+ */
793
+ 'x-frame-options'?: string;
794
+ /**
795
+ * The `X-Requested-With` header is commonly used to identify Ajax requests.
796
+ * Most JavaScript frameworks send this header with requests.
797
+ *
798
+ * Example: `x-requested-with: 'XMLHttpRequest'`
799
+ */
800
+ 'x-requested-with'?: string;
801
+ /**
802
+ * The `X-XSS-Protection` HTTP header is a basic protection against cross-site scripting (XSS) attacks for older browsers.
803
+ *
804
+ * Example: `x-xss-protection: '1; mode=block'`
805
+ */
806
+ 'x-xss-protection'?: string;
807
+ [headerName: Lowercase<string>]: string | string[] | number | undefined;
808
+ }
185
809
  //# sourceMappingURL=type.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../src/type.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../src/type.ts"],"names":[],"mappings":"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"}