devtools-protocol 0.0.1271365 → 0.0.1272579

Sign up to get free protection for your applications and to get access to all the features.
@@ -4583,6 +4583,30 @@
4583
4583
  }
4584
4584
  ]
4585
4585
  },
4586
+ {
4587
+ "name": "getLocationForSelector",
4588
+ "description": "Given a CSS selector text and a style sheet ID, getLocationForSelector\nreturns an array of locations of the CSS selector in the style sheet.",
4589
+ "experimental": true,
4590
+ "parameters": [
4591
+ {
4592
+ "name": "styleSheetId",
4593
+ "$ref": "StyleSheetId"
4594
+ },
4595
+ {
4596
+ "name": "selectorText",
4597
+ "type": "string"
4598
+ }
4599
+ ],
4600
+ "returns": [
4601
+ {
4602
+ "name": "ranges",
4603
+ "type": "array",
4604
+ "items": {
4605
+ "$ref": "SourceRange"
4606
+ }
4607
+ }
4608
+ ]
4609
+ },
4586
4610
  {
4587
4611
  "name": "trackComputedStyleUpdates",
4588
4612
  "description": "Starts tracking the given computed styles for updates. The specified array of properties\nreplaces the one previously specified. Pass empty array to disable tracking.\nUse takeComputedStyleUpdates to retrieve the list of nodes that had properties modified.\nThe changes to computed style properties are only tracked for nodes pushed to the front-end\nby the DOM agent. If no changes to the tracked properties occur after the node has been pushed\nto the front-end, no updates will be issued for the node.",
@@ -16493,7 +16517,7 @@
16493
16517
  "ch-ua-platform",
16494
16518
  "ch-ua-model",
16495
16519
  "ch-ua-mobile",
16496
- "ch-ua-form-factor",
16520
+ "ch-ua-form-factors",
16497
16521
  "ch-ua-full-version",
16498
16522
  "ch-ua-full-version-list",
16499
16523
  "ch-ua-platform-version",
@@ -20408,91 +20432,6 @@
20408
20432
  "sellerTrustedSignals"
20409
20433
  ]
20410
20434
  },
20411
- {
20412
- "id": "InterestGroupAd",
20413
- "description": "Ad advertising element inside an interest group.",
20414
- "type": "object",
20415
- "properties": [
20416
- {
20417
- "name": "renderURL",
20418
- "type": "string"
20419
- },
20420
- {
20421
- "name": "metadata",
20422
- "optional": true,
20423
- "type": "string"
20424
- }
20425
- ]
20426
- },
20427
- {
20428
- "id": "InterestGroupDetails",
20429
- "description": "The full details of an interest group.",
20430
- "type": "object",
20431
- "properties": [
20432
- {
20433
- "name": "ownerOrigin",
20434
- "type": "string"
20435
- },
20436
- {
20437
- "name": "name",
20438
- "type": "string"
20439
- },
20440
- {
20441
- "name": "expirationTime",
20442
- "$ref": "Network.TimeSinceEpoch"
20443
- },
20444
- {
20445
- "name": "joiningOrigin",
20446
- "type": "string"
20447
- },
20448
- {
20449
- "name": "biddingLogicURL",
20450
- "optional": true,
20451
- "type": "string"
20452
- },
20453
- {
20454
- "name": "biddingWasmHelperURL",
20455
- "optional": true,
20456
- "type": "string"
20457
- },
20458
- {
20459
- "name": "updateURL",
20460
- "optional": true,
20461
- "type": "string"
20462
- },
20463
- {
20464
- "name": "trustedBiddingSignalsURL",
20465
- "optional": true,
20466
- "type": "string"
20467
- },
20468
- {
20469
- "name": "trustedBiddingSignalsKeys",
20470
- "type": "array",
20471
- "items": {
20472
- "type": "string"
20473
- }
20474
- },
20475
- {
20476
- "name": "userBiddingSignals",
20477
- "optional": true,
20478
- "type": "string"
20479
- },
20480
- {
20481
- "name": "ads",
20482
- "type": "array",
20483
- "items": {
20484
- "$ref": "InterestGroupAd"
20485
- }
20486
- },
20487
- {
20488
- "name": "adComponents",
20489
- "type": "array",
20490
- "items": {
20491
- "$ref": "InterestGroupAd"
20492
- }
20493
- }
20494
- ]
20495
- },
20496
20435
  {
20497
20436
  "id": "SharedStorageAccessType",
20498
20437
  "description": "Enum of shared storage access types.",
@@ -20513,7 +20452,11 @@
20513
20452
  "workletKeys",
20514
20453
  "workletEntries",
20515
20454
  "workletLength",
20516
- "workletRemainingBudget"
20455
+ "workletRemainingBudget",
20456
+ "headerSet",
20457
+ "headerAppend",
20458
+ "headerDelete",
20459
+ "headerClear"
20517
20460
  ]
