Skip to content

Commit c565dae

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 8957455 commit c565dae

23 files changed

+355
-22
lines changed

baselines/dom.generated.d.ts

Lines changed: 39 additions & 1 deletion
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 {
@@ -4134,7 +4135,7 @@ declare var CSSMathClamp: {
41344135
};
41354136

41364137
/**
4137-
* 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.
4138+
* The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.
41384139
*
41394140
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)
41404141
*/
@@ -5467,6 +5468,7 @@ interface CSSStyleDeclaration {
54675468
vectorEffect: string;
54685469
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vertical-align) */
54695470
verticalAlign: string;
5471+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/view-transition-class) */
54705472
viewTransitionClass: string;
54715473
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/view-transition-name) */
54725474
viewTransitionName: string;
@@ -6835,6 +6837,26 @@ declare var CookieStore: {
68356837
new(): CookieStore;
68366838
};
68376839

6840+
/**
6841+
* The **`CookieStoreManager`** interface of the Cookie Store API allows service workers to subscribe to cookie change events.
6842+
* Available only in secure contexts.
6843+
*
6844+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager)
6845+
*/
6846+
interface CookieStoreManager {
6847+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/getSubscriptions) */
6848+
getSubscriptions(): Promise<CookieStoreGetOptions[]>;
6849+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe) */
6850+
subscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
6851+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe) */
6852+
unsubscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
6853+
}
6854+
6855+
declare var CookieStoreManager: {
6856+
prototype: CookieStoreManager;
6857+
new(): CookieStoreManager;
6858+
};
6859+
68386860
/**
68396861
* The **`CountQueuingStrategy`** interface of the Streams API provides a built-in chunk counting queuing strategy that can be used when constructing streams.
68406862
*
@@ -10220,6 +10242,7 @@ interface GlobalEventHandlersEventMap {
1022010242
"pointermove": PointerEvent;
1022110243
"pointerout": PointerEvent;
1022210244
"pointerover": PointerEvent;
10245+
"pointerrawupdate": Event;
1022310246
"pointerup": PointerEvent;
1022410247
"progress": ProgressEvent;
1022510248
"ratechange": Event;
@@ -10553,6 +10576,12 @@ interface GlobalEventHandlers {
1055310576
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1055410577
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerover_event) */
1055510578
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
10579+
/**
10580+
* Available only in secure contexts.
10581+
*
10582+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerrawupdate_event)
10583+
*/
10584+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1055610585
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerup_event) */
1055710586
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1055810587
/**
@@ -23665,6 +23694,8 @@ interface ServiceWorkerRegistrationEventMap {
2366523694
interface ServiceWorkerRegistration extends EventTarget {
2366623695
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active) */
2366723696
readonly active: ServiceWorker | null;
23697+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/cookies) */
23698+
readonly cookies: CookieStoreManager;
2366823699
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing) */
2366923700
readonly installing: ServiceWorker | null;
2367023701
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/navigationPreload) */
@@ -30513,6 +30544,12 @@ declare var onpointermove: ((this: Window, ev: PointerEvent) => any) | null;
3051330544
declare var onpointerout: ((this: Window, ev: PointerEvent) => any) | null;
3051430545
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerover_event) */
3051530546
declare var onpointerover: ((this: Window, ev: PointerEvent) => any) | null;
30547+
/**
30548+
* Available only in secure contexts.
30549+
*
30550+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerrawupdate_event)
30551+
*/
30552+
declare var onpointerrawupdate: ((this: Window, ev: Event) => any) | null;
3051630553
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerup_event) */
3051730554
declare var onpointerup: ((this: Window, ev: PointerEvent) => any) | null;
3051830555
/**
@@ -31018,6 +31055,7 @@ type WakeLockType = "screen";
3101831055
type WebGLPowerPreference = "default" | "high-performance" | "low-power";
3101931056
type WebTransportCongestionControl = "default" | "low-latency" | "throughput";
3102031057
type WebTransportErrorSource = "session" | "stream";
31058+
type WindowAudioPreferenceEnum = "exclude" | "system" | "window";
3102131059
type WorkerType = "classic" | "module";
3102231060
type WriteCommandType = "seek" | "truncate" | "write";
3102331061
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: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1043,7 +1043,7 @@ declare var CSSMathClamp: {
10431043
};
10441044

10451045
/**
1046-
* 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.
1046+
* The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.
10471047
*
10481048
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)
10491049
*/
@@ -1840,6 +1840,26 @@ declare var CookieStore: {
18401840
new(): CookieStore;
18411841
};
18421842

