devtools-protocol 0.0.1249869 → 0.0.1250650
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.
@@ -20239,18 +20239,6 @@
|
|
20239
20239
|
"configResolved"
|
20240
20240
|
]
|
20241
20241
|
},
|
20242
|
-
{
|
20243
|
-
"id": "InterestGroupAuctionFetchType",
|
20244
|
-
"description": "Enum of network fetches auctions can do.",
|
20245
|
-
"type": "string",
|
20246
|
-
"enum": [
|
20247
|
-
"bidderJs",
|
20248
|
-
"bidderWasm",
|
20249
|
-
"sellerJs",
|
20250
|
-
"bidderTrustedSignals",
|
20251
|
-
"sellerTrustedSignals"
|
20252
|
-
]
|
20253
|
-
},
|
20254
20242
|
{
|
20255
20243
|
"id": "InterestGroupAd",
|
20256
20244
|
"description": "Ad advertising element inside an interest group.",
|
@@ -21286,7 +21274,7 @@
|
|
21286
21274
|
},
|
21287
21275
|
{
|
21288
21276
|
"name": "setInterestGroupAuctionTracking",
|
21289
|
-
"description": "Enables/Disables issuing of
|
21277
|
+
"description": "Enables/Disables issuing of interestGroupAuctionEvent events.",
|
21290
21278
|
"experimental": true,
|
21291
21279
|
"parameters": [
|
21292
21280
|
{
|
@@ -21644,28 +21632,6 @@
|
|
21644
21632
|
}
|
21645
21633
|
]
|
21646
21634
|
},
|
21647
|
-
{
|
21648
|
-
"name": "interestGroupAuctionNetworkRequestCreated",
|
21649
|
-
"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).",
|
21650
|
-
"parameters": [
|
21651
|
-
{
|
21652
|
-
"name": "type",
|
21653
|
-
"$ref": "InterestGroupAuctionFetchType"
|
21654
|
-
},
|
21655
|
-
{
|
21656
|
-
"name": "requestId",
|
21657
|
-
"$ref": "Network.RequestId"
|
21658
|
-
},
|
21659
|
-
{
|
21660
|
-
"name": "auctions",
|
21661
|
-
"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.",
|
21662
|
-
"type": "array",
|
21663
|
-
"items": {
|
21664
|
-
"$ref": "InterestGroupAuctionId"
|
21665
|
-
}
|
21666
|
-
}
|
21667
|
-
]
|
21668
|
-
},
|
21669
21635
|
{
|
21670
21636
|
"name": "sharedStorageAccessed",
|
21671
21637
|
"description": "Shared storage was accessed by the associated page.\nThe following parameters are included in all events.",
|
@@ -25069,6 +25035,15 @@
|
|
25069
25035
|
"ErrorMoreDetails"
|
25070
25036
|
]
|
25071
25037
|
},
|
25038
|
+
{
|
25039
|
+
"id": "AccountUrlType",
|
25040
|
+
"description": "The URLs that each account has",
|
25041
|
+
"type": "string",
|
25042
|
+
"enum": [
|
25043
|
+
"TermsOfService",
|
25044
|
+
"PrivacyPolicy"
|
25045
|
+
]
|
25046
|
+
},
|
25072
25047
|
{
|
25073
25048
|
"id": "Account",
|
25074
25049
|
"description": "Corresponds to IdentityRequestAccount",
|
@@ -25203,6 +25178,23 @@
|
|
25203
25178
|
}
|
25204
25179
|
]
|
25205
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
|
+
},
|
25206
25198
|
{
|
25207
25199
|
"name": "dismissDialog",
|
25208
25200
|
"parameters": [
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -9546,15 +9546,6 @@ experimental domain Storage
|
|
9546
9546
|
started
|
9547
9547
|
configResolved
|
9548
9548
|
|
9549
|
-
# Enum of network fetches auctions can do.
|
9550
|
-
type InterestGroupAuctionFetchType extends string
|
9551
|
-
enum
|
9552
|
-
bidderJs
|
9553
|
-
bidderWasm
|
9554
|
-
sellerJs
|
9555
|
-
bidderTrustedSignals
|
9556
|
-
sellerTrustedSignals
|
9557
|
-
|
9558
9549
|
# Ad advertising element inside an interest group.
|
9559
9550
|
type InterestGroupAd extends object
|
9560
9551
|
properties
|
@@ -9834,8 +9825,7 @@ experimental domain Storage
|
|
9834
9825
|
parameters
|
9835
9826
|
boolean enable
|
9836
9827
|
|
9837
|
-
# Enables/Disables issuing of
|
9838
|
-
# interestGroupAuctionNetworkRequestCreated.
|
9828
|
+
# Enables/Disables issuing of interestGroupAuctionEvent events.
|
9839
9829
|
experimental command setInterestGroupAuctionTracking
|
9840
9830
|
parameters
|
9841
9831
|
boolean enable
|
@@ -9976,19 +9966,6 @@ experimental domain Storage
|
|
9976
9966
|
# Set for started and configResolved
|
9977
9967
|
optional object auctionConfig
|
9978
9968
|
|
9979
|
-
# Specifies which auctions a particular network fetch may be related to, and
|
9980
|
-
# in what role. Note that it is not ordered with respect to
|
9981
|
-
# Network.requestWillBeSent (but will happen before loadingFinished
|
9982
|
-
# loadingFailed).
|
9983
|
-
event interestGroupAuctionNetworkRequestCreated
|
9984
|
-
parameters
|
9985
|
-
InterestGroupAuctionFetchType type
|
9986
|
-
Network.RequestId requestId
|
9987
|
-
# This is the set of the auctions using the worklet that issued this
|
9988
|
-
# request. In the case of trusted signals, it's possible that only some of
|
9989
|
-
# them actually care about the keys being queried.
|
9990
|
-
array of InterestGroupAuctionId auctions
|
9991
|
-
|
9992
9969
|
# Shared storage was accessed by the associated page.
|
9993
9970
|
# The following parameters are included in all events.
|
9994
9971
|
event sharedStorageAccessed
|
@@ -11855,6 +11832,12 @@ experimental domain FedCm
|
|
11855
11832
|
ErrorGotIt
|
11856
11833
|
ErrorMoreDetails
|
11857
11834
|
|
11835
|
+
# The URLs that each account has
|
11836
|
+
type AccountUrlType extends string
|
11837
|
+
enum
|
11838
|
+
TermsOfService
|
11839
|
+
PrivacyPolicy
|
11840
|
+
|
11858
11841
|
# Corresponds to IdentityRequestAccount
|
11859
11842
|
type Account extends object
|
11860
11843
|
properties
|
@@ -11905,6 +11888,12 @@ experimental domain FedCm
|
|
11905
11888
|
string dialogId
|
11906
11889
|
DialogButton dialogButton
|
11907
11890
|
|
11891
|
+
command openUrl
|
11892
|
+
parameters
|
11893
|
+
string dialogId
|
11894
|
+
integer accountIndex
|
11895
|
+
AccountUrlType accountUrlType
|
11896
|
+
|
11908
11897
|
command dismissDialog
|
11909
11898
|
parameters
|
11910
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
|
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
|
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
|
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
|
/**
|
package/types/protocol.d.ts
CHANGED
@@ -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;
|