devtools-protocol 0.0.1249784 → 0.0.1250650

Sign up to get free protection for your applications and to get access to all the features.
@@ -1100,6 +1100,7 @@
1100
1100
  "Frame",
1101
1101
  "Image",
1102
1102
  "Import",
1103
+ "JSON",
1103
1104
  "Manifest",
1104
1105
  "Ping",
1105
1106
  "PluginData",
@@ -20238,18 +20239,6 @@
20238
20239
  "configResolved"
20239
20240
  ]
20240
20241
  },
20241
- {
20242
- "id": "InterestGroupAuctionFetchType",
20243
- "description": "Enum of network fetches auctions can do.",
20244
- "type": "string",
20245
- "enum": [
20246
- "bidderJs",
20247
- "bidderWasm",
20248
- "sellerJs",
20249
- "bidderTrustedSignals",
20250
- "sellerTrustedSignals"
20251
- ]
20252
- },
20253
20242
  {
20254
20243
  "id": "InterestGroupAd",
20255
20244
  "description": "Ad advertising element inside an interest group.",
@@ -21285,7 +21274,7 @@
21285
21274
  },
21286
21275
  {
21287
21276
  "name": "setInterestGroupAuctionTracking",
21288
- "description": "Enables/Disables issuing of interestGroupAuctionEventOccurred and\ninterestGroupAuctionNetworkRequestCreated.",
21277
+ "description": "Enables/Disables issuing of interestGroupAuctionEvent events.",
21289
21278
  "experimental": true,
21290
21279
  "parameters": [
21291
21280
  {
@@ -21643,28 +21632,6 @@
21643
21632
  }
21644
21633
  ]
21645
21634
  },
21646
- {
21647
- "name": "interestGroupAuctionNetworkRequestCreated",
21648
- "description": "Specifies which auctions a particular network fetch may be related to, and\nin what role. Note that it is not ordered with respect to\nNetwork.requestWillBeSent (but will happen before loadingFinished\nloadingFailed).",
21649
- "parameters": [
21650
- {
21651
- "name": "type",
21652
- "$ref": "InterestGroupAuctionFetchType"
21653
- },
21654
- {
21655
- "name": "requestId",
21656
- "$ref": "Network.RequestId"
21657
- },
21658
- {
21659
- "name": "auctions",
21660
- "description": "This is the set of the auctions using the worklet that issued this\nrequest. In the case of trusted signals, it's possible that only some of\nthem actually care about the keys being queried.",
21661
- "type": "array",
21662
- "items": {
21663
- "$ref": "InterestGroupAuctionId"
21664
- }
21665
- }
21666
- ]
21667
- },
21668
21635
  {
21669
21636
  "name": "sharedStorageAccessed",
21670
21637
  "description": "Shared storage was accessed by the associated page.\nThe following parameters are included in all events.",
@@ -25068,6 +25035,15 @@
25068
25035
  "ErrorMoreDetails"
25069
25036
  ]
25070
25037
  },
25038
+ {
25039
+ "id": "AccountUrlType",
25040
+ "description": "The URLs that each account has",
25041
+ "type": "string",
25042
+ "enum": [
25043
+ "TermsOfService",
25044
+ "PrivacyPolicy"
25045
+ ]
25046
+ },
25071
25047
  {
25072
25048
  "id": "Account",
25073
25049
  "description": "Corresponds to IdentityRequestAccount",
@@ -25202,6 +25178,23 @@
25202
25178
  }
25203
25179
  ]
25204
25180
  },
