@webref/idl 3.55.1 → 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.
- package/fedcm.idl +1 -0
- package/mediasession.idl +1 -1
- package/package.json +1 -1
- package/turtledove.idl +9 -6
- package/webaudio.idl +6 -6
- package/webcodecs.idl +1 -1
- package/webgpu.idl +1 -0
- package/webtransport.idl +2 -1
- package/webusb.idl +13 -13
package/fedcm.idl
CHANGED
package/mediasession.idl
CHANGED
|
@@ -59,7 +59,7 @@ interface MediaMetadata {
|
|
|
59
59
|
attribute DOMString title;
|
|
60
60
|
attribute DOMString artist;
|
|
61
61
|
attribute DOMString album;
|
|
62
|
-
attribute FrozenArray<
|
|
62
|
+
attribute FrozenArray<object> artwork;
|
|
63
63
|
[SameObject] readonly attribute FrozenArray<ChapterInformation> chapterInfo;
|
|
64
64
|
};
|
|
65
65
|
|
package/package.json
CHANGED
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
|
|
93
|
-
Promise<record<USVString, USVString
|
|
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
|
|
97
|
-
Promise<record<USVString, unsigned long long
|
|
98
|
-
Promise<record<USVString, unsigned long long
|
|
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
|
|
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 {
|
package/webaudio.idl
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// GENERATED CONTENT - DO NOT EDIT
|
|
2
2
|
// Content was automatically extracted by Reffy into webref
|
|
3
3
|
// (https://github.com/w3c/webref)
|
|
4
|
-
// Source: Web Audio API (https://webaudio.github.io/web-audio-api/)
|
|
4
|
+
// Source: Web Audio API 1.1 (https://webaudio.github.io/web-audio-api/)
|
|
5
5
|
|
|
6
6
|
enum AudioContextState {
|
|
7
7
|
"suspended",
|
|
@@ -33,8 +33,8 @@ interface BaseAudioContext : EventTarget {
|
|
|
33
33
|
AnalyserNode createAnalyser ();
|
|
34
34
|
BiquadFilterNode createBiquadFilter ();
|
|
35
35
|
AudioBuffer createBuffer (unsigned long numberOfChannels,
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
unsigned long length,
|
|
37
|
+
float sampleRate);
|
|
38
38
|
AudioBufferSourceNode createBufferSource ();
|
|
39
39
|
ChannelMergerNode createChannelMerger (optional unsigned long numberOfInputs = 6);
|
|
40
40
|
ChannelSplitterNode createChannelSplitter (
|
|
@@ -45,12 +45,12 @@ interface BaseAudioContext : EventTarget {
|
|
|
45
45
|
DynamicsCompressorNode createDynamicsCompressor ();
|
|
46
46
|
GainNode createGain ();
|
|
47
47
|
IIRFilterNode createIIRFilter (sequence<double> feedforward,
|
|
48
|
-
|
|
48
|
+
sequence<double> feedback);
|
|
49
49
|
OscillatorNode createOscillator ();
|
|
50
50
|
PannerNode createPanner ();
|
|
51
51
|
PeriodicWave createPeriodicWave (sequence<float> real,
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
sequence<float> imag,
|
|
53
|
+
optional PeriodicWaveConstraints constraints = {});
|
|
54
54
|
ScriptProcessorNode createScriptProcessor(
|
|
55
55
|
optional unsigned long bufferSize = 0,
|
|
56
56
|
optional unsigned long numberOfInputChannels = 2,
|
package/webcodecs.idl
CHANGED
|
@@ -340,7 +340,7 @@ dictionary VideoFrameInit {
|
|
|
340
340
|
AlphaOption alpha = "keep";
|
|
341
341
|
|
|
342
342
|
// Default matches image. May be used to efficiently crop. Will trigger
|
|
343
|
-
// new computation of displayWidth and displayHeight using image
|
|
343
|
+
// new computation of displayWidth and displayHeight using image's pixel
|
|
344
344
|
// aspect ratio unless an explicit displayWidth and displayHeight are given.
|
|
345
345
|
DOMRectInit visibleRect;
|
|
346
346
|
|
package/webgpu.idl
CHANGED
package/webtransport.idl
CHANGED
|
@@ -96,7 +96,8 @@ dictionary WebTransportConnectionStats {
|
|
|
96
96
|
required DOMHighResTimeStamp rttVariation;
|
|
97
97
|
required DOMHighResTimeStamp minRtt;
|
|
98
98
|
required WebTransportDatagramStats datagrams;
|
|
99
|
-
|
|
99
|
+
unsigned long long? estimatedSendRate = null;
|
|
100
|
+
boolean atSendCapacity = false;
|
|
100
101
|
};
|
|
101
102
|
|
|
102
103
|
dictionary WebTransportDatagramStats {
|
package/webusb.idl
CHANGED
|
@@ -40,7 +40,7 @@ dictionary USBConnectionEventInit : EventInit {
|
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
[
|
|
43
|
-
Exposed=(
|
|
43
|
+
Exposed=(Worker,Window),
|
|
44
44
|
SecureContext
|
|
45
45
|
]
|
|
46
46
|
interface USBConnectionEvent : Event {
|
|
@@ -55,7 +55,7 @@ enum USBTransferStatus {
|
|
|
55
55
|
};
|
|
56
56
|
|
|
57
57
|
[
|
|
58
|
-
Exposed=(
|
|
58
|
+
Exposed=(Worker,Window),
|
|
59
59
|
SecureContext
|
|
60
60
|
]
|
|
61
61
|
interface USBInTransferResult {
|
|
@@ -65,7 +65,7 @@ interface USBInTransferResult {
|
|
|
65
65
|
};
|
|
66
66
|
|
|
67
67
|
[
|
|
68
|
-
Exposed=(
|
|
68
|
+
Exposed=(Worker,Window),
|
|
69
69
|
SecureContext
|
|
70
70
|
]
|
|
71
71
|
interface USBOutTransferResult {
|
|
@@ -75,7 +75,7 @@ interface USBOutTransferResult {
|
|
|
75
75
|
};
|
|
76
76
|
|
|
77
77
|
[
|
|
78
|
-
Exposed=(
|
|
78
|
+
Exposed=(Worker,Window),
|
|
79
79
|
SecureContext
|
|
80
80
|
]
|
|
81
81
|
interface USBIsochronousInTransferPacket {
|
|
@@ -85,7 +85,7 @@ interface USBIsochronousInTransferPacket {
|
|
|
85
85
|
};
|
|
86
86
|
|
|
87
87
|
[
|
|
88
|
-
Exposed=(
|
|
88
|
+
Exposed=(Worker,Window),
|
|
89
89
|
SecureContext
|
|
90
90
|
]
|
|
91
91
|
interface USBIsochronousInTransferResult {
|
|
@@ -95,7 +95,7 @@ interface USBIsochronousInTransferResult {
|
|
|
95
95
|
};
|
|
96
96
|
|
|
97
97
|
[
|
|
98
|
-
Exposed=(
|
|
98
|
+
Exposed=(Worker,Window),
|
|
99
99
|
SecureContext
|
|
100
100
|
]
|
|
101
101
|
interface USBIsochronousOutTransferPacket {
|
|
@@ -105,7 +105,7 @@ interface USBIsochronousOutTransferPacket {
|
|
|
105
105
|
};
|
|
106
106
|
|
|
107
107
|
[
|
|
108
|
-
Exposed=(
|
|
108
|
+
Exposed=(Worker,Window),
|
|
109
109
|
SecureContext
|
|
110
110
|
]
|
|
111
111
|
interface USBIsochronousOutTransferResult {
|
|
@@ -113,7 +113,7 @@ interface USBIsochronousOutTransferResult {
|
|
|
113
113
|
readonly attribute FrozenArray<USBIsochronousOutTransferPacket> packets;
|
|
114
114
|
};
|
|
115
115
|
|
|
116
|
-
[Exposed=(
|
|
116
|
+
[Exposed=(Worker,Window), SecureContext]
|
|
117
117
|
interface USBDevice {
|
|
118
118
|
readonly attribute octet usbVersionMajor;
|
|
119
119
|
readonly attribute octet usbVersionMinor;
|
|
@@ -171,7 +171,7 @@ dictionary USBControlTransferParameters {
|
|
|
171
171
|
};
|
|
172
172
|
|
|
173
173
|
[
|
|
174
|
-
Exposed=(
|
|
174
|
+
Exposed=(Worker,Window),
|
|
175
175
|
SecureContext
|
|
176
176
|
]
|
|
177
177
|
interface USBConfiguration {
|
|
@@ -182,7 +182,7 @@ interface USBConfiguration {
|
|
|
182
182
|
};
|
|
183
183
|
|
|
184
184
|
[
|
|
185
|
-
Exposed=(
|
|
185
|
+
Exposed=(Worker,Window),
|
|
186
186
|
SecureContext
|
|
187
187
|
]
|
|
188
188
|
interface USBInterface {
|
|
@@ -194,7 +194,7 @@ interface USBInterface {
|
|
|
194
194
|
};
|
|
195
195
|
|
|
196
196
|
[
|
|
197
|
-
Exposed=(
|
|
197
|
+
Exposed=(Worker,Window),
|
|
198
198
|
SecureContext
|
|
199
199
|
]
|
|
200
200
|
interface USBAlternateInterface {
|
|
@@ -219,7 +219,7 @@ enum USBEndpointType {
|
|
|
219
219
|
};
|
|
220
220
|
|
|
221
221
|
[
|
|
222
|
-
Exposed=(
|
|
222
|
+
Exposed=(Worker,Window),
|
|
223
223
|
SecureContext
|
|
224
224
|
]
|
|
225
225
|
interface USBEndpoint {
|
|
@@ -252,7 +252,7 @@ dictionary USBPermissionStorage {
|
|
|
252
252
|
sequence<AllowedUSBDevice> allowedDevices = [];
|
|
253
253
|
};
|
|
254
254
|
|
|
255
|
-
[Exposed=(
|
|
255
|
+
[Exposed=(Worker,Window)]
|
|
256
256
|
interface USBPermissionResult : PermissionStatus {
|
|
257
257
|
attribute FrozenArray<USBDevice> devices;
|
|
258
258
|
};
|