devtools-protocol 0.0.1138159 → 0.0.1138800

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.
@@ -2162,8 +2162,8 @@
2162
2162
  "type": "string"
2163
2163
  },
2164
2164
  {
2165
- "id": "WebDriverValue",
2166
- "description": "Represents the value serialiazed by the WebDriver BiDi specification\nhttps://w3c.github.io/webdriver-bidi.",
2165
+ "id": "DeepSerializedValue",
2166
+ "description": "Represents the value serialiazed by the WebDriver BiDi specification\nhttps://goo.gle/browser-automation-deepserialization.",
2167
2167
  "type": "object",
2168
2168
  "properties": [
2169
2169
  {
@@ -2299,7 +2299,7 @@
2299
2299
  "description": "WebDriver BiDi representation of the value.",
2300
2300
  "experimental": true,
2301
2301
  "optional": true,
2302
- "$ref": "WebDriverValue"
2302
+ "$ref": "DeepSerializedValue"
2303
2303
  },
2304
2304
  {
2305
2305
  "name": "objectId",
@@ -2964,7 +2964,7 @@
2964
2964
  },
2965
2965
  {
2966
2966
  "name": "generateWebDriverValue",
2967
- "description": "Whether the result should contain `webDriverValue`, serialized according to\nhttps://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but\nresulting `objectId` is still provided.",
2967
+ "description": "Whether the result should contain `webDriverValue`, serialized according to\nhttps://goo.gle/browser-automation-deepserialization. This is mutually\nexclusive with `returnByValue`, but resulting `objectId` is still provided.",
2968
2968
  "experimental": true,
2969
2969
  "optional": true,
2970
2970
  "type": "boolean"
@@ -3139,7 +3139,7 @@
3139
3139
  },
3140
3140
  {
3141
3141
  "name": "generateWebDriverValue",
3142
- "description": "Whether the result should be serialized according to https://w3c.github.io/webdriver-bidi.",
3142
+ "description": "Whether the result should be serialized according to https://goo.gle/browser-automation-deepserialization.",
3143
3143
  "experimental": true,
3144
3144
  "optional": true,
3145
3145
  "type": "boolean"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1138159",
3
+ "version": "0.0.1138800",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1015,8 +1015,8 @@ domain Runtime
1015
1015
  type ScriptId extends string
1016
1016
 
1017
1017
  # Represents the value serialiazed by the WebDriver BiDi specification
1018
- # https://w3c.github.io/webdriver-bidi.
1019
- type WebDriverValue extends object
1018
+ # https://goo.gle/browser-automation-deepserialization.
1019
+ type DeepSerializedValue extends object
1020
1020
  properties
1021
1021
  enum type
1022
1022
  undefined
@@ -1102,7 +1102,7 @@ domain Runtime
1102
1102
  # String representation of the object.
1103
1103
  optional string description
1104
1104
  # WebDriver BiDi representation of the value.
1105
- experimental optional WebDriverValue webDriverValue
1105
+ experimental optional DeepSerializedValue webDriverValue
1106
1106
  # Unique object identifier (for non-primitive values).
1107
1107
  optional RemoteObjectId objectId
1108
1108
  # Preview containing abbreviated property values. Specified for `object` type values only.
@@ -1416,8 +1416,8 @@ domain Runtime
1416
1416
  # This is mutually exclusive with `executionContextId`.
1417
1417
  experimental optional string uniqueContextId
1418
1418
  # Whether the result should contain `webDriverValue`, serialized according to
1419
- # https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
1420
- # resulting `objectId` is still provided.
1419
+ # https://goo.gle/browser-automation-deepserialization. This is mutually
1420
+ # exclusive with `returnByValue`, but resulting `objectId` is still provided.
1421
1421
  experimental optional boolean generateWebDriverValue
1422
1422
  returns
1423
1423
  # Call result.
@@ -1504,7 +1504,7 @@ domain Runtime
1504
1504
  # boundaries).
1505
1505
  # This is mutually exclusive with `contextId`.
1506
1506
  experimental optional string uniqueContextId
1507
- # Whether the result should be serialized according to https://w3c.github.io/webdriver-bidi.
1507
+ # Whether the result should be serialized according to https://goo.gle/browser-automation-deepserialization.
1508
1508
  experimental optional boolean generateWebDriverValue
1509
1509
  returns
1510
1510
  # Evaluation result.
@@ -1490,7 +1490,7 @@ export namespace Protocol {
1490
1490
  */
1491
1491
  export type ScriptId = string;
1492
1492
 
1493
- export const enum WebDriverValueType {
1493
+ export const enum DeepSerializedValueType {
1494
1494
  Undefined = 'undefined',
1495
1495
  Null = 'null',
1496
1496
  String = 'string',
@@ -1518,11 +1518,11 @@ export namespace Protocol {
1518
1518
 
1519
1519
  /**
1520
1520
  * Represents the value serialiazed by the WebDriver BiDi specification
1521
- * https://w3c.github.io/webdriver-bidi.
1521
+ * https://goo.gle/browser-automation-deepserialization.
1522
1522
  */
1523
- export interface WebDriverValue {
1523
+ export interface DeepSerializedValue {
1524
1524
  /**
1525
- * (WebDriverValueType enum)
1525
+ * (DeepSerializedValueType enum)
1526
1526
  */
1527
1527
  type: ('undefined' | 'null' | 'string' | 'number' | 'boolean' | 'bigint' | 'regexp' | 'date' | 'symbol' | 'array' | 'object' | 'function' | 'map' | 'set' | 'weakmap' | 'weakset' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'node' | 'window');
1528
1528
  value?: any;
@@ -1613,7 +1613,7 @@ export namespace Protocol {
1613
1613
  /**
1614
1614
  * WebDriver BiDi representation of the value.
1615
1615
  */
1616
- webDriverValue?: WebDriverValue;
1616
+ webDriverValue?: DeepSerializedValue;
1617
1617
  /**
1618
1618
  * Unique object identifier (for non-primitive values).
1619
1619
  */
@@ -2121,8 +2121,8 @@ export namespace Protocol {
2121
2121
  uniqueContextId?: string;
2122
2122
  /**
2123
2123
  * Whether the result should contain `webDriverValue`, serialized according to
2124
- * https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
2125
- * resulting `objectId` is still provided.
2124
+ * https://goo.gle/browser-automation-deepserialization. This is mutually
2125
+ * exclusive with `returnByValue`, but resulting `objectId` is still provided.
2126
2126
  */
2127
2127
  generateWebDriverValue?: boolean;
2128
2128
  }
@@ -2248,7 +2248,7 @@ export namespace Protocol {
2248
2248
  */
2249
2249
  uniqueContextId?: string;
2250
2250
  /**
2251
- * Whether the result should be serialized according to https://w3c.github.io/webdriver-bidi.
2251
+ * Whether the result should be serialized according to https://goo.gle/browser-automation-deepserialization.
2252
2252
  */
2253
2253
  generateWebDriverValue?: boolean;
2254
2254
  }