@@ -189,6 +189,11 @@ interface AuthenticationExtensionsClientInputs {
189189}
190190
191191interface AuthenticationExtensionsClientInputsJSON {
192+ appid?: string;
193+ appidExclude?: string;
194+ credProps?: boolean;
195+ largeBlob?: AuthenticationExtensionsLargeBlobInputsJSON;
196+ prf?: AuthenticationExtensionsPRFInputsJSON;
192197}
193198
194199interface AuthenticationExtensionsClientOutputs {
@@ -198,11 +203,22 @@ interface AuthenticationExtensionsClientOutputs {
198203 prf?: AuthenticationExtensionsPRFOutputs;
199204}
200205
206+ interface AuthenticationExtensionsLargeBlobInputsJSON {
207+ read?: boolean;
208+ support?: string;
209+ write?: Base64URLString;
210+ }
211+
201212interface AuthenticationExtensionsPRFInputs {
202213 eval?: AuthenticationExtensionsPRFValues;
203214 evalByCredential?: Record<string, AuthenticationExtensionsPRFValues>;
204215}
205216
217+ interface AuthenticationExtensionsPRFInputsJSON {
218+ eval?: AuthenticationExtensionsPRFValuesJSON;
219+ evalByCredential?: Record<string, AuthenticationExtensionsPRFValuesJSON>;
220+ }
221+
206222interface AuthenticationExtensionsPRFOutputs {
207223 enabled?: boolean;
208224 results?: AuthenticationExtensionsPRFValues;
@@ -213,6 +229,11 @@ interface AuthenticationExtensionsPRFValues {
213229 second?: BufferSource;
214230}
215231
232+ interface AuthenticationExtensionsPRFValuesJSON {
233+ first: Base64URLString;
234+ second?: Base64URLString;
235+ }
236+
216237interface AuthenticatorSelectionCriteria {
217238 authenticatorAttachment?: AuthenticatorAttachment;
218239 requireResidentKey?: boolean;
@@ -16091,8 +16112,6 @@ interface LargestContentfulPaint extends PerformanceEntry {
1609116112 readonly id: string;
1609216113 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime) */
1609316114 readonly loadTime: DOMHighResTimeStamp;
16094- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */
16095- readonly renderTime: DOMHighResTimeStamp;
1609616115 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/size) */
1609716116 readonly size: number;
1609816117 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/url) */
@@ -23634,7 +23653,7 @@ interface ServiceWorkerRegistration extends EventTarget {
2363423653 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister) */
2363523654 unregister(): Promise<boolean>;
2363623655 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update) */
23637- update(): Promise<void >;
23656+ update(): Promise<ServiceWorkerRegistration >;
2363823657 addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2363923658 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
2364023659 removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
0 commit comments