From 4b414e5e049e57080a1e855346888a10ffdc9b6e Mon Sep 17 00:00:00 2001 From: orta <49038+orta@users.noreply.github.com> Date: Wed, 7 Jan 2026 08:13:35 +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 | 27 ++++++++++++++++++-- baselines/serviceworker.generated.d.ts | 2 +- baselines/sharedworker.generated.d.ts | 2 +- baselines/ts5.5/dom.generated.d.ts | 27 ++++++++++++++++++-- baselines/ts5.5/serviceworker.generated.d.ts | 2 +- baselines/ts5.5/sharedworker.generated.d.ts | 2 +- baselines/ts5.5/webworker.generated.d.ts | 2 +- baselines/ts5.6/dom.generated.d.ts | 27 ++++++++++++++++++-- baselines/ts5.6/serviceworker.generated.d.ts | 2 +- baselines/ts5.6/sharedworker.generated.d.ts | 2 +- baselines/ts5.6/webworker.generated.d.ts | 2 +- baselines/ts5.9/dom.generated.d.ts | 27 ++++++++++++++++++-- baselines/ts5.9/serviceworker.generated.d.ts | 2 +- baselines/ts5.9/sharedworker.generated.d.ts | 2 +- baselines/ts5.9/webworker.generated.d.ts | 2 +- baselines/webworker.generated.d.ts | 2 +- inputfiles/mdn.json | 2 +- package-lock.json | 6 ++--- 18 files changed, 116 insertions(+), 24 deletions(-) diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index c9e7d5897..7f3cdfb80 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -23815,6 +23815,13 @@ declare var NavigateEvent: { new(type: string, eventInitDict: NavigateEventInit): NavigateEvent; }; +interface NavigationEventMap { + "currententrychange": NavigationCurrentEntryChangeEvent; + "navigate": NavigateEvent; + "navigateerror": ErrorEvent; + "navigatesuccess": Event; +} + /** * The **`Navigation`** interface of the Navigation API allows control over all navigation actions for the current window in one central place, including initiating navigations programmatically, examining navigation history entries, and managing navigations as they happen. * @@ -23845,6 +23852,14 @@ interface Navigation extends EventTarget { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currentEntry) */ readonly currentEntry: NavigationHistoryEntry | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currententrychange_event) */ + oncurrententrychange: ((this: Navigation, ev: NavigationCurrentEntryChangeEvent) => any) | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigate_event) */ + onnavigate: ((this: Navigation, ev: NavigateEvent) => any) | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigateerror_event) */ + onnavigateerror: ((this: Navigation, ev: ErrorEvent) => any) | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigatesuccess_event) */ + onnavigatesuccess: ((this: Navigation, ev: Event) => any) | null; /** * The **`transition`** read-only property of the Navigation interface returns a NavigationTransition object representing the status of an in-progress navigation, which can be used to track it. * @@ -23893,6 +23908,10 @@ interface Navigation extends EventTarget { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/updateCurrentEntry) */ updateCurrentEntry(options: NavigationUpdateCurrentEntryOptions): void; + addEventListener(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + removeEventListener(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } declare var Navigation: { @@ -26242,7 +26261,11 @@ declare var PerformanceObserverEntryList: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming) */ interface PerformancePaintTiming extends PerformanceEntry, PaintTimingMixin { - /** The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. */ + /** + * The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming/toJSON) + */ toJSON(): any; } @@ -33441,7 +33464,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/serviceworker.generated.d.ts b/baselines/serviceworker.generated.d.ts index 34a0420d5..eb95f44ad 100644 --- a/baselines/serviceworker.generated.d.ts +++ b/baselines/serviceworker.generated.d.ts @@ -7058,7 +7058,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/sharedworker.generated.d.ts b/baselines/sharedworker.generated.d.ts index 7823b51d8..6370d2630 100644 --- a/baselines/sharedworker.generated.d.ts +++ b/baselines/sharedworker.generated.d.ts @@ -6635,7 +6635,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/ts5.5/dom.generated.d.ts b/baselines/ts5.5/dom.generated.d.ts index 2c214960f..000e7e86a 100644 --- a/baselines/ts5.5/dom.generated.d.ts +++ b/baselines/ts5.5/dom.generated.d.ts @@ -23791,6 +23791,13 @@ declare var NavigateEvent: { new(type: string, eventInitDict: NavigateEventInit): NavigateEvent; }; +interface NavigationEventMap { + "currententrychange": NavigationCurrentEntryChangeEvent; + "navigate": NavigateEvent; + "navigateerror": ErrorEvent; + "navigatesuccess": Event; +} + /** * The **`Navigation`** interface of the Navigation API allows control over all navigation actions for the current window in one central place, including initiating navigations programmatically, examining navigation history entries, and managing navigations as they happen. * @@ -23821,6 +23828,14 @@ interface Navigation extends EventTarget { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currentEntry) */ readonly currentEntry: NavigationHistoryEntry | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currententrychange_event) */ + oncurrententrychange: ((this: Navigation, ev: NavigationCurrentEntryChangeEvent) => any) | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigate_event) */ + onnavigate: ((this: Navigation, ev: NavigateEvent) => any) | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigateerror_event) */ + onnavigateerror: ((this: Navigation, ev: ErrorEvent) => any) | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigatesuccess_event) */ + onnavigatesuccess: ((this: Navigation, ev: Event) => any) | null; /** * The **`transition`** read-only property of the Navigation interface returns a NavigationTransition object representing the status of an in-progress navigation, which can be used to track it. * @@ -23869,6 +23884,10 @@ interface Navigation extends EventTarget { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/updateCurrentEntry) */ updateCurrentEntry(options: NavigationUpdateCurrentEntryOptions): void; + addEventListener(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + removeEventListener(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } declare var Navigation: { @@ -26218,7 +26237,11 @@ declare var PerformanceObserverEntryList: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming) */ interface PerformancePaintTiming extends PerformanceEntry, PaintTimingMixin { - /** The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. */ + /** + * The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming/toJSON) + */ toJSON(): any; } @@ -33416,7 +33439,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/ts5.5/serviceworker.generated.d.ts b/baselines/ts5.5/serviceworker.generated.d.ts index 0f65044c1..0a1a349fd 100644 --- a/baselines/ts5.5/serviceworker.generated.d.ts +++ b/baselines/ts5.5/serviceworker.generated.d.ts @@ -7055,7 +7055,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/ts5.5/sharedworker.generated.d.ts b/baselines/ts5.5/sharedworker.generated.d.ts index 46dfb828d..d4e22376d 100644 --- a/baselines/ts5.5/sharedworker.generated.d.ts +++ b/baselines/ts5.5/sharedworker.generated.d.ts @@ -6632,7 +6632,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/ts5.5/webworker.generated.d.ts b/baselines/ts5.5/webworker.generated.d.ts index efa73bc12..c07e82a05 100644 --- a/baselines/ts5.5/webworker.generated.d.ts +++ b/baselines/ts5.5/webworker.generated.d.ts @@ -8177,7 +8177,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/ts5.6/dom.generated.d.ts b/baselines/ts5.6/dom.generated.d.ts index 34d55d04b..03a53af85 100644 --- a/baselines/ts5.6/dom.generated.d.ts +++ b/baselines/ts5.6/dom.generated.d.ts @@ -23812,6 +23812,13 @@ declare var NavigateEvent: { new(type: string, eventInitDict: NavigateEventInit): NavigateEvent; }; +interface NavigationEventMap { + "currententrychange": NavigationCurrentEntryChangeEvent; + "navigate": NavigateEvent; + "navigateerror": ErrorEvent; + "navigatesuccess": Event; +} + /** * The **`Navigation`** interface of the Navigation API allows control over all navigation actions for the current window in one central place, including initiating navigations programmatically, examining navigation history entries, and managing navigations as they happen. * @@ -23842,6 +23849,14 @@ interface Navigation extends EventTarget { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currentEntry) */ readonly currentEntry: NavigationHistoryEntry | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currententrychange_event) */ + oncurrententrychange: ((this: Navigation, ev: NavigationCurrentEntryChangeEvent) => any) | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigate_event) */ + onnavigate: ((this: Navigation, ev: NavigateEvent) => any) | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigateerror_event) */ + onnavigateerror: ((this: Navigation, ev: ErrorEvent) => any) | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigatesuccess_event) */ + onnavigatesuccess: ((this: Navigation, ev: Event) => any) | null; /** * The **`transition`** read-only property of the Navigation interface returns a NavigationTransition object representing the status of an in-progress navigation, which can be used to track it. * @@ -23890,6 +23905,10 @@ interface Navigation extends EventTarget { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/updateCurrentEntry) */ updateCurrentEntry(options: NavigationUpdateCurrentEntryOptions): void; + addEventListener(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + removeEventListener(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } declare var Navigation: { @@ -26239,7 +26258,11 @@ declare var PerformanceObserverEntryList: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming) */ interface PerformancePaintTiming extends PerformanceEntry, PaintTimingMixin { - /** The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. */ + /** + * The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming/toJSON) + */ toJSON(): any; } @@ -33438,7 +33461,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/ts5.6/serviceworker.generated.d.ts b/baselines/ts5.6/serviceworker.generated.d.ts index 0f65044c1..0a1a349fd 100644 --- a/baselines/ts5.6/serviceworker.generated.d.ts +++ b/baselines/ts5.6/serviceworker.generated.d.ts @@ -7055,7 +7055,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/ts5.6/sharedworker.generated.d.ts b/baselines/ts5.6/sharedworker.generated.d.ts index 46dfb828d..d4e22376d 100644 --- a/baselines/ts5.6/sharedworker.generated.d.ts +++ b/baselines/ts5.6/sharedworker.generated.d.ts @@ -6632,7 +6632,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/ts5.6/webworker.generated.d.ts b/baselines/ts5.6/webworker.generated.d.ts index efa73bc12..c07e82a05 100644 --- a/baselines/ts5.6/webworker.generated.d.ts +++ b/baselines/ts5.6/webworker.generated.d.ts @@ -8177,7 +8177,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/ts5.9/dom.generated.d.ts b/baselines/ts5.9/dom.generated.d.ts index cd81ed216..96bd985d8 100644 --- a/baselines/ts5.9/dom.generated.d.ts +++ b/baselines/ts5.9/dom.generated.d.ts @@ -23812,6 +23812,13 @@ declare var NavigateEvent: { new(type: string, eventInitDict: NavigateEventInit): NavigateEvent; }; +interface NavigationEventMap { + "currententrychange": NavigationCurrentEntryChangeEvent; + "navigate": NavigateEvent; + "navigateerror": ErrorEvent; + "navigatesuccess": Event; +} + /** * The **`Navigation`** interface of the Navigation API allows control over all navigation actions for the current window in one central place, including initiating navigations programmatically, examining navigation history entries, and managing navigations as they happen. * @@ -23842,6 +23849,14 @@ interface Navigation extends EventTarget { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currentEntry) */ readonly currentEntry: NavigationHistoryEntry | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/currententrychange_event) */ + oncurrententrychange: ((this: Navigation, ev: NavigationCurrentEntryChangeEvent) => any) | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigate_event) */ + onnavigate: ((this: Navigation, ev: NavigateEvent) => any) | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigateerror_event) */ + onnavigateerror: ((this: Navigation, ev: ErrorEvent) => any) | null; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/navigatesuccess_event) */ + onnavigatesuccess: ((this: Navigation, ev: Event) => any) | null; /** * The **`transition`** read-only property of the Navigation interface returns a NavigationTransition object representing the status of an in-progress navigation, which can be used to track it. * @@ -23890,6 +23905,10 @@ interface Navigation extends EventTarget { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigation/updateCurrentEntry) */ updateCurrentEntry(options: NavigationUpdateCurrentEntryOptions): void; + addEventListener(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + removeEventListener(type: K, listener: (this: Navigation, ev: NavigationEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } declare var Navigation: { @@ -26239,7 +26258,11 @@ declare var PerformanceObserverEntryList: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming) */ interface PerformancePaintTiming extends PerformanceEntry, PaintTimingMixin { - /** The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. */ + /** + * The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming/toJSON) + */ toJSON(): any; } @@ -33438,7 +33461,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/ts5.9/serviceworker.generated.d.ts b/baselines/ts5.9/serviceworker.generated.d.ts index cdab0dd43..c72ccecfe 100644 --- a/baselines/ts5.9/serviceworker.generated.d.ts +++ b/baselines/ts5.9/serviceworker.generated.d.ts @@ -7055,7 +7055,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/ts5.9/sharedworker.generated.d.ts b/baselines/ts5.9/sharedworker.generated.d.ts index 6278b060f..c701c810a 100644 --- a/baselines/ts5.9/sharedworker.generated.d.ts +++ b/baselines/ts5.9/sharedworker.generated.d.ts @@ -6632,7 +6632,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/ts5.9/webworker.generated.d.ts b/baselines/ts5.9/webworker.generated.d.ts index bc0fa5a19..ba269ea2c 100644 --- a/baselines/ts5.9/webworker.generated.d.ts +++ b/baselines/ts5.9/webworker.generated.d.ts @@ -8177,7 +8177,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/baselines/webworker.generated.d.ts b/baselines/webworker.generated.d.ts index 3b22ffbf9..05af53259 100644 --- a/baselines/webworker.generated.d.ts +++ b/baselines/webworker.generated.d.ts @@ -8180,7 +8180,7 @@ interface ServiceWorkerContainer extends EventTarget { */ getRegistrations(): Promise>; /** - * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. If successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker. + * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register) */ diff --git a/inputfiles/mdn.json b/inputfiles/mdn.json index f10718807..b930edad5 100644 --- a/inputfiles/mdn.json +++ b/inputfiles/mdn.json @@ -26962,7 +26962,7 @@ { "mdn_url": "/en-US/docs/Web/API/ServiceWorkerContainer/register", "pageType": "web-api-instance-method", - "summary": "The register() method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.\nIf successful, the registration associates the provided script URL to a scope, which is subsequently used for matching documents to a specific service worker." + "summary": "The register() method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope." }, { "mdn_url": "/en-US/docs/Web/API/ServiceWorkerContainer/startMessages", diff --git a/package-lock.json b/package-lock.json index 9c889cd51..757fc280c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -427,9 +427,9 @@ } }, "node_modules/@mdn/browser-compat-data": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-7.2.2.tgz", - "integrity": "sha512-RoFRC9IzU4E0aSV1HXVz5kO7nSXjuSwEIprwSUlVuKKgk+s+wgO5tbe2iYNPqGLn1+w9HnqhqTVzrGpAPARLRQ==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-7.2.3.tgz", + "integrity": "sha512-PYYZvsMAFb255mWFLBE2/ZJ3YVx7CzIB9yAKErKF6r5yiPDYgX8N0KQ4ERGO/f8HInv2TncWxKLegiIe5E+eVA==", "dev": true, "license": "CC0-1.0", "peer": true