@browserless.io/browserless 2.25.0 → 2.25.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/build/browsers/index.js +18 -11
  3. package/build/limiter.spec.js +1 -1
  4. package/build/routes/chrome/http/content.post.body.json +9 -9
  5. package/build/routes/chrome/http/pdf.post.body.json +9 -9
  6. package/build/routes/chrome/http/scrape.post.body.json +9 -9
  7. package/build/routes/chrome/http/scrape.post.response.json +1 -1
  8. package/build/routes/chrome/http/screenshot.post.body.json +9 -9
  9. package/build/routes/chrome/tests/kill-sessions.spec.js +1 -1
  10. package/build/routes/chrome/tests/page-websocket.spec.js +0 -3
  11. package/build/routes/chromium/http/content.post.body.json +9 -9
  12. package/build/routes/chromium/http/pdf.post.body.json +9 -9
  13. package/build/routes/chromium/http/scrape.post.body.json +9 -9
  14. package/build/routes/chromium/http/scrape.post.response.json +1 -1
  15. package/build/routes/chromium/http/screenshot.post.body.json +9 -9
  16. package/build/routes/chromium/tests/kill-sessions.spec.js +1 -1
  17. package/build/routes/chromium/tests/page-websocket.spec.js +0 -3
  18. package/build/routes/chromium/tests/websocket.spec.js +0 -3
  19. package/build/routes/edge/http/content.post.body.json +9 -9
  20. package/build/routes/edge/http/pdf.post.body.json +9 -9
  21. package/build/routes/edge/http/scrape.post.body.json +9 -9
  22. package/build/routes/edge/http/scrape.post.response.json +1 -1
  23. package/build/routes/edge/http/screenshot.post.body.json +9 -9
  24. package/build/routes/edge/tests/page-websocket.spec.js +0 -3
  25. package/build/routes/firefox/tests/kill-sessions.spec.js +1 -1
  26. package/build/routes/webkit/tests/kill-sessions.spec.js +1 -1
  27. package/build/routes/webkit/tests/websocket.spec.js +0 -3
  28. package/docker/multi/Dockerfile +4 -4
  29. package/package.json +11 -11
  30. package/scripts/test.sh +1 -1
  31. package/src/browsers/index.ts +38 -14
  32. package/src/limiter.spec.ts +1 -1
  33. package/src/routes/chrome/tests/kill-sessions.spec.ts +1 -1
  34. package/src/routes/chrome/tests/page-websocket.spec.ts +0 -4
  35. package/src/routes/chromium/tests/kill-sessions.spec.ts +1 -1
  36. package/src/routes/chromium/tests/page-websocket.spec.ts +0 -4
  37. package/src/routes/chromium/tests/websocket.spec.ts +0 -4
  38. package/src/routes/edge/tests/page-websocket.spec.ts +0 -4
  39. package/src/routes/firefox/tests/kill-sessions.spec.ts +1 -1
  40. package/src/routes/webkit/tests/kill-sessions.spec.ts +1 -1
  41. package/src/routes/webkit/tests/websocket.spec.ts +0 -4
  42. package/static/docs/swagger.json +15 -15
  43. package/static/docs/swagger.min.json +14 -14
  44. package/static/function/client.js +33 -20
  45. package/static/function/index.html +33 -20
package/CHANGELOG.md CHANGED
@@ -1,7 +1,24 @@
1
- # [Latest](https://github.com/browserless/chrome/compare/v2.25.0...main)
1
+ # [Latest](https://github.com/browserless/chrome/compare/v2.25.2...main)
2
2
 
3
3
  - Dependency updates.
4
4
 
