Skip to content

Commit 37ef979

Browse files
authored
Manually update to [email protected] and webref/[email protected] (#1141)
1 parent ca8534c commit 37ef979

File tree

7 files changed

+138
-120
lines changed

7 files changed

+138
-120
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ interface AudioWorkletProcessorConstructor {
558558
}
559559

560560
interface QueuingStrategySize<T = any> {
561-
(chunk?: T): number;
561+
(chunk: T): number;
562562
}
563563

564564
interface TransformerFlushCallback<O> {

baselines/dom.generated.d.ts

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4786,6 +4786,16 @@ interface ElementContentEditable {
47864786
readonly isContentEditable: boolean;
47874787
}
47884788

4789+
interface ElementInternals extends ARIAMixin {
4790+
/** Returns the ShadowRoot for internals's target element, if the target element is a shadow host, or null otherwise. */
4791+
readonly shadowRoot: ShadowRoot | null;
4792+
}
4793+
4794+
declare var ElementInternals: {
4795+
prototype: ElementInternals;
4796+
new(): ElementInternals;
4797+
};
4798+
47894799
/** Events providing information related to errors in scripts or in files. */
47904800
interface ErrorEvent extends Event {
47914801
readonly colno: number;
@@ -5025,13 +5035,10 @@ declare var FileSystemDirectoryEntry: {
50255035
new(): FileSystemDirectoryEntry;
50265036
};
50275037

5028-
/** @deprecated */
50295038
interface FileSystemDirectoryReader {
5030-
/** @deprecated */
50315039
readEntries(successCallback: FileSystemEntriesCallback, errorCallback?: ErrorCallback): void;
50325040
}
50335041

5034-
/** @deprecated */
50355042
declare var FileSystemDirectoryReader: {
50365043
prototype: FileSystemDirectoryReader;
50375044
new(): FileSystemDirectoryReader;
@@ -5584,6 +5591,7 @@ interface GlobalEventHandlers {
55845591
* @param ev The event.
55855592
*/
55865593
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
5594+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
55875595
/**
55885596
* Occurs when the seek operation ends.
55895597
* @param ev The event.
@@ -8503,6 +8511,7 @@ interface IDBTransactionEventMap {
85038511
interface IDBTransaction extends EventTarget {
85048512
/** Returns the transaction's connection. */
85058513
readonly db: IDBDatabase;
8514+
readonly durability: IDBTransactionDurability;
85068515
/** If the transaction was aborted, returns the error (a DOMException) providing the reason. */
85078516
readonly error: DOMException | null;
85088517
/** Returns the mode the transaction was created with ("readonly" or "readwrite"), or "versionchange" for an upgrade transaction. */
@@ -16739,7 +16748,7 @@ interface PositionErrorCallback {
1673916748
}
1674016749

1674116750
interface QueuingStrategySize<T = any> {
16742-
(chunk?: T): number;
16751+
(chunk: T): number;
1674316752
}
1674416753

1674516754
interface RTCPeerConnectionErrorCallback {
@@ -17332,6 +17341,7 @@ declare var onresize: ((this: Window, ev: UIEvent) => any) | null;
1733217341
* @param ev The event.
1733317342
*/
1733417343
declare var onscroll: ((this: Window, ev: Event) => any) | null;
17344+
declare var onsecuritypolicyviolation: ((this: Window, ev: SecurityPolicyViolationEvent) => any) | null;
1733517345
/**
1733617346
* Occurs when the seek operation ends.
1733717347
* @param ev The event.
@@ -17546,6 +17556,7 @@ type GamepadMappingType = "" | "standard" | "xr-standard";
1754617556
type HdrMetadataType = "smpteSt2086" | "smpteSt2094-10" | "smpteSt2094-40";
1754717557
type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
1754817558
type IDBRequestReadyState = "done" | "pending";
17559+
type IDBTransactionDurability = "default" | "relaxed" | "strict";
1754917560
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
1755017561
type ImageOrientation = "flipY" | "none";
1755117562
type ImageSmoothingQuality = "high" | "low" | "medium";

baselines/serviceworker.generated.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1899,6 +1899,7 @@ interface IDBTransactionEventMap {
18991899
interface IDBTransaction extends EventTarget {
19001900
/** Returns the transaction's connection. */
19011901
readonly db: IDBDatabase;
1902+
readonly durability: IDBTransactionDurability;
19021903
/** If the transaction was aborted, returns the error (a DOMException) providing the reason. */
19031904
readonly error: DOMException | null;
19041905
/** Returns the mode the transaction was created with ("readonly" or "readwrite"), or "versionchange" for an upgrade transaction. */
@@ -5237,7 +5238,7 @@ interface PerformanceObserverCallback {
52375238
}
52385239

52395240
interface QueuingStrategySize<T = any> {
5240-
(chunk?: T): number;
5241+
(chunk: T): number;
52415242
}
52425243

52435244
interface TransformerFlushCallback<O> {
@@ -5391,6 +5392,7 @@ type FrameType = "auxiliary" | "nested" | "none" | "top-level";
53915392
type HdrMetadataType = "smpteSt2086" | "smpteSt2094-10" | "smpteSt2094-40";
53925393
type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
53935394
type IDBRequestReadyState = "done" | "pending";
5395+
type IDBTransactionDurability = "default" | "relaxed" | "strict";
53945396
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
53955397
type ImageOrientation = "flipY" | "none";
53965398
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";

baselines/sharedworker.generated.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1819,6 +1819,7 @@ interface IDBTransactionEventMap {
18191819
interface IDBTransaction extends EventTarget {
18201820
/** Returns the transaction's connection. */
18211821
readonly db: IDBDatabase;
1822+
readonly durability: IDBTransactionDurability;
18221823
/** If the transaction was aborted, returns the error (a DOMException) providing the reason. */
18231824
readonly error: DOMException | null;
18241825
/** Returns the mode the transaction was created with ("readonly" or "readwrite"), or "versionchange" for an upgrade transaction. */
@@ -5266,7 +5267,7 @@ interface PerformanceObserverCallback {
52665267
}
52675268

52685269
interface QueuingStrategySize<T = any> {
5269-
(chunk?: T): number;
5270+
(chunk: T): number;
52705271
}
52715272

52725273
interface TransformerFlushCallback<O> {
@@ -5412,6 +5413,7 @@ type FontFaceSetLoadStatus = "loaded" | "loading";
54125413
type HdrMetadataType = "smpteSt2086" | "smpteSt2094-10" | "smpteSt2094-40";
54135414
type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
54145415
type IDBRequestReadyState = "done" | "pending";
5416+
type IDBTransactionDurability = "default" | "relaxed" | "strict";
54155417
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
54165418
type ImageOrientation = "flipY" | "none";
54175419
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";

baselines/webworker.generated.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1951,6 +1951,7 @@ interface IDBTransactionEventMap {
19511951
interface IDBTransaction extends EventTarget {
19521952
/** Returns the transaction's connection. */
19531953
readonly db: IDBDatabase;
1954+
readonly durability: IDBTransactionDurability;
19541955
/** If the transaction was aborted, returns the error (a DOMException) providing the reason. */
19551956
readonly error: DOMException | null;
19561957
/** Returns the mode the transaction was created with ("readonly" or "readwrite"), or "versionchange" for an upgrade transaction. */
@@ -5484,7 +5485,7 @@ interface PerformanceObserverCallback {
54845485
}
54855486

54865487
interface QueuingStrategySize<T = any> {
5487-
(chunk?: T): number;
5488+
(chunk: T): number;
54885489
}
54895490

54905491
interface TransformerFlushCallback<O> {
@@ -5638,6 +5639,7 @@ type FrameType = "auxiliary" | "nested" | "none" | "top-level";
56385639
type HdrMetadataType = "smpteSt2086" | "smpteSt2094-10" | "smpteSt2094-40";
56395640
type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
56405641
type IDBRequestReadyState = "done" | "pending";
5642+
type IDBTransactionDurability = "default" | "relaxed" | "strict";
56415643
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
56425644
type ImageOrientation = "flipY" | "none";
56435645
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";

inputfiles/removedTypes.jsonc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@
216216
"AuthenticationExtensionsClientInputs": {
217217
"members": {
218218
"member": {
219-
"largeBlob": null
219+
"largeBlob": null,
220+
"payment": null
220221
}
221222
}
222223
},

0 commit comments

Comments
 (0)