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