@webref/idl 3.55.1 → 3.55.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.
package/fedcm.idl CHANGED
@@ -43,6 +43,7 @@ dictionary IdentityProviderRequestOptions : IdentityProviderConfig {
43
43
  USVString nonce;
44
44
  DOMString loginHint;
45
45
  DOMString domainHint;
46
+ any params;
46
47
  };
47
48
 
48
49
  dictionary IdentityProviderWellKnown {
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<MediaImage> artwork;
62
+ attribute FrozenArray<object> artwork;
63
63
  [SameObject] readonly attribute FrozenArray<ChapterInformation> chapterInfo;
64
64
  };
65
65
 
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.1",
4
+ "version": "3.55.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
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
- unsigned long length,
37
- float sampleRate);
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
- sequence<double> feedback);
48
+ sequence<double> feedback);
49
49
  OscillatorNode createOscillator ();
50
50
  PannerNode createPanner ();
51
51
  PeriodicWave createPeriodicWave (sequence<float> real,
52
- sequence<float> imag,
53
- optional PeriodicWaveConstraints constraints = {});
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 images pixel
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
@@ -119,6 +119,7 @@ enum GPUFeatureName {
119
119
  "rg11b10ufloat-renderable",
120
120
  "bgra8unorm-storage",
121
121
  "float32-filterable",
122
+ "float32-blendable",
122
123
  "clip-distances",
123
124
  "dual-source-blending",
124
125
  };
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
- required unsigned long long? estimatedSendRate;
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=(DedicatedWorker,SharedWorker,Window),
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=(DedicatedWorker,SharedWorker,Window),
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=(DedicatedWorker,SharedWorker,Window),
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=(DedicatedWorker,SharedWorker,Window),
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=(DedicatedWorker,SharedWorker,Window),
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=(DedicatedWorker,SharedWorker,Window),
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=(DedicatedWorker,SharedWorker,Window),
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=(DedicatedWorker,SharedWorker,Window), SecureContext]
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=(DedicatedWorker,SharedWorker,Window),
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=(DedicatedWorker,SharedWorker,Window),
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=(DedicatedWorker,SharedWorker,Window),
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=(DedicatedWorker,SharedWorker,Window),
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=(DedicatedWorker,SharedWorker,Window)]
255
+ [Exposed=(Worker,Window)]
256
256
  interface USBPermissionResult : PermissionStatus {
257
257
  attribute FrozenArray<USBDevice> devices;
258
258
  };