Skip to content

Commit e954c02

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

14 files changed

+58
-19
lines changed

baselines/dom.generated.d.ts

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1811,6 +1811,8 @@ interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats {
18111811
mid?: string;
18121812
nackCount?: number;
18131813
pliCount?: number;
1814+
psnrMeasurements?: number;
1815+
psnrSum?: Record<string, number>;
18141816
qpSum?: number;
18151817
qualityLimitationDurations?: Record<string, number>;
18161818
qualityLimitationReason?: RTCQualityLimitationReason;
@@ -2563,6 +2565,7 @@ interface WebTransportHash {
25632565
interface WebTransportOptions {
25642566
allowPooling?: boolean;
25652567
congestionControl?: WebTransportCongestionControl;
2568+
datagramsReadableMode?: DatagramsReadableMode;
25662569
requireUnreliable?: boolean;
25672570
serverCertificateHashes?: WebTransportHash[];
25682571
}
@@ -11345,7 +11348,7 @@ interface ElementCSSInlineStyle {
1134511348
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) */
1134611349
readonly attributeStyleMap: StylePropertyMap;
1134711350
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */
11348-
get style(): CSSStyleDeclaration;
11351+
get style(): CSSStyleProperties;
1134911352
set style(cssText: string);
1135011353
}
1135111354

@@ -20677,8 +20680,11 @@ interface MediaSource extends EventTarget {
2067720680
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration)
2067820681
*/
2067920682
duration: number;
20683+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceclose_event) */
2068020684
onsourceclose: ((this: MediaSource, ev: Event) => any) | null;
20685+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceended_event) */
2068120686
onsourceended: ((this: MediaSource, ev: Event) => any) | null;
20687+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
2068220688
onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
2068320689
/**
2068420690
* The **`readyState`** read-only property of the current `MediaSource`.
@@ -37094,7 +37100,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
3709437100
*
3709537101
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3709637102
*/
37097-
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
37103+
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
3709837104
/**
3709937105
* The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.
3710037106
*
@@ -39130,7 +39136,7 @@ declare function focus(): void;
3913039136
*
3913139137
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3913239138
*/
39133-
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
39139+
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
3913439140
/**
3913539141
* The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.
3913639142
*
@@ -39687,6 +39693,7 @@ type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
3968739693
type CookieSameSite = "lax" | "none" | "strict";
3968839694
type CredentialMediationRequirement = "conditional" | "optional" | "required" | "silent";
3968939695
type DOMParserSupportedType = "application/xhtml+xml" | "application/xml" | "image/svg+xml" | "text/html" | "text/xml";
39696+
type DatagramsReadableMode = "bytes";
3969039697
type DirectionSetting = "" | "lr" | "rl";
3969139698
type DisplayCaptureSurfaceType = "browser" | "monitor" | "window";
3969239699
type DistanceModelType = "exponential" | "inverse" | "linear";

baselines/serviceworker.generated.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -828,6 +828,7 @@ interface WebTransportHash {
828828
interface WebTransportOptions {
829829
allowPooling?: boolean;
830830
congestionControl?: WebTransportCongestionControl;
831+
datagramsReadableMode?: DatagramsReadableMode;
831832
requireUnreliable?: boolean;
832833
serverCertificateHashes?: WebTransportHash[];
833834
}
@@ -11470,6 +11471,7 @@ type ColorGamut = "p3" | "rec2020" | "srgb";
1147011471
type ColorSpaceConversion = "default" | "none";
1147111472
type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
1147211473
type CookieSameSite = "lax" | "none" | "strict";
11474+
type DatagramsReadableMode = "bytes";
1147311475
type DocumentVisibilityState = "hidden" | "visible";
1147411476
type EndingType = "native" | "transparent";
1147511477
type FileSystemHandleKind = "directory" | "file";

baselines/sharedworker.generated.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -758,6 +758,7 @@ interface WebTransportHash {
758758
interface WebTransportOptions {
759759
allowPooling?: boolean;
760760
congestionControl?: WebTransportCongestionControl;
761+
datagramsReadableMode?: DatagramsReadableMode;
761762
requireUnreliable?: boolean;
762763
serverCertificateHashes?: WebTransportHash[];
763764
}
@@ -11157,6 +11158,7 @@ type ClientTypes = "all" | "sharedworker" | "window" | "worker";
1115711158
type ColorGamut = "p3" | "rec2020" | "srgb";
1115811159
type ColorSpaceConversion = "default" | "none";
1115911160
type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
11161+
type DatagramsReadableMode = "bytes";
1116011162
type EndingType = "native" | "transparent";
1116111163
type FileSystemHandleKind = "directory" | "file";
1116211164
type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";

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

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1811,6 +1811,8 @@ interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats {
18111811
mid?: string;
18121812
nackCount?: number;
18131813
pliCount?: number;
1814+
psnrMeasurements?: number;
1815+
psnrSum?: Record<string, number>;
18141816
qpSum?: number;
18151817
qualityLimitationDurations?: Record<string, number>;
18161818
qualityLimitationReason?: RTCQualityLimitationReason;
@@ -2563,6 +2565,7 @@ interface WebTransportHash {
25632565
interface WebTransportOptions {
25642566
allowPooling?: boolean;
25652567
congestionControl?: WebTransportCongestionControl;
2568+
datagramsReadableMode?: DatagramsReadableMode;
25662569
requireUnreliable?: boolean;
25672570
serverCertificateHashes?: WebTransportHash[];
25682571
}
@@ -11335,7 +11338,7 @@ interface ElementCSSInlineStyle {
1133511338
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) */
1133611339
readonly attributeStyleMap: StylePropertyMap;
1133711340
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */
11338-
readonly style: CSSStyleDeclaration;
11341+
readonly style: CSSStyleProperties;
1133911342
}
1134011343