25181
+ {
25182
+ "name": "openUrl",
25183
+ "parameters": [
25184
+ {
25185
+ "name": "dialogId",
25186
+ "type": "string"
25187
+ },
25188
+ {
25189
+ "name": "accountIndex",
25190
+ "type": "integer"
25191
+ },
25192
+ {
25193
+ "name": "accountUrlType",
25194
+ "$ref": "AccountUrlType"
25195
+ }
25196
+ ]
25197
+ },
25205
25198
  {
25206
25199
  "name": "dismissDialog",
25207
25200
  "parameters": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1249784",
3
+ "version": "0.0.1250650",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -545,6 +545,7 @@ experimental domain Audits
545
545
  Frame
546
546
  Image
547
547
  Import
548
+ JSON
548
549
  Manifest
549
550
  Ping
550
551
  PluginData
@@ -9545,15 +9546,6 @@ experimental domain Storage
9545
9546
  started
9546
9547
  configResolved
9547
9548
 
9548
- # Enum of network fetches auctions can do.
9549
- type InterestGroupAuctionFetchType extends string
9550
- enum
9551
- bidderJs
9552
- bidderWasm
9553
- sellerJs
9554
- bidderTrustedSignals
9555
- sellerTrustedSignals
9556
-
9557
9549
  # Ad advertising element inside an interest group.
9558
9550
  type InterestGroupAd extends object
9559
9551
  properties
@@ -9833,8 +9825,7 @@ experimental domain Storage
9833
9825
  parameters
9834
9826
  boolean enable
9835
9827
 
9836
- # Enables/Disables issuing of interestGroupAuctionEventOccurred and
9837
- # interestGroupAuctionNetworkRequestCreated.
9828
+ # Enables/Disables issuing of interestGroupAuctionEvent events.
9838
9829
  experimental command setInterestGroupAuctionTracking
9839
9830
  parameters
9840
9831
  boolean enable
@@ -9975,19 +9966,6 @@ experimental domain Storage
9975
9966
  # Set for started and configResolved
9976
9967
  optional object auctionConfig
9977
9968
 
9978
- # Specifies which auctions a particular network fetch may be related to, and
9979
- # in what role. Note that it is not ordered with respect to
9980
- # Network.requestWillBeSent (but will happen before loadingFinished
9981
- # loadingFailed).
9982
- event interestGroupAuctionNetworkRequestCreated
9983
- parameters
9984
- InterestGroupAuctionFetchType type
9985
- Network.RequestId requestId
9986
- # This is the set of the auctions using the worklet that issued this
9987
- # request. In the case of trusted signals, it's possible that only some of
9988
- # them actually care about the keys being queried.
9989
- array of InterestGroupAuctionId auctions
9990
-
9991
9969
  # Shared storage was accessed by the associated page.
9992
9970
  # The following parameters are included in all events.
9993
9971
  event sharedStorageAccessed
@@ -11854,6 +11832,12 @@ experimental domain FedCm
11854
11832
  ErrorGotIt
11855
11833
  ErrorMoreDetails
11856
11834
 
11835
+ # The URLs that each account has
11836
+ type AccountUrlType extends string
11837
+ enum
11838
+ TermsOfService
11839
+ PrivacyPolicy
11840
+
11857
11841
  # Corresponds to IdentityRequestAccount
11858
11842
  type Account extends object
11859
11843
  properties
@@ -11904,6 +11888,12 @@ experimental domain FedCm
11904
11888
  string dialogId
11905
11889
  DialogButton dialogButton
11906
11890
 
11891
+ command openUrl
11892
+ parameters
11893
+ string dialogId
11894
+ integer accountIndex
11895
+ AccountUrlType accountUrlType
11896
+
11907
11897
  command dismissDialog
11908
11898
  parameters
11909
11899
  string dialogId
@@ -561,13 +561,6 @@ export namespace ProtocolMapping {
561
561
  * target-specific.
562
562
  */
563
563
  'Storage.interestGroupAuctionEventOccurred': [Protocol.Storage.InterestGroupAuctionEventOccurredEvent];
564
- /**
565
- * Specifies which auctions a particular network fetch may be related to, and
566
- * in what role. Note that it is not ordered with respect to
567
- * Network.requestWillBeSent (but will happen before loadingFinished
568
- * loadingFailed).
569
- */
570
- 'Storage.interestGroupAuctionNetworkRequestCreated': [Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent];
571
564
  /**
572
565
  * Shared storage was accessed by the associated page.
573
566
  * The following parameters are included in all events.
@@ -4292,8 +4285,7 @@ export namespace ProtocolMapping {
4292
4285
  returnType: void;
4293
4286
  };
4294
4287
  /**
4295
- * Enables/Disables issuing of interestGroupAuctionEventOccurred and
4296
- * interestGroupAuctionNetworkRequestCreated.
4288
+ * Enables/Disables issuing of interestGroupAuctionEvent events.
4297
4289
  */
4298
4290
  'Storage.setInterestGroupAuctionTracking': {
4299
4291
  paramsType: [Protocol.Storage.SetInterestGroupAuctionTrackingRequest];
@@ -4852,6 +4844,10 @@ export namespace ProtocolMapping {
4852
4844
  paramsType: [Protocol.FedCm.ClickDialogButtonRequest];
4853
4845
  returnType: void;
4854
4846
  };
4847
+ 'FedCm.openUrl': {
4848
+ paramsType: [Protocol.FedCm.OpenUrlRequest];
4849
+ returnType: void;
4850
+ };
4855
4851
  'FedCm.dismissDialog': {
4856
4852
  paramsType: [Protocol.FedCm.DismissDialogRequest];
4857
4853
  returnType: void;
@@ -3421,8 +3421,7 @@ export namespace ProtocolProxyApi {
3421
3421
  setInterestGroupTracking(params: Protocol.Storage.SetInterestGroupTrackingRequest): Promise<void>;
3422
3422
 
3423
3423
  /**
3424
- * Enables/Disables issuing of interestGroupAuctionEventOccurred and
3425
- * interestGroupAuctionNetworkRequestCreated.
3424
+ * Enables/Disables issuing of interestGroupAuctionEvent events.
3426
3425
  */
3427
3426
  setInterestGroupAuctionTracking(params: Protocol.Storage.SetInterestGroupAuctionTrackingRequest): Promise<void>;
3428
3427
 
@@ -3518,14 +3517,6 @@ export namespace ProtocolProxyApi {
3518
3517
  */
3519
3518
  on(event: 'interestGroupAuctionEventOccurred', listener: (params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent) => void): void;
3520
3519
 
3521
- /**
3522
- * Specifies which auctions a particular network fetch may be related to, and
3523
- * in what role. Note that it is not ordered with respect to
3524
- * Network.requestWillBeSent (but will happen before loadingFinished
3525
- * loadingFailed).
3526
- */
3527
- on(event: 'interestGroupAuctionNetworkRequestCreated', listener: (params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent) => void): void;
3528
-
3529
3520
  /**
3530
3521
  * Shared storage was accessed by the associated page.
3531
3522
  * The following parameters are included in all events.
@@ -4131,6 +4122,8 @@ export namespace ProtocolProxyApi {
4131
4122
 
4132
4123
  clickDialogButton(params: Protocol.FedCm.ClickDialogButtonRequest): Promise<void>;
4133
4124
 
4125
+ openUrl(params: Protocol.FedCm.OpenUrlRequest): Promise<void>;
4126
+
4134
4127
  dismissDialog(params: Protocol.FedCm.DismissDialogRequest): Promise<void>;
4135
4128
 
4136
4129
  /**
@@ -3693,8 +3693,7 @@ export namespace ProtocolTestsProxyApi {
3693
3693
  setInterestGroupTracking(params: Protocol.Storage.SetInterestGroupTrackingRequest): Promise<void>;
3694
3694
 
3695
3695
  /**
3696
- * Enables/Disables issuing of interestGroupAuctionEventOccurred and
3697
- * interestGroupAuctionNetworkRequestCreated.
3696
+ * Enables/Disables issuing of interestGroupAuctionEvent events.
3698
3697
  */
3699
3698
  setInterestGroupAuctionTracking(params: Protocol.Storage.SetInterestGroupAuctionTrackingRequest): Promise<void>;
3700
3699
 
@@ -3802,16 +3801,6 @@ export namespace ProtocolTestsProxyApi {
3802
3801
  offInterestGroupAuctionEventOccurred(listener: (event: { params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent }) => void): void;
3803
3802
  onceInterestGroupAuctionEventOccurred(eventMatcher?: (event: { params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent }) => boolean): Promise<{ params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent }>;
3804
3803
 
3805
- /**
3806
- * Specifies which auctions a particular network fetch may be related to, and
3807
- * in what role. Note that it is not ordered with respect to
3808
- * Network.requestWillBeSent (but will happen before loadingFinished
3809
- * loadingFailed).
3810
- */
3811
- onInterestGroupAuctionNetworkRequestCreated(listener: (event: { params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent }) => void): void;
3812
- offInterestGroupAuctionNetworkRequestCreated(listener: (event: { params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent }) => void): void;
3813
- onceInterestGroupAuctionNetworkRequestCreated(eventMatcher?: (event: { params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent }) => boolean): Promise<{ params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent }>;
3814
-
3815
3804
  /**
3816
3805
  * Shared storage was accessed by the associated page.
3817
3806
  * The following parameters are included in all events.
@@ -4507,6 +4496,8 @@ export namespace ProtocolTestsProxyApi {
4507
4496
 
4508
4497
  clickDialogButton(params: Protocol.FedCm.ClickDialogButtonRequest): Promise<void>;
4509
4498
 
4499
+ openUrl(params: Protocol.FedCm.OpenUrlRequest): Promise<void>;
4500
+
4510
4501
  dismissDialog(params: Protocol.FedCm.DismissDialogRequest): Promise<void>;
4511
4502
 
4512
4503
  /**
@@ -3291,7 +3291,7 @@ export namespace Protocol {
3291
3291
 
3292
3292
  export type MixedContentResolutionStatus = ('MixedContentBlocked' | 'MixedContentAutomaticallyUpgraded' | 'MixedContentWarning');
3293
3293
 
3294
- export type MixedContentResourceType = ('AttributionSrc' | 'Audio' | 'Beacon' | 'CSPReport' | 'Download' | 'EventSource' | 'Favicon' | 'Font' | 'Form' | 'Frame' | 'Image' | 'Import' | 'Manifest' | 'Ping' | 'PluginData' | 'PluginResource' | 'Prefetch' | 'Resource' | 'Script' | 'ServiceWorker' | 'SharedWorker' | 'SpeculationRules' | 'Stylesheet' | 'Track' | 'Video' | 'Worker' | 'XMLHttpRequest' | 'XSLT');
3294
+ export type MixedContentResourceType = ('AttributionSrc' | 'Audio' | 'Beacon' | 'CSPReport' | 'Download' | 'EventSource' | 'Favicon' | 'Font' | 'Form' | 'Frame' | 'Image' | 'Import' | 'JSON' | 'Manifest' | 'Ping' | 'PluginData' | 'PluginResource' | 'Prefetch' | 'Resource' | 'Script' | 'ServiceWorker' | 'SharedWorker' | 'SpeculationRules' | 'Stylesheet' | 'Track' | 'Video' | 'Worker' | 'XMLHttpRequest' | 'XSLT');
3295
3295
 
3296
3296
  export interface MixedContentIssueDetails {
3297
3297
  /**
@@ -15231,11 +15231,6 @@ export namespace Protocol {
15231
15231
  */
15232
15232
  export type InterestGroupAuctionEventType = ('started' | 'configResolved');
15233
15233
 
15234
- /**
15235
- * Enum of network fetches auctions can do.
15236
- */
15237
- export type InterestGroupAuctionFetchType = ('bidderJs' | 'bidderWasm' | 'sellerJs' | 'bidderTrustedSignals' | 'sellerTrustedSignals');
15238
-
15239
15234
  /**
15240
15235
  * Ad advertising element inside an interest group.
15241
15236
  */
@@ -15894,23 +15889,6 @@ export namespace Protocol {
15894
15889
  auctionConfig?: any;
15895
15890
  }
15896
15891
 
15897
- /**
15898
- * Specifies which auctions a particular network fetch may be related to, and
15899
- * in what role. Note that it is not ordered with respect to
15900
- * Network.requestWillBeSent (but will happen before loadingFinished
15901
- * loadingFailed).
15902
- */
15903
- export interface InterestGroupAuctionNetworkRequestCreatedEvent {
15904
- type: InterestGroupAuctionFetchType;
15905
- requestId: Network.RequestId;
15906
- /**
15907
- * This is the set of the auctions using the worklet that issued this
15908
- * request. In the case of trusted signals, it's possible that only some of
15909
- * them actually care about the keys being queried.
15910
- */
15911
- auctions: InterestGroupAuctionId[];
15912
- }
15913
-
15914
15892
  /**
15915
15893
  * Shared storage was accessed by the associated page.
15916
15894
  * The following parameters are included in all events.
@@ -17977,6 +17955,11 @@ export namespace Protocol {
17977
17955
  */
17978
17956
  export type DialogButton = ('ConfirmIdpLoginContinue' | 'ErrorGotIt' | 'ErrorMoreDetails');
17979
17957
 
17958
+ /**
17959
+ * The URLs that each account has
17960
+ */
17961
+ export type AccountUrlType = ('TermsOfService' | 'PrivacyPolicy');
17962
+
17980
17963
  /**
17981
17964
  * Corresponds to IdentityRequestAccount
17982
17965
  */
@@ -18015,6 +17998,12 @@ export namespace Protocol {
18015
17998
  dialogButton: DialogButton;
18016
17999
  }
18017
18000
 
18001
+ export interface OpenUrlRequest {
18002
+ dialogId: string;
18003
+ accountIndex: integer;
18004
+ accountUrlType: AccountUrlType;
18005
+ }
18006
+
18018
18007
  export interface DismissDialogRequest {
18019
18008
  dialogId: string;
18020
18009
  triggerCooldown?: boolean;