From 23c697b22f355669848343fd5e7bc41c0ace85ab Mon Sep 17 00:00:00 2001 From: orta <49038+orta@users.noreply.github.com> Date: Tue, 6 Jan 2026 08:14:03 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Update=20core=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- baselines/dom.generated.d.ts | 11 ++++++----- baselines/ts5.5/dom.generated.d.ts | 11 ++++++----- baselines/ts5.6/dom.generated.d.ts | 11 ++++++----- baselines/ts5.9/dom.generated.d.ts | 11 ++++++----- inputfiles/mdn.json | 6 +++--- package-lock.json | 18 +++++++++--------- 6 files changed, 36 insertions(+), 32 deletions(-) diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index 4149d9a36..c9e7d5897 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -28047,7 +28047,7 @@ interface RTCRtpReceiver { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform) */ - transform: RTCRtpTransform | null; + transform: RTCRtpReceiverTransform | null; /** * 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. * @@ -28127,7 +28127,7 @@ interface RTCRtpSender { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform) */ - transform: RTCRtpTransform | null; + transform: RTCRtpSenderTransform | null; /** * 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. * @@ -29561,13 +29561,13 @@ declare var SVGAnimatedRect: { */ interface SVGAnimatedString { /** - * 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. + * The **`animVal`** read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal) */ readonly animVal: string; /** - * 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. + * The **`baseVal`** property of the SVGAnimatedString interface gets or sets the base value of the given attribute. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal) */ @@ -42471,7 +42471,8 @@ type OptionalPostfixToken = ` ${T}` | ""; type OptionalPrefixToken = `${T} ` | ""; type PerformanceEntryList = PerformanceEntry[]; type PublicKeyCredentialClientCapabilities = Record; -type RTCRtpTransform = RTCRtpScriptTransform; +type RTCRtpReceiverTransform = RTCRtpScriptTransform; +type RTCRtpSenderTransform = RTCRtpScriptTransform; type ReadableStreamController = ReadableStreamDefaultController | ReadableByteStreamController; type ReadableStreamReadResult = ReadableStreamReadValueResult | ReadableStreamReadDoneResult; type ReadableStreamReader = ReadableStreamDefaultReader | ReadableStreamBYOBReader; diff --git a/baselines/ts5.5/dom.generated.d.ts b/baselines/ts5.5/dom.generated.d.ts index 6ee5333d4..2c214960f 100644 --- a/baselines/ts5.5/dom.generated.d.ts +++ b/baselines/ts5.5/dom.generated.d.ts @@ -28023,7 +28023,7 @@ interface RTCRtpReceiver { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform) */ - transform: RTCRtpTransform | null; + transform: RTCRtpReceiverTransform | null; /** * 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. * @@ -28103,7 +28103,7 @@ interface RTCRtpSender { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform) */ - transform: RTCRtpTransform | null; + transform: RTCRtpSenderTransform | null; /** * 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. * @@ -29536,13 +29536,13 @@ declare var SVGAnimatedRect: { */ interface SVGAnimatedString { /** - * 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. + * The **`animVal`** read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal) */ readonly animVal: string; /** - * 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. + * The **`baseVal`** property of the SVGAnimatedString interface gets or sets the base value of the given attribute. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal) */ @@ -42445,7 +42445,8 @@ type OptionalPostfixToken = ` ${T}` | ""; type OptionalPrefixToken = `${T} ` | ""; type PerformanceEntryList = PerformanceEntry[]; type PublicKeyCredentialClientCapabilities = Record; -type RTCRtpTransform = RTCRtpScriptTransform; +type RTCRtpReceiverTransform = RTCRtpScriptTransform; +type RTCRtpSenderTransform = RTCRtpScriptTransform; type ReadableStreamController = ReadableStreamDefaultController | ReadableByteStreamController; type ReadableStreamReadResult = ReadableStreamReadValueResult | ReadableStreamReadDoneResult; type ReadableStreamReader = ReadableStreamDefaultReader | ReadableStreamBYOBReader; diff --git a/baselines/ts5.6/dom.generated.d.ts b/baselines/ts5.6/dom.generated.d.ts index 5e5e8315e..34d55d04b 100644 --- a/baselines/ts5.6/dom.generated.d.ts +++ b/baselines/ts5.6/dom.generated.d.ts @@ -28044,7 +28044,7 @@ interface RTCRtpReceiver { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform) */ - transform: RTCRtpTransform | null; + transform: RTCRtpReceiverTransform | null; /** * 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. * @@ -28124,7 +28124,7 @@ interface RTCRtpSender { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform) */ - transform: RTCRtpTransform | null; + transform: RTCRtpSenderTransform | null; /** * 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. * @@ -29558,13 +29558,13 @@ declare var SVGAnimatedRect: { */ interface SVGAnimatedString { /** - * 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. + * The **`animVal`** read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal) */ readonly animVal: string; /** - * 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. + * The **`baseVal`** property of the SVGAnimatedString interface gets or sets the base value of the given attribute. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal) */ @@ -42468,7 +42468,8 @@ type OptionalPostfixToken = ` ${T}` | ""; type OptionalPrefixToken = `${T} ` | ""; type PerformanceEntryList = PerformanceEntry[]; type PublicKeyCredentialClientCapabilities = Record; -type RTCRtpTransform = RTCRtpScriptTransform; +type RTCRtpReceiverTransform = RTCRtpScriptTransform; +type RTCRtpSenderTransform = RTCRtpScriptTransform; type ReadableStreamController = ReadableStreamDefaultController | ReadableByteStreamController; type ReadableStreamReadResult = ReadableStreamReadValueResult | ReadableStreamReadDoneResult; type ReadableStreamReader = ReadableStreamDefaultReader | ReadableStreamBYOBReader; diff --git a/baselines/ts5.9/dom.generated.d.ts b/baselines/ts5.9/dom.generated.d.ts index b71482f8e..cd81ed216 100644 --- a/baselines/ts5.9/dom.generated.d.ts +++ b/baselines/ts5.9/dom.generated.d.ts @@ -28044,7 +28044,7 @@ interface RTCRtpReceiver { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform) */ - transform: RTCRtpTransform | null; + transform: RTCRtpReceiverTransform | null; /** * 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. * @@ -28124,7 +28124,7 @@ interface RTCRtpSender { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform) */ - transform: RTCRtpTransform | null; + transform: RTCRtpSenderTransform | null; /** * 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. * @@ -29558,13 +29558,13 @@ declare var SVGAnimatedRect: { */ interface SVGAnimatedString { /** - * 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. + * The **`animVal`** read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal) */ readonly animVal: string; /** - * 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. + * The **`baseVal`** property of the SVGAnimatedString interface gets or sets the base value of the given attribute. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal) */ @@ -42468,7 +42468,8 @@ type OptionalPostfixToken = ` ${T}` | ""; type OptionalPrefixToken = `${T} ` | ""; type PerformanceEntryList = PerformanceEntry[]; type PublicKeyCredentialClientCapabilities = Record; -type RTCRtpTransform = RTCRtpScriptTransform; +type RTCRtpReceiverTransform = RTCRtpScriptTransform; +type RTCRtpSenderTransform = RTCRtpScriptTransform; type ReadableStreamController = ReadableStreamDefaultController | ReadableByteStreamController; type ReadableStreamReadResult = ReadableStreamReadValueResult | ReadableStreamReadDoneResult; type ReadableStreamReader = ReadableStreamDefaultReader | ReadableStreamBYOBReader; diff --git a/inputfiles/mdn.json b/inputfiles/mdn.json index 24d8c0f20..f10718807 100644 --- a/inputfiles/mdn.json +++ b/inputfiles/mdn.json @@ -6332,7 +6332,7 @@ { "mdn_url": "/en-US/docs/Web/API/Document/requestStorageAccess", "pageType": "web-api-instance-method", - "summary": "The requestStorageAccess() method of the Document interface allows content loaded in a third-party context (i.e., embedded in an