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.
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -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.
|
package/types/protocol.d.ts
CHANGED
@@ -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 {
|