devtools-protocol 0.0.1084670 → 0.0.1085283
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.
@@ -19836,6 +19836,17 @@
|
|
19836
19836
|
}
|
19837
19837
|
]
|
19838
19838
|
},
|
19839
|
+
{
|
19840
|
+
"name": "resetSharedStorageBudget",
|
19841
|
+
"description": "Resets the budget for `ownerOrigin` by clearing all budget withdrawals.",
|
19842
|
+
"experimental": true,
|
19843
|
+
"parameters": [
|
19844
|
+
{
|
19845
|
+
"name": "ownerOrigin",
|
19846
|
+
"type": "string"
|
19847
|
+
}
|
19848
|
+
]
|
19849
|
+
},
|
19839
19850
|
{
|
19840
19851
|
"name": "setSharedStorageTracking",
|
19841
19852
|
"description": "Enables/disables issuing of sharedStorageAccessed events.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -9381,6 +9381,11 @@ experimental domain Storage
|
|
9381
9381
|
parameters
|
9382
9382
|
string ownerOrigin
|
9383
9383
|
|
9384
|
+
# Resets the budget for `ownerOrigin` by clearing all budget withdrawals.
|
9385
|
+
experimental command resetSharedStorageBudget
|
9386
|
+
parameters
|
9387
|
+
string ownerOrigin
|
9388
|
+
|
9384
9389
|
# Enables/disables issuing of sharedStorageAccessed events.
|
9385
9390
|
experimental command setSharedStorageTracking
|
9386
9391
|
parameters
|
@@ -4151,6 +4151,13 @@ export namespace ProtocolMapping {
|
|
4151
4151
|
paramsType: [Protocol.Storage.ClearSharedStorageEntriesRequest];
|
4152
4152
|
returnType: void;
|
4153
4153
|
};
|
4154
|
+
/**
|
4155
|
+
* Resets the budget for `ownerOrigin` by clearing all budget withdrawals.
|
4156
|
+
*/
|
4157
|
+
'Storage.resetSharedStorageBudget': {
|
4158
|
+
paramsType: [Protocol.Storage.ResetSharedStorageBudgetRequest];
|
4159
|
+
returnType: void;
|
4160
|
+
};
|
4154
4161
|
/**
|
4155
4162
|
* Enables/disables issuing of sharedStorageAccessed events.
|
4156
4163
|
*/
|
@@ -3343,6 +3343,11 @@ export namespace ProtocolProxyApi {
|
|
3343
3343
|
*/
|
3344
3344
|
clearSharedStorageEntries(params: Protocol.Storage.ClearSharedStorageEntriesRequest): Promise<void>;
|
3345
3345
|
|
3346
|
+
/**
|
3347
|
+
* Resets the budget for `ownerOrigin` by clearing all budget withdrawals.
|
3348
|
+
*/
|
3349
|
+
resetSharedStorageBudget(params: Protocol.Storage.ResetSharedStorageBudgetRequest): Promise<void>;
|
3350
|
+
|
3346
3351
|
/**
|
3347
3352
|
* Enables/disables issuing of sharedStorageAccessed events.
|
3348
3353
|
*/
|
package/types/protocol.d.ts
CHANGED
@@ -14934,6 +14934,10 @@ export namespace Protocol {
|
|
14934
14934
|
ownerOrigin: string;
|
14935
14935
|
}
|
14936
14936
|
|
14937
|
+
export interface ResetSharedStorageBudgetRequest {
|
14938
|
+
ownerOrigin: string;
|
14939
|
+
}
|
14940
|
+
|
14937
14941
|
export interface SetSharedStorageTrackingRequest {
|
14938
14942
|
enable: boolean;
|
14939
14943
|
}
|