Skip to content

Commit e384b1c

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 39af718 commit e384b1c

14 files changed

+67
-52
lines changed

baselines/dom.generated.d.ts

Lines changed: 6 additions & 4 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>;
@@ -18488,13 +18490,13 @@ interface IDBIndex {
1848818490
*
1848918491
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
1849018492
*/
18491-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
18493+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
1849218494
/**
1849318495
* 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.
1849418496
*
1849518497
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
1849618498
*/
18497-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18499+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
1849818500
/**
1849918501
* 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.
1850018502
*
@@ -18670,13 +18672,13 @@ interface IDBObjectStore {
1867018672
*
1867118673
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
1867218674
*/
18673-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
18675+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
1867418676
/**
1867518677
* 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.
1867618678
*
1867718679
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
1867818680
*/
18679-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18681+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
1868018682
/**
1868118683
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
1868218684
*

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: 6 additions & 4 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>;
@@ -18467,13 +18469,13 @@ interface IDBIndex {
1846718469
*
1846818470
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
1846918471
*/
18470-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
18472+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
1847118473
/**
1847218474
* 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.
1847318475
*
1847418476
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
1847518477
*/
18476-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18478+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
1847718479
/**
1847818480
* 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.
1847918481
*
@@ -18649,13 +18651,13 @@ interface IDBObjectStore {
1864918651
*
1865018652
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
1865118653
*/
18652-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
18654+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
1865318655
/**
1865418656
* 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.
1865518657
*
1865618658
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
1865718659
*/
18658-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18660+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
1865918661
/**
1866018662
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
1866118663
*

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
*

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,7 @@ interface NotificationOptions {
558558
dir?: NotificationDirection;
559559
icon?: string;
560560
lang?: string;
561+
navigate?: string;
561562
requireInteraction?: boolean;
562563
silent?: boolean | null;
563564
tag?: string;
@@ -5160,13 +5161,13 @@ interface IDBIndex {
51605161
*
51615162
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
51625163
*/
5163-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
5164+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
51645165
/**
51655166
* 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.
51665167
*
51675168
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
51685169
*/
5169-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
5170+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
51705171
/**
51715172
* 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.
51725173
*
@@ -5342,13 +5343,13 @@ interface IDBObjectStore {
53425343
*
53435344
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
53445345
*/
5345-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
5346+
getAll(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<any[]>;
53465347
/**
53475348
* 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.
53485349
*
53495350
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
53505351
*/
5351-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
5352+
getAllKeys(queryOrOptions?: any, count?: number, query: IDBValidKey | IDBKeyRange | null): IDBRequest<IDBValidKey[]>;
53525353
/**
53535354
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
53545355
*

0 commit comments

Comments
 (0)