devtools-protocol 0.0.998712 → 0.0.999451

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.
@@ -1175,7 +1175,7 @@
1175
1175
  },
1176
1176
  {
1177
1177
  "name": "hash",
1178
- "description": "Content hash of the script.",
1178
+ "description": "Content hash of the script, SHA-256.",
1179
1179
  "type": "string"
1180
1180
  },
1181
1181
  {
@@ -1279,7 +1279,7 @@
1279
1279
  },
1280
1280
  {
1281
1281
  "name": "hash",
1282
- "description": "Content hash of the script.",
1282
+ "description": "Content hash of the script, SHA-256.",
1283
1283
  "type": "string"
1284
1284
  },
1285
1285
  {
@@ -2893,7 +2893,7 @@
2893
2893
  },
2894
2894
  {
2895
2895
  "name": "generateWebDriverValue",
2896
- "description": "Whether the result should be serialized according to https://w3c.github.io/webdriver-bidi.",
2896
+ "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.",
2897
2897
  "experimental": true,
2898
2898
  "optional": true,
2899
2899
  "type": "boolean"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.998712",
3
+ "version": "0.0.999451",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -559,7 +559,7 @@ domain Debugger
559
559
  integer endColumn
560
560
  # Specifies script creation context.
561
561
  Runtime.ExecutionContextId executionContextId
562
- # Content hash of the script.
562
+ # Content hash of the script, SHA-256.
563
563
  string hash
564
564
  # Embedder-specific auxiliary data.
565
565
  optional object executionContextAuxData
@@ -598,7 +598,7 @@ domain Debugger
598
598
  integer endColumn
599
599
  # Specifies script creation context.
600
600
  Runtime.ExecutionContextId executionContextId
601
- # Content hash of the script.
601
+ # Content hash of the script, SHA-256.
602
602
  string hash
603
603
  # Embedder-specific auxiliary data.
604
604
  optional object executionContextAuxData
@@ -1347,7 +1347,9 @@ domain Runtime
1347
1347
  optional string objectGroup
1348
1348
  # Whether to throw an exception if side effect cannot be ruled out during evaluation.
1349
1349
  experimental optional boolean throwOnSideEffect
1350
- # Whether the result should be serialized according to https://w3c.github.io/webdriver-bidi.
1350
+ # Whether the result should contain `webDriverValue`, serialized according to
1351
+ # https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
1352
+ # resulting `objectId` is still provided.
1351
1353
  experimental optional boolean generateWebDriverValue
1352
1354
  returns
1353
1355
  # Call result.
@@ -828,7 +828,7 @@ export namespace Protocol {
828
828
  */
829
829
  executionContextId: Runtime.ExecutionContextId;
830
830
  /**
831
- * Content hash of the script.
831
+ * Content hash of the script, SHA-256.
832
832
  */
833
833
  hash: string;
834
834
  /**
@@ -903,7 +903,7 @@ export namespace Protocol {
903
903
  */
904
904
  executionContextId: Runtime.ExecutionContextId;
905
905
  /**
906
- * Content hash of the script.
906
+ * Content hash of the script, SHA-256.
907
907
  */
908
908
  hash: string;
909
909
  /**
@@ -2042,7 +2042,9 @@ export namespace Protocol {
2042
2042
  */
2043
2043
  throwOnSideEffect?: boolean;
2044
2044
  /**
2045
- * Whether the result should be serialized according to https://w3c.github.io/webdriver-bidi.
2045
+ * Whether the result should contain `webDriverValue`, serialized according to
2046
+ * https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
2047
+ * resulting `objectId` is still provided.
2046
2048
  */
2047
2049
  generateWebDriverValue?: boolean;
2048
2050
  }