@webref/idl 3.61.1 → 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/fedcm.idl +3 -0
- package/package.json +1 -1
- package/ppa.idl +4 -4
- package/screen-capture.idl +1 -0
- package/speech-api.idl +8 -1
- package/webaudio.idl +2 -1
- package/webgpu.idl +6 -2
- package/webrtc-stats.idl +11 -2
- package/webrtc.idl +8 -3
- package/webxr.idl +2 -0
package/fedcm.idl
CHANGED
|
@@ -12,6 +12,7 @@ interface IdentityCredential : Credential {
|
|
|
12
12
|
static Promise<undefined> disconnect(IdentityCredentialDisconnectOptions options);
|
|
13
13
|
readonly attribute USVString? token;
|
|
14
14
|
readonly attribute boolean isAutoSelected;
|
|
15
|
+
readonly attribute USVString configURL;
|
|
15
16
|
};
|
|
16
17
|
|
|
17
18
|
dictionary DisconnectedAccount {
|
|
@@ -78,6 +79,7 @@ dictionary IdentityProviderAPIConfig {
|
|
|
78
79
|
required USVString login_url;
|
|
79
80
|
USVString disconnect_endpoint;
|
|
80
81
|
IdentityProviderBranding branding;
|
|
82
|
+
USVString account_label;
|
|
81
83
|
};
|
|
82
84
|
|
|
83
85
|
dictionary IdentityProviderAccount {
|
|
@@ -89,6 +91,7 @@ dictionary IdentityProviderAccount {
|
|
|
89
91
|
sequence<USVString> approved_clients;
|
|
90
92
|
sequence<DOMString> login_hints;
|
|
91
93
|
sequence<DOMString> domain_hints;
|
|
94
|
+
sequence<DOMString> label_hints;
|
|
92
95
|
};
|
|
93
96
|
dictionary IdentityProviderAccountList {
|
|
94
97
|
sequence<IdentityProviderAccount> accounts;
|
package/package.json
CHANGED
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
|
-
};
|
package/screen-capture.idl
CHANGED
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<
|
|
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/webaudio.idl
CHANGED
package/webgpu.idl
CHANGED
|
@@ -64,6 +64,7 @@ interface GPUAdapterInfo {
|
|
|
64
64
|
readonly attribute DOMString description;
|
|
65
65
|
readonly attribute unsigned long subgroupMinSize;
|
|
66
66
|
readonly attribute unsigned long subgroupMaxSize;
|
|
67
|
+
readonly attribute boolean isFallbackAdapter;
|
|
67
68
|
};
|
|
68
69
|
|
|
69
70
|
interface mixin NavigatorGPU {
|
|
@@ -96,7 +97,6 @@ interface GPUAdapter {
|
|
|
96
97
|
[SameObject] readonly attribute GPUSupportedFeatures features;
|
|
97
98
|
[SameObject] readonly attribute GPUSupportedLimits limits;
|
|
98
99
|
[SameObject] readonly attribute GPUAdapterInfo info;
|
|
99
|
-
readonly attribute boolean isFallbackAdapter;
|
|
100
100
|
|
|
101
101
|
Promise<GPUDevice> requestDevice(optional GPUDeviceDescriptor descriptor = {});
|
|
102
102
|
};
|
|
@@ -936,12 +936,16 @@ interface GPUCommandEncoder {
|
|
|
936
936
|
GPURenderPassEncoder beginRenderPass(GPURenderPassDescriptor descriptor);
|
|
937
937
|
GPUComputePassEncoder beginComputePass(optional GPUComputePassDescriptor descriptor = {});
|
|
938
938
|
|
|
939
|
+
undefined copyBufferToBuffer(
|
|
940
|
+
GPUBuffer source,
|
|
941
|
+
GPUBuffer destination,
|
|
942
|
+
optional GPUSize64 size);
|
|
939
943
|
undefined copyBufferToBuffer(
|
|
940
944
|
GPUBuffer source,
|
|
941
945
|
GPUSize64 sourceOffset,
|
|
942
946
|
GPUBuffer destination,
|
|
943
947
|
GPUSize64 destinationOffset,
|
|
944
|
-
GPUSize64 size);
|
|
948
|
+
optional GPUSize64 size);
|
|
945
949
|
|
|
946
950
|
undefined copyBufferToTexture(
|
|
947
951
|
GPUTexelCopyBufferInfo source,
|
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
|
-
|
|
114
|
-
|
|
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
|
|
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
|
|
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
|
|
226
|
+
readonly attribute USVString? url;
|
|
222
227
|
};
|
|
223
228
|
|
|
224
229
|
dictionary RTCPeerConnectionIceEventInit : EventInit {
|
package/webxr.idl
CHANGED
|
@@ -70,6 +70,7 @@ enum XRVisibilityState {
|
|
|
70
70
|
dictionary XRRenderStateInit {
|
|
71
71
|
double depthNear;
|
|
72
72
|
double depthFar;
|
|
73
|
+
boolean passthroughFullyObscured;
|
|
73
74
|
double inlineVerticalFieldOfView;
|
|
74
75
|
XRWebGLLayer? baseLayer;
|
|
75
76
|
sequence<XRLayer>? layers;
|
|
@@ -78,6 +79,7 @@ dictionary XRRenderStateInit {
|
|
|
78
79
|
[SecureContext, Exposed=Window] interface XRRenderState {
|
|
79
80
|
readonly attribute double depthNear;
|
|
80
81
|
readonly attribute double depthFar;
|
|
82
|
+
readonly attribute boolean? passthroughFullyObscured;
|
|
81
83
|
readonly attribute double? inlineVerticalFieldOfView;
|
|
82
84
|
readonly attribute XRWebGLLayer? baseLayer;
|
|
83
85
|
};
|