20518
20461
  },
20519
20462
  {
@@ -20627,19 +20570,19 @@
20627
20570
  },
20628
20571
  {
20629
20572
  "name": "key",
20630
- "description": "Key for a specific entry in an origin's shared storage.\nPresent only for SharedStorageAccessType.documentSet,\nSharedStorageAccessType.documentAppend,\nSharedStorageAccessType.documentDelete,\nSharedStorageAccessType.workletSet,\nSharedStorageAccessType.workletAppend,\nSharedStorageAccessType.workletDelete, and\nSharedStorageAccessType.workletGet.",
20573
+ "description": "Key for a specific entry in an origin's shared storage.\nPresent only for SharedStorageAccessType.documentSet,\nSharedStorageAccessType.documentAppend,\nSharedStorageAccessType.documentDelete,\nSharedStorageAccessType.workletSet,\nSharedStorageAccessType.workletAppend,\nSharedStorageAccessType.workletDelete,\nSharedStorageAccessType.workletGet,\nSharedStorageAccessType.headerSet,\nSharedStorageAccessType.headerAppend, and\nSharedStorageAccessType.headerDelete.",
20631
20574
  "optional": true,
20632
20575
  "type": "string"
20633
20576
  },
20634
20577
  {
20635
20578
  "name": "value",
20636
- "description": "Value for a specific entry in an origin's shared storage.\nPresent only for SharedStorageAccessType.documentSet,\nSharedStorageAccessType.documentAppend,\nSharedStorageAccessType.workletSet, and\nSharedStorageAccessType.workletAppend.",
20579
+ "description": "Value for a specific entry in an origin's shared storage.\nPresent only for SharedStorageAccessType.documentSet,\nSharedStorageAccessType.documentAppend,\nSharedStorageAccessType.workletSet,\nSharedStorageAccessType.workletAppend,\nSharedStorageAccessType.headerSet, and\nSharedStorageAccessType.headerAppend.",
20637
20580
  "optional": true,
20638
20581
  "type": "string"
20639
20582
  },
20640
20583
  {
20641
20584
  "name": "ignoreIfPresent",
20642
- "description": "Whether or not to set an entry for a key if that key is already present.\nPresent only for SharedStorageAccessType.documentSet and\nSharedStorageAccessType.workletSet.",
20585
+ "description": "Whether or not to set an entry for a key if that key is already present.\nPresent only for SharedStorageAccessType.documentSet,\nSharedStorageAccessType.workletSet, and\nSharedStorageAccessType.headerSet.",
20643
20586
  "optional": true,
20644
20587
  "type": "boolean"
20645
20588
  }
@@ -21156,6 +21099,38 @@
21156
21099
  "reportWindowPassed",
21157
21100
  "excessiveReports"
21158
21101
  ]
21102
+ },
21103
+ {
21104
+ "id": "RelatedWebsiteSet",
21105
+ "description": "A single Related Website Set object.",
21106
+ "experimental": true,
21107
+ "type": "object",
21108
+ "properties": [
21109
+ {
21110
+ "name": "primarySites",
21111
+ "description": "The primary site of this set, along with the ccTLDs if there is any.",
21112
+ "type": "array",
21113
+ "items": {
21114
+ "type": "string"
21115
+ }
21116
+ },
21117
+ {
21118
+ "name": "associatedSites",
21119
+ "description": "The associated sites of this set, along with the ccTLDs if there is any.",
21120
+ "type": "array",
21121
+ "items": {
21122
+ "type": "string"
21123
+ }
21124
+ },
21125
+ {
21126
+ "name": "serviceSites",
21127
+ "description": "The service sites of this set, along with the ccTLDs if there is any.",
21128
+ "type": "array",
21129
+ "items": {
21130
+ "type": "string"
21131
+ }
21132
+ }
21133
+ ]
21159
21134
  }
