@webref/idl 3.55.2 → 3.55.3

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 +9 -6
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.55.2",
4
+ "version": "3.55.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/turtledove.idl CHANGED
@@ -15,6 +15,7 @@ dictionary AuctionAd {
15
15
 
16
16
  USVString buyerReportingId;
17
17
  USVString buyerAndSellerReportingId;
18
+ sequence<USVString> selectableBuyerAndSellerReportingIds;
18
19
  sequence<USVString> allowedReportingOrigins;
19
20
  DOMString adRenderId;
20
21
  };
@@ -89,16 +90,16 @@ dictionary AuctionAdConfig {
89
90
  sequence<USVString> interestGroupBuyers;
90
91
  Promise<any> auctionSignals;
91
92
  Promise<any> sellerSignals;
92
- Promise<DOMString> directFromSellerSignalsHeaderAdSlot;
93
- Promise<record<USVString, USVString>> deprecatedRenderURLReplacements;
93
+ Promise<DOMString?> directFromSellerSignalsHeaderAdSlot;
94
+ Promise<record<USVString, USVString>?> deprecatedRenderURLReplacements;
94
95
  unsigned long long sellerTimeout;
95
96
  unsigned short sellerExperimentGroupId;
96
- Promise<record<USVString, any>> perBuyerSignals;
97
- Promise<record<USVString, unsigned long long>> perBuyerTimeouts;
98
- Promise<record<USVString, unsigned long long>> perBuyerCumulativeTimeouts;
97
+ Promise<record<USVString, any>?> perBuyerSignals;
98
+ Promise<record<USVString, unsigned long long>?> perBuyerTimeouts;
99
+ Promise<record<USVString, unsigned long long>?> perBuyerCumulativeTimeouts;
99
100
  unsigned long long reportingTimeout;
100
101
  USVString sellerCurrency;
101
- Promise<record<USVString, USVString>> perBuyerCurrencies;
102
+ Promise<record<USVString, USVString>?> perBuyerCurrencies;
102
103
  record<USVString, unsigned short> perBuyerMultiBidLimits;
103
104
  record<USVString, unsigned short> perBuyerGroupLimits;
104
105
  record<USVString, unsigned short> perBuyerExperimentGroupIds;
@@ -198,6 +199,7 @@ dictionary GenerateBidOutput {
198
199
  DOMString bidCurrency;
199
200
  (DOMString or AdRender) render;
200
201
  any ad;
202
+ USVString selectedBuyerAndSellerReportingId;
201
203
  sequence<(DOMString or AdRender)> adComponents;
202
204
  double adCost;
203
205
  unrestricted double modelingSignals;
@@ -294,6 +296,7 @@ dictionary ReportingBrowserSignals {
294
296
  USVString componentSeller;
295
297
 
296
298
  USVString buyerAndSellerReportingId;
299
+ USVString selectedBuyerAndSellerReportingId;
297
300
  };
298
301
 
299
302
  dictionary ReportResultBrowserSignals : ReportingBrowserSignals {