Skip to content

Commit 7072c01

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent d006958 commit 7072c01

23 files changed

+451
-82
lines changed

baselines/dom.generated.d.ts

Lines changed: 53 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -545,6 +545,7 @@ interface DeviceOrientationEventInit extends EventInit {
545545
interface DisplayMediaStreamOptions {
546546
audio?: boolean | MediaTrackConstraints;
547547
video?: boolean | MediaTrackConstraints;
548+
windowAudio?: WindowAudioPreferenceEnum;
548549
}
549550

550551
interface DocumentTimelineOptions {
@@ -973,11 +974,11 @@ interface MIDIOptions {
973974
}
974975

975976
interface MediaCapabilitiesDecodingInfo extends MediaCapabilitiesInfo {
976-
configuration?: MediaDecodingConfiguration;
977+
configuration: MediaDecodingConfiguration;
977978
}
978979

979980
interface MediaCapabilitiesEncodingInfo extends MediaCapabilitiesInfo {
980-
configuration?: MediaEncodingConfiguration;
981+
configuration: MediaEncodingConfiguration;
981982
}
982983

983984
interface MediaCapabilitiesInfo {
@@ -1632,21 +1633,27 @@ interface RTCDtlsFingerprint {
16321633
value?: string;
16331634
}
16341635

1635-
interface RTCEncodedAudioFrameMetadata {
1636+
interface RTCEncodedAudioFrameMetadata extends RTCEncodedFrameMetadata {
1637+
audioLevel?: number;
1638+
sequenceNumber?: number;
1639+
}
1640+
1641+
interface RTCEncodedFrameMetadata {
1642+
captureTime?: DOMHighResTimeStamp;
16361643
contributingSources?: number[];
1644+
mimeType?: string;
16371645
payloadType?: number;
1638-
sequenceNumber?: number;
1646+
receiveTime?: DOMHighResTimeStamp;
1647+
rtpTimestamp?: number;
1648+
senderCaptureTimeOffset?: DOMHighResTimeStamp;
16391649
synchronizationSource?: number;
16401650
}
16411651

1642-
interface RTCEncodedVideoFrameMetadata {
1643-
contributingSources?: number[];
1652+
interface RTCEncodedVideoFrameMetadata extends RTCEncodedFrameMetadata {
16441653
dependencies?: number[];
16451654
frameId?: number;
16461655
height?: number;
1647-
payloadType?: number;
16481656
spatialIndex?: number;
1649-
synchronizationSource?: number;
16501657
temporalIndex?: number;
16511658
timestamp?: number;
16521659
width?: number;
@@ -4118,7 +4125,7 @@ declare var CSSMathClamp: {
41184125
};
41194126

41204127
/**
4121-
* The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>).` It inherits properties and methods from its parent CSSNumericValue.
4128+
* The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.
41224129
*
41234130
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)
41244131
*/
@@ -5451,6 +5458,7 @@ interface CSSStyleDeclaration {
54515458
vectorEffect: string;
54525459
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vertical-align) */
54535460
verticalAlign: string;
5461+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/view-transition-class) */
54545462
viewTransitionClass: string;
54555463
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/view-transition-name) */
54565464
viewTransitionName: string;
@@ -6819,6 +6827,26 @@ declare var CookieStore: {
68196827
new(): CookieStore;
68206828
};
68216829

6830+
/**
6831+
* The **`CookieStoreManager`** interface of the Cookie Store API allows service workers to subscribe to cookie change events.
6832+
* Available only in secure contexts.
6833+
*
6834+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager)
6835+
*/
6836+
interface CookieStoreManager {
6837+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/getSubscriptions) */
6838+
getSubscriptions(): Promise<CookieStoreGetOptions[]>;
6839+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe) */
6840+
subscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
6841+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe) */
6842+
unsubscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
6843+
}
6844+
6845+
declare var CookieStoreManager: {
6846+
prototype: CookieStoreManager;
6847+
new(): CookieStoreManager;
6848+
};
6849+
68226850
/**
68236851
* The **`CountQueuingStrategy`** interface of the Streams API provides a built-in chunk counting queuing strategy that can be used when constructing streams.
68246852
*
@@ -10204,6 +10232,7 @@ interface GlobalEventHandlersEventMap {
1020410232
"pointermove": PointerEvent;
1020510233
"pointerout": PointerEvent;
1020610234
"pointerover": PointerEvent;
10235+
"pointerrawupdate": Event;
1020710236
"pointerup": PointerEvent;
1020810237
"progress": ProgressEvent;
1020910238
"ratechange": Event;
@@ -10537,6 +10566,12 @@ interface GlobalEventHandlers {
1053710566
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1053810567
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerover_event) */
1053910568
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
10569+
/**
10570+
* Available only in secure contexts.
10571+
*
10572+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerrawupdate_event)
10573+
*/
10574+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1054010575
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerup_event) */
1054110576
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1054210577
/**
@@ -23649,6 +23684,8 @@ interface ServiceWorkerRegistrationEventMap {
2364923684
interface ServiceWorkerRegistration extends EventTarget {
2365023685
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active) */
2365123686
readonly active: ServiceWorker | null;
23687+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/cookies) */
23688+
readonly cookies: CookieStoreManager;
2365223689
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing) */
2365323690
readonly installing: ServiceWorker | null;
2365423691
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/navigationPreload) */
@@ -30497,6 +30534,12 @@ declare var onpointermove: ((this: Window, ev: PointerEvent) => any) | null;
3049730534
declare var onpointerout: ((this: Window, ev: PointerEvent) => any) | null;
3049830535
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerover_event) */
3049930536
declare var onpointerover: ((this: Window, ev: PointerEvent) => any) | null;
30537+
/**
30538+
* Available only in secure contexts.
30539+
*
30540+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerrawupdate_event)
30541+
*/
30542+
declare var onpointerrawupdate: ((this: Window, ev: Event) => any) | null;
3050030543
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerup_event) */
3050130544
declare var onpointerup: ((this: Window, ev: PointerEvent) => any) | null;
3050230545
/**
@@ -31002,6 +31045,7 @@ type WakeLockType = "screen";
3100231045
type WebGLPowerPreference = "default" | "high-performance" | "low-power";
3100331046
type WebTransportCongestionControl = "default" | "low-latency" | "throughput";
3100431047
type WebTransportErrorSource = "session" | "stream";
31048+
type WindowAudioPreferenceEnum = "exclude" | "system" | "window";
3100531049
type WorkerType = "classic" | "module";
3100631050
type WriteCommandType = "seek" | "truncate" | "write";
3100731051
type XMLHttpRequestResponseType = "" | "arraybuffer" | "blob" | "document" | "json" | "text";

baselines/dom.iterable.generated.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,13 @@ interface CanvasPathDrawingStyles {
6565
setLineDash(segments: Iterable<number>): void;
6666
}
6767

68+
interface CookieStoreManager {
69+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe) */
70+
subscribe(subscriptions: Iterable<CookieStoreGetOptions>): Promise<void>;
71+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe) */
72+
unsubscribe(subscriptions: Iterable<CookieStoreGetOptions>): Promise<void>;
73+
}
74+
6875
interface CustomStateSet extends Set<string> {
6976
}
7077

