devtools-protocol 0.0.1436416 → 0.0.1438564
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/json/browser_protocol.json +41 -26
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +32 -26
- package/types/protocol.d.ts +17 -4
@@ -22299,31 +22299,36 @@
|
|
22299
22299
|
]
|
22300
22300
|
},
|
22301
22301
|
{
|
22302
|
-
"id": "
|
22303
|
-
"description": "Enum of shared storage access
|
22302
|
+
"id": "SharedStorageAccessScope",
|
22303
|
+
"description": "Enum of shared storage access scopes.",
|
22304
22304
|
"type": "string",
|
22305
22305
|
"enum": [
|
22306
|
-
"
|
22307
|
-
"
|
22308
|
-
"
|
22309
|
-
"
|
22310
|
-
|
22311
|
-
|
22312
|
-
|
22313
|
-
|
22314
|
-
|
22315
|
-
|
22316
|
-
|
22317
|
-
"
|
22318
|
-
"
|
22319
|
-
"
|
22320
|
-
"
|
22321
|
-
"
|
22322
|
-
"
|
22323
|
-
"
|
22324
|
-
"
|
22325
|
-
"
|
22326
|
-
"
|
22306
|
+
"window",
|
22307
|
+
"sharedStorageWorklet",
|
22308
|
+
"protectedAudienceWorklet",
|
22309
|
+
"header"
|
22310
|
+
]
|
22311
|
+
},
|
22312
|
+
{
|
22313
|
+
"id": "SharedStorageAccessMethod",
|
22314
|
+
"description": "Enum of shared storage access methods.",
|
22315
|
+
"type": "string",
|
22316
|
+
"enum": [
|
22317
|
+
"addModule",
|
22318
|
+
"createWorklet",
|
22319
|
+
"selectURL",
|
22320
|
+
"run",
|
22321
|
+
"batchUpdate",
|
22322
|
+
"set",
|
22323
|
+
"append",
|
22324
|
+
"delete",
|
22325
|
+
"clear",
|
22326
|
+
"get",
|
22327
|
+
"keys",
|
22328
|
+
"values",
|
22329
|
+
"entries",
|
22330
|
+
"length",
|
22331
|
+
"remainingBudget"
|
22327
22332
|
]
|
22328
22333
|
},
|
22329
22334
|
{
|
@@ -23874,9 +23879,14 @@
|
|
23874
23879
|
"$ref": "Network.TimeSinceEpoch"
|
23875
23880
|
},
|
23876
23881
|
{
|
23877
|
-
"name": "
|
23882
|
+
"name": "scope",
|
23883
|
+
"description": "Enum value indicating the access scope.",
|
23884
|
+
"$ref": "SharedStorageAccessScope"
|
23885
|
+
},
|
23886
|
+
{
|
23887
|
+
"name": "method",
|
23878
23888
|
"description": "Enum value indicating the Shared Storage API method invoked.",
|
23879
|
-
"$ref": "
|
23889
|
+
"$ref": "SharedStorageAccessMethod"
|
23880
23890
|
},
|
23881
23891
|
{
|
23882
23892
|
"name": "mainFrameId",
|
@@ -23885,7 +23895,12 @@
|
|
23885
23895
|
},
|
23886
23896
|
{
|
23887
23897
|
"name": "ownerOrigin",
|
23888
|
-
"description": "
|
23898
|
+
"description": "Serialization of the origin owning the Shared Storage data.",
|
23899
|
+
"type": "string"
|
23900
|
+
},
|
23901
|
+
{
|
23902
|
+
"name": "ownerSite",
|
23903
|
+
"description": "Serialization of the site owning the Shared Storage data.",
|
23889
23904
|
"type": "string"
|
23890
23905
|
},
|
23891
23906
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -10554,30 +10554,32 @@ experimental domain Storage
|
|
10554
10554
|
bidderTrustedSignals
|
10555
10555
|
sellerTrustedSignals
|
10556
10556
|
|
10557
|
-
# Enum of shared storage access
|
10558
|
-
type
|
10559
|
-
enum
|
10560
|
-
|
10561
|
-
|
10562
|
-
|
10563
|
-
|
10564
|
-
|
10565
|
-
|
10566
|
-
|
10567
|
-
|
10568
|
-
|
10569
|
-
|
10570
|
-
|
10571
|
-
|
10572
|
-
|
10573
|
-
|
10574
|
-
|
10575
|
-
|
10576
|
-
|
10577
|
-
|
10578
|
-
|
10579
|
-
|
10580
|
-
|
10557
|
+
# Enum of shared storage access scopes.
|
10558
|
+
type SharedStorageAccessScope extends string
|
10559
|
+
enum
|
10560
|
+
window
|
10561
|
+
sharedStorageWorklet
|
10562
|
+
protectedAudienceWorklet
|
10563
|
+
header
|
10564
|
+
|
10565
|
+
# Enum of shared storage access methods.
|
10566
|
+
type SharedStorageAccessMethod extends string
|
10567
|
+
enum
|
10568
|
+
addModule
|
10569
|
+
createWorklet
|
10570
|
+
selectURL
|
10571
|
+
run
|
10572
|
+
batchUpdate
|
10573
|
+
set
|
10574
|
+
append
|
10575
|
+
delete
|
10576
|
+
clear
|
10577
|
+
get
|
10578
|
+
keys
|
10579
|
+
values
|
10580
|
+
entries
|
10581
|
+
length
|
10582
|
+
remainingBudget
|
10581
10583
|
|
10582
10584
|
# Struct for a single key-value pair in an origin's shared storage.
|
10583
10585
|
type SharedStorageEntry extends object
|
@@ -10993,12 +10995,16 @@ experimental domain Storage
|
|
10993
10995
|
parameters
|
10994
10996
|
# Time of the access.
|
10995
10997
|
Network.TimeSinceEpoch accessTime
|
10998
|
+
# Enum value indicating the access scope.
|
10999
|
+
SharedStorageAccessScope scope
|
10996
11000
|
# Enum value indicating the Shared Storage API method invoked.
|
10997
|
-
|
11001
|
+
SharedStorageAccessMethod method
|
10998
11002
|
# DevTools Frame Token for the primary frame tree's root.
|
10999
11003
|
Page.FrameId mainFrameId
|
11000
|
-
#
|
11004
|
+
# Serialization of the origin owning the Shared Storage data.
|
11001
11005
|
string ownerOrigin
|
11006
|
+
# Serialization of the site owning the Shared Storage data.
|
11007
|
+
string ownerSite
|
11002
11008
|
# The sub-parameters wrapped by `params` are all optional and their
|
11003
11009
|
# presence/absence depends on `type`.
|
11004
11010
|
SharedStorageAccessParams params
|
package/types/protocol.d.ts
CHANGED
@@ -16361,9 +16361,14 @@ export namespace Protocol {
|
|
16361
16361
|
export type InterestGroupAuctionFetchType = ('bidderJs' | 'bidderWasm' | 'sellerJs' | 'bidderTrustedSignals' | 'sellerTrustedSignals');
|
16362
16362
|
|
16363
16363
|
/**
|
16364
|
-
* Enum of shared storage access
|
16364
|
+
* Enum of shared storage access scopes.
|
16365
16365
|
*/
|
16366
|
-
export type
|
16366
|
+
export type SharedStorageAccessScope = ('window' | 'sharedStorageWorklet' | 'protectedAudienceWorklet' | 'header');
|
16367
|
+
|
16368
|
+
/**
|
16369
|
+
* Enum of shared storage access methods.
|
16370
|
+
*/
|
16371
|
+
export type SharedStorageAccessMethod = ('addModule' | 'createWorklet' | 'selectURL' | 'run' | 'batchUpdate' | 'set' | 'append' | 'delete' | 'clear' | 'get' | 'keys' | 'values' | 'entries' | 'length' | 'remainingBudget');
|
16367
16372
|
|
16368
16373
|
/**
|
16369
16374
|
* Struct for a single key-value pair in an origin's shared storage.
|
@@ -17136,18 +17141,26 @@ export namespace Protocol {
|
|
17136
17141
|
* Time of the access.
|
17137
17142
|
*/
|
17138
17143
|
accessTime: Network.TimeSinceEpoch;
|
17144
|
+
/**
|
17145
|
+
* Enum value indicating the access scope.
|
17146
|
+
*/
|
17147
|
+
scope: SharedStorageAccessScope;
|
17139
17148
|
/**
|
17140
17149
|
* Enum value indicating the Shared Storage API method invoked.
|
17141
17150
|
*/
|
17142
|
-
|
17151
|
+
method: SharedStorageAccessMethod;
|
17143
17152
|
/**
|
17144
17153
|
* DevTools Frame Token for the primary frame tree's root.
|
17145
17154
|
*/
|
17146
17155
|
mainFrameId: Page.FrameId;
|
17147
17156
|
/**
|
17148
|
-
*
|
17157
|
+
* Serialization of the origin owning the Shared Storage data.
|
17149
17158
|
*/
|
17150
17159
|
ownerOrigin: string;
|
17160
|
+
/**
|
17161
|
+
* Serialization of the site owning the Shared Storage data.
|
17162
|
+
*/
|
17163
|
+
ownerSite: string;
|
17151
17164
|
/**
|
17152
17165
|
* The sub-parameters wrapped by `params` are all optional and their
|
17153
17166
|
* presence/absence depends on `type`.
|