devtools-protocol 0.0.1075032 → 0.0.1075693

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.
@@ -1997,6 +1997,11 @@
1997
1997
  "items": {
1998
1998
  "$ref": "EventMetadata"
1999
1999
  }
2000
+ },
2001
+ {
2002
+ "name": "storageKey",
2003
+ "description": "Storage key this event belongs to.",
2004
+ "type": "string"
2000
2005
  }
2001
2006
  ]
2002
2007
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1075032",
3
+ "version": "0.0.1075693",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1031,6 +1031,8 @@ experimental domain BackgroundService
1031
1031
  string instanceId
1032
1032
  # A list of event-specific information.
1033
1033
  array of EventMetadata eventMetadata
1034
+ # Storage key this event belongs to.
1035
+ string storageKey
1034
1036
 
1035
1037
  # Called with all existing backgroundServiceEvents when enabled, and all new
1036
1038
  # events afterwards if enabled and recording.
@@ -3628,6 +3628,10 @@ export namespace Protocol {
3628
3628
  * A list of event-specific information.
3629
3629
  */
3630
3630
  eventMetadata: EventMetadata[];
3631
+ /**
3632
+ * Storage key this event belongs to.
3633
+ */
3634
+ storageKey: string;
3631
3635
  }
3632
3636
 
3633
3637
  export interface StartObservingRequest {