@webref/idl 3.45.1 → 3.45.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/turtledove.idl +8 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webref/idl",
3
3
  "description": "Web IDL definitions of the web platform",
4
- "version": "3.45.1",
4
+ "version": "3.45.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/turtledove.idl CHANGED
@@ -25,6 +25,7 @@ dictionary GenerateBidInterestGroup {
25
25
  boolean enableBiddingSignalsPrioritization = false;
26
26
  record<DOMString, double> priorityVector;
27
27
 
28
+ record<USVString, sequence<DOMString>> sellerCapabilities;
28
29
  DOMString executionMode = "compatibility";
29
30
  USVString biddingLogicURL;
30
31
  USVString biddingWasmHelperURL;
@@ -68,28 +69,30 @@ partial interface Navigator {
68
69
  dictionary AuctionAdConfig {
69
70
  required USVString seller;
70
71
  required USVString decisionLogicURL;
72
+
71
73
  USVString trustedScoringSignalsURL;
72
74
  long maxTrustedScoringSignalsURLLength;
73
75
  sequence<USVString> interestGroupBuyers;
74
76
  Promise<any> auctionSignals;
75
- record<DOMString, DOMString> requestedSize;
76
- sequence<record<DOMString, DOMString>> allSlotsRequestedSizes;
77
77
  Promise<any> sellerSignals;
78
78
  Promise<DOMString> directFromSellerSignalsHeaderAdSlot;
79
79
  Promise<record<USVString, USVString>> deprecatedRenderURLReplacements;
80
80
  unsigned long long sellerTimeout;
81
81
  unsigned short sellerExperimentGroupId;
82
- USVString sellerCurrency;
83
82
  Promise<record<USVString, any>> perBuyerSignals;
84
83
  Promise<record<USVString, unsigned long long>> perBuyerTimeouts;
85
84
  Promise<record<USVString, unsigned long long>> perBuyerCumulativeTimeouts;
85
+ USVString sellerCurrency;
86
+ Promise<record<USVString, USVString>> perBuyerCurrencies;
86
87
  record<USVString, unsigned short> perBuyerGroupLimits;
87
88
  record<USVString, unsigned short> perBuyerExperimentGroupIds;
88
89
  record<USVString, record<USVString, double>> perBuyerPrioritySignals;
89
- Promise<record<USVString, USVString>> perBuyerCurrencies;
90
- sequence<AuctionAdConfig> componentAuctions = [];
90
+ sequence<DOMString> requiredSellerCapabilities;
91
+ record<DOMString, DOMString> requestedSize;
92
+ sequence<record<DOMString, DOMString>> allSlotsRequestedSizes;
91
93
  Promise<undefined> additionalBids;
92
94
  DOMString auctionNonce;
95
+ sequence<AuctionAdConfig> componentAuctions = [];
93
96
  AbortSignal? signal;
94
97
  Promise<boolean> resolveToConfig;
95
98
  };