@webref/idl 3.62.0 → 3.62.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.
@@ -5,7 +5,6 @@
5
5
 
6
6
  [Exposed=Window]
7
7
  interface LargestContentfulPaint : PerformanceEntry {
8
- readonly attribute DOMHighResTimeStamp renderTime;
9
8
  readonly attribute DOMHighResTimeStamp loadTime;
10
9
  readonly attribute unsigned long size;
11
10
  readonly attribute DOMString id;
@@ -13,3 +12,5 @@ interface LargestContentfulPaint : PerformanceEntry {
13
12
  readonly attribute Element? element;
14
13
  [Default] object toJSON();
15
14
  };
15
+
16
+ LargestContentfulPaint includes PaintTimingMixin;
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.62.0",
4
+ "version": "3.62.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -34,7 +34,7 @@ interface ServiceWorkerRegistration : EventTarget {
34
34
  readonly attribute USVString scope;
35
35
  readonly attribute ServiceWorkerUpdateViaCache updateViaCache;
36
36
 
37
- [NewObject] Promise<undefined> update();
37
+ [NewObject] Promise<ServiceWorkerRegistration> update();
38
38
  [NewObject] Promise<boolean> unregister();
39
39
 
40
40
  // event
package/webauthn.idl CHANGED
@@ -311,22 +311,37 @@ enum PublicKeyCredentialHint {
311
311
  partial dictionary AuthenticationExtensionsClientInputs {
312
312
  DOMString appid;
313
313
  };
314
+ partial dictionary AuthenticationExtensionsClientInputsJSON {
315
+ DOMString appid;
316
+ };
314
317
 
315
318
  partial dictionary AuthenticationExtensionsClientOutputs {
316
319
  boolean appid;
317
320
  };
321
+ partial dictionary AuthenticationExtensionsClientOutputsJSON {
322
+ boolean appid;
323
+ };
318
324
 
319
325
  partial dictionary AuthenticationExtensionsClientInputs {
320
326
  DOMString appidExclude;
321
327
  };
328
+ partial dictionary AuthenticationExtensionsClientInputsJSON {
329
+ DOMString appidExclude;
330
+ };
322
331
 
323
332
  partial dictionary AuthenticationExtensionsClientOutputs {
324
333
  boolean appidExclude;
325
334
  };
335
+ partial dictionary AuthenticationExtensionsClientOutputsJSON {
336
+ boolean appidExclude;
337
+ };
326
338
 
327
339
  partial dictionary AuthenticationExtensionsClientInputs {
328
340
  boolean credProps;
329
341
  };
342
+ partial dictionary AuthenticationExtensionsClientInputsJSON {
343
+ boolean credProps;
344
+ };
330
345
 
331
346
  dictionary CredentialPropertiesOutput {
332
347
  boolean rk;
@@ -335,33 +350,57 @@ dictionary CredentialPropertiesOutput {
335
350
  partial dictionary AuthenticationExtensionsClientOutputs {
336
351
  CredentialPropertiesOutput credProps;
337
352
  };
353
+ partial dictionary AuthenticationExtensionsClientOutputsJSON {
354
+ CredentialPropertiesOutput credProps;
355
+ };
338
356
 
339
357
  dictionary AuthenticationExtensionsPRFValues {
340
358
  required BufferSource first;
341
359
  BufferSource second;
342
360
  };
361
+ dictionary AuthenticationExtensionsPRFValuesJSON {
362
+ required Base64URLString first;
363
+ Base64URLString second;
364
+ };
343
365
 
344
366
  dictionary AuthenticationExtensionsPRFInputs {
345
367
  AuthenticationExtensionsPRFValues eval;
346
368
  record<DOMString, AuthenticationExtensionsPRFValues> evalByCredential;
347
369
  };
370
+ dictionary AuthenticationExtensionsPRFInputsJSON {
371
+ AuthenticationExtensionsPRFValuesJSON eval;
372
+ record<DOMString, AuthenticationExtensionsPRFValuesJSON> evalByCredential;
373
+ };
348
374
 
349
375
  partial dictionary AuthenticationExtensionsClientInputs {
350
376
  AuthenticationExtensionsPRFInputs prf;
351
377
  };
378
+ partial dictionary AuthenticationExtensionsClientInputsJSON {
379
+ AuthenticationExtensionsPRFInputsJSON prf;
380
+ };
352
381
 
353
382
  dictionary AuthenticationExtensionsPRFOutputs {
354
383
  boolean enabled;
355
384
  AuthenticationExtensionsPRFValues results;
356
385
  };
386
+ dictionary AuthenticationExtensionsPRFOutputsJSON {
387
+ boolean enabled;
388
+ AuthenticationExtensionsPRFValuesJSON results;
389
+ };
357
390
 
358
391
  partial dictionary AuthenticationExtensionsClientOutputs {
359
392
  AuthenticationExtensionsPRFOutputs prf;
360
393
  };
394
+ partial dictionary AuthenticationExtensionsClientOutputsJSON {
395
+ AuthenticationExtensionsPRFOutputsJSON prf;
396
+ };
361
397
 
362
398
  partial dictionary AuthenticationExtensionsClientInputs {
363
399
  AuthenticationExtensionsLargeBlobInputs largeBlob;
364
400
  };
401
+ partial dictionary AuthenticationExtensionsClientInputsJSON {
402
+ AuthenticationExtensionsLargeBlobInputsJSON largeBlob;
403
+ };
365
404
 
366
405
  enum LargeBlobSupport {
367
406
  "required",
@@ -373,13 +412,26 @@ dictionary AuthenticationExtensionsLargeBlobInputs {
373
412
  boolean read;
374
413
  BufferSource write;
375
414
  };
415
+ dictionary AuthenticationExtensionsLargeBlobInputsJSON {
416
+ DOMString support;
417
+ boolean read;
418
+ Base64URLString write;
419
+ };
376
420
 
377
421
  partial dictionary AuthenticationExtensionsClientOutputs {
378
422
  AuthenticationExtensionsLargeBlobOutputs largeBlob;
379
423
  };
424
+ partial dictionary AuthenticationExtensionsClientOutputsJSON {
425
+ AuthenticationExtensionsLargeBlobOutputsJSON largeBlob;
426
+ };
380
427
 
381
428
  dictionary AuthenticationExtensionsLargeBlobOutputs {
382
429
  boolean supported;
383
430
  ArrayBuffer blob;
384
431
  boolean written;
385
432
  };
433
+ dictionary AuthenticationExtensionsLargeBlobOutputsJSON {
434
+ boolean supported;
435
+ Base64URLString blob;
436
+ boolean written;
437
+ };