@webref/idl 3.39.0 → 3.39.1
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/css-font-loading.idl +0 -2
- package/html.idl +1 -0
- package/package.json +1 -1
- package/storage-buckets.idl +1 -9
- package/streams.idl +2 -0
- package/webauthn.idl +4 -2
- package/webgpu.idl +1 -0
- package/webrtc-encoded-transform.idl +2 -2
- package/webxr.idl +2 -1
package/css-font-loading.idl
CHANGED
|
@@ -10,7 +10,6 @@ dictionary FontFaceDescriptors {
|
|
|
10
10
|
CSSOMString weight = "normal";
|
|
11
11
|
CSSOMString stretch = "normal";
|
|
12
12
|
CSSOMString unicodeRange = "U+0-10FFFF";
|
|
13
|
-
CSSOMString variant = "normal";
|
|
14
13
|
CSSOMString featureSettings = "normal";
|
|
15
14
|
CSSOMString variationSettings = "normal";
|
|
16
15
|
CSSOMString display = "auto";
|
|
@@ -30,7 +29,6 @@ interface FontFace {
|
|
|
30
29
|
attribute CSSOMString weight;
|
|
31
30
|
attribute CSSOMString stretch;
|
|
32
31
|
attribute CSSOMString unicodeRange;
|
|
33
|
-
attribute CSSOMString variant;
|
|
34
32
|
attribute CSSOMString featureSettings;
|
|
35
33
|
attribute CSSOMString variationSettings;
|
|
36
34
|
attribute CSSOMString display;
|
package/html.idl
CHANGED
package/package.json
CHANGED
package/storage-buckets.idl
CHANGED
|
@@ -18,14 +18,8 @@ interface StorageBucketManager {
|
|
|
18
18
|
Promise<undefined> delete(DOMString name);
|
|
19
19
|
};
|
|
20
20
|
|
|
21
|
-
enum StorageBucketDurability {
|
|
22
|
-
"strict",
|
|
23
|
-
"relaxed"
|
|
24
|
-
};
|
|
25
|
-
|
|
26
21
|
dictionary StorageBucketOptions {
|
|
27
|
-
boolean
|
|
28
|
-
StorageBucketDurability? durability = null;
|
|
22
|
+
boolean persisted = false;
|
|
29
23
|
unsigned long long? quota = null;
|
|
30
24
|
DOMHighResTimeStamp? expires = null;
|
|
31
25
|
};
|
|
@@ -40,8 +34,6 @@ interface StorageBucket {
|
|
|
40
34
|
|
|
41
35
|
Promise<StorageEstimate> estimate();
|
|
42
36
|
|
|
43
|
-
Promise<StorageBucketDurability> durability();
|
|
44
|
-
|
|
45
37
|
Promise<undefined> setExpires(DOMHighResTimeStamp expires);
|
|
46
38
|
Promise<DOMHighResTimeStamp?> expires();
|
|
47
39
|
|
package/streams.idl
CHANGED
|
@@ -174,6 +174,7 @@ dictionary Transformer {
|
|
|
174
174
|
TransformerStartCallback start;
|
|
175
175
|
TransformerTransformCallback transform;
|
|
176
176
|
TransformerFlushCallback flush;
|
|
177
|
+
TransformerCancelCallback cancel;
|
|
177
178
|
any readableType;
|
|
178
179
|
any writableType;
|
|
179
180
|
};
|
|
@@ -181,6 +182,7 @@ dictionary Transformer {
|
|
|
181
182
|
callback TransformerStartCallback = any (TransformStreamDefaultController controller);
|
|
182
183
|
callback TransformerFlushCallback = Promise<undefined> (TransformStreamDefaultController controller);
|
|
183
184
|
callback TransformerTransformCallback = Promise<undefined> (any chunk, TransformStreamDefaultController controller);
|
|
185
|
+
callback TransformerCancelCallback = Promise<undefined> (any reason);
|
|
184
186
|
|
|
185
187
|
[Exposed=*]
|
|
186
188
|
interface TransformStreamDefaultController {
|
package/webauthn.idl
CHANGED
|
@@ -7,14 +7,16 @@
|
|
|
7
7
|
interface PublicKeyCredential : Credential {
|
|
8
8
|
[SameObject] readonly attribute ArrayBuffer rawId;
|
|
9
9
|
[SameObject] readonly attribute AuthenticatorResponse response;
|
|
10
|
-
|
|
10
|
+
readonly attribute DOMString? authenticatorAttachment;
|
|
11
11
|
AuthenticationExtensionsClientOutputs getClientExtensionResults();
|
|
12
12
|
static Promise<boolean> isConditionalMediationAvailable();
|
|
13
13
|
PublicKeyCredentialJSON toJSON();
|
|
14
14
|
};
|
|
15
15
|
|
|
16
16
|
typedef DOMString Base64URLString;
|
|
17
|
-
|
|
17
|
+
// The structure of this object will be either
|
|
18
|
+
// RegistrationResponseJSON or AuthenticationResponseJSON
|
|
19
|
+
typedef object PublicKeyCredentialJSON;
|
|
18
20
|
|
|
19
21
|
dictionary RegistrationResponseJSON {
|
|
20
22
|
required Base64URLString id;
|
package/webgpu.idl
CHANGED
|
@@ -74,6 +74,7 @@ dictionary RTCEncodedVideoFrameMetadata {
|
|
|
74
74
|
octet payloadType;
|
|
75
75
|
sequence<unsigned long> contributingSources;
|
|
76
76
|
long long timestamp; // microseconds
|
|
77
|
+
unsigned long rtpTimestamp;
|
|
77
78
|
};
|
|
78
79
|
|
|
79
80
|
// New interfaces to define encoded video and audio frames. Will eventually
|
|
@@ -81,7 +82,6 @@ dictionary RTCEncodedVideoFrameMetadata {
|
|
|
81
82
|
[Exposed=(Window,DedicatedWorker), Serializable]
|
|
82
83
|
interface RTCEncodedVideoFrame {
|
|
83
84
|
readonly attribute RTCEncodedVideoFrameType type;
|
|
84
|
-
readonly attribute unsigned long timestamp;
|
|
85
85
|
attribute ArrayBuffer data;
|
|
86
86
|
RTCEncodedVideoFrameMetadata getMetadata();
|
|
87
87
|
};
|
|
@@ -91,11 +91,11 @@ dictionary RTCEncodedAudioFrameMetadata {
|
|
|
91
91
|
octet payloadType;
|
|
92
92
|
sequence<unsigned long> contributingSources;
|
|
93
93
|
short sequenceNumber;
|
|
94
|
+
unsigned long rtpTimestamp;
|
|
94
95
|
};
|
|
95
96
|
|
|
96
97
|
[Exposed=(Window,DedicatedWorker), Serializable]
|
|
97
98
|
interface RTCEncodedAudioFrame {
|
|
98
|
-
readonly attribute unsigned long timestamp;
|
|
99
99
|
attribute ArrayBuffer data;
|
|
100
100
|
RTCEncodedAudioFrameMetadata getMetadata();
|
|
101
101
|
};
|