@ms-cloudpack/cli 0.77.28 → 0.77.29

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.
@@ -216,6 +216,106 @@
216
216
  "HttpsConfig": {
217
217
  "type": "object",
218
218
  "properties": {
219
+ "requestTimeout": {
220
+ "type": "number",
221
+ "description": "Sets the timeout value in milliseconds for receiving the entire request from the client.",
222
+ "default": 300000
223
+ },
224
+ "joinDuplicateHeaders": {
225
+ "type": "boolean",
226
+ "description": "It joins the field line values of multiple headers in a request with `, ` instead of discarding the duplicates.",
227
+ "default": false
228
+ },
229
+ "keepAliveTimeout": {
230
+ "type": "number",
231
+ "description": "The number of milliseconds of inactivity a server needs to wait for additional incoming data, after it has finished writing the last response, before a socket will be destroyed.",
232
+ "default": 5000
233
+ },
234
+ "connectionsCheckingInterval": {
235
+ "type": "number",
236
+ "description": "Sets the interval value in milliseconds to check for request and headers timeout in incomplete requests.",
237
+ "default": 30000
238
+ },
239
+ "headersTimeout": {
240
+ "type": "number",
241
+ "description": "Sets the timeout value in milliseconds for receiving the complete HTTP headers from the client. See {@link Server.headersTimeout } for more information.",
242
+ "default": 60000
243
+ },
244
+ "highWaterMark": {
245
+ "type": "number",
246
+ "description": "Optionally overrides all `socket`s' `readableHighWaterMark` and `writableHighWaterMark`. This affects `highWaterMark` property of both `IncomingMessage` and `ServerResponse`. Default:"
247
+ },
248
+ "insecureHTTPParser": {
249
+ "type": "boolean",
250
+ "description": "Use an insecure HTTP parser that accepts invalid HTTP headers when `true`. Using the insecure parser should be avoided. See --insecure-http-parser for more information.",
251
+ "default": false
252
+ },
253
+ "maxHeaderSize": {
254
+ "type": "number",
255
+ "description": "Optionally overrides the value of `--max-http-header-size` for requests received by this server, i.e. the maximum length of request headers in bytes.",
256
+ "default": 16384
257
+ },
258
+ "noDelay": {
259
+ "type": "boolean",
260
+ "description": "If set to `true`, it disables the use of Nagle's algorithm immediately after a new incoming connection is received.",
261
+ "default": true
262
+ },
263
+ "requireHostHeader": {
264
+ "type": "boolean",
265
+ "description": "If set to `true`, it forces the server to respond with a 400 (Bad Request) status code to any HTTP/1.1 request message that lacks a Host header (as mandated by the specification).",
266
+ "default": true
267
+ },
268
+ "keepAlive": {
269
+ "type": "boolean",
270
+ "description": "If set to `true`, it enables keep-alive functionality on the socket immediately after a new incoming connection is received, similarly on what is done in `socket.setKeepAlive([enable][, initialDelay])`.",
271
+ "default": false
272
+ },
273
+ "keepAliveInitialDelay": {
274
+ "type": "number",
275
+ "description": "If set to a positive number, it sets the initial delay before the first keepalive probe is sent on an idle socket.",
276
+ "default": 0
277
+ },
278
+ "uniqueHeaders": {
279
+ "type": "array",
280
+ "items": {
281
+ "anyOf": [
282
+ {
283
+ "type": "string"
284
+ },
285
+ {
286
+ "type": "array",
287
+ "items": {
288
+ "type": "string"
289
+ }
290
+ }
291
+ ]
292
+ },
293
+ "description": "A list of response headers that should be sent only once. If the header's value is an array, the items will be joined using `; `."
294
+ },
295
+ "rejectNonStandardBodyWrites": {
296
+ "type": "boolean",
297
+ "description": "If set to `true`, an error is thrown when writing to an HTTP response which does not have a body.",
298
+ "default": false
299
+ },
300
+ "handshakeTimeout": {
301
+ "type": "number",
302
+ "description": "Abort the connection if the SSL/TLS handshake does not finish in the specified number of milliseconds. A 'tlsClientError' is emitted on the tls.Server object whenever a handshake times out. Default: 120000 (120 seconds)."
303
+ },
304
+ "sessionTimeout": {
305
+ "type": "number",
306
+ "description": "The number of seconds after which a TLS session created by the server will no longer be resumable. See Session Resumption for more information. Default: 300."
307
+ },
308
+ "ticketKeys": {
309
+ "not": {},
310
+ "description": "48-bytes of cryptographically strong pseudo-random data."
311
+ },
312
+ "pskCallback": {
313
+ "not": {}
314
+ },
315
+ "pskIdentityHint": {
316
+ "type": "string",
317
+ "description": "hint to send to a client to help with selecting the identity during TLS-PSK negotiation. Will be ignored in TLS 1.3. Upon failing to set pskIdentityHint `tlsClientError` will be emitted with `ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED` code."
318
+ },
219
319
  "ALPNCallback": {
220
320
  "not": {},
221
321
  "description": "If set, this will be called when a client opens a connection using the ALPN extension. One argument will be passed to the callback: an object containing `servername` and `protocols` fields, respectively containing the server name from the SNI extension (if any) and an array of ALPN protocol name strings. The callback must return either one of the strings listed in `protocols`, which will be returned to the client as the selected ALPN protocol, or `undefined`, to reject the connection with a fatal alert. If a string is returned that does not match one of the client's ALPN protocols, an error will be thrown. This option cannot be used with the `ALPNProtocols` option, and setting both options will throw an error."
@@ -364,22 +464,6 @@
364
464
  "type": "string",
365
465
  "description": "Opaque identifier used by servers to ensure session state is not shared between applications. Unused by clients."
366
466
  },
367
- "ticketKeys": {
368
- "not": {},
369
- "description": "48-bytes of cryptographically strong pseudo-random data. See Session Resumption for more information."
370
- },
371
- "sessionTimeout": {
372
- "type": "number",
373
- "description": "The number of seconds after which a TLS session created by the server will no longer be resumable. See Session Resumption for more information. Default: 300."
374
- },
375
- "handshakeTimeout": {
376
- "type": "number",
377
- "description": "Abort the connection if the SSL/TLS handshake does not finish in the specified number of milliseconds. A 'tlsClientError' is emitted on the tls.Server object whenever a handshake times out. Default: 120000 (120 seconds)."
378
- },
379
- "pskIdentityHint": {
380
- "type": "string",
381
- "description": "hint to send to a client to help with selecting the identity during TLS-PSK negotiation. Will be ignored in TLS 1.3. Upon failing to set pskIdentityHint `tlsClientError` will be emitted with `ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED` code."
382
- },
383
467
  "secureContext": {
384
468
  "$ref": "#/definitions/SecureContext",
385
469
  "description": "An optional TLS context object from tls.createSecureContext()"
@@ -402,10 +486,7 @@
402
486
  }
403
487
  },
404
488
  {
405
- "type": "array",
406
- "items": {
407
- "not": {}
408
- }
489
+ "$ref": "#/definitions/global.NodeJS.ArrayBufferView"
409
490
  }
410
491
  ],