1134111344
interface ElementContentEditable {
@@ -20656,8 +20659,11 @@ interface MediaSource extends EventTarget {
2065620659
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration)
2065720660
*/
2065820661
duration: number;
20662+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceclose_event) */
2065920663
onsourceclose: ((this: MediaSource, ev: Event) => any) | null;
20664+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceended_event) */
2066020665
onsourceended: ((this: MediaSource, ev: Event) => any) | null;
20666+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
2066120667
onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
2066220668
/**
2066320669
* The **`readyState`** read-only property of the current `MediaSource`.
@@ -37071,7 +37077,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
3707137077
*
3707237078
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3707337079
*/
37074-
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
37080+
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
3707537081
/**
3707637082
* The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.
3707737083
*
@@ -39107,7 +39113,7 @@ declare function focus(): void;
3910739113
*
3910839114
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3910939115
*/
39110-
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
39116+
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
3911139117
/**
3911239118
* The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.
3911339119
*
@@ -39664,6 +39670,7 @@ type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
3966439670
type CookieSameSite = "lax" | "none" | "strict";
3966539671
type CredentialMediationRequirement = "conditional" | "optional" | "required" | "silent";
3966639672
type DOMParserSupportedType = "application/xhtml+xml" | "application/xml" | "image/svg+xml" | "text/html" | "text/xml";
39673+
type DatagramsReadableMode = "bytes";
3966739674
type DirectionSetting = "" | "lr" | "rl";
3966839675
type DisplayCaptureSurfaceType = "browser" | "monitor" | "window";
3966939676
type DistanceModelType = "exponential" | "inverse" | "linear";

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -828,6 +828,7 @@ interface WebTransportHash {
828828
interface WebTransportOptions {
829829
allowPooling?: boolean;
830830
congestionControl?: WebTransportCongestionControl;
831+
datagramsReadableMode?: DatagramsReadableMode;
831832
requireUnreliable?: boolean;
832833
serverCertificateHashes?: WebTransportHash[];
833834
}
@@ -11470,6 +11471,7 @@ type ColorGamut = "p3" | "rec2020" | "srgb";
1147011471
type ColorSpaceConversion = "default" | "none";
1147111472
type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
1147211473
type CookieSameSite = "lax" | "none" | "strict";
11474+
type DatagramsReadableMode = "bytes";
1147311475
type DocumentVisibilityState = "hidden" | "visible";
1147411476
type EndingType = "native" | "transparent";
1147511477
type FileSystemHandleKind = "directory" | "file";

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -758,6 +758,7 @@ interface WebTransportHash {
758758
interface WebTransportOptions {
759759
allowPooling?: boolean;
760760
congestionControl?: WebTransportCongestionControl;
761+
datagramsReadableMode?: DatagramsReadableMode;
761762
requireUnreliable?: boolean;
762763
serverCertificateHashes?: WebTransportHash[];
763764
}
@@ -11157,6 +11158,7 @@ type ClientTypes = "all" | "sharedworker" | "window" | "worker";
1115711158
type ColorGamut = "p3" | "rec2020" | "srgb";
1115811159
type ColorSpaceConversion = "default" | "none";
1115911160
type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
11161+
type DatagramsReadableMode = "bytes";
1116011162
type EndingType = "native" | "transparent";
1116111163
type FileSystemHandleKind = "directory" | "file";
1116211164
type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1066,6 +1066,7 @@ interface WebTransportHash {
10661066
interface WebTransportOptions {
10671067
allowPooling?: boolean;
10681068
congestionControl?: WebTransportCongestionControl;
1069+
datagramsReadableMode?: DatagramsReadableMode;
10691070
requireUnreliable?: boolean;
10701071
serverCertificateHashes?: WebTransportHash[];
10711072
}
@@ -13133,6 +13134,7 @@ type ColorGamut = "p3" | "rec2020" | "srgb";
1313313134
type ColorSpaceConversion = "default" | "none";
1313413135
type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
1313513136
type CookieSameSite = "lax" | "none" | "strict";
13137+
type DatagramsReadableMode = "bytes";
1313613138
type DocumentVisibilityState = "hidden" | "visible";
1313713139
type EncodedAudioChunkType = "delta" | "key";
1313813140
type EncodedVideoChunkType = "delta" | "key";

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

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1811,6 +1811,8 @@ interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats {
18111811
mid?: string;
18121812
nackCount?: number;
18131813
pliCount?: number;
1814+
psnrMeasurements?: number;
1815+
psnrSum?: Record<string, number>;
18141816
qpSum?: number;
18151817
qualityLimitationDurations?: Record<string, number>;
18161818
qualityLimitationReason?: RTCQualityLimitationReason;
@@ -2563,6 +2565,7 @@ interface WebTransportHash {
25632565
interface WebTransportOptions {
25642566
allowPooling?: boolean;
25652567
congestionControl?: WebTransportCongestionControl;
2568+
datagramsReadableMode?: DatagramsReadableMode;
25662569
requireUnreliable?: boolean;
25672570
serverCertificateHashes?: WebTransportHash[];
25682571
}
@@ -11345,7 +11348,7 @@ interface ElementCSSInlineStyle {
1134511348
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) */
1134611349
readonly attributeStyleMap: StylePropertyMap;
1134711350
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */
11348-
get style(): CSSStyleDeclaration;
11351+
get style(): CSSStyleProperties;
1134911352
set style(cssText: string);
1135011353
}
1135111354