21160
21135
  ],
21161
21136
  "commands": [
@@ -21452,7 +21427,8 @@
21452
21427
  "returns": [
21453
21428
  {
21454
21429
  "name": "details",
21455
- "$ref": "InterestGroupDetails"
21430
+ "description": "This largely corresponds to:\nhttps://wicg.github.io/turtledove/#dictdef-generatebidinterestgroup\nbut has absolute expirationTime instead of relative lifetimeMs and\nalso adds joiningOrigin.",
21431
+ "type": "object"
21456
21432
  }
21457
21433
  ]
21458
21434
  },
@@ -21650,6 +21626,20 @@
21650
21626
  "type": "boolean"
21651
21627
  }
21652
21628
  ]
21629
+ },
21630
+ {
21631
+ "name": "getRelatedWebsiteSets",
21632
+ "description": "Returns the effective Related Website Sets in use by this profile for the browser\nsession. The effective Related Website Sets will not change during a browser session.",
21633
+ "experimental": true,
21634
+ "returns": [
21635
+ {
21636
+ "name": "sets",
21637
+ "type": "array",
21638
+ "items": {
21639
+ "$ref": "RelatedWebsiteSet"
21640
+ }
21641
+ }
21642
+ ]
21653
21643
  }
21654
21644
  ],
21655
21645
  "events": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1271365",
3
+ "version": "0.0.1272579",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2165,6 +2165,15 @@ experimental domain CSS
2165
2165
  returns
2166
2166
  CSSLayerData rootLayer
2167
2167
 
2168
+ # Given a CSS selector text and a style sheet ID, getLocationForSelector
2169
+ # returns an array of locations of the CSS selector in the style sheet.
2170
+ experimental command getLocationForSelector
2171
+ parameters
2172
+ StyleSheetId styleSheetId
2173
+ string selectorText
2174
+ returns
2175
+ array of SourceRange ranges
2176
+
2168
2177
  # Starts tracking the given computed styles for updates. The specified array of properties
2169
2178
  # replaces the one previously specified. Pass empty array to disable tracking.
2170
2179
  # Use takeComputedStyleUpdates to retrieve the list of nodes that had properties modified.
@@ -7735,7 +7744,7 @@ domain Page
7735
7744
  ch-ua-platform
7736
7745
  ch-ua-model
7737
7746
  ch-ua-mobile
7738
- ch-ua-form-factor
7747
+ ch-ua-form-factors
7739
7748
  ch-ua-full-version
7740
7749
  ch-ua-full-version-list
7741
7750
  ch-ua-platform-version
@@ -9655,28 +9664,6 @@ experimental domain Storage
9655
9664
  bidderTrustedSignals
9656
9665
  sellerTrustedSignals
9657
9666
 
9658
- # Ad advertising element inside an interest group.
9659
- type InterestGroupAd extends object
9660
- properties
9661
- string renderURL
9662
- optional string metadata
9663
-
9664
- # The full details of an interest group.
9665
- type InterestGroupDetails extends object
9666
- properties
9667
- string ownerOrigin
9668
- string name
9669
- Network.TimeSinceEpoch expirationTime
9670
- string joiningOrigin
9671
- optional string biddingLogicURL
9672
- optional string biddingWasmHelperURL
9673
- optional string updateURL
9674
- optional string trustedBiddingSignalsURL
9675
- array of string trustedBiddingSignalsKeys
9676
- optional string userBiddingSignals
9677
- array of InterestGroupAd ads
9678
- array of InterestGroupAd adComponents
9679
-
9680
9667
  # Enum of shared storage access types.
9681
9668
  type SharedStorageAccessType extends string
9682
9669
  enum