411
492
  "description": "An array of strings or a Buffer naming possible ALPN protocols. (Protocols should be ordered by their priority.)"
@@ -428,88 +509,6 @@
428
509
  "type": "boolean",
429
510
  "description": "Indicates whether the socket should be paused on incoming connections.",
430
511
  "default": false
431
- },
432
- "noDelay": {
433
- "type": "boolean",
434
- "description": "If set to `true`, it disables the use of Nagle's algorithm immediately after a new incoming connection is received.",
435
- "default": false
436
- },
437
- "keepAlive": {
438
- "type": "boolean",
439
- "description": "If set to `true`, it enables keep-alive functionality on the socket immediately after a new incoming connection is received, similarly on what is done in `socket.setKeepAlive([enable][, initialDelay])`.",
440
- "default": false
441
- },
442
- "keepAliveInitialDelay": {
443
- "type": "number",
444
- "description": "If set to a positive number, it sets the initial delay before the first keepalive probe is sent on an idle socket.",
445
- "default": 0
446
- },
447
- "highWaterMark": {
448
- "type": "number",
449
- "description": "Optionally overrides all `net.Socket`s' `readableHighWaterMark` and `writableHighWaterMark`.",
450
- "default": "See [stream.getDefaultHighWaterMark()](https://nodejs.org/docs/latest-v20.x/api/stream.html#streamgetdefaulthighwatermarkobjectmode)."
451
- },
452
- "requestTimeout": {
453
- "type": "number",
454
- "description": "Sets the timeout value in milliseconds for receiving the entire request from the client.",
455
- "default": 300000
456
- },
457
- "joinDuplicateHeaders": {
458
- "type": "boolean",
459
- "description": "It joins the field line values of multiple headers in a request with `, ` instead of discarding the duplicates.",
460
- "default": false
461
- },
462
- "keepAliveTimeout": {
463
- "type": "number",
464
- "description": "The number of milliseconds of inactivity a server needs to wait for additional incoming data, after it has finished writing the last response, before a socket will be destroyed.",
465
- "default": 5000
466
- },
467
- "connectionsCheckingInterval": {
468
- "type": "number",
469
- "description": "Sets the interval value in milliseconds to check for request and headers timeout in incomplete requests.",
470
- "default": 30000
471
- },
472
- "headersTimeout": {
473
- "type": "number",
474
- "description": "Sets the timeout value in milliseconds for receiving the complete HTTP headers from the client. See {@link Server.headersTimeout } for more information.",
475
- "default": 60000
476
- },
477
- "insecureHTTPParser": {
478
- "type": "boolean",
479
- "description": "Use an insecure HTTP parser that accepts invalid HTTP headers when `true`. Using the insecure parser should be avoided. See --insecure-http-parser for more information.",
480
- "default": false
481
- },
482
- "maxHeaderSize": {
483
- "type": "number",
484
- "description": "Optionally overrides the value of `--max-http-header-size` for requests received by this server, i.e. the maximum length of request headers in bytes.",
485
- "default": 16384
486
- },
487
- "requireHostHeader": {
488
- "type": "boolean",
489
- "description": "If set to `true`, it forces the server to respond with a 400 (Bad Request) status code to any HTTP/1.1 request message that lacks a Host header (as mandated by the specification).",
490
- "default": true
491
- },
492
- "uniqueHeaders": {
493
- "type": "array",
494
- "items": {
495
- "anyOf": [
496
- {
497
- "type": "string"
498
- },
499
- {
500
- "type": "array",
501
- "items": {
502
- "type": "string"
503
- }
504
- }
505
- ]
506
- },
507
- "description": "A list of response headers that should be sent only once. If the header's value is an array, the items will be joined using `; `."
508
- },
509
- "rejectNonStandardBodyWrites": {
510
- "type": "boolean",
511
- "description": "If set to `true`, an error is thrown when writing to an HTTP response which does not have a body.",
512
- "default": false
513
512
  }
