@webref/idl 3.61.2 → 3.61.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/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.61.2",
4
+ "version": "3.61.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/ppa.idl CHANGED
@@ -51,6 +51,10 @@ dictionary PrivateAttributionConversionOptions {
51
51
  unsigned long maxValue = 1;
52
52
  };
53
53
 
54
+ enum PrivateAttributionLogic {
55
+ "last-touch",
56
+ };
57
+
54
58
  dictionary PrivateAttributionConversionResult {
55
59
  required Uint8Array report;
56
60
  };
@@ -59,7 +63,3 @@ dictionary PrivateAttributionConversionResult {
59
63
  partial interface PrivateAttribution {
60
64
  Promise<PrivateAttributionConversionResult> measureConversion(PrivateAttributionConversionOptions options);
61
65
  };
62
-
63
- enum PrivateAttributionLogic {
64
- "last-touch",
65
- };
@@ -71,6 +71,7 @@ partial dictionary MediaTrackSettings {
71
71
  DOMString cursor;
72
72
  boolean restrictOwnAudio;
73
73
  boolean suppressLocalAudioPlayback;
74
+ double screenPixelRatio;
74
75
  };
75
76
 
76
77
  partial dictionary MediaTrackCapabilities {
package/speech-api.idl CHANGED
@@ -19,7 +19,7 @@ interface SpeechRecognition : EventTarget {
19
19
  undefined start(MediaStreamTrack audioTrack);
20
20
  undefined stop();
21
21
  undefined abort();
22
- static Promise<boolean> availableOnDevice(DOMString lang);
22
+ static Promise<AvailabilityStatus> availableOnDevice(DOMString lang);
23
23
  static Promise<boolean> installOnDevice(DOMString lang);
24
24
 
25
25
  // event methods
@@ -52,6 +52,13 @@ enum SpeechRecognitionMode {
52
52
  "cloud-only", // Cloud speech recognition only.
53
53
  };
54
54
 
55
+ enum AvailabilityStatus {
56
+ "unavailable",
57
+ "downloadable",
58
+ "downloading",
59
+ "available"
60
+ };
61
+
55
62
  [Exposed=Window]
56
63
  interface SpeechRecognitionErrorEvent : Event {
57
64
  constructor(DOMString type, SpeechRecognitionErrorEventInit eventInitDict);
package/webrtc-stats.idl CHANGED
@@ -38,6 +38,10 @@ dictionary RTCCodecStats : RTCStats {
38
38
 
39
39
  dictionary RTCReceivedRtpStreamStats : RTCRtpStreamStats {
40
40
  unsigned long long packetsReceived;
41
+ unsigned long long packetsReceivedWithEct1;
42
+ unsigned long long packetsReceivedWithCe;
43
+ unsigned long long packetsReportedAsLost;
44
+ unsigned long long packetsReportedAsLostButRecovered;
41
45
  long long packetsLost;
42
46
  double jitter;
43
47
  };
@@ -107,11 +111,13 @@ dictionary RTCRemoteInboundRtpStreamStats : RTCReceivedRtpStreamStats {
107
111
  double totalRoundTripTime;
108
112
  double fractionLost;
109
113
  unsigned long long roundTripTimeMeasurements;
114
+ unsigned long long packetsWithBleachedEct1Marking;
110
115
  };
111
116
 
112
117
  dictionary RTCSentRtpStreamStats : RTCRtpStreamStats {
113
- unsigned long long packetsSent;
114
- unsigned long long bytesSent;
118
+ unsigned long long packetsSent;
119
+ unsigned long long bytesSent;
120
+ unsigned long long packetsSentWithEct1;
115
121
  };
116
122
 
117
123
  dictionary RTCOutboundRtpStreamStats : RTCSentRtpStreamStats {
@@ -119,6 +125,7 @@ dictionary RTCOutboundRtpStreamStats : RTCSentRtpStreamStats {
119
125
  DOMString mediaSourceId;
120
126
  DOMString remoteId;
121
127
  DOMString rid;
128
+ unsigned long encodingIndex;
122
129
  unsigned long long headerBytesSent;
123
130
  unsigned long long retransmittedPacketsSent;
124
131
  unsigned long long retransmittedBytesSent;
@@ -225,6 +232,8 @@ dictionary RTCTransportStats : RTCStats {
225
232
  RTCDtlsRole dtlsRole;
226
233
  DOMString srtpCipher;
227
234
  unsigned long selectedCandidatePairChanges;
235
+ unsigned long ccfbMessagesSent;
236
+ unsigned long ccfbMessagesReceived;
228
237
  };
229
238
 
230
239
  enum RTCDtlsRole {
package/webrtc.idl CHANGED
@@ -163,7 +163,7 @@ dictionary RTCLocalSessionDescriptionInit {
163
163
 
164
164
  [Exposed=Window]
165
165
  interface RTCIceCandidate {
166
- constructor(optional RTCIceCandidateInit candidateInitDict = {});
166
+ constructor(optional RTCLocalIceCandidateInit candidateInitDict = {});
167
167
  readonly attribute DOMString candidate;
168
168
  readonly attribute DOMString? sdpMid;
169
169
  readonly attribute unsigned short? sdpMLineIndex;
@@ -179,7 +179,7 @@ interface RTCIceCandidate {
179
179
  readonly attribute unsigned short? relatedPort;
180
180
  readonly attribute DOMString? usernameFragment;
181
181
  readonly attribute RTCIceServerTransportProtocol? relayProtocol;
182
- readonly attribute DOMString? url;
182
+ readonly attribute USVString? url;
183
183
  RTCIceCandidateInit toJSON();
184
184
  };
185
185
 
@@ -190,6 +190,11 @@ dictionary RTCIceCandidateInit {
190
190
  DOMString? usernameFragment = null;
191
191
  };
192
192
 
193
+ dictionary RTCLocalIceCandidateInit : RTCIceCandidateInit {
194
+ RTCIceServerTransportProtocol? relayProtocol = null;
195
+ USVString? url = null;
196
+ };
197
+
193
198
  enum RTCIceProtocol {
194
199
  "udp",
195
200
  "tcp"
@@ -218,7 +223,7 @@ enum RTCIceServerTransportProtocol {
218
223
  interface RTCPeerConnectionIceEvent : Event {
219
224
  constructor(DOMString type, optional RTCPeerConnectionIceEventInit eventInitDict = {});
220
225
  readonly attribute RTCIceCandidate? candidate;
221
- readonly attribute DOMString? url;
226
+ readonly attribute USVString? url;
222
227
  };
223
228
 
224
229
  dictionary RTCPeerConnectionIceEventInit : EventInit {