baselines/serviceworker.generated.d.ts

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -378,11 +378,11 @@ interface LockOptions {
378378
}
379379

380380
interface MediaCapabilitiesDecodingInfo extends MediaCapabilitiesInfo {
381-
configuration?: MediaDecodingConfiguration;
381+
configuration: MediaDecodingConfiguration;
382382
}
383383

384384
interface MediaCapabilitiesEncodingInfo extends MediaCapabilitiesInfo {
385-
configuration?: MediaEncodingConfiguration;
385+
configuration: MediaEncodingConfiguration;
386386
}
387387

388388
interface MediaCapabilitiesInfo {
@@ -1030,7 +1030,7 @@ declare var CSSMathClamp: {
10301030
};
10311031

10321032
/**
1033-
* The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>).` It inherits properties and methods from its parent CSSNumericValue.
1033+
* The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.
10341034
*
10351035
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)
10361036
*/
@@ -1827,6 +1827,26 @@ declare var CookieStore: {
18271827
new(): CookieStore;
18281828
};
18291829

1830+
/**
1831+
* The **`CookieStoreManager`** interface of the Cookie Store API allows service workers to subscribe to cookie change events.
1832+
* Available only in secure contexts.
1833+
*
1834+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager)
1835+
*/
1836+
interface CookieStoreManager {
1837+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/getSubscriptions) */
1838+
getSubscriptions(): Promise<CookieStoreGetOptions[]>;
1839+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe) */
1840+
subscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
1841+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe) */
1842+
unsubscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
1843+
}
1844+
1845+
declare var CookieStoreManager: {
1846+
prototype: CookieStoreManager;
1847+
new(): CookieStoreManager;
1848+
};
1849+
18301850
/**
18311851
* The **`CountQueuingStrategy`** interface of the Streams API provides a built-in chunk counting queuing strategy that can be used when constructing streams.
18321852
*
@@ -5349,6 +5369,7 @@ declare var ServiceWorkerContainer: {
53495369

53505370
interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
53515371
"activate": ExtendableEvent;
5372+
"cookiechange": ExtendableCookieChangeEvent;
53525373
"fetch": FetchEvent;
53535374
"install": ExtendableEvent;
53545375
"message": ExtendableMessageEvent;
@@ -5372,6 +5393,8 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
53725393
readonly cookieStore: CookieStore;
53735394
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/activate_event) */
53745395
onactivate: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) => any) | null;
5396+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/cookiechange_event) */
5397+
oncookiechange: ((this: ServiceWorkerGlobalScope, ev: ExtendableCookieChangeEvent) => any) | null;
53755398
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/fetch_event) */
53765399
onfetch: ((this: ServiceWorkerGlobalScope, ev: FetchEvent) => any) | null;
53775400
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/install_event) */
@@ -5418,6 +5441,8 @@ interface ServiceWorkerRegistrationEventMap {
54185441
interface ServiceWorkerRegistration extends EventTarget {
54195442
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active) */
54205443
readonly active: ServiceWorker | null;
5444+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/cookies) */
5445+
readonly cookies: CookieStoreManager;
54215446
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing) */
54225447
readonly installing: ServiceWorker | null;
54235448
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/navigationPreload) */
@@ -9016,6 +9041,8 @@ declare var clients: Clients;
90169041
declare var cookieStore: CookieStore;
90179042
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/activate_event) */
90189043
declare var onactivate: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) => any) | null;
9044+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/cookiechange_event) */
9045+
declare var oncookiechange: ((this: ServiceWorkerGlobalScope, ev: ExtendableCookieChangeEvent) => any) | null;
90199046
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/fetch_event) */
90209047
declare var onfetch: ((this: ServiceWorkerGlobalScope, ev: FetchEvent) => any) | null;
90219048
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/install_event) */