5
+ # [v2.25.2](https://github.com/browserless/chrome/compare/v2.25.1...v2.25.2)
6
+
7
+ - Dependency updates.
8
+ - Fixes to the `/session` API to include proper host and port.
9
+ - Bumping timeout for certain unit-tests.
10
+ - Supports:
11
+ - puppeteer-core: 24.3.0
12
+ - playwright-core: 1.50.1, 1.49.1, 1.48.2, 1.47.2, and 1.46.1.
13
+ - Chromium: 133.0.6943.16
14
+ - Chrome: 133.0.6943.127
15
+ - Firefox: 134.0
16
+ - Webkit: 18.2
17
+
18
+ # [v2.25.1](https://github.com/browserless/chrome/compare/v2.25.0...v2.25.1)
19
+
20
+ - Removes edge from `arm64` builds due to lack of support.
21
+
5
22
  # [v2.25.0](https://github.com/browserless/chrome/compare/v2.24.3...v2.25.0)
6
23
 
7
24
  - Dependency updates.
@@ -146,41 +146,48 @@ export class BrowserManager {
146
146
  .filter((_) => _ !== null);
147
147
  }
148
148
  async generateSessionJson(browser, session) {
149
- const serverAddress = this.config.getExternalAddress();
149
+ const serverHTTPAddress = this.config.getExternalAddress();
150
+ const serverWSAddress = this.config.getExternalWebSocketAddress();
150
151
  const sessions = [
151
152
  {
152
153
  ...session,
153
154
  browser: browser.constructor.name,
154
155
  browserId: session.id,
155
- initialConnectURL: new URL(session.initialConnectURL, serverAddress)
156
+ initialConnectURL: new URL(session.initialConnectURL, serverHTTPAddress)
156
157
  .href,
157
158
  killURL: session.id
158
- ? makeExternalURL(serverAddress, '/kill/', session.id)
159
+ ? makeExternalURL(serverHTTPAddress, '/kill/', session.id)
159
160
  : null,
160
161
  running: browser.isRunning(),
161
162
  timeAliveMs: Date.now() - session.startedOn,
162
163
  type: 'browser',
163
164
  },
164
165
  ];
165
- const wsEndpoint = browser.wsEndpoint();
166
- if (this.browserIsChrome(browser) && wsEndpoint) {
167
- const port = new URL(wsEndpoint).port;
168
- const response = await fetch(`http://127.0.0.1:${port}/json/list`, {
166
+ const internalWSEndpoint = browser.wsEndpoint();
167
+ const externalURI = new URL(serverHTTPAddress);
168
+ const externalProtocol = externalURI.protocol === 'https:' ? 'wss' : 'ws';
169
+ if (this.browserIsChrome(browser) && internalWSEndpoint) {
170
+ const browserURI = new URL(internalWSEndpoint);
171
+ const response = await fetch(`http://127.0.0.1:${browserURI.port}/json/list`, {
169
172
  headers: {
170
173
  Host: '127.0.0.1',
171
174
  },
172
175
  });
173
176
  if (response.ok) {
174
- const externalUrl = new URL(serverAddress);
175
- const protocol = externalUrl.protocol === 'https:' ? 'wss' : 'ws';
176
177
  const body = await response.json();
177
178
  for (const page of body) {
178
- const devtoolsFrontendUrl = `/devtools/inspector.html?${protocol}=${externalUrl.host}${externalUrl.pathname}/devtools/page/${page.id}`;
179
+ const pageURI = new URL(page.webSocketDebuggerUrl);
180
+ const devtoolsFrontendUrl = `/devtools/inspector.html?${externalProtocol}=${externalURI.host}${externalURI.pathname}${pageURI.pathname}`.replace(/\/\//gi, '/');
181
+ // /devtools/browser/b733c56b-8543-489c-b27b-28e12d966c01
182
+ const browserWSEndpoint = new URL(browserURI.pathname, serverWSAddress).href;
183
+ // /devtools/page/802B1FDAD5F75E9BCE92D066DFF13253
184
+ const webSocketDebuggerUrl = new URL(pageURI.pathname, serverWSAddress).href;
179
185
  sessions.push({
180
186
  ...sessions[0],
181
187
  ...page,
182
- browserWSEndpoint: wsEndpoint,
188
+ browserWSEndpoint,
183
189
  devtoolsFrontendUrl,
190
+ webSocketDebuggerUrl,
184
191
  });
185
192
  }
186
193
  }
@@ -48,7 +48,7 @@ describe(`Limiter`, () => {
48
48
  resolve(undefined);
49
49
  });
50
50
  });
51
- }).timeout(5000);
51
+ });
52
52
  it('passes through arguments', () => new Promise((resolve, reject) => {
53
53
  const args = ['one', 'two', 'three'];
54
54
  const config = new Config();
@@ -312,7 +312,7 @@
312
312
  "type": "string"
313
313
  },
314
314
  "partitionKey": {
315
- "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin\n(https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey).",
315
+ "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin in the\n{@link https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey PartitionKey}.",
316
316
  "anyOf": [
317
317
  {
318
318
  "$ref": "#/definitions/CookiePartitionKey"
@@ -463,14 +463,14 @@
463
463
  "length": {
464
464
  "type": "number"
465
465
  },
466
- "__@toStringTag@12613": {
466
+ "__@toStringTag@12614": {
467
467
  "type": "string",
468
468
  "const": "Uint8Array"
469
469
  }
470
470
  },
471
471
  "required": [
472
472
  "BYTES_PER_ELEMENT",
473
- "__@toStringTag@12613",
473
+ "__@toStringTag@12614",
474
474
  "buffer",
475
475
  "byteLength",
476
476
  "byteOffset",
@@ -505,13 +505,13 @@
505
505
  "byteLength": {
506
506
  "type": "number"
507
507
  },
508
- "__@toStringTag@12613": {
508
+ "__@toStringTag@12614": {
509
509
  "type": "string"
510
510
  }
511
511
  },
512
512
  "additionalProperties": false,
513
513
  "required": [
514
- "__@toStringTag@12613",
514
+ "__@toStringTag@12614",
515
515
  "byteLength"
516
516
  ]
517
517
  },
@@ -521,18 +521,18 @@
521
521
  "byteLength": {
522
522
  "type": "number"
523
523
  },
524
- "__@species@12651": {
524
+ "__@species@12652": {
525
525
  "$ref": "#/definitions/SharedArrayBuffer"
526
526
  },
527
- "__@toStringTag@12613": {
527
+ "__@toStringTag@12614": {
528
528
  "type": "string",
529
529
  "const": "SharedArrayBuffer"
530
530
  }
531
531
  },
532
532
  "additionalProperties": false,
533
533
  "required": [
534
- "__@species@12651",
535
- "__@toStringTag@12613",
534
+ "__@species@12652",
535
+ "__@toStringTag@12614",
536
536
  "byteLength"
537
537
  ]
538
538
  },
@@ -314,7 +314,7 @@
314
314
  "type": "string"
315
315
  },
316
316
  "partitionKey": {
317
- "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin\n(https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey).",
317
+ "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin in the\n{@link https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey PartitionKey}.",
318
318
  "anyOf": [
319
319
  {
320
320
  "$ref": "#/definitions/CookiePartitionKey"
@@ -608,14 +608,14 @@
608
608
  "length": {
609
609
  "type": "number"
610
610
  },
611
- "__@toStringTag@100311": {
611
+ "__@toStringTag@176026": {
612
612
  "type": "string",
613
613
  "const": "Uint8Array"
614
614
  }
615
615
  },
616
616
  "required": [
617
617
  "BYTES_PER_ELEMENT",
618
- "__@toStringTag@100311",
618
+ "__@toStringTag@176026",
619
619
  "buffer",
620
620
  "byteLength",
621
621
  "byteOffset",
@@ -650,13 +650,13 @@
650
650
  "byteLength": {
651
651
  "type": "number"
652
652
  },
653
- "__@toStringTag@100311": {
653
+ "__@toStringTag@176026": {
654
654
  "type": "string"
655
655
  }
656
656
  },
657
657
  "additionalProperties": false,
658
658
  "required": [
659
- "__@toStringTag@100311",
659
+ "__@toStringTag@176026",
660
660
  "byteLength"
661
661
  ]
662
662
  },
@@ -666,18 +666,18 @@
666
666
  "byteLength": {
667
667
  "type": "number"
668
668
  },
669
- "__@species@100349": {
669
+ "__@species@176064": {
670
670
  "$ref": "#/definitions/SharedArrayBuffer"
671
671
  },
672
- "__@toStringTag@100311": {
672
+ "__@toStringTag@176026": {
673
673
  "type": "string",
674
674
  "const": "SharedArrayBuffer"
675
675
  }
676
676
  },
677
677
  "additionalProperties": false,
678
678
  "required": [
679
- "__@species@100349",
680
- "__@toStringTag@100311",
679
+ "__@species@176064",
680
+ "__@toStringTag@176026",
681
681
  "byteLength"
682
682
  ]
683
683
  },
@@ -323,7 +323,7 @@
323
323
  "type": "string"
324
324
  },
325
325
  "partitionKey": {
326
- "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin\n(https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey).",
326
+ "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin in the\n{@link https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey PartitionKey}.",
327
327
  "anyOf": [
328
328
  {
329
329
  "$ref": "#/definitions/CookiePartitionKey"
@@ -510,14 +510,14 @@
510
510
  "length": {
511
511
  "type": "number"
512
512
  },
513
- "__@toStringTag@138235": {
513
+ "__@toStringTag@100305": {
514
514
  "type": "string",
515
515
  "const": "Uint8Array"
516
516
  }
517
517
  },
518
518
  "required": [
519
519
  "BYTES_PER_ELEMENT",
520
- "__@toStringTag@138235",
520
+ "__@toStringTag@100305",
521
521
  "buffer",
522
522
  "byteLength",
523
523
  "byteOffset",
@@ -552,13 +552,13 @@
552
552
  "byteLength": {
553
553
  "type": "number"
554
554
  },
555
- "__@toStringTag@138235": {
555
+ "__@toStringTag@100305": {
556
556
  "type": "string"
557
557
  }
558
558
  },
559
559
  "additionalProperties": false,
560
560
  "required": [
561
- "__@toStringTag@138235",
561
+ "__@toStringTag@100305",
562
562
  "byteLength"
563
563
  ]
564
564
  },
@@ -568,18 +568,18 @@
568
568
  "byteLength": {
569
569
  "type": "number"
570
570
  },
571
- "__@species@138273": {
571
+ "__@species@100343": {
572
572
  "$ref": "#/definitions/SharedArrayBuffer"
573
573
  },
574
- "__@toStringTag@138235": {
574
+ "__@toStringTag@100305": {
575
575
  "type": "string",
576
576
  "const": "SharedArrayBuffer"
577
577
  }
578
578
  },
579
579
  "additionalProperties": false,
580
580
  "required": [
581
- "__@species@138273",
582
- "__@toStringTag@138235",
581
+ "__@species@100343",
582
+ "__@toStringTag@100305",
583
583
  "byteLength"
584
584
  ]
585
585
  },
@@ -247,7 +247,7 @@
247
247
  "type": "string"
248
248
  },
249
249
  "partitionKey": {
250
- "description": "Cookie partition key. In Chrome, it is the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin\n(https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey).",
250
+ "description": "Cookie partition key. In Chrome, it is the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin in the\n{@link https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey PartitionKey}.",
251
251
  "anyOf": [
252
252
  {
253
253
  "$ref": "#/definitions/CookiePartitionKey"
@@ -320,7 +320,7 @@
320
320
  "type": "string"
321
321
  },
322
322
  "partitionKey": {
323
- "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin\n(https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey).",
323
+ "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin in the\n{@link https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey PartitionKey}.",
324
324
  "anyOf": [
325
325
  {
326
326
  "$ref": "#/definitions/CookiePartitionKey"
@@ -553,14 +553,14 @@
553
553
  "length": {
554
554
  "type": "number"
555
555
  },
556
- "__@toStringTag@125530": {
556
+ "__@toStringTag@125593": {
557
557
  "type": "string",
558
558
  "const": "Uint8Array"
559
559
  }
560
560
  },
561
561
  "required": [
562
562
  "BYTES_PER_ELEMENT",
563
- "__@toStringTag@125530",
563
+ "__@toStringTag@125593",
564
564
  "buffer",
565
565
  "byteLength",
566
566
  "byteOffset",
@@ -595,13 +595,13 @@
595
595
  "byteLength": {
596
596
  "type": "number"
597
597
  },
598
- "__@toStringTag@125530": {
598
+ "__@toStringTag@125593": {
599
599
  "type": "string"
600
600
  }
601
601
  },
602
602
  "additionalProperties": false,
603
603
  "required": [
604
- "__@toStringTag@125530",
604
+ "__@toStringTag@125593",
605
605
  "byteLength"
606
606
  ]
607
607
  },
@@ -611,18 +611,18 @@
611
611
  "byteLength": {
612
612
  "type": "number"
613
613
  },
614
- "__@species@125568": {
614
+ "__@species@125631": {
615
615
  "$ref": "#/definitions/SharedArrayBuffer"
616
616
  },
617
- "__@toStringTag@125530": {
617
+ "__@toStringTag@125593": {
618
618
  "type": "string",
619
619
  "const": "SharedArrayBuffer"
620
620
  }
621
621
  },
622
622
  "additionalProperties": false,
623
623
  "required": [
624
- "__@species@125568",
625
- "__@toStringTag@125530",
624
+ "__@species@125631",
625
+ "__@toStringTag@125593",
626
626
  "byteLength"
627
627
  ]
628
628
  },
@@ -38,7 +38,7 @@ describe('/kill API', function () {
38
38
  }
39
39
  expect(errorThrown1.message).contains('closed');
40
40
  expect(errorThrown2.message).contains('closed');
41
- }).timeout(45000);
41
+ });
42
42
  it('Kill session by browserId', async () => {
43
43
  await start();
44
44
  const browser = await puppeteer.connect({
@@ -3,9 +3,6 @@ import puppeteer, { Connection } from 'puppeteer-core';
3
3
  import { NodeWebSocketTransport } from 'puppeteer-core/lib/esm/puppeteer/node/NodeWebSocketTransport.js';
4
4
  import { expect } from 'chai';
5
5
  describe('WebSocket Page API', function () {
6
- // Server shutdown can take a few seconds
7
- // and so can these tests :/
8
- this.timeout(5000);
9
6
  let browserless;
10
7
  const start = ({ config = new Config(), metrics = new Metrics(), } = {}) => {
11
8
  browserless = new Browserless({ config, metrics });
@@ -312,7 +312,7 @@
312
312
  "type": "string"
313
313
  },
314
314
  "partitionKey": {
315
- "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin\n(https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey).",
315
+ "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin in the\n{@link https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey PartitionKey}.",
316
316
  "anyOf": [
317
317
  {
318
318
  "$ref": "#/definitions/CookiePartitionKey"
@@ -463,14 +463,14 @@
463
463
  "length": {
464
464
  "type": "number"
465
465
  },
466
- "__@toStringTag@188472": {
466
+ "__@toStringTag@138286": {
467
467
  "type": "string",
468
468
  "const": "Uint8Array"
469
469
  }
470
470
  },
471
471
  "required": [
472
472
  "BYTES_PER_ELEMENT",
473
- "__@toStringTag@188472",
473
+ "__@toStringTag@138286",
474
474
  "buffer",
475
475
  "byteLength",
476
476
  "byteOffset",
@@ -505,13 +505,13 @@
505
505
  "byteLength": {
506
506
  "type": "number"
507
507
  },
508
- "__@toStringTag@188472": {
508
+ "__@toStringTag@138286": {
509
509
  "type": "string"
510
510
  }
511
511
  },
512
512
  "additionalProperties": false,
513
513
  "required": [
514
- "__@toStringTag@188472",
514
+ "__@toStringTag@138286",
515
515
  "byteLength"
516
516
  ]
517
517
  },
@@ -521,18 +521,18 @@
521
521
  "byteLength": {
522
522
  "type": "number"
523
523
  },
524
- "__@species@188510": {
524
+ "__@species@138324": {
525
525
  "$ref": "#/definitions/SharedArrayBuffer"
526
526
  },
527
- "__@toStringTag@188472": {
527
+ "__@toStringTag@138286": {
528
528
  "type": "string",
529
529
  "const": "SharedArrayBuffer"
530
530
  }
531
531
  },
532
532
  "additionalProperties": false,
533
533
  "required": [
534
- "__@species@188510",
535
- "__@toStringTag@188472",
534
+ "__@species@138324",
535
+ "__@toStringTag@138286",
536
536
  "byteLength"
537
537
  ]
538
538
  },
@@ -314,7 +314,7 @@
314
314
  "type": "string"
315
315
  },
316
316
  "partitionKey": {
317
- "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin\n(https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey).",
317
+ "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin in the\n{@link https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey PartitionKey}.",
318
318
  "anyOf": [
319
319
  {
320
320
  "$ref": "#/definitions/CookiePartitionKey"
@@ -608,14 +608,14 @@
608
608
  "length": {
609
609
  "type": "number"
610
610
  },
611
- "__@toStringTag@251170": {
611
+ "__@toStringTag@226211": {
612
612
  "type": "string",
613
613
  "const": "Uint8Array"
614
614
  }
615
615
  },
616
616
  "required": [
617
617
  "BYTES_PER_ELEMENT",
618
- "__@toStringTag@251170",
618
+ "__@toStringTag@226211",
619
619
  "buffer",
620
620
  "byteLength",
621
621
  "byteOffset",
@@ -650,13 +650,13 @@
650
650
  "byteLength": {
651
651
  "type": "number"
652
652
  },
653
- "__@toStringTag@251170": {
653
+ "__@toStringTag@226211": {
654
654
  "type": "string"
655
655
  }
656
656
  },
657
657
  "additionalProperties": false,
658
658
  "required": [
659
- "__@toStringTag@251170",
659
+ "__@toStringTag@226211",
660
660
  "byteLength"
661
661
  ]
662
662
  },
@@ -666,18 +666,18 @@
666
666
  "byteLength": {
667
667
  "type": "number"
668
668
  },
669
- "__@species@251208": {
669
+ "__@species@226249": {
670
670
  "$ref": "#/definitions/SharedArrayBuffer"
671
671
  },
672
- "__@toStringTag@251170": {
672
+ "__@toStringTag@226211": {
673
673
  "type": "string",
674
674
  "const": "SharedArrayBuffer"
675
675
  }
676
676
  },
677
677
  "additionalProperties": false,
678
678
  "required": [
679
- "__@species@251208",
680
- "__@toStringTag@251170",
679
+ "__@species@226249",
680
+ "__@toStringTag@226211",
681
681
  "byteLength"
682
682
  ]
683
683
  },
@@ -323,7 +323,7 @@
323
323
  "type": "string"
324
324
  },
325
325
  "partitionKey": {
326
- "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin\n(https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey).",
326
+ "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin in the\n{@link https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey PartitionKey}.",
327
327
  "anyOf": [
328
328
  {
329
329
  "$ref": "#/definitions/CookiePartitionKey"
@@ -510,14 +510,14 @@
510
510
  "length": {
511
511
  "type": "number"
512
512
  },
513
- "__@toStringTag@276585": {
513
+ "__@toStringTag@289320": {
514
514
  "type": "string",
515
515
  "const": "Uint8Array"
516
516
  }
517
517
  },
518
518
  "required": [
519
519
  "BYTES_PER_ELEMENT",
520
- "__@toStringTag@276585",
520
+ "__@toStringTag@289320",
521
521
  "buffer",
522
522
  "byteLength",
523
523
  "byteOffset",
@@ -552,13 +552,13 @@
552
552
  "byteLength": {
553
553
  "type": "number"
554
554
  },
555
- "__@toStringTag@276585": {
555
+ "__@toStringTag@289320": {
556
556
  "type": "string"
557
557
  }
558
558
  },
559
559
  "additionalProperties": false,
560
560
  "required": [
561
- "__@toStringTag@276585",
561
+ "__@toStringTag@289320",
562
562
  "byteLength"
563
563
  ]
564
564
  },
@@ -568,18 +568,18 @@
568
568
  "byteLength": {
569
569
  "type": "number"
570
570
  },
571
- "__@species@276623": {
571
+ "__@species@289358": {
572
572
  "$ref": "#/definitions/SharedArrayBuffer"
573
573
  },
574
- "__@toStringTag@276585": {
574
+ "__@toStringTag@289320": {
575
575
  "type": "string",
576
576
  "const": "SharedArrayBuffer"
577
577
  }
578
578
  },
579
579
  "additionalProperties": false,
580
580
  "required": [
581
- "__@species@276623",
582
- "__@toStringTag@276585",
581
+ "__@species@289358",
582
+ "__@toStringTag@289320",
583
583
  "byteLength"
584
584
  ]
585
585
  },
@@ -247,7 +247,7 @@
247
247
  "type": "string"
248
248
  },
249
249
  "partitionKey": {
250
- "description": "Cookie partition key. In Chrome, it is the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin\n(https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey).",
250
+ "description": "Cookie partition key. In Chrome, it is the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin in the\n{@link https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey PartitionKey}.",
251
251
  "anyOf": [
252
252
  {
253
253
  "$ref": "#/definitions/CookiePartitionKey"
@@ -320,7 +320,7 @@
320
320
  "type": "string"
321
321
  },
322
322
  "partitionKey": {
323
- "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin\n(https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey).",
323
+ "description": "Cookie partition key. In Chrome, it matches the top-level site the\npartitioned cookie is available in. In Firefox, it matches the\nsource origin in the\n{@link https://w3c.github.io/webdriver-bidi/#type-storage-PartitionKey PartitionKey}.",
324
324
  "anyOf": [
325
325
  {
326
326
  "$ref": "#/definitions/CookiePartitionKey"
@@ -553,14 +553,14 @@
553
553
  "length": {
554
554
  "type": "number"
555
555
  },
556
- "__@toStringTag@263883": {
556
+ "__@toStringTag@263904": {
557
557
  "type": "string",
558
558
  "const": "Uint8Array"
559
559
  }
560
560
  },
561
561
  "required": [
562
562
  "BYTES_PER_ELEMENT",
563
- "__@toStringTag@263883",
563
+ "__@toStringTag@263904",
564
564
  "buffer",
565
565
  "byteLength",
566
566
  "byteOffset",
@@ -595,13 +595,13 @@
595
595
  "byteLength": {
596
596
  "type": "number"
597
597
  },
598
- "__@toStringTag@263883": {
598
+ "__@toStringTag@263904": {
599
599
  "type": "string"
600
600
  }
601
601
  },
602
602
  "additionalProperties": false,
603
603
  "required": [
604
- "__@toStringTag@263883",
604
+ "__@toStringTag@263904",
605
605
  "byteLength"
606
606
  ]
607
607
  },
@@ -611,18 +611,18 @@
611
611
  "byteLength": {
612
612
  "type": "number"
613
613
  },
614
- "__@species@263921": {
614
+ "__@species@263942": {
615
615
  "$ref": "#/definitions/SharedArrayBuffer"
616
616
  },
617
- "__@toStringTag@263883": {
617
+ "__@toStringTag@263904": {
618
618
  "type": "string",
619
619
  "const": "SharedArrayBuffer"
620
620
  }
621
621
  },
622
622
  "additionalProperties": false,
623
623
  "required": [
624
- "__@species@263921",
625
- "__@toStringTag@263883",
624
+ "__@species@263942",
625
+ "__@toStringTag@263904",
626
626
  "byteLength"
627
627
  ]
628
628
  },