514
513
  },
515
514
  "additionalProperties": false,
@@ -568,6 +567,564 @@
568
567
  ],
569
568
  "additionalProperties": false
570
569
  },
570
+ "global.NodeJS.ArrayBufferView": {
571
+ "anyOf": [
572
+ {
573
+ "$ref": "#/definitions/global.NodeJS.TypedArray%3Calias-799158216-76146-76211-799158216-0-217694%3E"
574
+ },
575
+ {
576
+ "type": "object",
577
+ "properties": {
578
+ "buffer": {
579
+ "type": "object",
580
+ "properties": {
581
+ "byteLength": {
582
+ "type": "number",
583
+ "description": "Read-only. The length of the ArrayBuffer (in bytes)."
584
+ }
585
+ },
586
+ "required": [
587
+ "byteLength"
588
+ ],
589
+ "additionalProperties": false,
590
+ "description": "Represents a raw buffer of binary data, which is used to store data for the different typed arrays. ArrayBuffers cannot be read from or written to directly, but can be passed to a typed array or DataView Object to interpret the raw buffer as needed."
591
+ },
592
+ "byteLength": {
593
+ "type": "number"
594
+ },
595
+ "byteOffset": {
596
+ "type": "number"
597
+ }
598
+ },
599
+ "required": [
600
+ "buffer",
601
+ "byteLength",
602
+ "byteOffset"
603
+ ],
604
+ "additionalProperties": false
605
+ }
606
+ ]
607
+ },
608
+ "global.NodeJS.TypedArray<alias-799158216-76146-76211-799158216-0-217694>": {
609
+ "anyOf": [
610
+ {
611
+ "type": "object",
612
+ "properties": {
613
+ "BYTES_PER_ELEMENT": {
614
+ "type": "number",
615
+ "description": "The size in bytes of each element in the array."
616
+ },
617
+ "buffer": {
618
+ "type": "object",
619
+ "properties": {
620
+ "byteLength": {
621
+ "type": "number",
622
+ "description": "Read-only. The length of the ArrayBuffer (in bytes)."
623
+ }
624
+ },
625
+ "required": [
626
+ "byteLength"
627
+ ],
628
+ "additionalProperties": false,
629
+ "description": "The ArrayBuffer instance referenced by the array."
630
+ },
631
+ "byteLength": {
632
+ "type": "number",
633
+ "description": "The length in bytes of the array."
634
+ },
635
+ "byteOffset": {
636
+ "type": "number",
637
+ "description": "The offset in bytes of the array."
638
+ },
639
+ "length": {
640
+ "type": "number",
641
+ "description": "The length of the array."
642
+ }
643
+ },
644
+ "required": [
645
+ "BYTES_PER_ELEMENT",
646
+ "buffer",
647
+ "byteLength",
648
+ "byteOffset",
649
+ "length"
650
+ ],
651
+ "additionalProperties": {
652
+ "type": "number"
653
+ },
654
+ "description": "A typed array of 8-bit unsigned integer values. The contents are initialized to 0. If the requested number of bytes could not be allocated an exception is raised."
655
+ },
656
+ {
657
+ "type": "object",
658
+ "properties": {
659
+ "BYTES_PER_ELEMENT": {
660
+ "type": "number",
661
+ "description": "The size in bytes of each element in the array."
662
+ },
663
+ "buffer": {
664
+ "type": "object",
665
+ "properties": {
666
+ "byteLength": {
667
+ "type": "number",
668
+ "description": "Read-only. The length of the ArrayBuffer (in bytes)."
669
+ }
670
+ },
671
+ "required": [
672
+ "byteLength"
673
+ ],
674
+ "additionalProperties": false,
675
+ "description": "The ArrayBuffer instance referenced by the array."
676
+ },
677
+ "byteLength": {
678
+ "type": "number",
679
+ "description": "The length in bytes of the array."
680
+ },
681
+ "byteOffset": {
682
+ "type": "number",
683
+ "description": "The offset in bytes of the array."
684
+ },
685
+ "length": {
686
+ "type": "number",
687
+ "description": "The length of the array."
688
+ }
689
+ },
690
+ "required": [
691
+ "BYTES_PER_ELEMENT",
692
+ "buffer",
693
+ "byteLength",
694
+ "byteOffset",
695
+ "length"
696
+ ],
697
+ "additionalProperties": {
698
+ "type": "number"
699
+ },
700
+ "description": "A typed array of 8-bit unsigned integer (clamped) values. The contents are initialized to 0. If the requested number of bytes could not be allocated an exception is raised."
701
+ },
702
+ {
703
+ "type": "object",
704
+ "properties": {
705
+ "BYTES_PER_ELEMENT": {
706
+ "type": "number",
707
+ "description": "The size in bytes of each element in the array."
708
+ },
709
+ "buffer": {
710
+ "type": "object",
711
+ "properties": {
712
+ "byteLength": {
713
+ "type": "number",
714
+ "description": "Read-only. The length of the ArrayBuffer (in bytes)."
715
+ }
716
+ },
717
+ "required": [
718
+ "byteLength"
719
+ ],
720
+ "additionalProperties": false,
721
+ "description": "The ArrayBuffer instance referenced by the array."
722
+ },
723
+ "byteLength": {
724
+ "type": "number",
725
+ "description": "The length in bytes of the array."
726
+ },
727
+ "byteOffset": {
728
+ "type": "number",
729
+ "description": "The offset in bytes of the array."
730
+ },
731
+ "length": {
732
+ "type": "number",
733
+ "description": "The length of the array."
734
+ }
735
+ },
736
+ "required": [
737
+ "BYTES_PER_ELEMENT",
738
+ "buffer",
739
+ "byteLength",
740
+ "byteOffset",
741
+ "length"
742
+ ],
743
+ "additionalProperties": {
744
+ "type": "number"
745
+ },
746
+ "description": "A typed array of 16-bit unsigned integer values. The contents are initialized to 0. If the requested number of bytes could not be allocated an exception is raised."
747
+ },
748
+ {
749
+ "type": "object",
750
+ "properties": {
751
+ "BYTES_PER_ELEMENT": {
752
+ "type": "number",
753
+ "description": "The size in bytes of each element in the array."
754
+ },
755
+ "buffer": {
756
+ "type": "object",
757
+ "properties": {
758
+ "byteLength": {
759
+ "type": "number",
760
+ "description": "Read-only. The length of the ArrayBuffer (in bytes)."
761
+ }
762
+ },
763
+ "required": [
764
+ "byteLength"
765
+ ],
766
+ "additionalProperties": false,
767
+ "description": "The ArrayBuffer instance referenced by the array."
768
+ },
769
+ "byteLength": {
770
+ "type": "number",
771
+ "description": "The length in bytes of the array."
772
+ },
773
+ "byteOffset": {
774
+ "type": "number",
775
+ "description": "The offset in bytes of the array."
776
+ },
777
+ "length": {
778
+ "type": "number",
779
+ "description": "The length of the array."
780
+ }
781
+ },
782
+ "required": [
783
+ "BYTES_PER_ELEMENT",
784
+ "buffer",
785
+ "byteLength",
786
+ "byteOffset",
787
+ "length"
788
+ ],
789
+ "additionalProperties": {
790
+ "type": "number"
791
+ },
792
+ "description": "A typed array of 32-bit unsigned integer values. The contents are initialized to 0. If the requested number of bytes could not be allocated an exception is raised."
793
+ },
794
+ {
795
+ "type": "object",
796
+ "properties": {
797
+ "BYTES_PER_ELEMENT": {
798
+ "type": "number",
799
+ "description": "The size in bytes of each element in the array."
800
+ },
801
+ "buffer": {
802
+ "type": "object",
803
+ "properties": {
804
+ "byteLength": {
805
+ "type": "number",
806
+ "description": "Read-only. The length of the ArrayBuffer (in bytes)."
807
+ }
808
+ },
809
+ "required": [
810
+ "byteLength"
811
+ ],
812
+ "additionalProperties": false,
813
+ "description": "The ArrayBuffer instance referenced by the array."
814
+ },
815
+ "byteLength": {
816
+ "type": "number",
817
+ "description": "The length in bytes of the array."
818
+ },
819
+ "byteOffset": {
820
+ "type": "number",
821
+ "description": "The offset in bytes of the array."
822
+ },
823
+ "length": {
824
+ "type": "number",
825
+ "description": "The length of the array."
826
+ }
827
+ },
828
+ "required": [
829
+ "BYTES_PER_ELEMENT",
830
+ "buffer",
831
+ "byteLength",
832
+ "byteOffset",
833
+ "length"
834
+ ],
835
+ "additionalProperties": {
836
+ "type": "number"
837
+ },
838
+ "description": "A typed array of 8-bit integer values. The contents are initialized to 0. If the requested number of bytes could not be allocated an exception is raised."
839
+ },
840
+ {
841
+ "type": "object",
842
+ "properties": {
843
+ "BYTES_PER_ELEMENT": {
844
+ "type": "number",
845
+ "description": "The size in bytes of each element in the array."
846
+ },
847
+ "buffer": {
848
+ "type": "object",
849
+ "properties": {
850
+ "byteLength": {
851
+ "type": "number",
852
+ "description": "Read-only. The length of the ArrayBuffer (in bytes)."
853
+ }
854
+ },
855
+ "required": [
856
+ "byteLength"
857
+ ],
858
+ "additionalProperties": false,
859
+ "description": "The ArrayBuffer instance referenced by the array."
860
+ },
861
+ "byteLength": {
862
+ "type": "number",
863
+ "description": "The length in bytes of the array."
864
+ },
865
+ "byteOffset": {
866
+ "type": "number",
867
+ "description": "The offset in bytes of the array."
868
+ },
869
+ "length": {
870
+ "type": "number",
871
+ "description": "The length of the array."
872
+ }
873
+ },
874
+ "required": [
875
+ "BYTES_PER_ELEMENT",
876
+ "buffer",
877
+ "byteLength",
878
+ "byteOffset",
879
+ "length"
880
+ ],
881
+ "additionalProperties": {
882
+ "type": "number"
883
+ },
884
+ "description": "A typed array of 16-bit signed integer values. The contents are initialized to 0. If the requested number of bytes could not be allocated an exception is raised."
885
+ },
886
+ {
887
+ "type": "object",
888
+ "properties": {
889
+ "BYTES_PER_ELEMENT": {
890
+ "type": "number",
891
+ "description": "The size in bytes of each element in the array."
892
+ },
893
+ "buffer": {
894
+ "type": "object",
895
+ "properties": {
896
+ "byteLength": {
897
+ "type": "number",
898
+ "description": "Read-only. The length of the ArrayBuffer (in bytes)."
899
+ }
900
+ },
901
+ "required": [
902
+ "byteLength"
903
+ ],
904
+ "additionalProperties": false,
905
+ "description": "The ArrayBuffer instance referenced by the array."
906
+ },
907
+ "byteLength": {
908
+ "type": "number",
909
+ "description": "The length in bytes of the array."
910
+ },
911
+ "byteOffset": {
912
+ "type": "number",
913
+ "description": "The offset in bytes of the array."
914
+ },
915
+ "length": {
916
+ "type": "number",
917
+ "description": "The length of the array."
918
+ }
919
+ },
920
+ "required": [
921
+ "BYTES_PER_ELEMENT",
922
+ "buffer",
923
+ "byteLength",
924
+ "byteOffset",
925
+ "length"
926
+ ],
927
+ "additionalProperties": {
928
+ "type": "number"
929
+ },
930
+ "description": "A typed array of 32-bit signed integer values. The contents are initialized to 0. If the requested number of bytes could not be allocated an exception is raised."
931
+ },
932
+ {
933
+ "type": "object",
934
+ "properties": {
935
+ "BYTES_PER_ELEMENT": {
936
+ "type": "number",
937
+ "description": "The size in bytes of each element in the array."
938
+ },
939
+ "buffer": {
940
+ "type": "object",
941
+ "properties": {
942
+ "byteLength": {
943
+ "type": "number",
944
+ "description": "Read-only. The length of the ArrayBuffer (in bytes)."
945
+ }
946
+ },
947
+ "required": [
948
+ "byteLength"
949
+ ],
950
+ "additionalProperties": false,
951
+ "description": "The ArrayBuffer instance referenced by the array."
952
+ },
953
+ "byteLength": {
954
+ "type": "number",
955
+ "description": "The length in bytes of the array."
956
+ },
957
+ "byteOffset": {
958
+ "type": "number",
959
+ "description": "The offset in bytes of the array."
960
+ },
961
+ "length": {
962
+ "type": "number",
963
+ "description": "The length of the array."
964
+ },
965
+ "__@toStringTag@1171": {
966
+ "type": "string",
967
+ "const": "BigUint64Array"
968
+ }
969
+ },
970
+ "required": [
971
+ "BYTES_PER_ELEMENT",
972
+ "buffer",
973
+ "byteLength",
974
+ "byteOffset",
975
+ "length",
976
+ "__@toStringTag@1171"
977
+ ],
978
+ "additionalProperties": {
979
+ "type": "number"
980
+ },
981
+ "description": "A typed array of 64-bit unsigned integer values. The contents are initialized to 0. If the requested number of bytes could not be allocated, an exception is raised."
982
+ },
983
+ {
984
+ "type": "object",
985
+ "properties": {
986
+ "BYTES_PER_ELEMENT": {
987
+ "type": "number",
988
+ "description": "The size in bytes of each element in the array."
989
+ },
990
+ "buffer": {
991
+ "type": "object",
992
+ "properties": {
993
+ "byteLength": {
994
+ "type": "number",
995
+ "description": "Read-only. The length of the ArrayBuffer (in bytes)."
996
+ }
997
+ },
998
+ "required": [
999
+ "byteLength"
1000
+ ],
1001
+ "additionalProperties": false,
1002
+ "description": "The ArrayBuffer instance referenced by the array."
1003
+ },
1004
+ "byteLength": {
1005
+ "type": "number",
1006
+ "description": "The length in bytes of the array."
1007
+ },
1008
+ "byteOffset": {
1009
+ "type": "number",
1010
+ "description": "The offset in bytes of the array."
1011
+ },
1012
+ "length": {
1013
+ "type": "number",
1014
+ "description": "The length of the array."
1015
+ },
1016
+ "__@toStringTag@1171": {
1017
+ "type": "string",
1018
+ "const": "BigInt64Array"
1019
+ }
1020
+ },
1021
+ "required": [
1022
+ "BYTES_PER_ELEMENT",
1023
+ "buffer",
1024
+ "byteLength",
1025
+ "byteOffset",
1026
+ "length",
1027
+ "__@toStringTag@1171"
1028
+ ],
1029
+ "additionalProperties": {
1030
+ "type": "number"
1031
+ },
1032
+ "description": "A typed array of 64-bit signed integer values. The contents are initialized to 0. If the requested number of bytes could not be allocated, an exception is raised."
1033
+ },
1034
+ {
1035
+ "type": "object",
1036
+ "properties": {
1037
+ "BYTES_PER_ELEMENT": {
1038
+ "type": "number",
1039
+ "description": "The size in bytes of each element in the array."
1040
+ },
1041
+ "buffer": {
1042
+ "type": "object",
1043
+ "properties": {
1044
+ "byteLength": {
1045
+ "type": "number",
1046
+ "description": "Read-only. The length of the ArrayBuffer (in bytes)."
1047
+ }
1048
+ },
1049
+ "required": [
1050
+ "byteLength"
1051
+ ],
1052
+ "additionalProperties": false,
1053
+ "description": "The ArrayBuffer instance referenced by the array."
1054
+ },
1055
+ "byteLength": {
1056
+ "type": "number",
1057
+ "description": "The length in bytes of the array."
1058
+ },
1059
+ "byteOffset": {
1060
+ "type": "number",
1061
+ "description": "The offset in bytes of the array."
1062
+ },
1063
+ "length": {
1064
+ "type": "number",
1065
+ "description": "The length of the array."
1066
+ }
1067
+ },
1068
+ "required": [
1069
+ "BYTES_PER_ELEMENT",
1070
+ "buffer",
1071
+ "byteLength",
1072
+ "byteOffset",
1073
+ "length"
1074
+ ],
1075
+ "additionalProperties": {
1076
+ "type": "number"
1077
+ },
1078
+ "description": "A typed array of 32-bit float values. The contents are initialized to 0. If the requested number of bytes could not be allocated an exception is raised."
1079
+ },
1080
+ {
1081
+ "type": "object",
1082
+ "properties": {
1083
+ "BYTES_PER_ELEMENT": {
1084
+ "type": "number",
1085
+ "description": "The size in bytes of each element in the array."
1086
+ },
1087
+ "buffer": {
1088
+ "type": "object",
1089
+ "properties": {
1090
+ "byteLength": {
1091
+ "type": "number",
1092
+ "description": "Read-only. The length of the ArrayBuffer (in bytes)."
1093
+ }
1094
+ },
1095
+ "required": [
1096
+ "byteLength"
1097
+ ],
1098
+ "additionalProperties": false,
1099
+ "description": "The ArrayBuffer instance referenced by the array."
1100
+ },
1101
+ "byteLength": {
1102
+ "type": "number",
1103
+ "description": "The length in bytes of the array."
1104
+ },
1105
+ "byteOffset": {
1106
+ "type": "number",
1107
+ "description": "The offset in bytes of the array."
1108
+ },
1109
+ "length": {
1110
+ "type": "number",
1111
+ "description": "The length of the array."
1112
+ }
1113
+ },
1114
+ "required": [
1115
+ "BYTES_PER_ELEMENT",
1116
+ "buffer",
1117
+ "byteLength",
1118
+ "byteOffset",
1119
+ "length"
1120
+ ],
1121
+ "additionalProperties": {
1122
+ "type": "number"
1123
+ },
1124
+ "description": "A typed array of 64-bit float values. The contents are initialized to 0. If the requested number of bytes could not be allocated an exception is raised."
1125
+ }
1126
+ ]
1127
+ },
571
1128
  "ShorthandRoute": {
572
1129
  "anyOf": [
573
1130
  {