@@ -9696,6 +9683,10 @@ experimental domain Storage
9696
9683
  workletEntries
9697
9684
  workletLength
9698
9685
  workletRemainingBudget
9686
+ headerSet
9687
+ headerAppend
9688
+ headerDelete
9689
+ headerClear
9699
9690
 
9700
9691
  # Struct for a single key-value pair in an origin's shared storage.
9701
9692
  type SharedStorageEntry extends object
@@ -9754,18 +9745,24 @@ experimental domain Storage
9754
9745
  # SharedStorageAccessType.documentDelete,
9755
9746
  # SharedStorageAccessType.workletSet,
9756
9747
  # SharedStorageAccessType.workletAppend,
9757
- # SharedStorageAccessType.workletDelete, and
9758
- # SharedStorageAccessType.workletGet.
9748
+ # SharedStorageAccessType.workletDelete,
9749
+ # SharedStorageAccessType.workletGet,
9750
+ # SharedStorageAccessType.headerSet,
9751
+ # SharedStorageAccessType.headerAppend, and
9752
+ # SharedStorageAccessType.headerDelete.
9759
9753
  optional string key
9760
9754
  # Value for a specific entry in an origin's shared storage.
9761
9755
  # Present only for SharedStorageAccessType.documentSet,
9762
9756
  # SharedStorageAccessType.documentAppend,
9763
- # SharedStorageAccessType.workletSet, and
9764
- # SharedStorageAccessType.workletAppend.
9757
+ # SharedStorageAccessType.workletSet,
9758
+ # SharedStorageAccessType.workletAppend,
9759
+ # SharedStorageAccessType.headerSet, and
9760
+ # SharedStorageAccessType.headerAppend.
9765
9761
  optional string value
9766
9762
  # Whether or not to set an entry for a key if that key is already present.
9767
- # Present only for SharedStorageAccessType.documentSet and
9768
- # SharedStorageAccessType.workletSet.
9763
+ # Present only for SharedStorageAccessType.documentSet,
9764
+ # SharedStorageAccessType.workletSet, and
9765
+ # SharedStorageAccessType.headerSet.
9769
9766
  optional boolean ignoreIfPresent
9770
9767
 
9771
9768
  type StorageBucketsDurability extends string
@@ -9933,7 +9930,11 @@ experimental domain Storage
9933
9930
  string ownerOrigin
9934
9931
  string name
9935
9932
  returns
9936
- InterestGroupDetails details
9933
+ # This largely corresponds to:
9934
+ # https://wicg.github.io/turtledove/#dictdef-generatebidinterestgroup
9935
+ # but has absolute expirationTime instead of relative lifetimeMs and
9936
+ # also adds joiningOrigin.
9937
+ object details
9937
9938
 
9938
9939
  # Enables/Disables issuing of interestGroupAccessed events.
9939
9940
  experimental command setInterestGroupTracking
@@ -10311,6 +10312,22 @@ experimental domain Storage
10311
10312
  AttributionReportingEventLevelResult eventLevel
10312
10313
  AttributionReportingAggregatableResult aggregatable
10313
10314
 
10315
+ # A single Related Website Set object.
10316
+ experimental type RelatedWebsiteSet extends object
10317
+ properties
10318
+ # The primary site of this set, along with the ccTLDs if there is any.
10319
+ array of string primarySites
10320
+ # The associated sites of this set, along with the ccTLDs if there is any.
10321
+ array of string associatedSites
10322
+ # The service sites of this set, along with the ccTLDs if there is any.
10323
+ array of string serviceSites
10324
+
10325
+ # Returns the effective Related Website Sets in use by this profile for the browser
10326
+ # session. The effective Related Website Sets will not change during a browser session.
10327
+ experimental command getRelatedWebsiteSets
10328
+ returns
10329
+ array of RelatedWebsiteSet sets
10330
+
10314
10331
  # The SystemInfo domain defines methods and events for querying low-level system information.
10315
10332
  experimental domain SystemInfo
10316
10333
 
@@ -1780,6 +1780,14 @@ export namespace ProtocolMapping {
1780
1780
  paramsType: [Protocol.CSS.GetLayersForNodeRequest];
1781
1781
  returnType: Protocol.CSS.GetLayersForNodeResponse;
1782
1782
  };
