devtools-protocol 0.0.1247362 → 0.0.1249784
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 +122 -20
- package/json/js_protocol.json +1 -3
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +83 -23
- package/pdl/js_protocol.pdl +4 -4
- package/types/protocol-mapping.d.ts +22 -1
- package/types/protocol-proxy-api.d.ts +22 -1
- package/types/protocol-tests-proxy-api.d.ts +4533 -0
- package/types/protocol.d.ts +71 -2
package/types/protocol.d.ts
CHANGED
@@ -15216,10 +15216,25 @@ export namespace Protocol {
|
|
15216
15216
|
count: number;
|
15217
15217
|
}
|
15218
15218
|
|
15219
|
+
/**
|
15220
|
+
* Protected audience interest group auction identifier.
|
15221
|
+
*/
|
15222
|
+
export type InterestGroupAuctionId = string;
|
15223
|
+
|
15219
15224
|
/**
|
15220
15225
|
* Enum of interest group access types.
|
15221
15226
|
*/
|
15222
|
-
export type InterestGroupAccessType = ('join' | 'leave' | 'update' | 'loaded' | 'bid' | 'win' | 'additionalBid' | 'additionalBidWin' | 'clear');
|
15227
|
+
export type InterestGroupAccessType = ('join' | 'leave' | 'update' | 'loaded' | 'bid' | 'win' | 'additionalBid' | 'additionalBidWin' | 'topLevelBid' | 'topLevelAdditionalBid' | 'clear');
|
15228
|
+
|
15229
|
+
/**
|
15230
|
+
* Enum of auction events.
|
15231
|
+
*/
|
15232
|
+
export type InterestGroupAuctionEventType = ('started' | 'configResolved');
|
15233
|
+
|
15234
|
+
/**
|
15235
|
+
* Enum of network fetches auctions can do.
|
15236
|
+
*/
|
15237
|
+
export type InterestGroupAuctionFetchType = ('bidderJs' | 'bidderWasm' | 'sellerJs' | 'bidderTrustedSignals' | 'sellerTrustedSignals');
|
15223
15238
|
|
15224
15239
|
/**
|
15225
15240
|
* Ad advertising element inside an interest group.
|
@@ -15680,6 +15695,10 @@ export namespace Protocol {
|
|
15680
15695
|
enable: boolean;
|
15681
15696
|
}
|
15682
15697
|
|
15698
|
+
export interface SetInterestGroupAuctionTrackingRequest {
|
15699
|
+
enable: boolean;
|
15700
|
+
}
|
15701
|
+
|
15683
15702
|
export interface GetSharedStorageMetadataRequest {
|
15684
15703
|
ownerOrigin: string;
|
15685
15704
|
}
|
@@ -15833,13 +15852,63 @@ export namespace Protocol {
|
|
15833
15852
|
}
|
15834
15853
|
|
15835
15854
|
/**
|
15836
|
-
* One of the interest groups was accessed
|
15855
|
+
* One of the interest groups was accessed. Note that these events are global
|
15856
|
+
* to all targets sharing an interest group store.
|
15837
15857
|
*/
|
15838
15858
|
export interface InterestGroupAccessedEvent {
|
15839
15859
|
accessTime: Network.TimeSinceEpoch;
|
15840
15860
|
type: InterestGroupAccessType;
|
15841
15861
|
ownerOrigin: string;
|
15842
15862
|
name: string;
|
15863
|
+
/**
|
15864
|
+
* For topLevelBid/topLevelAdditionalBid, and when appropriate,
|
15865
|
+
* win and additionalBidWin
|
15866
|
+
*/
|
15867
|
+
componentSellerOrigin?: string;
|
15868
|
+
/**
|
15869
|
+
* For bid or somethingBid event, if done locally and not on a server.
|
15870
|
+
*/
|
15871
|
+
bid?: number;
|
15872
|
+
bidCurrency?: string;
|
15873
|
+
/**
|
15874
|
+
* For non-global events --- links to interestGroupAuctionEvent
|
15875
|
+
*/
|
15876
|
+
uniqueAuctionId?: InterestGroupAuctionId;
|
15877
|
+
}
|
15878
|
+
|
15879
|
+
/**
|
15880
|
+
* An auction involving interest groups is taking place. These events are
|
15881
|
+
* target-specific.
|
15882
|
+
*/
|
15883
|
+
export interface InterestGroupAuctionEventOccurredEvent {
|
15884
|
+
eventTime: Network.TimeSinceEpoch;
|
15885
|
+
type: InterestGroupAuctionEventType;
|
15886
|
+
uniqueAuctionId: InterestGroupAuctionId;
|
15887
|
+
/**
|
15888
|
+
* Set for child auctions.
|
15889
|
+
*/
|
15890
|
+
parentAuctionId?: InterestGroupAuctionId;
|
15891
|
+
/**
|
15892
|
+
* Set for started and configResolved
|
15893
|
+
*/
|
15894
|
+
auctionConfig?: any;
|
15895
|
+
}
|
15896
|
+
|
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[];
|
15843
15912
|
}
|
15844
15913
|
|
15845
15914
|
/**
|