Skip to content

Commit 9c3d954

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent ddd8639 commit 9c3d954

14 files changed

+115
-64
lines changed

baselines/dom.generated.d.ts

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1260,6 +1260,7 @@ interface NotificationOptions {
12601260
dir?: NotificationDirection;
12611261
icon?: string;
12621262
lang?: string;
1263+
navigate?: string;
12631264
requireInteraction?: boolean;
12641265
silent?: boolean | null;
12651266
tag?: string;
@@ -1827,6 +1828,7 @@ interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats {
18271828
mediaSourceId?: string;
18281829
mid?: string;
18291830
nackCount?: number;
1831+
packetsSentWithEct1?: number;
18301832
pliCount?: number;
18311833
qpSum?: number;
18321834
qualityLimitationDurations?: Record<string, number>;
@@ -8119,11 +8121,23 @@ interface CanvasUserInterface {
81198121
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition)
81208122
*/
81218123
interface CaretPosition {
8122-
/** The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. */
8124+
/**
8125+
* The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node.
8126+
*
8127+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offset)
8128+
*/
81238129
readonly offset: number;
8124-
/** The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. */
8130+
/**
8131+
* The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position.
8132+
*
8133+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offsetNode)
8134+
*/
81258135
readonly offsetNode: Node;
8126-
/** The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. */
8136+
/**
8137+
* The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range.
8138+
*
8139+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/getClientRect)
8140+
*/
81278141
getClientRect(): DOMRect | null;
81288142
}
81298143

@@ -18488,13 +18502,13 @@ interface IDBIndex {
1848818502
*
1848918503
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
1849018504
*/
18491-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
18505+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
1849218506
/**
1849318507
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
1849418508
*
1849518509
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
1849618510
*/
18497-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18511+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
1849818512
/**
1849918513
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
1850018514
*
@@ -18670,13 +18684,13 @@ interface IDBObjectStore {
1867018684
*
1867118685
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
1867218686
*/
18673-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
18687+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
1867418688
/**
1867518689
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
1867618690
*
1867718691
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
1867818692
*/
18679-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18693+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
1868018694
/**
1868118695
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
1868218696
*

baselines/serviceworker.generated.d.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,7 @@ interface NotificationOptions {
450450
dir?: NotificationDirection;
451451
icon?: string;
452452
lang?: string;
453+
navigate?: string;
453454
requireInteraction?: boolean;
454455
silent?: boolean | null;
455456
tag?: string;
@@ -4468,13 +4469,13 @@ interface IDBIndex {
44684469
*
44694470
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
44704471
*/
4471-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4472+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
44724473
/**
44734474
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
44744475
*
44754476
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
44764477
*/
4477-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4478+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
44784479
/**
44794480
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
44804481
*
@@ -4650,13 +4651,13 @@ interface IDBObjectStore {
46504651
*
46514652
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
46524653
*/
4653-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4654+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
46544655
/**
46554656
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
46564657
*
46574658
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
46584659
*/
4659-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4660+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
46604661
/**
46614662
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
46624663
*

baselines/sharedworker.generated.d.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,7 @@ interface NotificationOptions {
389389
dir?: NotificationDirection;
390390
icon?: string;
391391
lang?: string;
392+
navigate?: string;
392393
requireInteraction?: boolean;
393394
silent?: boolean | null;
394395
tag?: string;
@@ -4151,13 +4152,13 @@ interface IDBIndex {
41514152
*
41524153
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
41534154
*/
4154-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4155+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
41554156
/**
41564157
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
41574158
*
41584159
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
41594160
*/
4160-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4161+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
41614162
/**
41624163
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
41634164
*
@@ -4333,13 +4334,13 @@ interface IDBObjectStore {
43334334
*
43344335
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
43354336
*/
4336-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4337+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
43374338
/**
43384339
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
43394340
*
43404341
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
43414342
*/
4342-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4343+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
43434344
/**
43444345
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
43454346
*

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

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1260,6 +1260,7 @@ interface NotificationOptions {
12601260
dir?: NotificationDirection;
12611261
icon?: string;
12621262
lang?: string;
1263+
navigate?: string;
12631264
requireInteraction?: boolean;
12641265
silent?: boolean | null;
12651266
tag?: string;
@@ -1827,6 +1828,7 @@ interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats {
18271828
mediaSourceId?: string;
18281829
mid?: string;
18291830
nackCount?: number;
1831+
packetsSentWithEct1?: number;
18301832
pliCount?: number;
18311833
qpSum?: number;
18321834
qualityLimitationDurations?: Record<string, number>;
@@ -8111,11 +8113,23 @@ interface CanvasUserInterface {
81118113
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition)
81128114
*/
81138115
interface CaretPosition {
8114-
/** The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. */
8116+
/**
8117+
* The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node.
8118+
*
8119+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offset)
8120+
*/
81158121
readonly offset: number;
8116-
/** The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. */
8122+
/**
8123+
* The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position.
8124+
*
8125+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offsetNode)
8126+
*/
81178127
readonly offsetNode: Node;
8118-
/** The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. */
8128+
/**
8129+
* The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range.
8130+
*
8131+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/getClientRect)
8132+
*/
81198133
getClientRect(): DOMRect | null;
81208134
}
81218135

@@ -18467,13 +18481,13 @@ interface IDBIndex {
1846718481
*
1846818482
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
1846918483
*/
18470-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
18484+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
1847118485
/**
1847218486
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
1847318487
*
1847418488
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
1847518489
*/
18476-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18490+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
1847718491
/**
1847818492
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
1847918493
*
@@ -18649,13 +18663,13 @@ interface IDBObjectStore {
1864918663
*
1865018664
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
1865118665
*/
18652-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
18666+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
1865318667
/**
1865418668
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
1865518669
*
1865618670
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
1865718671
*/
18658-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18672+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
1865918673
/**
1866018674
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
1866118675
*

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,7 @@ interface NotificationOptions {
450450
dir?: NotificationDirection;
451451
icon?: string;
452452
lang?: string;
453+
navigate?: string;
453454
requireInteraction?: boolean;
454455
silent?: boolean | null;
455456
tag?: string;
@@ -4468,13 +4469,13 @@ interface IDBIndex {
44684469
*
44694470
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
44704471
*/
4471-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4472+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
44724473
/**
44734474
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
44744475
*
44754476
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
44764477
*/
4477-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4478+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
44784479
/**
44794480
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
44804481
*
@@ -4650,13 +4651,13 @@ interface IDBObjectStore {
46504651
*
46514652
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
46524653
*/
4653-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4654+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
46544655
/**
46554656
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
46564657
*
46574658
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
46584659
*/
4659-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4660+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
46604661
/**
46614662
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
46624663
*

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,7 @@ interface NotificationOptions {
389389
dir?: NotificationDirection;
390390
icon?: string;
391391
lang?: string;
392+
navigate?: string;
392393
requireInteraction?: boolean;
393394
silent?: boolean | null;
394395
tag?: string;
@@ -4151,13 +4152,13 @@ interface IDBIndex {
41514152
*
41524153
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
41534154
*/
4154-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4155+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
41554156
/**
41564157
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
41574158
*
41584159
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
41594160
*/
4160-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4161+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
41614162
/**
41624163
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
41634164
*
@@ -4333,13 +4334,13 @@ interface IDBObjectStore {
43334334
*
43344335
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
43354336
*/
4336-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4337+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
43374338
/**
43384339
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
43394340
*
43404341
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
43414342
*/
4342-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4343+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
43434344
/**
43444345
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
43454346
*

0 commit comments

Comments
 (0)