devtools-protocol 0.0.1089107 → 0.0.1089613

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.
@@ -3614,7 +3614,14 @@
3614
3614
  {
3615
3615
  "name": "executionContextId",
3616
3616
  "description": "Id of the destroyed context",
3617
+ "deprecated": true,
3617
3618
  "$ref": "ExecutionContextId"
3619
+ },
3620
+ {
3621
+ "name": "executionContextUniqueId",
3622
+ "description": "Unique Id of the destroyed context",
3623
+ "experimental": true,
3624
+ "type": "string"
3618
3625
  }
3619
3626
  ]
3620
3627
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1089107",
3
+ "version": "0.0.1089613",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1741,7 +1741,9 @@ domain Runtime
1741
1741
  event executionContextDestroyed
1742
1742
  parameters
1743
1743
  # Id of the destroyed context
1744
- ExecutionContextId executionContextId
1744
+ deprecated ExecutionContextId executionContextId
1745
+ # Unique Id of the destroyed context
1746
+ experimental string executionContextUniqueId
1745
1747
 
1746
1748
  # Issued when all executionContexts were cleared in browser
1747
1749
  event executionContextsCleared
@@ -2573,6 +2573,10 @@ export namespace Protocol {
2573
2573
  * Id of the destroyed context
2574
2574
  */
2575
2575
  executionContextId: ExecutionContextId;
2576
+ /**
2577
+ * Unique Id of the destroyed context
2578
+ */
2579
+ executionContextUniqueId: string;
2576
2580
  }
2577
2581
 
2578
2582
  /**