devtools-protocol 0.0.1072049 → 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.
@@ -17571,8 +17571,9 @@
|
|
17571
17571
|
"type": "string",
|
17572
17572
|
"enum": [
|
17573
17573
|
"none",
|
17574
|
-
"
|
17575
|
-
"
|
17574
|
+
"autoAccept",
|
17575
|
+
"autoReject",
|
17576
|
+
"autoOptOut"
|
17576
17577
|
]
|
17577
17578
|
}
|
17578
17579
|
]
|
@@ -19581,6 +19582,17 @@
|
|
19581
19582
|
}
|
19582
19583
|
]
|
19583
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
|
+
},
|
19584
19596
|
{
|
19585
19597
|
"name": "trackIndexedDBForOrigin",
|
19586
19598
|
"description": "Registers origin to be notified when an update occurs to its IndexedDB.",
|
@@ -19614,6 +19626,17 @@
|
|
19614
19626
|
}
|
19615
19627
|
]
|
19616
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
|
+
},
|
19617
19640
|
{
|
19618
19641
|
"name": "untrackIndexedDBForOrigin",
|
19619
19642
|
"description": "Unregisters origin from receiving notifications for IndexedDB.",
|
@@ -19810,6 +19833,11 @@
|
|
19810
19833
|
"description": "Origin to update.",
|
19811
19834
|
"type": "string"
|
19812
19835
|
},
|
19836
|
+
{
|
19837
|
+
"name": "storageKey",
|
19838
|
+
"description": "Storage key to update.",
|
19839
|
+
"type": "string"
|
19840
|
+
},
|
19813
19841
|
{
|
19814
19842
|
"name": "cacheName",
|
19815
19843
|
"description": "Name of cache in origin.",
|
@@ -19825,6 +19853,11 @@
|
|
19825
19853
|
"name": "origin",
|
19826
19854
|
"description": "Origin to update.",
|
19827
19855
|
"type": "string"
|
19856
|
+
},
|
19857
|
+
{
|
19858
|
+
"name": "storageKey",
|
19859
|
+
"description": "Storage key to update.",
|
19860
|
+
"type": "string"
|
19828
19861
|
}
|
19829
19862
|
]
|
19830
19863
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -8121,8 +8121,9 @@ domain Page
|
|
8121
8121
|
parameters
|
8122
8122
|
enum mode
|
8123
8123
|
none
|
8124
|
-
|
8125
|
-
|
8124
|
+
autoAccept
|
8125
|
+
autoReject
|
8126
|
+
autoOptOut
|
8126
8127
|
|
8127
8128
|
# Generates a report for testing.
|
8128
8129
|
experimental command generateTestReport
|
@@ -9261,6 +9262,12 @@ experimental domain Storage
|
|
9261
9262
|
# Security origin.
|
9262
9263
|
string origin
|
9263
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
|
+
|
9264
9271
|
# Registers origin to be notified when an update occurs to its IndexedDB.
|
9265
9272
|
command trackIndexedDBForOrigin
|
9266
9273
|
parameters
|
@@ -9279,6 +9286,12 @@ experimental domain Storage
|
|
9279
9286
|
# Security origin.
|
9280
9287
|
string origin
|
9281
9288
|
|
9289
|
+
# Unregisters storage key from receiving notifications for cache storage.
|
9290
|
+
command untrackCacheStorageForStorageKey
|
9291
|
+
parameters
|
9292
|
+
# Storage key.
|
9293
|
+
string storageKey
|
9294
|
+
|
9282
9295
|
# Unregisters origin from receiving notifications for IndexedDB.
|
9283
9296
|
command untrackIndexedDBForOrigin
|
9284
9297
|
parameters
|
@@ -9364,6 +9377,8 @@ experimental domain Storage
|
|
9364
9377
|
parameters
|
9365
9378
|
# Origin to update.
|
9366
9379
|
string origin
|
9380
|
+
# Storage key to update.
|
9381
|
+
string storageKey
|
9367
9382
|
# Name of cache in origin.
|
9368
9383
|
string cacheName
|
9369
9384
|
|
@@ -9372,6 +9387,8 @@ experimental domain Storage
|
|
9372
9387
|
parameters
|
9373
9388
|
# Origin to update.
|
9374
9389
|
string origin
|
9390
|
+
# Storage key to update.
|
9391
|
+
string storageKey
|
9375
9392
|
|
9376
9393
|
# The origin's IndexedDB object store has been modified.
|
9377
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
@@ -13557,15 +13557,16 @@ export namespace Protocol {
|
|
13557
13557
|
|
13558
13558
|
export const enum SetSPCTransactionModeRequestMode {
|
13559
13559
|
None = 'none',
|
13560
|
-
|
13561
|
-
|
13560
|
+
AutoAccept = 'autoAccept',
|
13561
|
+
AutoReject = 'autoReject',
|
13562
|
+
AutoOptOut = 'autoOptOut',
|
13562
13563
|
}
|
13563
13564
|
|
13564
13565
|
export interface SetSPCTransactionModeRequest {
|
13565
13566
|
/**
|
13566
13567
|
* (SetSPCTransactionModeRequestMode enum)
|
13567
13568
|
*/
|
13568
|
-
mode: ('none' | '
|
13569
|
+
mode: ('none' | 'autoAccept' | 'autoReject' | 'autoOptOut');
|
13569
13570
|
}
|
13570
13571
|
|
13571
13572
|
export interface GenerateTestReportRequest {
|
@@ -14809,6 +14810,13 @@ export namespace Protocol {
|
|
14809
14810
|
origin: string;
|
14810
14811
|
}
|
14811
14812
|
|
14813
|
+
export interface TrackCacheStorageForStorageKeyRequest {
|
14814
|
+
/**
|
14815
|
+
* Storage key.
|
14816
|
+
*/
|
14817
|
+
storageKey: string;
|
14818
|
+
}
|
14819
|
+
|
14812
14820
|
export interface TrackIndexedDBForOriginRequest {
|
14813
14821
|
/**
|
14814
14822
|
* Security origin.
|
@@ -14830,6 +14838,13 @@ export namespace Protocol {
|
|
14830
14838
|
origin: string;
|
14831
14839
|
}
|
14832
14840
|
|
14841
|
+
export interface UntrackCacheStorageForStorageKeyRequest {
|
14842
|
+
/**
|
14843
|
+
* Storage key.
|
14844
|
+
*/
|
14845
|
+
storageKey: string;
|
14846
|
+
}
|
14847
|
+
|
14833
14848
|
export interface UntrackIndexedDBForOriginRequest {
|
14834
14849
|
/**
|
14835
14850
|
* Security origin.
|
@@ -14920,6 +14935,10 @@ export namespace Protocol {
|
|
14920
14935
|
* Origin to update.
|
14921
14936
|
*/
|
14922
14937
|
origin: string;
|
14938
|
+
/**
|
14939
|
+
* Storage key to update.
|
14940
|
+
*/
|
14941
|
+
storageKey: string;
|
14923
14942
|
/**
|
14924
14943
|
* Name of cache in origin.
|
14925
14944
|
*/
|
@@ -14934,6 +14953,10 @@ export namespace Protocol {
|
|
14934
14953
|
* Origin to update.
|
14935
14954
|
*/
|
14936
14955
|
origin: string;
|
14956
|
+
/**
|
14957
|
+
* Storage key to update.
|
14958
|
+
*/
|
14959
|
+
storageKey: string;
|
14937
14960
|
}
|
14938
14961
|
|
14939
14962
|
/**
|