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.
@@ -22299,31 +22299,36 @@
22299
22299
  ]
22300
22300
  },
22301
22301
  {
22302
- "id": "SharedStorageAccessType",
22303
- "description": "Enum of shared storage access types.",
22302
+ "id": "SharedStorageAccessScope",
22303
+ "description": "Enum of shared storage access scopes.",
22304
22304
  "type": "string",
22305
22305
  "enum": [
22306
- "documentAddModule",
22307
- "documentSelectURL",
22308
- "documentRun",
22309
- "documentSet",
22310
- "documentAppend",
22311
- "documentDelete",
22312
- "documentClear",
22313
- "documentGet",
22314
- "workletSet",
22315
- "workletAppend",
22316
- "workletDelete",
22317
- "workletClear",
22318
- "workletGet",
22319
- "workletKeys",
22320
- "workletEntries",
22321
- "workletLength",
22322
- "workletRemainingBudget",
22323
- "headerSet",
22324
- "headerAppend",
22325
- "headerDelete",
22326
- "headerClear"
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": "type",
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": "SharedStorageAccessType"
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": "Serialized origin for the context that invoked the Shared Storage API.",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1436416",
3
+ "version": "0.0.1438564",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -10554,30 +10554,32 @@ experimental domain Storage
10554
10554
  bidderTrustedSignals
10555
10555
  sellerTrustedSignals
10556
10556
 
10557
- # Enum of shared storage access types.
10558
- type SharedStorageAccessType extends string
10559
- enum
10560
- documentAddModule
10561
- documentSelectURL
10562
- documentRun
10563
- documentSet
10564
- documentAppend
10565
- documentDelete
10566
- documentClear
10567
- documentGet
10568
- workletSet
10569
- workletAppend
10570
- workletDelete
10571
- workletClear
10572
- workletGet
10573
- workletKeys
10574
- workletEntries
10575
- workletLength
10576
- workletRemainingBudget
10577
- headerSet
10578
- headerAppend
10579
- headerDelete
10580
- headerClear
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
- SharedStorageAccessType type
11001
+ SharedStorageAccessMethod method
10998
11002
  # DevTools Frame Token for the primary frame tree's root.
10999
11003
  Page.FrameId mainFrameId
11000
- # Serialized origin for the context that invoked the Shared Storage API.
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
@@ -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 types.
16364
+ * Enum of shared storage access scopes.
16365
16365
  */
16366
- export type SharedStorageAccessType = ('documentAddModule' | 'documentSelectURL' | 'documentRun' | 'documentSet' | 'documentAppend' | 'documentDelete' | 'documentClear' | 'documentGet' | 'workletSet' | 'workletAppend' | 'workletDelete' | 'workletClear' | 'workletGet' | 'workletKeys' | 'workletEntries' | 'workletLength' | 'workletRemainingBudget' | 'headerSet' | 'headerAppend' | 'headerDelete' | 'headerClear');
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
- type: SharedStorageAccessType;
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
- * Serialized origin for the context that invoked the Shared Storage API.
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`.