1843+
/**
1844+
* The **`CookieStoreManager`** interface of the Cookie Store API allows service workers to subscribe to cookie change events.
1845+
* Available only in secure contexts.
1846+
*
1847+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager)
1848+
*/
1849+
interface CookieStoreManager {
1850+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/getSubscriptions) */
1851+
getSubscriptions(): Promise<CookieStoreGetOptions[]>;
1852+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe) */
1853+
subscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
1854+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe) */
1855+
unsubscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
1856+
}
1857+
1858+
declare var CookieStoreManager: {
1859+
prototype: CookieStoreManager;
1860+
new(): CookieStoreManager;
1861+
};
1862+
18431863
/**
18441864
* The **`CountQueuingStrategy`** interface of the Streams API provides a built-in chunk counting queuing strategy that can be used when constructing streams.
18451865
*
@@ -5362,6 +5382,7 @@ declare var ServiceWorkerContainer: {
53625382

53635383
interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
53645384
"activate": ExtendableEvent;
5385+
"cookiechange": ExtendableCookieChangeEvent;
53655386
"fetch": FetchEvent;
53665387
"install": ExtendableEvent;
53675388
"message": ExtendableMessageEvent;
@@ -5385,6 +5406,8 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
53855406
readonly cookieStore: CookieStore;
53865407
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/activate_event) */
53875408
onactivate: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) => any) | null;
5409+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/cookiechange_event) */
5410+
oncookiechange: ((this: ServiceWorkerGlobalScope, ev: ExtendableCookieChangeEvent) => any) | null;
53885411
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/fetch_event) */
53895412
onfetch: ((this: ServiceWorkerGlobalScope, ev: FetchEvent) => any) | null;
53905413
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/install_event) */
@@ -5431,6 +5454,8 @@ interface ServiceWorkerRegistrationEventMap {
54315454
interface ServiceWorkerRegistration extends EventTarget {
54325455
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active) */
54335456
readonly active: ServiceWorker | null;
5457+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/cookies) */
5458+
readonly cookies: CookieStoreManager;
54345459
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing) */
54355460
readonly installing: ServiceWorker | null;
54365461
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/navigationPreload) */
@@ -9029,6 +9054,8 @@ declare var clients: Clients;
90299054
declare var cookieStore: CookieStore;
90309055
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/activate_event) */
90319056
declare var onactivate: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) => any) | null;
9057+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/cookiechange_event) */
9058+
declare var oncookiechange: ((this: ServiceWorkerGlobalScope, ev: ExtendableCookieChangeEvent) => any) | null;
90329059
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/fetch_event) */
90339060
declare var onfetch: ((this: ServiceWorkerGlobalScope, ev: FetchEvent) => any) | null;
90349061
/** [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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ declare var CSSMathClamp: {
979979
};
980980

981981
/**
982-
* 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.
982+
* The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.
983983
*
984984
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)
985985
*/

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

Lines changed: 39 additions & 1 deletion
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 {
@@ -4131,7 +4132,7 @@ declare var CSSMathClamp: {
41314132
};
41324133

41334134
/**
4134-
* 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.
4135+
* The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.
41354136
*
41364137
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)
41374138
*/
@@ -5461,6 +5462,7 @@ interface CSSStyleDeclaration {
54615462
vectorEffect: string;
54625463
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vertical-align) */
54635464
verticalAlign: string;
5465+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/view-transition-class) */
54645466
viewTransitionClass: string;
54655467
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/view-transition-name) */
54665468
viewTransitionName: string;
@@ -6828,6 +6830,26 @@ declare var CookieStore: {
68286830
new(): CookieStore;
68296831
};
68306832

6833+
/**
6834+
* The **`CookieStoreManager`** interface of the Cookie Store API allows service workers to subscribe to cookie change events.
6835+
* Available only in secure contexts.
6836+
*
6837+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager)
6838+
*/
6839+
interface CookieStoreManager {
6840+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/getSubscriptions) */
6841+
getSubscriptions(): Promise<CookieStoreGetOptions[]>;
6842+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe) */
6843+
subscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
6844+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe) */
6845+
unsubscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;
6846+
}
6847+
6848+
declare var CookieStoreManager: {
6849+
prototype: CookieStoreManager;
6850+
new(): CookieStoreManager;
6851+
};
6852+
68316853
/**
68326854
* The **`CountQueuingStrategy`** interface of the Streams API provides a built-in chunk counting queuing strategy that can be used when constructing streams.
68336855
*
@@ -10210,6 +10232,7 @@ interface GlobalEventHandlersEventMap {
1021010232
"pointermove": PointerEvent;
1021110233
"pointerout": PointerEvent;
1021210234
"pointerover": PointerEvent;
10235+
"pointerrawupdate": Event;
1021310236
"pointerup": PointerEvent;
1021410237
"progress": ProgressEvent;
1021510238
"ratechange": Event;
@@ -10543,6 +10566,12 @@ interface GlobalEventHandlers {
1054310566
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1054410567
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerover_event) */
1054510568
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;
1054610575
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerup_event) */
1054710576
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1054810577
/**
@@ -23644,6 +23673,8 @@ interface ServiceWorkerRegistrationEventMap {
2364423673
interface ServiceWorkerRegistration extends EventTarget {
2364523674
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active) */
2364623675
readonly active: ServiceWorker | null;
23676+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/cookies) */
23677+
readonly cookies: CookieStoreManager;
2364723678
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing) */
2364823679
readonly installing: ServiceWorker | null;
2364923680
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/navigationPreload) */
@@ -30491,6 +30522,12 @@ declare var onpointermove: ((this: Window, ev: PointerEvent) => any) | null;
3049130522
declare var onpointerout: ((this: Window, ev: PointerEvent) => any) | null;
3049230523
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerover_event) */
3049330524
declare var onpointerover: ((this: Window, ev: PointerEvent) => any) | null;
30525+
/**
30526+
* Available only in secure contexts.
30527+
*
30528+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerrawupdate_event)
30529+
*/
30530+
declare var onpointerrawupdate: ((this: Window, ev: Event) => any) | null;
3049430531
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerup_event) */
3049530532
declare var onpointerup: ((this: Window, ev: PointerEvent) => any) | null;
3049630533
/**
@@ -30996,6 +31033,7 @@ type WakeLockType = "screen";
3099631033
type WebGLPowerPreference = "default" | "high-performance" | "low-power";
3099731034
type WebTransportCongestionControl = "default" | "low-latency" | "throughput";
3099831035
type WebTransportErrorSource = "session" | "stream";
31036+
type WindowAudioPreferenceEnum = "exclude" | "system" | "window";
3099931037
type WorkerType = "classic" | "module";
3100031038
type WriteCommandType = "seek" | "truncate" | "write";
3100131039
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)