@@ -189,6 +189,11 @@ interface AuthenticationExtensionsClientInputs {
189
189
}
190
190
191
191
interface AuthenticationExtensionsClientInputsJSON {
192
+ appid?: string;
193
+ appidExclude?: string;
194
+ credProps?: boolean;
195
+ largeBlob?: AuthenticationExtensionsLargeBlobInputsJSON;
196
+ prf?: AuthenticationExtensionsPRFInputsJSON;
192
197
}
193
198
194
199
interface AuthenticationExtensionsClientOutputs {
@@ -198,11 +203,22 @@ interface AuthenticationExtensionsClientOutputs {
198
203
prf?: AuthenticationExtensionsPRFOutputs;
199
204
}
200
205
206
+ interface AuthenticationExtensionsLargeBlobInputsJSON {
207
+ read?: boolean;
208
+ support?: string;
209
+ write?: Base64URLString;
210
+ }
211
+
201
212
interface AuthenticationExtensionsPRFInputs {
202
213
eval?: AuthenticationExtensionsPRFValues;
203
214
evalByCredential?: Record<string, AuthenticationExtensionsPRFValues>;
204
215
}
205
216
217
+ interface AuthenticationExtensionsPRFInputsJSON {
218
+ eval?: AuthenticationExtensionsPRFValuesJSON;
219
+ evalByCredential?: Record<string, AuthenticationExtensionsPRFValuesJSON>;
220
+ }
221
+
206
222
interface AuthenticationExtensionsPRFOutputs {
207
223
enabled?: boolean;
208
224
results?: AuthenticationExtensionsPRFValues;
@@ -213,6 +229,11 @@ interface AuthenticationExtensionsPRFValues {
213
229
second?: BufferSource;
214
230
}
215
231
232
+ interface AuthenticationExtensionsPRFValuesJSON {
233
+ first: Base64URLString;
234
+ second?: Base64URLString;
235
+ }
236
+
216
237
interface AuthenticatorSelectionCriteria {
217
238
authenticatorAttachment?: AuthenticatorAttachment;
218
239
requireResidentKey?: boolean;
@@ -16091,8 +16112,6 @@ interface LargestContentfulPaint extends PerformanceEntry {
16091
16112
readonly id: string;
16092
16113
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime) */
16093
16114
readonly loadTime: DOMHighResTimeStamp;
16094
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */
16095
- readonly renderTime: DOMHighResTimeStamp;
16096
16115
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/size) */
16097
16116
readonly size: number;
16098
16117
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/url) */
@@ -23634,7 +23653,7 @@ interface ServiceWorkerRegistration extends EventTarget {
23634
23653
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister) */
23635
23654
unregister(): Promise<boolean>;
23636
23655
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update) */
23637
- update(): Promise<void >;
23656
+ update(): Promise<ServiceWorkerRegistration >;
23638
23657
addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
23639
23658
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
23640
23659
removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
0 commit comments