@@ -20677,8 +20680,11 @@ interface MediaSource extends EventTarget {
2067720680
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration)
2067820681
*/
2067920682
duration: number;
20683+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceclose_event) */
2068020684
onsourceclose: ((this: MediaSource, ev: Event) => any) | null;
20685+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceended_event) */
2068120686
onsourceended: ((this: MediaSource, ev: Event) => any) | null;
20687+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
2068220688
onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
2068320689
/**
2068420690
* The **`readyState`** read-only property of the current `MediaSource`.
@@ -37094,7 +37100,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
3709437100
*
3709537101
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3709637102
*/
37097-
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
37103+
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
3709837104
/**
3709937105
* The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.
3710037106
*
@@ -39130,7 +39136,7 @@ declare function focus(): void;
3913039136
*
3913139137
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3913239138
*/
39133-
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
39139+
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
3913439140
/**
3913539141
* The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.
3913639142
*
@@ -39687,6 +39693,7 @@ type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
3968739693
type CookieSameSite = "lax" | "none" | "strict";
3968839694
type CredentialMediationRequirement = "conditional" | "optional" | "required" | "silent";
3968939695
type DOMParserSupportedType = "application/xhtml+xml" | "application/xml" | "image/svg+xml" | "text/html" | "text/xml";
39696+
type DatagramsReadableMode = "bytes";
3969039697
type DirectionSetting = "" | "lr" | "rl";
3969139698
type DisplayCaptureSurfaceType = "browser" | "monitor" | "window";
3969239699
type DistanceModelType = "exponential" | "inverse" | "linear";

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -828,6 +828,7 @@ interface WebTransportHash {
828828
interface WebTransportOptions {
829829
allowPooling?: boolean;
830830
congestionControl?: WebTransportCongestionControl;
831+
datagramsReadableMode?: DatagramsReadableMode;
831832
requireUnreliable?: boolean;
832833
serverCertificateHashes?: WebTransportHash[];
833834
}
@@ -11470,6 +11471,7 @@ type ColorGamut = "p3" | "rec2020" | "srgb";
1147011471
type ColorSpaceConversion = "default" | "none";
1147111472
type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
1147211473
type CookieSameSite = "lax" | "none" | "strict";
11474+
type DatagramsReadableMode = "bytes";
1147311475
type DocumentVisibilityState = "hidden" | "visible";
1147411476
type EndingType = "native" | "transparent";
1147511477
type FileSystemHandleKind = "directory" | "file";

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -758,6 +758,7 @@ interface WebTransportHash {
758758
interface WebTransportOptions {
759759
allowPooling?: boolean;
760760
congestionControl?: WebTransportCongestionControl;
761+
datagramsReadableMode?: DatagramsReadableMode;
761762
requireUnreliable?: boolean;
762763
serverCertificateHashes?: WebTransportHash[];
763764
}
@@ -11157,6 +11158,7 @@ type ClientTypes = "all" | "sharedworker" | "window" | "worker";
1115711158
type ColorGamut = "p3" | "rec2020" | "srgb";
1115811159
type ColorSpaceConversion = "default" | "none";
1115911160
type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
11161+
type DatagramsReadableMode = "bytes";
1116011162
type EndingType = "native" | "transparent";
1116111163
type FileSystemHandleKind = "directory" | "file";
1116211164
type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";

0 commit comments

Comments
 (0)