baselines/serviceworker.iterable.generated.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@ interface CanvasPathDrawingStyles {
3838
setLineDash(segments: Iterable<number>): void;
3939
}
4040

41+
interface CookieStoreManager {
42+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe) */
43+
subscribe(subscriptions: Iterable<CookieStoreGetOptions>): Promise<void>;
44+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe) */
45+
unsubscribe(subscriptions: Iterable<CookieStoreGetOptions>): Promise<void>;
46+
}
47+
4148
interface DOMStringList {
4249
[Symbol.iterator](): ArrayIterator<string>;
4350
}

baselines/sharedworker.generated.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -322,11 +322,11 @@ interface LockOptions {
322322
}
323323

324324
interface MediaCapabilitiesDecodingInfo extends MediaCapabilitiesInfo {
325-
configuration?: MediaDecodingConfiguration;
325+
configuration: MediaDecodingConfiguration;
326326
}
327327

328328
interface MediaCapabilitiesEncodingInfo extends MediaCapabilitiesInfo {
329-
configuration?: MediaEncodingConfiguration;
329+
configuration: MediaEncodingConfiguration;
330330
}
331331

332332
interface MediaCapabilitiesInfo {
@@ -966,7 +966,7 @@ declare var CSSMathClamp: {
966966
};
967967

968968
/**
969-
* The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>).` It inherits properties and methods from its parent CSSNumericValue.
969+
* The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.
970970
*
971971
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)
972972
*/

0 commit comments

Comments
 (0)