1783
+ /**
1784
+ * Given a CSS selector text and a style sheet ID, getLocationForSelector
1785
+ * returns an array of locations of the CSS selector in the style sheet.
1786
+ */
1787
+ 'CSS.getLocationForSelector': {
1788
+ paramsType: [Protocol.CSS.GetLocationForSelectorRequest];
1789
+ returnType: Protocol.CSS.GetLocationForSelectorResponse;
1790
+ };
1783
1791
  /**
1784
1792
  * Starts tracking the given computed styles for updates. The specified array of properties
1785
1793
  * replaces the one previously specified. Pass empty array to disable tracking.
@@ -4384,6 +4392,14 @@ export namespace ProtocolMapping {
4384
4392
  paramsType: [Protocol.Storage.SetAttributionReportingTrackingRequest];
4385
4393
  returnType: void;
4386
4394
  };
4395
+ /**
4396
+ * Returns the effective Related Website Sets in use by this profile for the browser
4397
+ * session. The effective Related Website Sets will not change during a browser session.
4398
+ */
4399
+ 'Storage.getRelatedWebsiteSets': {
4400
+ paramsType: [];
4401
+ returnType: Protocol.Storage.GetRelatedWebsiteSetsResponse;
4402
+ };
4387
4403
  /**
4388
4404
  * Returns information about the system.
4389
4405
  */
