@webref/idl 3.65.2 → 3.65.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.
@@ -31,6 +31,7 @@ dictionary DigitalCredentialCreateRequest {
31
31
 
32
32
  [Exposed=Window, SecureContext]
33
33
  interface DigitalCredential : Credential {
34
+ [Default] object toJSON();
34
35
  readonly attribute DOMString protocol;
35
36
  [SameObject] readonly attribute object data;
36
37
  static boolean userAgentAllowsProtocol(DOMString protocol);
package/dom.idl CHANGED
@@ -412,7 +412,7 @@ dictionary ShadowRootInit {
412
412
  SlotAssignmentMode slotAssignment = "named";
413
413
  boolean clonable = false;
414
414
  boolean serializable = false;
415
- CustomElementRegistry customElementRegistry;
415
+ CustomElementRegistry? customElementRegistry = null;
416
416
  };
417
417
 
418
418
  [Exposed=Window,
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.65.2",
4
+ "version": "3.65.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/webtransport.idl CHANGED
@@ -156,6 +156,7 @@ interface WebTransportBidirectionalStream {
156
156
  [Exposed=*, SecureContext]
157
157
  interface WebTransportWriter : WritableStreamDefaultWriter {
158
158
  Promise<undefined> atomicWrite(optional any chunk);
159
+ undefined commit();
159
160
  };
160
161
 
161
162
  [Exposed=(Window,Worker), Serializable, SecureContext]