Skip to content

Commit 23c697b

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 15447bb commit 23c697b

File tree

6 files changed

+36
-32
lines changed

6 files changed

+36
-32
lines changed

baselines/dom.generated.d.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28047,7 +28047,7 @@ interface RTCRtpReceiver {
2804728047
*
2804828048
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform)
2804928049
*/
28050-
transform: RTCRtpTransform | null;
28050+
transform: RTCRtpReceiverTransform | null;
2805128051
/**
2805228052
* The read-only **`transport`** property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
2805328053
*
@@ -28127,7 +28127,7 @@ interface RTCRtpSender {
2812728127
*
2812828128
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform)
2812928129
*/
28130-
transform: RTCRtpTransform | null;
28130+
transform: RTCRtpSenderTransform | null;
2813128131
/**
2813228132
* The read-only **`transport`** property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
2813328133
*
@@ -29561,13 +29561,13 @@ declare var SVGAnimatedRect: {
2956129561
*/
2956229562
interface SVGAnimatedString {
2956329563
/**
29564-
* The **`animVal`** read-only property of the SVGAnimatedString interface contains the same value as the SVGAnimatedString.baseVal property. If the given attribute or property is being animated, it contains the current animated value of the attribute or property. If the given attribute or property is not currently being animated, then it contains the same value as baseVal.
29564+
* The **`animVal`** read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute.
2956529565
*
2956629566
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal)
2956729567
*/
2956829568
readonly animVal: string;
2956929569
/**
29570-
* BaseVal gets or sets the base value of the given attribute before any animations are applied. The base value of the given attribute before applying any animations. Setter throws DOMException.
29570+
* The **`baseVal`** property of the SVGAnimatedString interface gets or sets the base value of the given attribute.
2957129571
*
2957229572
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal)
2957329573
*/
@@ -42471,7 +42471,8 @@ type OptionalPostfixToken<T extends string> = ` ${T}` | "";
4247142471
type OptionalPrefixToken<T extends string> = `${T} ` | "";
4247242472
type PerformanceEntryList = PerformanceEntry[];
4247342473
type PublicKeyCredentialClientCapabilities = Record<string, boolean>;
42474-
type RTCRtpTransform = RTCRtpScriptTransform;
42474+
type RTCRtpReceiverTransform = RTCRtpScriptTransform;
42475+
type RTCRtpSenderTransform = RTCRtpScriptTransform;
4247542476
type ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;
4247642477
type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
4247742478
type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28023,7 +28023,7 @@ interface RTCRtpReceiver {
2802328023
*
2802428024
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform)
2802528025
*/
28026-
transform: RTCRtpTransform | null;
28026+
transform: RTCRtpReceiverTransform | null;
2802728027
/**
2802828028
* The read-only **`transport`** property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
2802928029
*
@@ -28103,7 +28103,7 @@ interface RTCRtpSender {
2810328103
*
2810428104
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform)
2810528105
*/
28106-
transform: RTCRtpTransform | null;
28106+
transform: RTCRtpSenderTransform | null;
2810728107
/**
2810828108
* The read-only **`transport`** property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
2810928109
*
@@ -29536,13 +29536,13 @@ declare var SVGAnimatedRect: {
2953629536
*/
2953729537
interface SVGAnimatedString {
2953829538
/**
29539-
* The **`animVal`** read-only property of the SVGAnimatedString interface contains the same value as the SVGAnimatedString.baseVal property. If the given attribute or property is being animated, it contains the current animated value of the attribute or property. If the given attribute or property is not currently being animated, then it contains the same value as baseVal.
29539+
* The **`animVal`** read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute.
2954029540
*
2954129541
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal)
2954229542
*/
2954329543
readonly animVal: string;
2954429544
/**
29545-
* BaseVal gets or sets the base value of the given attribute before any animations are applied. The base value of the given attribute before applying any animations. Setter throws DOMException.
29545+
* The **`baseVal`** property of the SVGAnimatedString interface gets or sets the base value of the given attribute.
2954629546
*
2954729547
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal)
2954829548
*/
@@ -42445,7 +42445,8 @@ type OptionalPostfixToken<T extends string> = ` ${T}` | "";
4244542445
type OptionalPrefixToken<T extends string> = `${T} ` | "";
4244642446
type PerformanceEntryList = PerformanceEntry[];
4244742447
type PublicKeyCredentialClientCapabilities = Record<string, boolean>;
42448-
type RTCRtpTransform = RTCRtpScriptTransform;
42448+
type RTCRtpReceiverTransform = RTCRtpScriptTransform;
42449+
type RTCRtpSenderTransform = RTCRtpScriptTransform;
4244942450
type ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;
4245042451
type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
4245142452
type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28044,7 +28044,7 @@ interface RTCRtpReceiver {
2804428044
*
2804528045
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform)
2804628046
*/
28047-
transform: RTCRtpTransform | null;
28047+
transform: RTCRtpReceiverTransform | null;
2804828048
/**
2804928049
* The read-only **`transport`** property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
2805028050
*
@@ -28124,7 +28124,7 @@ interface RTCRtpSender {
2812428124
*
2812528125
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform)
2812628126
*/
28127-
transform: RTCRtpTransform | null;
28127+
transform: RTCRtpSenderTransform | null;
2812828128
/**
2812928129
* The read-only **`transport`** property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
2813028130
*
@@ -29558,13 +29558,13 @@ declare var SVGAnimatedRect: {
2955829558
*/
2955929559
interface SVGAnimatedString {
2956029560
/**
29561-
* The **`animVal`** read-only property of the SVGAnimatedString interface contains the same value as the SVGAnimatedString.baseVal property. If the given attribute or property is being animated, it contains the current animated value of the attribute or property. If the given attribute or property is not currently being animated, then it contains the same value as baseVal.
29561+
* The **`animVal`** read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute.
2956229562
*
2956329563
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal)
2956429564
*/
2956529565
readonly animVal: string;
2956629566
/**
29567-
* BaseVal gets or sets the base value of the given attribute before any animations are applied. The base value of the given attribute before applying any animations. Setter throws DOMException.
29567+
* The **`baseVal`** property of the SVGAnimatedString interface gets or sets the base value of the given attribute.
2956829568
*
2956929569
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal)
2957029570
*/
@@ -42468,7 +42468,8 @@ type OptionalPostfixToken<T extends string> = ` ${T}` | "";
4246842468
type OptionalPrefixToken<T extends string> = `${T} ` | "";
4246942469
type PerformanceEntryList = PerformanceEntry[];
4247042470
type PublicKeyCredentialClientCapabilities = Record<string, boolean>;
42471-
type RTCRtpTransform = RTCRtpScriptTransform;
42471+
type RTCRtpReceiverTransform = RTCRtpScriptTransform;
42472+
type RTCRtpSenderTransform = RTCRtpScriptTransform;
4247242473
type ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;
4247342474
type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
4247442475
type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28044,7 +28044,7 @@ interface RTCRtpReceiver {
2804428044
*
2804528045
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform)
2804628046
*/
28047-
transform: RTCRtpTransform | null;
28047+
transform: RTCRtpReceiverTransform | null;
2804828048
/**
2804928049
* The read-only **`transport`** property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
2805028050
*
@@ -28124,7 +28124,7 @@ interface RTCRtpSender {
2812428124
*
2812528125
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform)
2812628126
*/
28127-
transform: RTCRtpTransform | null;
28127+
transform: RTCRtpSenderTransform | null;
2812828128
/**
2812928129
* The read-only **`transport`** property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
2813028130
*
@@ -29558,13 +29558,13 @@ declare var SVGAnimatedRect: {
2955829558
*/
2955929559
interface SVGAnimatedString {
2956029560
/**
29561-
* The **`animVal`** read-only property of the SVGAnimatedString interface contains the same value as the SVGAnimatedString.baseVal property. If the given attribute or property is being animated, it contains the current animated value of the attribute or property. If the given attribute or property is not currently being animated, then it contains the same value as baseVal.
29561+
* The **`animVal`** read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute.
2956229562
*
2956329563
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal)
2956429564
*/
2956529565
readonly animVal: string;
2956629566
/**
29567-
* BaseVal gets or sets the base value of the given attribute before any animations are applied. The base value of the given attribute before applying any animations. Setter throws DOMException.
29567+
* The **`baseVal`** property of the SVGAnimatedString interface gets or sets the base value of the given attribute.
2956829568
*
2956929569
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal)
2957029570
*/
@@ -42468,7 +42468,8 @@ type OptionalPostfixToken<T extends string> = ` ${T}` | "";
4246842468
type OptionalPrefixToken<T extends string> = `${T} ` | "";
4246942469
type PerformanceEntryList = PerformanceEntry[];
4247042470
type PublicKeyCredentialClientCapabilities = Record<string, boolean>;
42471-
type RTCRtpTransform = RTCRtpScriptTransform;
42471+
type RTCRtpReceiverTransform = RTCRtpScriptTransform;
42472+
type RTCRtpSenderTransform = RTCRtpScriptTransform;
4247242473
type ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;
4247342474
type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
4247442475
type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;

inputfiles/mdn.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6332,7 +6332,7 @@
63326332
{
63336333
"mdn_url": "/en-US/docs/Web/API/Document/requestStorageAccess",
63346334
"pageType": "web-api-instance-method",
6335-
"summary": "The requestStorageAccess() method of the Document interface allows content loaded in a third-party context (i.e., embedded in an <iframe>) to request access to third-party cookies and unpartitioned state. This is relevant to user agents that, by default, block access to third-party, unpartitioned cookies to improve privacy (e.g., to prevent tracking), and is part of the Storage Access API."
6335+
"summary": "The requestStorageAccess() method of the Document interface allows content loaded in a third-party context (i.e., embedded in an <iframe>) to request access to third-party cookies and unpartitioned state.\nThis is relevant to user agents that, by default, block access to third-party, unpartitioned cookies to improve privacy (e.g., to prevent tracking), and is part of the Storage Access API."
63366336
},
63376337
{
63386338
"mdn_url": "/en-US/docs/Web/API/Document/requestStorageAccessFor",
@@ -28897,12 +28897,12 @@
2889728897
{
2889828898
"mdn_url": "/en-US/docs/Web/API/SVGAnimatedString/animVal",
2889928899
"pageType": "web-api-instance-property",
28900-
"summary": "The animVal read-only property of the SVGAnimatedString interface contains the same value as the SVGAnimatedString.baseVal property. If the given attribute or property is being animated, it contains the current animated value of the attribute or property. If the given attribute or property is not currently being animated, then it contains the same value as baseVal."
28900+
"summary": "The animVal read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute."
2890128901
},
2890228902
{
2890328903
"mdn_url": "/en-US/docs/Web/API/SVGAnimatedString/baseVal",
2890428904
"pageType": "web-api-instance-property",
28905-
"summary": "BaseVal gets or sets the base value of the given attribute before any animations are applied. The base value of the given attribute before applying any animations. Setter throws DOMException."
28905+
"summary": "The baseVal property of the SVGAnimatedString interface gets or sets the base value of the given attribute."
2890628906
},
2890728907
{
2890828908
"mdn_url": "/en-US/docs/Web/API/SVGAnimatedTransformList",

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)