devtools-protocol 0.0.1073708 → 0.0.1074451
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.
@@ -19582,6 +19582,17 @@
|
|
19582
19582
|
}
|
19583
19583
|
]
|
19584
19584
|
},
|
19585
|
+
{
|
19586
|
+
"name": "trackCacheStorageForStorageKey",
|
19587
|
+
"description": "Registers storage key to be notified when an update occurs to its cache storage list.",
|
19588
|
+
"parameters": [
|
19589
|
+
{
|
19590
|
+
"name": "storageKey",
|
19591
|
+
"description": "Storage key.",
|
19592
|
+
"type": "string"
|
19593
|
+
}
|
19594
|
+
]
|
19595
|
+
},
|
19585
19596
|
{
|
19586
19597
|
"name": "trackIndexedDBForOrigin",
|
19587
19598
|
"description": "Registers origin to be notified when an update occurs to its IndexedDB.",
|
@@ -19615,6 +19626,17 @@
|
|
19615
19626
|
}
|
19616
19627
|
]
|
19617
19628
|
},
|
19629
|
+
{
|
19630
|
+
"name": "untrackCacheStorageForStorageKey",
|
19631
|
+
"description": "Unregisters storage key from receiving notifications for cache storage.",
|
19632
|
+
"parameters": [
|
19633
|
+
{
|
19634
|
+
"name": "storageKey",
|
19635
|
+
"description": "Storage key.",
|
19636
|
+
"type": "string"
|
19637
|
+
}
|
19638
|
+
]
|
19639
|
+
},
|
19618
19640
|
{
|
19619
19641
|
"name": "untrackIndexedDBForOrigin",
|
19620
19642
|
"description": "Unregisters origin from receiving notifications for IndexedDB.",
|
@@ -19811,6 +19833,11 @@
|
|
19811
19833
|
"description": "Origin to update.",
|
19812
19834
|
"type": "string"
|
19813
19835
|
},
|
19836
|
+
{
|
19837
|
+
"name": "storageKey",
|
19838
|
+
"description": "Storage key to update.",
|
19839
|
+
"type": "string"
|
19840
|
+
},
|
19814
19841
|
{
|
19815
19842
|
"name": "cacheName",
|
19816
19843
|
"description": "Name of cache in origin.",
|
@@ -19826,6 +19853,11 @@
|
|
19826
19853
|
"name": "origin",
|
19827
19854
|
"description": "Origin to update.",
|
19828
19855
|
"type": "string"
|
19856
|
+
},
|
19857
|
+
{
|
19858
|
+
"name": "storageKey",
|
19859
|
+
"description": "Storage key to update.",
|
19860
|
+
"type": "string"
|
19829
19861
|
}
|
19830
19862
|
]
|
19831
19863
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -9262,6 +9262,12 @@ experimental domain Storage
|
|
9262
9262
|
# Security origin.
|
9263
9263
|
string origin
|
9264
9264
|
|
9265
|
+
# Registers storage key to be notified when an update occurs to its cache storage list.
|
9266
|
+
command trackCacheStorageForStorageKey
|
9267
|
+
parameters
|
9268
|
+
# Storage key.
|
9269
|
+
string storageKey
|
9270
|
+
|
9265
9271
|
# Registers origin to be notified when an update occurs to its IndexedDB.
|
9266
9272
|
command trackIndexedDBForOrigin
|
9267
9273
|
parameters
|
@@ -9280,6 +9286,12 @@ experimental domain Storage
|
|
9280
9286
|
# Security origin.
|
9281
9287
|
string origin
|
9282
9288
|
|
9289
|
+
# Unregisters storage key from receiving notifications for cache storage.
|
9290
|
+
command untrackCacheStorageForStorageKey
|
9291
|
+
parameters
|
9292
|
+
# Storage key.
|
9293
|
+
string storageKey
|
9294
|
+
|
9283
9295
|
# Unregisters origin from receiving notifications for IndexedDB.
|
9284
9296
|
command untrackIndexedDBForOrigin
|
9285
9297
|
parameters
|
@@ -9365,6 +9377,8 @@ experimental domain Storage
|
|
9365
9377
|
parameters
|
9366
9378
|
# Origin to update.
|
9367
9379
|
string origin
|
9380
|
+
# Storage key to update.
|
9381
|
+
string storageKey
|
9368
9382
|
# Name of cache in origin.
|
9369
9383
|
string cacheName
|
9370
9384
|
|
@@ -9373,6 +9387,8 @@ experimental domain Storage
|
|
9373
9387
|
parameters
|
9374
9388
|
# Origin to update.
|
9375
9389
|
string origin
|
9390
|
+
# Storage key to update.
|
9391
|
+
string storageKey
|
9376
9392
|
|
9377
9393
|
# The origin's IndexedDB object store has been modified.
|
9378
9394
|
event indexedDBContentUpdated
|
@@ -4029,6 +4029,13 @@ export namespace ProtocolMapping {
|
|
4029
4029
|
paramsType: [Protocol.Storage.TrackCacheStorageForOriginRequest];
|
4030
4030
|
returnType: void;
|
4031
4031
|
};
|
4032
|
+
/**
|
4033
|
+
* Registers storage key to be notified when an update occurs to its cache storage list.
|
4034
|
+
*/
|
4035
|
+
'Storage.trackCacheStorageForStorageKey': {
|
4036
|
+
paramsType: [Protocol.Storage.TrackCacheStorageForStorageKeyRequest];
|
4037
|
+
returnType: void;
|
4038
|
+
};
|
4032
4039
|
/**
|
4033
4040
|
* Registers origin to be notified when an update occurs to its IndexedDB.
|
4034
4041
|
*/
|
@@ -4050,6 +4057,13 @@ export namespace ProtocolMapping {
|
|
4050
4057
|
paramsType: [Protocol.Storage.UntrackCacheStorageForOriginRequest];
|
4051
4058
|
returnType: void;
|
4052
4059
|
};
|
4060
|
+
/**
|
4061
|
+
* Unregisters storage key from receiving notifications for cache storage.
|
4062
|
+
*/
|
4063
|
+
'Storage.untrackCacheStorageForStorageKey': {
|
4064
|
+
paramsType: [Protocol.Storage.UntrackCacheStorageForStorageKeyRequest];
|
4065
|
+
returnType: void;
|
4066
|
+
};
|
4053
4067
|
/**
|
4054
4068
|
* Unregisters origin from receiving notifications for IndexedDB.
|
4055
4069
|
*/
|
@@ -3261,6 +3261,11 @@ export namespace ProtocolProxyApi {
|
|
3261
3261
|
*/
|
3262
3262
|
trackCacheStorageForOrigin(params: Protocol.Storage.TrackCacheStorageForOriginRequest): Promise<void>;
|
3263
3263
|
|
3264
|
+
/**
|
3265
|
+
* Registers storage key to be notified when an update occurs to its cache storage list.
|
3266
|
+
*/
|
3267
|
+
trackCacheStorageForStorageKey(params: Protocol.Storage.TrackCacheStorageForStorageKeyRequest): Promise<void>;
|
3268
|
+
|
3264
3269
|
/**
|
3265
3270
|
* Registers origin to be notified when an update occurs to its IndexedDB.
|
3266
3271
|
*/
|
@@ -3276,6 +3281,11 @@ export namespace ProtocolProxyApi {
|
|
3276
3281
|
*/
|
3277
3282
|
untrackCacheStorageForOrigin(params: Protocol.Storage.UntrackCacheStorageForOriginRequest): Promise<void>;
|
3278
3283
|
|
3284
|
+
/**
|
3285
|
+
* Unregisters storage key from receiving notifications for cache storage.
|
3286
|
+
*/
|
3287
|
+
untrackCacheStorageForStorageKey(params: Protocol.Storage.UntrackCacheStorageForStorageKeyRequest): Promise<void>;
|
3288
|
+
|
3279
3289
|
/**
|
3280
3290
|
* Unregisters origin from receiving notifications for IndexedDB.
|
3281
3291
|
*/
|
package/types/protocol.d.ts
CHANGED
@@ -14810,6 +14810,13 @@ export namespace Protocol {
|
|
14810
14810
|
origin: string;
|
14811
14811
|
}
|
14812
14812
|
|
14813
|
+
export interface TrackCacheStorageForStorageKeyRequest {
|
14814
|
+
/**
|
14815
|
+
* Storage key.
|
14816
|
+
*/
|
14817
|
+
storageKey: string;
|
14818
|
+
}
|
14819
|
+
|
14813
14820
|
export interface TrackIndexedDBForOriginRequest {
|
14814
14821
|
/**
|
14815
14822
|
* Security origin.
|
@@ -14831,6 +14838,13 @@ export namespace Protocol {
|
|
14831
14838
|
origin: string;
|
14832
14839
|
}
|
14833
14840
|
|
14841
|
+
export interface UntrackCacheStorageForStorageKeyRequest {
|
14842
|
+
/**
|
14843
|
+
* Storage key.
|
14844
|
+
*/
|
14845
|
+
storageKey: string;
|
14846
|
+
}
|
14847
|
+
|
14834
14848
|
export interface UntrackIndexedDBForOriginRequest {
|
14835
14849
|
/**
|
14836
14850
|
* Security origin.
|
@@ -14921,6 +14935,10 @@ export namespace Protocol {
|
|
14921
14935
|
* Origin to update.
|
14922
14936
|
*/
|
14923
14937
|
origin: string;
|
14938
|
+
/**
|
14939
|
+
* Storage key to update.
|
14940
|
+
*/
|
14941
|
+
storageKey: string;
|
14924
14942
|
/**
|
14925
14943
|
* Name of cache in origin.
|
14926
14944
|
*/
|
@@ -14935,6 +14953,10 @@ export namespace Protocol {
|
|
14935
14953
|
* Origin to update.
|
14936
14954
|
*/
|
14937
14955
|
origin: string;
|
14956
|
+
/**
|
14957
|
+
* Storage key to update.
|
14958
|
+
*/
|
14959
|
+
storageKey: string;
|
14938
14960
|
}
|
14939
14961
|
|
14940
14962
|
/**
|