Skip to content

Commit 46522cd

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 65c87f5 commit 46522cd

14 files changed

+85
-28
lines changed

baselines/dom.generated.d.ts

+22-3
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,11 @@ interface AuthenticationExtensionsClientInputs {
189189
}
190190

191191
interface AuthenticationExtensionsClientInputsJSON {
192+
appid?: string;
193+
appidExclude?: string;
194+
credProps?: boolean;
195+
largeBlob?: AuthenticationExtensionsLargeBlobInputsJSON;
196+
prf?: AuthenticationExtensionsPRFInputsJSON;
192197
}
193198

194199
interface 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+
201212
interface AuthenticationExtensionsPRFInputs {
202213
eval?: AuthenticationExtensionsPRFValues;
203214
evalByCredential?: Record<string, AuthenticationExtensionsPRFValues>;
204215
}
205216

217+
interface AuthenticationExtensionsPRFInputsJSON {
218+
eval?: AuthenticationExtensionsPRFValuesJSON;
219+
evalByCredential?: Record<string, AuthenticationExtensionsPRFValuesJSON>;
220+
}
221+
206222
interface 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+
216237
interface 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;

baselines/serviceworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5439,7 +5439,7 @@ interface ServiceWorkerRegistration extends EventTarget {
54395439
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister) */
54405440
unregister(): Promise<boolean>;
54415441
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update) */
5442-
update(): Promise<void>;
5442+
update(): Promise<ServiceWorkerRegistration>;
54435443
addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
54445444
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
54455445
removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;

baselines/sharedworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5123,7 +5123,7 @@ interface ServiceWorkerRegistration extends EventTarget {
51235123
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister) */
51245124
unregister(): Promise<boolean>;
51255125
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update) */
5126-
update(): Promise<void>;
5126+
update(): Promise<ServiceWorkerRegistration>;
51275127
addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
51285128
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
51295129
removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;

baselines/ts5.5/dom.generated.d.ts

+22-3
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,11 @@ interface AuthenticationExtensionsClientInputs {
189189
}
190190

191191
interface AuthenticationExtensionsClientInputsJSON {
192+
appid?: string;
193+
appidExclude?: string;
194+
credProps?: boolean;
195+
largeBlob?: AuthenticationExtensionsLargeBlobInputsJSON;
196+
prf?: AuthenticationExtensionsPRFInputsJSON;
192197
}
193198

194199
interface 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+
201212
interface AuthenticationExtensionsPRFInputs {
202213
eval?: AuthenticationExtensionsPRFValues;
203214
evalByCredential?: Record<string, AuthenticationExtensionsPRFValues>;
204215
}
205216

217+
interface AuthenticationExtensionsPRFInputsJSON {
218+
eval?: AuthenticationExtensionsPRFValuesJSON;
219+
evalByCredential?: Record<string, AuthenticationExtensionsPRFValuesJSON>;
220+
}
221+
206222
interface 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+
216237
interface AuthenticatorSelectionCriteria {
217238
authenticatorAttachment?: AuthenticatorAttachment;
218239
requireResidentKey?: boolean;
@@ -16071,8 +16092,6 @@ interface LargestContentfulPaint extends PerformanceEntry {
1607116092
readonly id: string;
1607216093
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime) */
1607316094
readonly loadTime: DOMHighResTimeStamp;
16074-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */
16075-
readonly renderTime: DOMHighResTimeStamp;
1607616095
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/size) */
1607716096
readonly size: number;
1607816097
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/url) */
@@ -23613,7 +23632,7 @@ interface ServiceWorkerRegistration extends EventTarget {
2361323632
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister) */
2361423633
unregister(): Promise<boolean>;
2361523634
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update) */
23616-
update(): Promise<void>;
23635+
update(): Promise<ServiceWorkerRegistration>;
2361723636
addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2361823637
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
2361923638
removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;

baselines/ts5.5/serviceworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5439,7 +5439,7 @@ interface ServiceWorkerRegistration extends EventTarget {
54395439
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister) */
54405440
unregister(): Promise<boolean>;
54415441
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update) */
5442-
update(): Promise<void>;
5442+
update(): Promise<ServiceWorkerRegistration>;
54435443
addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
54445444
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
54455445
removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;

baselines/ts5.5/sharedworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5123,7 +5123,7 @@ interface ServiceWorkerRegistration extends EventTarget {
51235123
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister) */
51245124
unregister(): Promise<boolean>;
51255125
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update) */
5126-
update(): Promise<void>;
5126+
update(): Promise<ServiceWorkerRegistration>;
51275127
addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
51285128
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
51295129
removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;

baselines/ts5.5/webworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6190,7 +6190,7 @@ interface ServiceWorkerRegistration extends EventTarget {
61906190
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister) */
61916191
unregister(): Promise<boolean>;
61926192
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update) */
6193-
update(): Promise<void>;
6193+
update(): Promise<ServiceWorkerRegistration>;
61946194
addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
61956195
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
61966196
removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;

baselines/ts5.6/dom.generated.d.ts

+22-3
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,11 @@ interface AuthenticationExtensionsClientInputs {
189189
}
190190

191191
interface AuthenticationExtensionsClientInputsJSON {
192+
appid?: string;
193+
appidExclude?: string;
194+
credProps?: boolean;
195+
largeBlob?: AuthenticationExtensionsLargeBlobInputsJSON;
196+
prf?: AuthenticationExtensionsPRFInputsJSON;
192197
}
193198

194199
interface 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+
201212
interface AuthenticationExtensionsPRFInputs {
202213
eval?: AuthenticationExtensionsPRFValues;
203214
evalByCredential?: Record<string, AuthenticationExtensionsPRFValues>;
204215
}
205216

217+
interface AuthenticationExtensionsPRFInputsJSON {
218+
eval?: AuthenticationExtensionsPRFValuesJSON;
219+
evalByCredential?: Record<string, AuthenticationExtensionsPRFValuesJSON>;
220+
}
221+
206222
interface 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+
216237
interface 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;

baselines/ts5.6/serviceworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5439,7 +5439,7 @@ interface ServiceWorkerRegistration extends EventTarget {
54395439
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister) */
54405440
unregister(): Promise<boolean>;
54415441
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update) */
5442-
update(): Promise<void>;
5442+
update(): Promise<ServiceWorkerRegistration>;
54435443
addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
54445444
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
54455445
removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;

baselines/ts5.6/sharedworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5123,7 +5123,7 @@ interface ServiceWorkerRegistration extends EventTarget {
51235123
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister) */
51245124
unregister(): Promise<boolean>;
51255125
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update) */
5126-
update(): Promise<void>;
5126+
update(): Promise<ServiceWorkerRegistration>;
51275127
addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
51285128
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
51295129
removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;

baselines/ts5.6/webworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6190,7 +6190,7 @@ interface ServiceWorkerRegistration extends EventTarget {
61906190
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister) */
61916191
unregister(): Promise<boolean>;
61926192
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update) */
6193-
update(): Promise<void>;
6193+
update(): Promise<ServiceWorkerRegistration>;
61946194
addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
61956195
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
61966196
removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;

baselines/webworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6190,7 +6190,7 @@ interface ServiceWorkerRegistration extends EventTarget {
61906190
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister) */
61916191
unregister(): Promise<boolean>;
61926192
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update) */
6193-
update(): Promise<void>;
6193+
update(): Promise<ServiceWorkerRegistration>;
61946194
addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
61956195
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
61966196
removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;

inputfiles/mdn

Submodule mdn updated 215 files

package-lock.json

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)