Skip to content

Commit 1685535

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 8273e37 commit 1685535

22 files changed

Lines changed: 945 additions & 306 deletions

baselines/audioworklet.generated.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1569,25 +1569,25 @@ declare namespace WebAssembly {
15691569
};
15701570

15711571
/**
1572-
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
1572+
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
15731573
*
15741574
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
15751575
*/
15761576
interface Exception {
15771577
/**
1578-
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
1578+
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
15791579
*
15801580
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
15811581
*/
15821582
readonly stack: string | undefined;
15831583
/**
1584-
* The **`getArg()`** prototype method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
1584+
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
15851585
*
15861586
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
15871587
*/
15881588
getArg(exceptionTag: Tag, index: number): any;
15891589
/**
1590-
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
1590+
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
15911591
*
15921592
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
15931593
*/
@@ -1755,7 +1755,7 @@ declare namespace WebAssembly {
17551755
};
17561756

17571757
/**
1758-
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
1758+
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
17591759
*
17601760
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
17611761
*/

baselines/dom.generated.d.ts

Lines changed: 95 additions & 34 deletions
Large diffs are not rendered by default.

baselines/serviceworker.generated.d.ts

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,7 @@ interface GPUPipelineErrorInit {
450450

451451
interface GPUPipelineLayoutDescriptor extends GPUObjectDescriptorBase {
452452
bindGroupLayouts: (GPUBindGroupLayout | null)[];
453+
immediateSize?: GPUSize32;
453454
}
454455

455456
interface GPUPrimitiveState {
@@ -801,6 +802,13 @@ interface NavigationPreloadState {
801802
headerValue?: string;
802803
}
803804

805+
interface NotificationAction {
806+
action: string;
807+
icon?: string;
808+
navigate?: string;
809+
title: string;
810+
}
811+
804812
interface NotificationEventInit extends ExtendableEventInit {
805813
action?: string;
806814
notification: Notification;
@@ -6949,6 +6957,12 @@ interface NotificationEventMap {
69496957
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)
69506958
*/
69516959
interface Notification extends EventTarget {
6960+
/**
6961+
* The **`actions`** read-only property of the Notification interface provides the actions available for users to choose from for interacting with the notification.
6962+
*
6963+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/actions)
6964+
*/
6965+
readonly actions: ReadonlyArray<NotificationAction>;
69526966
/**
69536967
* The **`body`** read-only property of the Notification interface indicates the body string of the notification, as specified in the body option of the Notification() constructor.
69546968
*
@@ -7026,6 +7040,12 @@ interface Notification extends EventTarget {
70267040
declare var Notification: {
70277041
prototype: Notification;
70287042
new(title: string, options?: NotificationOptions): Notification;
7043+
/**
7044+
* The **`maxActions`** read-only static property of the Notification interface returns the maximum number of actions supported by the device and the User Agent. Effectively, this is the maximum number of elements in Notification.actions array which will be respected by the User Agent.
7045+
*
7046+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/maxActions_static)
7047+
*/
7048+
readonly maxActions: number;
70297049
/**
70307050
* The **`permission`** read-only static property of the Notification interface indicates the current permission granted by the user for the current origin to display web notifications.
70317051
*
@@ -12830,25 +12850,25 @@ declare namespace WebAssembly {
1283012850
};
1283112851

1283212852
/**
12833-
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
12853+
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
1283412854
*
1283512855
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
1283612856
*/
1283712857
interface Exception {
1283812858
/**
12839-
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
12859+
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
1284012860
*
1284112861
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
1284212862
*/
1284312863
readonly stack: string | undefined;
1284412864
/**
12845-
* The **`getArg()`** prototype method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
12865+
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
1284612866
*
1284712867
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
1284812868
*/
1284912869
getArg(exceptionTag: Tag, index: number): any;
1285012870
/**
12851-
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
12871+
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
1285212872
*
1285312873
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
1285412874
*/
@@ -13016,7 +13036,7 @@ declare namespace WebAssembly {
1301613036
};
1301713037

1301813038
/**
13019-
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
13039+
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
1302013040
*
1302113041
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
1302213042
*/

baselines/sharedworker.generated.d.ts

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,7 @@ interface GPUPipelineErrorInit {
394394

395395
interface GPUPipelineLayoutDescriptor extends GPUObjectDescriptorBase {
396396
bindGroupLayouts: (GPUBindGroupLayout | null)[];
397+
immediateSize?: GPUSize32;
397398
}
398399

399400
interface GPUPrimitiveState {
@@ -745,6 +746,13 @@ interface NavigationPreloadState {
745746
headerValue?: string;
746747
}
747748

749+
interface NotificationAction {
750+
action: string;
751+
icon?: string;
752+
navigate?: string;
753+
title: string;
754+
}
755+
748756
interface NotificationOptions {
749757
badge?: string;
750758
body?: string;
@@ -6632,6 +6640,12 @@ interface NotificationEventMap {
66326640
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)
66336641
*/
66346642
interface Notification extends EventTarget {
6643+
/**
6644+
* The **`actions`** read-only property of the Notification interface provides the actions available for users to choose from for interacting with the notification.
6645+
*
6646+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/actions)
6647+
*/
6648+
readonly actions: ReadonlyArray<NotificationAction>;
66356649
/**
66366650
* The **`body`** read-only property of the Notification interface indicates the body string of the notification, as specified in the body option of the Notification() constructor.
66376651
*
@@ -6709,6 +6723,12 @@ interface Notification extends EventTarget {
67096723
declare var Notification: {
67106724
prototype: Notification;
67116725
new(title: string, options?: NotificationOptions): Notification;
6726+
/**
6727+
* The **`maxActions`** read-only static property of the Notification interface returns the maximum number of actions supported by the device and the User Agent. Effectively, this is the maximum number of elements in Notification.actions array which will be respected by the User Agent.
6728+
*
6729+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/maxActions_static)
6730+
*/
6731+
readonly maxActions: number;
67126732
/**
67136733
* The **`permission`** read-only static property of the Notification interface indicates the current permission granted by the user for the current origin to display web notifications.
67146734
*
@@ -12556,25 +12576,25 @@ declare namespace WebAssembly {
1255612576
};
1255712577

1255812578
/**
12559-
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
12579+
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
1256012580
*
1256112581
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
1256212582
*/
1256312583
interface Exception {
1256412584
/**
12565-
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
12585+
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
1256612586
*
1256712587
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
1256812588
*/
1256912589
readonly stack: string | undefined;
1257012590
/**
12571-
* The **`getArg()`** prototype method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
12591+
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
1257212592
*
1257312593
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
1257412594
*/
1257512595
getArg(exceptionTag: Tag, index: number): any;
1257612596
/**
12577-
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
12597+
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
1257812598
*
1257912599
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
1258012600
*/
@@ -12742,7 +12762,7 @@ declare namespace WebAssembly {
1274212762
};
1274312763

1274412764
/**
12745-
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
12765+
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
1274612766
*
1274712767
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
1274812768
*/

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1566,25 +1566,25 @@ declare namespace WebAssembly {
15661566
};
15671567

15681568
/**
1569-
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
1569+
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
15701570
*
15711571
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
15721572
*/
15731573
interface Exception {
15741574
/**
1575-
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
1575+
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
15761576
*
15771577
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
15781578
*/
15791579
readonly stack: string | undefined;
15801580
/**
1581-
* The **`getArg()`** prototype method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
1581+
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
15821582
*
15831583
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
15841584
*/
15851585
getArg(exceptionTag: Tag, index: number): any;
15861586
/**
1587-
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
1587+
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
15881588
*
15891589
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
15901590
*/
@@ -1752,7 +1752,7 @@ declare namespace WebAssembly {
17521752
};
17531753

17541754
/**
1755-
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
1755+
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
17561756
*
17571757
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
17581758
*/

0 commit comments

Comments
 (0)