@@ -1042,6 +1042,12 @@ export namespace ProtocolProxyApi {
1042
1042
  */
1043
1043
  getLayersForNode(params: Protocol.CSS.GetLayersForNodeRequest): Promise<Protocol.CSS.GetLayersForNodeResponse>;
1044
1044
 
1045
+ /**
1046
+ * Given a CSS selector text and a style sheet ID, getLocationForSelector
1047
+ * returns an array of locations of the CSS selector in the style sheet.
1048
+ */
1049
+ getLocationForSelector(params: Protocol.CSS.GetLocationForSelectorRequest): Promise<Protocol.CSS.GetLocationForSelectorResponse>;
1050
+
1045
1051
  /**
1046
1052
  * Starts tracking the given computed styles for updates. The specified array of properties
1047
1053
  * replaces the one previously specified. Pass empty array to disable tracking.
@@ -3487,6 +3493,12 @@ export namespace ProtocolProxyApi {
3487
3493
  */
3488
3494
  setAttributionReportingTracking(params: Protocol.Storage.SetAttributionReportingTrackingRequest): Promise<void>;
3489
3495
 
3496
+ /**
3497
+ * Returns the effective Related Website Sets in use by this profile for the browser
3498
+ * session. The effective Related Website Sets will not change during a browser session.
3499
+ */
3500
+ getRelatedWebsiteSets(): Promise<Protocol.Storage.GetRelatedWebsiteSetsResponse>;
3501
+
3490
3502
  /**
3491
3503
  * A cache's contents have been modified.
3492
3504
  */
@@ -1108,6 +1108,12 @@ export namespace ProtocolTestsProxyApi {
1108
1108
  */
1109
1109
  getLayersForNode(params: Protocol.CSS.GetLayersForNodeRequest): Promise<Protocol.CSS.GetLayersForNodeResponse>;
1110
1110
 
1111
+ /**
1112
+ * Given a CSS selector text and a style sheet ID, getLocationForSelector
1113
+ * returns an array of locations of the CSS selector in the style sheet.
1114
+ */
1115
+ getLocationForSelector(params: Protocol.CSS.GetLocationForSelectorRequest): Promise<Protocol.CSS.GetLocationForSelectorResponse>;
1116
+
1111
1117
  /**
1112
1118
  * Starts tracking the given computed styles for updates. The specified array of properties
1113
1119
  * replaces the one previously specified. Pass empty array to disable tracking.
@@ -3759,6 +3765,12 @@ export namespace ProtocolTestsProxyApi {
3759
3765
  */
3760
3766
  setAttributionReportingTracking(params: Protocol.Storage.SetAttributionReportingTrackingRequest): Promise<void>;
3761
3767
 
3768
+ /**
3769
+ * Returns the effective Related Website Sets in use by this profile for the browser
3770
+ * session. The effective Related Website Sets will not change during a browser session.
3771
+ */
3772
+ getRelatedWebsiteSets(): Promise<Protocol.Storage.GetRelatedWebsiteSetsResponse>;
3773
+
3762
3774
  /**
3763
3775
  * A cache's contents have been modified.
3764
3776
  */
@@ -5403,6 +5403,15 @@ export namespace Protocol {
5403
5403
  rootLayer: CSSLayerData;
5404
5404
  }
5405
5405
 
5406
+ export interface GetLocationForSelectorRequest {
5407
+ styleSheetId: StyleSheetId;
5408
+ selectorText: string;
5409
+ }
5410
+
5411
+ export interface GetLocationForSelectorResponse {
5412
+ ranges: SourceRange[];
5413
+ }
5414
+
5406
5415
  export interface TrackComputedStyleUpdatesRequest {
5407
5416
  propertiesToTrack: CSSComputedStyleProperty[];
5408
5417
  }
@@ -13058,7 +13067,7 @@ export namespace Protocol {
13058
13067
  * All Permissions Policy features. This enum should match the one defined
13059
13068
  * in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
13060
13069
  */
13061
- export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factor' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'sync-xhr' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-printing' | 'web-share' | 'window-management' | 'window-placement' | 'xr-spatial-tracking');
13070
+ export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'sync-xhr' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-printing' | 'web-share' | 'window-management' | 'window-placement' | 'xr-spatial-tracking');
13062
13071
 
13063
13072
  /**
13064
13073
  * Reason for a permissions policy feature to be disabled.
@@ -15340,36 +15349,10 @@ export namespace Protocol {
15340
15349
  */
15341
15350
  export type InterestGroupAuctionFetchType = ('bidderJs' | 'bidderWasm' | 'sellerJs' | 'bidderTrustedSignals' | 'sellerTrustedSignals');
15342
15351
 
15343
- /**
15344
- * Ad advertising element inside an interest group.
15345
- */
15346
- export interface InterestGroupAd {
15347
- renderURL: string;
15348
- metadata?: string;
15349
- }
15350
-
15351
- /**
15352
- * The full details of an interest group.
15353
- */
15354
- export interface InterestGroupDetails {
15355
- ownerOrigin: string;
15356
- name: string;
15357
- expirationTime: Network.TimeSinceEpoch;
15358
- joiningOrigin: string;
15359
- biddingLogicURL?: string;
15360
- biddingWasmHelperURL?: string;
15361
- updateURL?: string;
15362
- trustedBiddingSignalsURL?: string;
15363
- trustedBiddingSignalsKeys: string[];
15364
- userBiddingSignals?: string;
15365
- ads: InterestGroupAd[];
15366
- adComponents: InterestGroupAd[];
15367
- }
15368
-
15369
15352
  /**
15370
15353
  * Enum of shared storage access types.
15371
15354
  */
15372
- export type SharedStorageAccessType = ('documentAddModule' | 'documentSelectURL' | 'documentRun' | 'documentSet' | 'documentAppend' | 'documentDelete' | 'documentClear' | 'workletSet' | 'workletAppend' | 'workletDelete' | 'workletClear' | 'workletGet' | 'workletKeys' | 'workletEntries' | 'workletLength' | 'workletRemainingBudget');
15355
+ export type SharedStorageAccessType = ('documentAddModule' | 'documentSelectURL' | 'documentRun' | 'documentSet' | 'documentAppend' | 'documentDelete' | 'documentClear' | 'workletSet' | 'workletAppend' | 'workletDelete' | 'workletClear' | 'workletGet' | 'workletKeys' | 'workletEntries' | 'workletLength' | 'workletRemainingBudget' | 'headerSet' | 'headerAppend' | 'headerDelete' | 'headerClear');
15373
15356
 
15374
15357
  /**
15375
15358
  * Struct for a single key-value pair in an origin's shared storage.
@@ -15458,22 +15441,28 @@ export namespace Protocol {
15458
15441
  * SharedStorageAccessType.documentDelete,
15459
15442
  * SharedStorageAccessType.workletSet,
15460
15443
  * SharedStorageAccessType.workletAppend,
15461
- * SharedStorageAccessType.workletDelete, and
15462
- * SharedStorageAccessType.workletGet.
15444
+ * SharedStorageAccessType.workletDelete,
15445
+ * SharedStorageAccessType.workletGet,
15446
+ * SharedStorageAccessType.headerSet,
15447
+ * SharedStorageAccessType.headerAppend, and
15448
+ * SharedStorageAccessType.headerDelete.
15463
15449
  */
15464
15450
  key?: string;
15465
15451
  /**
15466
15452
  * Value for a specific entry in an origin's shared storage.
15467
15453
  * Present only for SharedStorageAccessType.documentSet,
15468
15454
  * SharedStorageAccessType.documentAppend,
15469
- * SharedStorageAccessType.workletSet, and
15470
- * SharedStorageAccessType.workletAppend.
15455
+ * SharedStorageAccessType.workletSet,
15456
+ * SharedStorageAccessType.workletAppend,
15457
+ * SharedStorageAccessType.headerSet, and
15458
+ * SharedStorageAccessType.headerAppend.
15471
15459
  */
15472
15460
  value?: string;
15473
15461
  /**
15474
15462
  * Whether or not to set an entry for a key if that key is already present.
15475
- * Present only for SharedStorageAccessType.documentSet and
15476
- * SharedStorageAccessType.workletSet.
15463
+ * Present only for SharedStorageAccessType.documentSet,
15464
+ * SharedStorageAccessType.workletSet, and
15465
+ * SharedStorageAccessType.headerSet.
15477
15466
  */
15478
15467
  ignoreIfPresent?: boolean;
15479
15468
  }
@@ -15629,6 +15618,24 @@ export namespace Protocol {
15629
15618
 
15630
15619
  export type AttributionReportingAggregatableResult = ('success' | 'internalError' | 'noCapacityForAttributionDestination' | 'noMatchingSources' | 'excessiveAttributions' | 'excessiveReportingOrigins' | 'noHistograms' | 'insufficientBudget' | 'noMatchingSourceFilterData' | 'notRegistered' | 'prohibitedByBrowserPolicy' | 'deduplicated' | 'reportWindowPassed' | 'excessiveReports');
15631
15620
 
15621
+ /**
15622
+ * A single Related Website Set object.
15623
+ */
15624
+ export interface RelatedWebsiteSet {
15625
+ /**
15626
+ * The primary site of this set, along with the ccTLDs if there is any.
15627
+ */
15628
+ primarySites: string[];
15629
+ /**
15630
+ * The associated sites of this set, along with the ccTLDs if there is any.
15631
+ */
15632
+ associatedSites: string[];
15633
+ /**
15634
+ * The service sites of this set, along with the ccTLDs if there is any.
15635
+ */
15636
+ serviceSites: string[];
15637
+ }
15638
+
15632
15639
  export interface GetStorageKeyForFrameRequest {
15633
15640
  frameId: Page.FrameId;
15634
15641
  }
@@ -15811,7 +15818,13 @@ export namespace Protocol {
15811
15818
  }
15812
15819
 
15813
15820
  export interface GetInterestGroupDetailsResponse {
15814
- details: InterestGroupDetails;
15821
+ /**
15822
+ * This largely corresponds to:
15823
+ * https://wicg.github.io/turtledove/#dictdef-generatebidinterestgroup
15824
+ * but has absolute expirationTime instead of relative lifetimeMs and
15825
+ * also adds joiningOrigin.
15826
+ */
15827
+ details: any;
15815
15828
  }
15816
15829
 
15817
15830
  export interface SetInterestGroupTrackingRequest {
@@ -15890,6 +15903,10 @@ export namespace Protocol {
15890
15903
  enable: boolean;
15891
15904
  }
15892
15905
 
15906
+ export interface GetRelatedWebsiteSetsResponse {
15907
+ sets: RelatedWebsiteSet[];
15908
+ }
15909
+
15893
15910
  /**
15894
15911
  * A cache's contents have been modified.
15895
15912
  */