devtools-protocol 0.0.1134181 → 0.0.1134390

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.
@@ -1294,7 +1294,7 @@
1294
1294
  },
1295
1295
  {
1296
1296
  "name": "executionContextAuxData",
1297
- "description": "Embedder-specific auxiliary data.",
1297
+ "description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
1298
1298
  "optional": true,
1299
1299
  "type": "object"
1300
1300
  },
@@ -1398,7 +1398,7 @@
1398
1398
  },
1399
1399
  {
1400
1400
  "name": "executionContextAuxData",
1401
- "description": "Embedder-specific auxiliary data.",
1401
+ "description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
1402
1402
  "optional": true,
1403
1403
  "type": "object"
1404
1404
  },
@@ -2668,7 +2668,7 @@
2668
2668
  },
2669
2669
  {
2670
2670
  "name": "auxData",
2671
- "description": "Embedder-specific auxiliary data.",
2671
+ "description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
2672
2672
  "optional": true,
2673
2673
  "type": "object"
2674
2674
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1134181",
3
+ "version": "0.0.1134390",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -632,7 +632,7 @@ domain Debugger
632
632
  Runtime.ExecutionContextId executionContextId
633
633
  # Content hash of the script, SHA-256.
634
634
  string hash
635
- # Embedder-specific auxiliary data.
635
+ # Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
636
636
  optional object executionContextAuxData
637
637
  # URL of source map associated with script (if any).
638
638
  optional string sourceMapURL
@@ -671,7 +671,7 @@ domain Debugger
671
671
  Runtime.ExecutionContextId executionContextId
672
672
  # Content hash of the script, SHA-256.
673
673
  string hash
674
- # Embedder-specific auxiliary data.
674
+ # Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
675
675
  optional object executionContextAuxData
676
676
  # True, if this script is generated as a result of the live edit operation.
677
677
  experimental optional boolean isLiveEdit
@@ -1284,7 +1284,7 @@ domain Runtime
1284
1284
  # multiple processes, so can be reliably used to identify specific context while backend
1285
1285
  # performs a cross-process navigation.
1286
1286
  experimental string uniqueId
1287
- # Embedder-specific auxiliary data.
1287
+ # Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
1288
1288
  optional object auxData
1289
1289
 
1290
1290
  # Detailed information about exception (or error) that was thrown during script compilation or
@@ -912,7 +912,7 @@ export namespace Protocol {
912
912
  */
913
913
  hash: string;
914
914
  /**
915
- * Embedder-specific auxiliary data.
915
+ * Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
916
916
  */
917
917
  executionContextAuxData?: any;
918
918
  /**
@@ -987,7 +987,7 @@ export namespace Protocol {
987
987
  */
988
988
  hash: string;
989
989
  /**
990
- * Embedder-specific auxiliary data.
990
+ * Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
991
991
  */
992
992
  executionContextAuxData?: any;
993
993
  /**
@@ -1900,7 +1900,7 @@ export namespace Protocol {
1900
1900
  */
1901
1901
  uniqueId: string;
1902
1902
  /**
1903
- * Embedder-specific auxiliary data.
1903
+ * Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
1904
1904
  */
1905
1905
  auxData?: any;
1906
1906
  }