@browserless.io/browserless 2.9.0 → 2.11.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/CHANGELOG.md +10 -1
- package/build/browserless.js +4 -2
- package/build/browsers/chromium.cdp.d.ts +1 -0
- package/build/browsers/chromium.cdp.js +3 -0
- package/build/browsers/chromium.playwright.d.ts +1 -0
- package/build/browsers/chromium.playwright.js +3 -0
- package/build/browsers/firefox.playwright.d.ts +1 -0
- package/build/browsers/firefox.playwright.js +3 -0
- package/build/browsers/index.d.ts +0 -1
- package/build/browsers/index.js +3 -5
- package/build/browsers/webkit.playwright.d.ts +1 -0
- package/build/browsers/webkit.playwright.js +3 -0
- package/build/http.d.ts +1 -0
- package/build/http.js +1 -0
- package/build/routes/chrome/http/content.post.body.json +8 -8
- package/build/routes/chrome/http/pdf.post.body.json +8 -8
- package/build/routes/chrome/http/scrape.post.body.json +8 -8
- package/build/routes/chrome/http/screenshot.post.body.json +8 -8
- package/build/routes/chromium/http/content.post.body.json +8 -8
- package/build/routes/chromium/http/pdf.post.body.json +8 -8
- package/build/routes/chromium/http/scrape.post.body.json +8 -8
- package/build/routes/chromium/http/screenshot.post.body.json +8 -8
- package/build/routes/management/http/pressure.get.d.ts +65 -0
- package/build/routes/management/http/pressure.get.js +58 -0
- package/build/routes/management/http/pressure.get.response.json +85 -0
- package/build/routes/management/tests/management.spec.js +7 -0
- package/build/types.d.ts +10 -1
- package/build/types.js +10 -1
- package/package.json +6 -6
- package/src/browserless.ts +4 -0
- package/src/browsers/chromium.cdp.ts +4 -0
- package/src/browsers/chromium.playwright.ts +4 -0
- package/src/browsers/firefox.playwright.ts +4 -0
- package/src/browsers/index.ts +3 -5
- package/src/browsers/webkit.playwright.ts +4 -0
- package/src/http.ts +1 -0
- package/src/routes/management/http/pressure.get.ts +139 -0
- package/src/routes/management/tests/management.spec.ts +19 -8
- package/src/types.ts +9 -0
- package/static/docs/swagger.json +147 -10
- package/static/docs/swagger.min.json +146 -9
- package/static/function/client.js +2749 -2730
- package/static/function/index.html +2749 -2730
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
|
-
# [Latest](https://github.com/browserless/chrome/compare/v2.
|
|
1
|
+
# [Latest](https://github.com/browserless/chrome/compare/v2.11.0...main)
|
|
2
|
+
- Dependency updates.
|
|
3
|
+
|
|
4
|
+
# [v2.11.0](https://github.com/browserless/chrome/compare/v2.10.0...v2.11.0)
|
|
5
|
+
- Wrap the pressure response in a pressure key.
|
|
6
|
+
- New `keepAlive` property on browser objects for downstream SDK projects to flag.
|
|
7
|
+
- Dependency updates.
|
|
8
|
+
|
|
9
|
+
# [v2.10.0](https://github.com/browserless/chrome/compare/v2.9.0...v2.10.0)
|
|
10
|
+
- Adds back in the `/pressure` API from V1.
|
|
2
11
|
- Dependency updates.
|
|
3
12
|
|
|
4
13
|
# [v2.9.0](https://github.com/browserless/chrome/compare/v2.8.0...v2.9.0)
|
package/build/browserless.js
CHANGED
|
@@ -147,11 +147,12 @@ export class Browserless extends EventEmitter {
|
|
|
147
147
|
}));
|
|
148
148
|
const routeImport = `${this.config.getIsWin() ? 'file:///' : ''}${httpRoute}`;
|
|
149
149
|
const { default: Route, } = await import(routeImport + `?cb=${Date.now()}`);
|
|
150
|
-
const route = new Route(this.browserManager, this.config, this.fileSystem, this.metrics, this.monitoring, this.staticSDKDir);
|
|
150
|
+
const route = new Route(this.browserManager, this.config, this.fileSystem, this.metrics, this.monitoring, this.staticSDKDir, this.limiter);
|
|
151
151
|
if (!this.routeIsDisabled(route)) {
|
|
152
152
|
route.bodySchema = safeParse(bodySchema);
|
|
153
153
|
route.querySchema = safeParse(querySchema);
|
|
154
154
|
route.config = () => this.config;
|
|
155
|
+
route.limiter = () => this.limiter;
|
|
155
156
|
route.metrics = () => this.metrics;
|
|
156
157
|
route.monitoring = () => this.monitoring;
|
|
157
158
|
route.fileSystem = () => this.fileSystem;
|
|
@@ -173,10 +174,11 @@ export class Browserless extends EventEmitter {
|
|
|
173
174
|
}));
|
|
174
175
|
const wsImport = `${this.config.getIsWin() ? 'file:///' : ''}${wsRoute}`;
|
|
175
176
|
const { default: Route, } = await import(wsImport + `?cb=${Date.now()}`);
|
|
176
|
-
const route = new Route(this.browserManager, this.config, this.fileSystem, this.metrics, this.monitoring, this.staticSDKDir);
|
|
177
|
+
const route = new Route(this.browserManager, this.config, this.fileSystem, this.metrics, this.monitoring, this.staticSDKDir, this.limiter);
|
|
177
178
|
if (!this.routeIsDisabled(route)) {
|
|
178
179
|
route.querySchema = safeParse(querySchema);
|
|
179
180
|
route.config = () => this.config;
|
|
181
|
+
route.limiter = () => this.limiter;
|
|
180
182
|
route.metrics = () => this.metrics;
|
|
181
183
|
route.monitoring = () => this.monitoring;
|
|
182
184
|
route.fileSystem = () => this.fileSystem;
|
|
@@ -26,6 +26,7 @@ export declare class ChromiumCDP extends EventEmitter {
|
|
|
26
26
|
userDataDir: ChromiumCDP['userDataDir'];
|
|
27
27
|
});
|
|
28
28
|
protected cleanListeners(): void;
|
|
29
|
+
keepAlive(): boolean;
|
|
29
30
|
getPageId: (page: Page) => string;
|
|
30
31
|
protected onTargetCreated: (target: Target) => Promise<void>;
|
|
31
32
|
isRunning: () => boolean;
|
|
@@ -22,6 +22,7 @@ export declare class ChromiumPlaywright extends EventEmitter {
|
|
|
22
22
|
userDataDir: ChromiumPlaywright['userDataDir'];
|
|
23
23
|
});
|
|
24
24
|
protected cleanListeners(): void;
|
|
25
|
+
keepAlive(): boolean;
|
|
25
26
|
isRunning: () => boolean;
|
|
26
27
|
close: () => Promise<void>;
|
|
27
28
|
pages: () => Promise<[]>;
|
|
@@ -21,6 +21,7 @@ export declare class FirefoxPlaywright extends EventEmitter {
|
|
|
21
21
|
userDataDir: FirefoxPlaywright['userDataDir'];
|
|
22
22
|
});
|
|
23
23
|
protected cleanListeners(): void;
|
|
24
|
+
keepAlive(): boolean;
|
|
24
25
|
isRunning: () => boolean;
|
|
25
26
|
close: () => Promise<void>;
|
|
26
27
|
pages: () => Promise<[]>;
|
|
@@ -4,7 +4,6 @@ export declare class BrowserManager {
|
|
|
4
4
|
protected config: Config;
|
|
5
5
|
protected hooks: Hooks;
|
|
6
6
|
protected browsers: Map<BrowserInstance, BrowserlessSession>;
|
|
7
|
-
protected launching: Map<string, Promise<unknown>>;
|
|
8
7
|
protected timers: Map<string, number>;
|
|
9
8
|
protected log: Logger;
|
|
10
9
|
protected chromeBrowsers: (typeof ChromiumCDP)[];
|
package/build/browsers/index.js
CHANGED
|
@@ -5,7 +5,6 @@ export class BrowserManager {
|
|
|
5
5
|
config;
|
|
6
6
|
hooks;
|
|
7
7
|
browsers = new Map();
|
|
8
|
-
launching = new Map();
|
|
9
8
|
timers = new Map();
|
|
10
9
|
log = new Logger('browser-manager');
|
|
11
10
|
chromeBrowsers = [ChromiumCDP, ChromeCDP];
|
|
@@ -182,7 +181,7 @@ export class BrowserManager {
|
|
|
182
181
|
const cleanupACtions = [];
|
|
183
182
|
this.log.info(`${session.numbConnected} Client(s) are currently connected`);
|
|
184
183
|
// Don't close if there's clients still connected
|
|
185
|
-
if (session.numbConnected > 0) {
|
|
184
|
+
if (session.numbConnected > 0 || browser.keepAlive()) {
|
|
186
185
|
return;
|
|
187
186
|
}
|
|
188
187
|
this.log.info(`Closing browser session`);
|
|
@@ -212,7 +211,6 @@ export class BrowserManager {
|
|
|
212
211
|
const { id, resolver } = session;
|
|
213
212
|
if (id && resolver) {
|
|
214
213
|
resolver(null);
|
|
215
|
-
this.launching.delete(id);
|
|
216
214
|
}
|
|
217
215
|
--session.numbConnected;
|
|
218
216
|
this.close(browser, session);
|
|
@@ -306,7 +304,7 @@ export class BrowserManager {
|
|
|
306
304
|
logger,
|
|
307
305
|
userDataDir,
|
|
308
306
|
});
|
|
309
|
-
const
|
|
307
|
+
const session = {
|
|
310
308
|
id: null,
|
|
311
309
|
initialConnectURL: path.join(req.parsed.pathname, req.parsed.search) || '',
|
|
312
310
|
isTempDataDir: !manualUserDataDir,
|
|
@@ -318,7 +316,7 @@ export class BrowserManager {
|
|
|
318
316
|
ttl: 0,
|
|
319
317
|
userDataDir,
|
|
320
318
|
};
|
|
321
|
-
this.browsers.set(browser,
|
|
319
|
+
this.browsers.set(browser, session);
|
|
322
320
|
await browser.launch(launchOptions);
|
|
323
321
|
await this.hooks.browser({ browser, meta: req.parsed });
|
|
324
322
|
browser.on('newPage', async (page) => {
|
|
@@ -21,6 +21,7 @@ export declare class WebkitPlaywright extends EventEmitter {
|
|
|
21
21
|
userDataDir: WebkitPlaywright['userDataDir'];
|
|
22
22
|
});
|
|
23
23
|
protected cleanListeners(): void;
|
|
24
|
+
keepAlive(): boolean;
|
|
24
25
|
isRunning: () => boolean;
|
|
25
26
|
close: () => Promise<void>;
|
|
26
27
|
pages: () => Promise<[]>;
|
package/build/http.d.ts
CHANGED
package/build/http.js
CHANGED
|
@@ -119,6 +119,7 @@ export var HTTPManagementRoutes;
|
|
|
119
119
|
HTTPManagementRoutes["config"] = "/config";
|
|
120
120
|
HTTPManagementRoutes["metrics"] = "/metrics";
|
|
121
121
|
HTTPManagementRoutes["metricsTotal"] = "/metrics/total";
|
|
122
|
+
HTTPManagementRoutes["pressure"] = "/pressure";
|
|
122
123
|
HTTPManagementRoutes["sessions"] = "/sessions";
|
|
123
124
|
HTTPManagementRoutes["static"] = "/";
|
|
124
125
|
})(HTTPManagementRoutes || (HTTPManagementRoutes = {}));
|
|
@@ -394,14 +394,14 @@
|
|
|
394
394
|
"length": {
|
|
395
395
|
"type": "number"
|
|
396
396
|
},
|
|
397
|
-
"__@toStringTag@
|
|
397
|
+
"__@toStringTag@10986": {
|
|
398
398
|
"type": "string",
|
|
399
399
|
"const": "Uint8Array"
|
|
400
400
|
}
|
|
401
401
|
},
|
|
402
402
|
"required": [
|
|
403
403
|
"BYTES_PER_ELEMENT",
|
|
404
|
-
"__@toStringTag@
|
|
404
|
+
"__@toStringTag@10986",
|
|
405
405
|
"buffer",
|
|
406
406
|
"byteLength",
|
|
407
407
|
"byteOffset",
|
|
@@ -436,13 +436,13 @@
|
|
|
436
436
|
"byteLength": {
|
|
437
437
|
"type": "number"
|
|
438
438
|
},
|
|
439
|
-
"__@toStringTag@
|
|
439
|
+
"__@toStringTag@10986": {
|
|
440
440
|
"type": "string"
|
|
441
441
|
}
|
|
442
442
|
},
|
|
443
443
|
"additionalProperties": false,
|
|
444
444
|
"required": [
|
|
445
|
-
"__@toStringTag@
|
|
445
|
+
"__@toStringTag@10986",
|
|
446
446
|
"byteLength"
|
|
447
447
|
]
|
|
448
448
|
},
|
|
@@ -452,18 +452,18 @@
|
|
|
452
452
|
"byteLength": {
|
|
453
453
|
"type": "number"
|
|
454
454
|
},
|
|
455
|
-
"__@species@
|
|
455
|
+
"__@species@11087": {
|
|
456
456
|
"$ref": "#/definitions/SharedArrayBuffer"
|
|
457
457
|
},
|
|
458
|
-
"__@toStringTag@
|
|
458
|
+
"__@toStringTag@10986": {
|
|
459
459
|
"type": "string",
|
|
460
460
|
"const": "SharedArrayBuffer"
|
|
461
461
|
}
|
|
462
462
|
},
|
|
463
463
|
"additionalProperties": false,
|
|
464
464
|
"required": [
|
|
465
|
-
"__@species@
|
|
466
|
-
"__@toStringTag@
|
|
465
|
+
"__@species@11087",
|
|
466
|
+
"__@toStringTag@10986",
|
|
467
467
|
"byteLength"
|
|
468
468
|
]
|
|
469
469
|
},
|
|
@@ -535,14 +535,14 @@
|
|
|
535
535
|
"length": {
|
|
536
536
|
"type": "number"
|
|
537
537
|
},
|
|
538
|
-
"__@toStringTag@
|
|
538
|
+
"__@toStringTag@98248": {
|
|
539
539
|
"type": "string",
|
|
540
540
|
"const": "Uint8Array"
|
|
541
541
|
}
|
|
542
542
|
},
|
|
543
543
|
"required": [
|
|
544
544
|
"BYTES_PER_ELEMENT",
|
|
545
|
-
"__@toStringTag@
|
|
545
|
+
"__@toStringTag@98248",
|
|
546
546
|
"buffer",
|
|
547
547
|
"byteLength",
|
|
548
548
|
"byteOffset",
|
|
@@ -577,13 +577,13 @@
|
|
|
577
577
|
"byteLength": {
|
|
578
578
|
"type": "number"
|
|
579
579
|
},
|
|
580
|
-
"__@toStringTag@
|
|
580
|
+
"__@toStringTag@98248": {
|
|
581
581
|
"type": "string"
|
|
582
582
|
}
|
|
583
583
|
},
|
|
584
584
|
"additionalProperties": false,
|
|
585
585
|
"required": [
|
|
586
|
-
"__@toStringTag@
|
|
586
|
+
"__@toStringTag@98248",
|
|
587
587
|
"byteLength"
|
|
588
588
|
]
|
|
589
589
|
},
|
|
@@ -593,18 +593,18 @@
|
|
|
593
593
|
"byteLength": {
|
|
594
594
|
"type": "number"
|
|
595
595
|
},
|
|
596
|
-
"__@species@
|
|
596
|
+
"__@species@98349": {
|
|
597
597
|
"$ref": "#/definitions/SharedArrayBuffer"
|
|
598
598
|
},
|
|
599
|
-
"__@toStringTag@
|
|
599
|
+
"__@toStringTag@98248": {
|
|
600
600
|
"type": "string",
|
|
601
601
|
"const": "SharedArrayBuffer"
|
|
602
602
|
}
|
|
603
603
|
},
|
|
604
604
|
"additionalProperties": false,
|
|
605
605
|
"required": [
|
|
606
|
-
"__@species@
|
|
607
|
-
"__@toStringTag@
|
|
606
|
+
"__@species@98349",
|
|
607
|
+
"__@toStringTag@98248",
|
|
608
608
|
"byteLength"
|
|
609
609
|
]
|
|
610
610
|
},
|
|
@@ -441,14 +441,14 @@
|
|
|
441
441
|
"length": {
|
|
442
442
|
"type": "number"
|
|
443
443
|
},
|
|
444
|
-
"__@toStringTag@
|
|
444
|
+
"__@toStringTag@109391": {
|
|
445
445
|
"type": "string",
|
|
446
446
|
"const": "Uint8Array"
|
|
447
447
|
}
|
|
448
448
|
},
|
|
449
449
|
"required": [
|
|
450
450
|
"BYTES_PER_ELEMENT",
|
|
451
|
-
"__@toStringTag@
|
|
451
|
+
"__@toStringTag@109391",
|
|
452
452
|
"buffer",
|
|
453
453
|
"byteLength",
|
|
454
454
|
"byteOffset",
|
|
@@ -483,13 +483,13 @@
|
|
|
483
483
|
"byteLength": {
|
|
484
484
|
"type": "number"
|
|
485
485
|
},
|
|
486
|
-
"__@toStringTag@
|
|
486
|
+
"__@toStringTag@109391": {
|
|
487
487
|
"type": "string"
|
|
488
488
|
}
|
|
489
489
|
},
|
|
490
490
|
"additionalProperties": false,
|
|
491
491
|
"required": [
|
|
492
|
-
"__@toStringTag@
|
|
492
|
+
"__@toStringTag@109391",
|
|
493
493
|
"byteLength"
|
|
494
494
|
]
|
|
495
495
|
},
|
|
@@ -499,18 +499,18 @@
|
|
|
499
499
|
"byteLength": {
|
|
500
500
|
"type": "number"
|
|
501
501
|
},
|
|
502
|
-
"__@species@
|
|
502
|
+
"__@species@109492": {
|
|
503
503
|
"$ref": "#/definitions/SharedArrayBuffer"
|
|
504
504
|
},
|
|
505
|
-
"__@toStringTag@
|
|
505
|
+
"__@toStringTag@109391": {
|
|
506
506
|
"type": "string",
|
|
507
507
|
"const": "SharedArrayBuffer"
|
|
508
508
|
}
|
|
509
509
|
},
|
|
510
510
|
"additionalProperties": false,
|
|
511
511
|
"required": [
|
|
512
|
-
"__@species@
|
|
513
|
-
"__@toStringTag@
|
|
512
|
+
"__@species@109492",
|
|
513
|
+
"__@toStringTag@109391",
|
|
514
514
|
"byteLength"
|
|
515
515
|
]
|
|
516
516
|
},
|
|
@@ -484,14 +484,14 @@
|
|
|
484
484
|
"length": {
|
|
485
485
|
"type": "number"
|
|
486
486
|
},
|
|
487
|
-
"__@toStringTag@
|
|
487
|
+
"__@toStringTag@120611": {
|
|
488
488
|
"type": "string",
|
|
489
489
|
"const": "Uint8Array"
|
|
490
490
|
}
|
|
491
491
|
},
|
|
492
492
|
"required": [
|
|
493
493
|
"BYTES_PER_ELEMENT",
|
|
494
|
-
"__@toStringTag@
|
|
494
|
+
"__@toStringTag@120611",
|
|
495
495
|
"buffer",
|
|
496
496
|
"byteLength",
|
|
497
497
|
"byteOffset",
|
|
@@ -526,13 +526,13 @@
|
|
|
526
526
|
"byteLength": {
|
|
527
527
|
"type": "number"
|
|
528
528
|
},
|
|
529
|
-
"__@toStringTag@
|
|
529
|
+
"__@toStringTag@120611": {
|
|
530
530
|
"type": "string"
|
|
531
531
|
}
|
|
532
532
|
},
|
|
533
533
|
"additionalProperties": false,
|
|
534
534
|
"required": [
|
|
535
|
-
"__@toStringTag@
|
|
535
|
+
"__@toStringTag@120611",
|
|
536
536
|
"byteLength"
|
|
537
537
|
]
|
|
538
538
|
},
|
|
@@ -542,18 +542,18 @@
|
|
|
542
542
|
"byteLength": {
|
|
543
543
|
"type": "number"
|
|
544
544
|
},
|
|
545
|
-
"__@species@
|
|
545
|
+
"__@species@120712": {
|
|
546
546
|
"$ref": "#/definitions/SharedArrayBuffer"
|
|
547
547
|
},
|
|
548
|
-
"__@toStringTag@
|
|
548
|
+
"__@toStringTag@120611": {
|
|
549
549
|
"type": "string",
|
|
550
550
|
"const": "SharedArrayBuffer"
|
|
551
551
|
}
|
|
552
552
|
},
|
|
553
553
|
"additionalProperties": false,
|
|
554
554
|
"required": [
|
|
555
|
-
"__@species@
|
|
556
|
-
"__@toStringTag@
|
|
555
|
+
"__@species@120712",
|
|
556
|
+
"__@toStringTag@120611",
|
|
557
557
|
"byteLength"
|
|
558
558
|
]
|
|
559
559
|
},
|
|
@@ -394,14 +394,14 @@
|
|
|
394
394
|
"length": {
|
|
395
395
|
"type": "number"
|
|
396
396
|
},
|
|
397
|
-
"__@toStringTag@
|
|
397
|
+
"__@toStringTag@131741": {
|
|
398
398
|
"type": "string",
|
|
399
399
|
"const": "Uint8Array"
|
|
400
400
|
}
|
|
401
401
|
},
|
|
402
402
|
"required": [
|
|
403
403
|
"BYTES_PER_ELEMENT",
|
|
404
|
-
"__@toStringTag@
|
|
404
|
+
"__@toStringTag@131741",
|
|
405
405
|
"buffer",
|
|
406
406
|
"byteLength",
|
|
407
407
|
"byteOffset",
|
|
@@ -436,13 +436,13 @@
|
|
|
436
436
|
"byteLength": {
|
|
437
437
|
"type": "number"
|
|
438
438
|
},
|
|
439
|
-
"__@toStringTag@
|
|
439
|
+
"__@toStringTag@131741": {
|
|
440
440
|
"type": "string"
|
|
441
441
|
}
|
|
442
442
|
},
|
|
443
443
|
"additionalProperties": false,
|
|
444
444
|
"required": [
|
|
445
|
-
"__@toStringTag@
|
|
445
|
+
"__@toStringTag@131741",
|
|
446
446
|
"byteLength"
|
|
447
447
|
]
|
|
448
448
|
},
|
|
@@ -452,18 +452,18 @@
|
|
|
452
452
|
"byteLength": {
|
|
453
453
|
"type": "number"
|
|
454
454
|
},
|
|
455
|
-
"__@species@
|
|
455
|
+
"__@species@131842": {
|
|
456
456
|
"$ref": "#/definitions/SharedArrayBuffer"
|
|
457
457
|
},
|
|
458
|
-
"__@toStringTag@
|
|
458
|
+
"__@toStringTag@131741": {
|
|
459
459
|
"type": "string",
|
|
460
460
|
"const": "SharedArrayBuffer"
|
|
461
461
|
}
|
|
462
462
|
},
|
|
463
463
|
"additionalProperties": false,
|
|
464
464
|
"required": [
|
|
465
|
-
"__@species@
|
|
466
|
-
"__@toStringTag@
|
|
465
|
+
"__@species@131842",
|
|
466
|
+
"__@toStringTag@131741",
|
|
467
467
|
"byteLength"
|
|
468
468
|
]
|
|
469
469
|
},
|
|
@@ -535,14 +535,14 @@
|
|
|
535
535
|
"length": {
|
|
536
536
|
"type": "number"
|
|
537
537
|
},
|
|
538
|
-
"__@toStringTag@
|
|
538
|
+
"__@toStringTag@208105": {
|
|
539
539
|
"type": "string",
|
|
540
540
|
"const": "Uint8Array"
|
|
541
541
|
}
|
|
542
542
|
},
|
|
543
543
|
"required": [
|
|
544
544
|
"BYTES_PER_ELEMENT",
|
|
545
|
-
"__@toStringTag@
|
|
545
|
+
"__@toStringTag@208105",
|
|
546
546
|
"buffer",
|
|
547
547
|
"byteLength",
|
|
548
548
|
"byteOffset",
|
|
@@ -577,13 +577,13 @@
|
|
|
577
577
|
"byteLength": {
|
|
578
578
|
"type": "number"
|
|
579
579
|
},
|
|
580
|
-
"__@toStringTag@
|
|
580
|
+
"__@toStringTag@208105": {
|
|
581
581
|
"type": "string"
|
|
582
582
|
}
|
|
583
583
|
},
|
|
584
584
|
"additionalProperties": false,
|
|
585
585
|
"required": [
|
|
586
|
-
"__@toStringTag@
|
|
586
|
+
"__@toStringTag@208105",
|
|
587
587
|
"byteLength"
|
|
588
588
|
]
|
|
589
589
|
},
|
|
@@ -593,18 +593,18 @@
|
|
|
593
593
|
"byteLength": {
|
|
594
594
|
"type": "number"
|
|
595
595
|
},
|
|
596
|
-
"__@species@
|
|
596
|
+
"__@species@208206": {
|
|
597
597
|
"$ref": "#/definitions/SharedArrayBuffer"
|
|
598
598
|
},
|
|
599
|
-
"__@toStringTag@
|
|
599
|
+
"__@toStringTag@208105": {
|
|
600
600
|
"type": "string",
|
|
601
601
|
"const": "SharedArrayBuffer"
|
|
602
602
|
}
|
|
603
603
|
},
|
|
604
604
|
"additionalProperties": false,
|
|
605
605
|
"required": [
|
|
606
|
-
"__@species@
|
|
607
|
-
"__@toStringTag@
|
|
606
|
+
"__@species@208206",
|
|
607
|
+
"__@toStringTag@208105",
|
|
608
608
|
"byteLength"
|
|
609
609
|
]
|
|
610
610
|
},
|
|
@@ -441,14 +441,14 @@
|
|
|
441
441
|
"length": {
|
|
442
442
|
"type": "number"
|
|
443
443
|
},
|
|
444
|
-
"__@toStringTag@
|
|
444
|
+
"__@toStringTag@230119": {
|
|
445
445
|
"type": "string",
|
|
446
446
|
"const": "Uint8Array"
|
|
447
447
|
}
|
|
448
448
|
},
|
|
449
449
|
"required": [
|
|
450
450
|
"BYTES_PER_ELEMENT",
|
|
451
|
-
"__@toStringTag@
|
|
451
|
+
"__@toStringTag@230119",
|
|
452
452
|
"buffer",
|
|
453
453
|
"byteLength",
|
|
454
454
|
"byteOffset",
|
|
@@ -483,13 +483,13 @@
|
|
|
483
483
|
"byteLength": {
|
|
484
484
|
"type": "number"
|
|
485
485
|
},
|
|
486
|
-
"__@toStringTag@
|
|
486
|
+
"__@toStringTag@230119": {
|
|
487
487
|
"type": "string"
|
|
488
488
|
}
|
|
489
489
|
},
|
|
490
490
|
"additionalProperties": false,
|
|
491
491
|
"required": [
|
|
492
|
-
"__@toStringTag@
|
|
492
|
+
"__@toStringTag@230119",
|
|
493
493
|
"byteLength"
|
|
494
494
|
]
|
|
495
495
|
},
|
|
@@ -499,18 +499,18 @@
|
|
|
499
499
|
"byteLength": {
|
|
500
500
|
"type": "number"
|
|
501
501
|
},
|
|
502
|
-
"__@species@
|
|
502
|
+
"__@species@230220": {
|
|
503
503
|
"$ref": "#/definitions/SharedArrayBuffer"
|
|
504
504
|
},
|
|
505
|
-
"__@toStringTag@
|
|
505
|
+
"__@toStringTag@230119": {
|
|
506
506
|
"type": "string",
|
|
507
507
|
"const": "SharedArrayBuffer"
|
|
508
508
|
}
|
|
509
509
|
},
|
|
510
510
|
"additionalProperties": false,
|
|
511
511
|
"required": [
|
|
512
|
-
"__@species@
|
|
513
|
-
"__@toStringTag@
|
|
512
|
+
"__@species@230220",
|
|
513
|
+
"__@toStringTag@230119",
|
|
514
514
|
"byteLength"
|
|
515
515
|
]
|
|
516
516
|
},
|
|
@@ -484,14 +484,14 @@
|
|
|
484
484
|
"length": {
|
|
485
485
|
"type": "number"
|
|
486
486
|
},
|
|
487
|
-
"__@toStringTag@
|
|
487
|
+
"__@toStringTag@241336": {
|
|
488
488
|
"type": "string",
|
|
489
489
|
"const": "Uint8Array"
|
|
490
490
|
}
|
|
491
491
|
},
|
|
492
492
|
"required": [
|
|
493
493
|
"BYTES_PER_ELEMENT",
|
|
494
|
-
"__@toStringTag@
|
|
494
|
+
"__@toStringTag@241336",
|
|
495
495
|
"buffer",
|
|
496
496
|
"byteLength",
|
|
497
497
|
"byteOffset",
|
|
@@ -526,13 +526,13 @@
|
|
|
526
526
|
"byteLength": {
|
|
527
527
|
"type": "number"
|
|
528
528
|
},
|
|
529
|
-
"__@toStringTag@
|
|
529
|
+
"__@toStringTag@241336": {
|
|
530
530
|
"type": "string"
|
|
531
531
|
}
|
|
532
532
|
},
|
|
533
533
|
"additionalProperties": false,
|
|
534
534
|
"required": [
|
|
535
|
-
"__@toStringTag@
|
|
535
|
+
"__@toStringTag@241336",
|
|
536
536
|
"byteLength"
|
|
537
537
|
]
|
|
538
538
|
},
|
|
@@ -542,18 +542,18 @@
|
|
|
542
542
|
"byteLength": {
|
|
543
543
|
"type": "number"
|
|
544
544
|
},
|
|
545
|
-
"__@species@
|
|
545
|
+
"__@species@241437": {
|
|
546
546
|
"$ref": "#/definitions/SharedArrayBuffer"
|
|
547
547
|
},
|
|
548
|
-
"__@toStringTag@
|
|
548
|
+
"__@toStringTag@241336": {
|
|
549
549
|
"type": "string",
|
|
550
550
|
"const": "SharedArrayBuffer"
|
|
551
551
|
}
|
|
552
552
|
},
|
|
553
553
|
"additionalProperties": false,
|
|
554
554
|
"required": [
|
|
555
|
-
"__@species@
|
|
556
|
-
"__@toStringTag@
|
|
555
|
+
"__@species@241437",
|
|
556
|
+
"__@toStringTag@241336",
|
|
557
557
|
"byteLength"
|
|
558
558
|
]
|
|
559
559
|
},
|