Skip to content

Commit 9ca96cf

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 9e38fb9 commit 9ca96cf

23 files changed

+409
-82
lines changed

baselines/dom.generated.d.ts

Lines changed: 39 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
*/
@@ -6819,6 +6826,26 @@ declare var CookieStore: {
68196826
new(): CookieStore;
68206827
};
68216828

6829+
/**
6830+
* The **`CookieStoreManager`** interface of the Cookie Store API allows service workers to subscribe to cookie change events.
6831+
* Available only in secure contexts.
6832+
*
6833+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager)
6834+
*/
6835+
interface CookieStoreManager {
6836+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/getSubscriptions) */
6837+
getSubscriptions(): Promise<CookieStoreGetOptions[]>;
6838+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe) */
6839+
subscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
6840+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe) */
6841+
unsubscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
6842+
}
6843+
6844+
declare var CookieStoreManager: {
6845+
prototype: CookieStoreManager;
6846+
new(): CookieStoreManager;
6847+
};
6848+
68226849
/**
68236850
* The **`CountQueuingStrategy`** interface of the Streams API provides a built-in chunk counting queuing strategy that can be used when constructing streams.
68246851
*
@@ -23649,6 +23676,8 @@ interface ServiceWorkerRegistrationEventMap {
2364923676
interface ServiceWorkerRegistration extends EventTarget {
2365023677
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active) */
2365123678
readonly active: ServiceWorker | null;
23679+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/cookies) */
23680+
readonly cookies: CookieStoreManager;
2365223681
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing) */
2365323682
readonly installing: ServiceWorker | null;
2365423683
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/navigationPreload) */
@@ -31002,6 +31031,7 @@ type WakeLockType = "screen";
3100231031
type WebGLPowerPreference = "default" | "high-performance" | "low-power";
3100331032
type WebTransportCongestionControl = "default" | "low-latency" | "throughput";
3100431033
type WebTransportErrorSource = "session" | "stream";
31034+
type WindowAudioPreferenceEnum = "exclude" | "system" | "window";
3100531035
type WorkerType = "classic" | "module";
3100631036
type WriteCommandType = "seek" | "truncate" | "write";
3100731037
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
*/

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

Lines changed: 39 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;
@@ -4115,7 +4122,7 @@ declare var CSSMathClamp: {
41154122
};
41164123

41174124
/**
4118-
* 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.
4125+
* The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.
41194126
*
41204127
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)
41214128
*/
@@ -6812,6 +6819,26 @@ declare var CookieStore: {
68126819
new(): CookieStore;
68136820
};
68146821

6822+
/**
6823+
* The **`CookieStoreManager`** interface of the Cookie Store API allows service workers to subscribe to cookie change events.
6824+
* Available only in secure contexts.
6825+
*
6826+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager)
6827+
*/
6828+
interface CookieStoreManager {
6829+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/getSubscriptions) */
6830+
getSubscriptions(): Promise<CookieStoreGetOptions[]>;
6831+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe) */
6832+
subscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
6833+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe) */
6834+
unsubscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
6835+
}
6836+
6837+
declare var CookieStoreManager: {
6838+
prototype: CookieStoreManager;
6839+
new(): CookieStoreManager;
6840+
};
6841+
68156842
/**
68166843
* The **`CountQueuingStrategy`** interface of the Streams API provides a built-in chunk counting queuing strategy that can be used when constructing streams.
68176844
*
@@ -23628,6 +23655,8 @@ interface ServiceWorkerRegistrationEventMap {
2362823655
interface ServiceWorkerRegistration extends EventTarget {
2362923656
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active) */
2363023657
readonly active: ServiceWorker | null;
23658+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/cookies) */
23659+
readonly cookies: CookieStoreManager;
2363123660
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing) */
2363223661
readonly installing: ServiceWorker | null;
2363323662
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/navigationPreload) */
@@ -30980,6 +31009,7 @@ type WakeLockType = "screen";
3098031009
type WebGLPowerPreference = "default" | "high-performance" | "low-power";
3098131010
type WebTransportCongestionControl = "default" | "low-latency" | "throughput";
3098231011
type WebTransportErrorSource = "session" | "stream";
31012+
type WindowAudioPreferenceEnum = "exclude" | "system" | "window";
3098331013
type WorkerType = "classic" | "module";
3098431014
type WriteCommandType = "seek" | "truncate" | "write";
3098531015
type XMLHttpRequestResponseType = "" | "arraybuffer" | "blob" | "document" | "json" | "text";

baselines/ts5.5/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

0 commit comments

Comments
 (0)