devtools-protocol 0.0.1195207 → 0.0.1195796

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.
@@ -2220,7 +2220,8 @@
2220
2220
  "typedarray",
2221
2221
  "arraybuffer",
2222
2222
  "node",
2223
- "window"
2223
+ "window",
2224
+ "generator"
2224
2225
  ]
2225
2226
  },
2226
2227
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1195207",
3
+ "version": "0.0.1195796",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1066,6 +1066,7 @@ domain Runtime
1066
1066
  arraybuffer
1067
1067
  node
1068
1068
  window
1069
+ generator
1069
1070
  optional any value
1070
1071
  optional string objectId
1071
1072
  # Set if value reference met more then once during serialization. In such
@@ -1541,6 +1541,7 @@ export namespace Protocol {
1541
1541
  Arraybuffer = 'arraybuffer',
1542
1542
  Node = 'node',
1543
1543
  Window = 'window',
1544
+ Generator = 'generator',
1544
1545
  }
1545
1546
 
1546
1547
  /**
@@ -1550,7 +1551,7 @@ export namespace Protocol {
1550
1551
  /**
1551
1552
  * (DeepSerializedValueType enum)
1552
1553
  */
1553
- type: ('undefined' | 'null' | 'string' | 'number' | 'boolean' | 'bigint' | 'regexp' | 'date' | 'symbol' | 'array' | 'object' | 'function' | 'map' | 'set' | 'weakmap' | 'weakset' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'node' | 'window');
1554
+ type: ('undefined' | 'null' | 'string' | 'number' | 'boolean' | 'bigint' | 'regexp' | 'date' | 'symbol' | 'array' | 'object' | 'function' | 'map' | 'set' | 'weakmap' | 'weakset' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'node' | 'window' | 'generator');
1554
1555
  value?: any;
1555
1556
  objectId?: string;
1556
1557
  /**