diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index 8793a2606..99623fa84 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -922,6 +922,8 @@ interface JsonWebKey { n?: string; oth?: RsaOtherPrimesInfo[]; p?: string; + priv?: string; + pub?: string; q?: string; qi?: string; use?: string; @@ -10037,6 +10039,19 @@ declare var DeviceOrientationEvent: { new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent; }; +/** Available only in secure contexts. */ +interface DigitalCredential extends Credential { + readonly data: any; + readonly protocol: string; + toJSON(): any; +} + +declare var DigitalCredential: { + prototype: DigitalCredential; + new(): DigitalCredential; + userAgentAllowsProtocol(protocol: string): boolean; +}; + interface DocumentEventMap extends GlobalEventHandlersEventMap { "DOMContentLoaded": Event; "fullscreenchange": Event; @@ -17159,7 +17174,7 @@ interface HTMLTableCellElement extends HTMLElement { */ chOff: string; /** - * The **`colSpan`** read-only property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table. + * The **`colSpan`** property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan) */ @@ -17180,7 +17195,7 @@ interface HTMLTableCellElement extends HTMLElement { */ noWrap: boolean; /** - * The **`rowSpan`** read-only property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table. + * The **`rowSpan`** property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan) */ @@ -17239,7 +17254,7 @@ interface HTMLTableColElement extends HTMLElement { */ chOff: string; /** - * The **`span`** read-only property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table. + * The **`span`** property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span) */ @@ -24576,7 +24591,7 @@ interface PublicKeyCredential extends Credential { */ readonly response: AuthenticatorResponse; /** - * The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns a map between the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent. + * The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns an object mapping the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults) */ @@ -39970,9 +39985,9 @@ type ImageOrientation = "flipY" | "from-image" | "none"; type ImageSmoothingQuality = "high" | "low" | "medium"; type InsertPosition = "afterbegin" | "afterend" | "beforebegin" | "beforeend"; type IterationCompositeOperation = "accumulate" | "replace"; -type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki"; +type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki"; type KeyType = "private" | "public" | "secret"; -type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; +type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; type LatencyMode = "quality" | "realtime"; type LineAlignSetting = "center" | "end" | "start"; type LockMode = "exclusive" | "shared"; diff --git a/baselines/serviceworker.generated.d.ts b/baselines/serviceworker.generated.d.ts index df04625cc..e928aa2df 100644 --- a/baselines/serviceworker.generated.d.ts +++ b/baselines/serviceworker.generated.d.ts @@ -352,6 +352,8 @@ interface JsonWebKey { n?: string; oth?: RsaOtherPrimesInfo[]; p?: string; + priv?: string; + pub?: string; q?: string; qi?: string; use?: string; @@ -11685,9 +11687,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict"; type IDBTransactionMode = "readonly" | "readwrite" | "versionchange"; type ImageOrientation = "flipY" | "from-image" | "none"; type ImageSmoothingQuality = "high" | "low" | "medium"; -type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki"; +type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki"; type KeyType = "private" | "public" | "secret"; -type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; +type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; type LockMode = "exclusive" | "shared"; type MediaDecodingType = "file" | "media-source" | "webrtc"; type MediaEncodingType = "record" | "webrtc"; diff --git a/baselines/sharedworker.generated.d.ts b/baselines/sharedworker.generated.d.ts index f33bbf925..0f23fe4ef 100644 --- a/baselines/sharedworker.generated.d.ts +++ b/baselines/sharedworker.generated.d.ts @@ -296,6 +296,8 @@ interface JsonWebKey { n?: string; oth?: RsaOtherPrimesInfo[]; p?: string; + priv?: string; + pub?: string; q?: string; qi?: string; use?: string; @@ -11370,9 +11372,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict"; type IDBTransactionMode = "readonly" | "readwrite" | "versionchange"; type ImageOrientation = "flipY" | "from-image" | "none"; type ImageSmoothingQuality = "high" | "low" | "medium"; -type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki"; +type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki"; type KeyType = "private" | "public" | "secret"; -type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; +type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; type LockMode = "exclusive" | "shared"; type MediaDecodingType = "file" | "media-source" | "webrtc"; type MediaEncodingType = "record" | "webrtc"; diff --git a/baselines/ts5.5/dom.generated.d.ts b/baselines/ts5.5/dom.generated.d.ts index 1bc5be01a..7bf338549 100644 --- a/baselines/ts5.5/dom.generated.d.ts +++ b/baselines/ts5.5/dom.generated.d.ts @@ -922,6 +922,8 @@ interface JsonWebKey { n?: string; oth?: RsaOtherPrimesInfo[]; p?: string; + priv?: string; + pub?: string; q?: string; qi?: string; use?: string; @@ -10029,6 +10031,19 @@ declare var DeviceOrientationEvent: { new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent; }; +/** Available only in secure contexts. */ +interface DigitalCredential extends Credential { + readonly data: any; + readonly protocol: string; + toJSON(): any; +} + +declare var DigitalCredential: { + prototype: DigitalCredential; + new(): DigitalCredential; + userAgentAllowsProtocol(protocol: string): boolean; +}; + interface DocumentEventMap extends GlobalEventHandlersEventMap { "DOMContentLoaded": Event; "fullscreenchange": Event; @@ -17138,7 +17153,7 @@ interface HTMLTableCellElement extends HTMLElement { */ chOff: string; /** - * The **`colSpan`** read-only property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table. + * The **`colSpan`** property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan) */ @@ -17159,7 +17174,7 @@ interface HTMLTableCellElement extends HTMLElement { */ noWrap: boolean; /** - * The **`rowSpan`** read-only property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table. + * The **`rowSpan`** property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan) */ @@ -17218,7 +17233,7 @@ interface HTMLTableColElement extends HTMLElement { */ chOff: string; /** - * The **`span`** read-only property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table. + * The **`span`** property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span) */ @@ -24555,7 +24570,7 @@ interface PublicKeyCredential extends Credential { */ readonly response: AuthenticatorResponse; /** - * The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns a map between the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent. + * The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns an object mapping the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults) */ @@ -39947,9 +39962,9 @@ type ImageOrientation = "flipY" | "from-image" | "none"; type ImageSmoothingQuality = "high" | "low" | "medium"; type InsertPosition = "afterbegin" | "afterend" | "beforebegin" | "beforeend"; type IterationCompositeOperation = "accumulate" | "replace"; -type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki"; +type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki"; type KeyType = "private" | "public" | "secret"; -type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; +type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; type LatencyMode = "quality" | "realtime"; type LineAlignSetting = "center" | "end" | "start"; type LockMode = "exclusive" | "shared"; diff --git a/baselines/ts5.5/serviceworker.generated.d.ts b/baselines/ts5.5/serviceworker.generated.d.ts index 72e9bdb2a..aa9d2a301 100644 --- a/baselines/ts5.5/serviceworker.generated.d.ts +++ b/baselines/ts5.5/serviceworker.generated.d.ts @@ -352,6 +352,8 @@ interface JsonWebKey { n?: string; oth?: RsaOtherPrimesInfo[]; p?: string; + priv?: string; + pub?: string; q?: string; qi?: string; use?: string; @@ -11685,9 +11687,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict"; type IDBTransactionMode = "readonly" | "readwrite" | "versionchange"; type ImageOrientation = "flipY" | "from-image" | "none"; type ImageSmoothingQuality = "high" | "low" | "medium"; -type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki"; +type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki"; type KeyType = "private" | "public" | "secret"; -type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; +type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; type LockMode = "exclusive" | "shared"; type MediaDecodingType = "file" | "media-source" | "webrtc"; type MediaEncodingType = "record" | "webrtc"; diff --git a/baselines/ts5.5/sharedworker.generated.d.ts b/baselines/ts5.5/sharedworker.generated.d.ts index 9a1f96ea3..2a1e5f166 100644 --- a/baselines/ts5.5/sharedworker.generated.d.ts +++ b/baselines/ts5.5/sharedworker.generated.d.ts @@ -296,6 +296,8 @@ interface JsonWebKey { n?: string; oth?: RsaOtherPrimesInfo[]; p?: string; + priv?: string; + pub?: string; q?: string; qi?: string; use?: string; @@ -11370,9 +11372,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict"; type IDBTransactionMode = "readonly" | "readwrite" | "versionchange"; type ImageOrientation = "flipY" | "from-image" | "none"; type ImageSmoothingQuality = "high" | "low" | "medium"; -type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki"; +type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki"; type KeyType = "private" | "public" | "secret"; -type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; +type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; type LockMode = "exclusive" | "shared"; type MediaDecodingType = "file" | "media-source" | "webrtc"; type MediaEncodingType = "record" | "webrtc"; diff --git a/baselines/ts5.5/webworker.generated.d.ts b/baselines/ts5.5/webworker.generated.d.ts index d49387846..56125ef63 100644 --- a/baselines/ts5.5/webworker.generated.d.ts +++ b/baselines/ts5.5/webworker.generated.d.ts @@ -456,6 +456,8 @@ interface JsonWebKey { n?: string; oth?: RsaOtherPrimesInfo[]; p?: string; + priv?: string; + pub?: string; q?: string; qi?: string; use?: string; @@ -13351,9 +13353,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict"; type IDBTransactionMode = "readonly" | "readwrite" | "versionchange"; type ImageOrientation = "flipY" | "from-image" | "none"; type ImageSmoothingQuality = "high" | "low" | "medium"; -type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki"; +type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki"; type KeyType = "private" | "public" | "secret"; -type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; +type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; type LatencyMode = "quality" | "realtime"; type LockMode = "exclusive" | "shared"; type MediaDecodingType = "file" | "media-source" | "webrtc"; diff --git a/baselines/ts5.6/dom.generated.d.ts b/baselines/ts5.6/dom.generated.d.ts index 7061521e5..183ba360e 100644 --- a/baselines/ts5.6/dom.generated.d.ts +++ b/baselines/ts5.6/dom.generated.d.ts @@ -922,6 +922,8 @@ interface JsonWebKey { n?: string; oth?: RsaOtherPrimesInfo[]; p?: string; + priv?: string; + pub?: string; q?: string; qi?: string; use?: string; @@ -10037,6 +10039,19 @@ declare var DeviceOrientationEvent: { new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent; }; +/** Available only in secure contexts. */ +interface DigitalCredential extends Credential { + readonly data: any; + readonly protocol: string; + toJSON(): any; +} + +declare var DigitalCredential: { + prototype: DigitalCredential; + new(): DigitalCredential; + userAgentAllowsProtocol(protocol: string): boolean; +}; + interface DocumentEventMap extends GlobalEventHandlersEventMap { "DOMContentLoaded": Event; "fullscreenchange": Event; @@ -17159,7 +17174,7 @@ interface HTMLTableCellElement extends HTMLElement { */ chOff: string; /** - * The **`colSpan`** read-only property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table. + * The **`colSpan`** property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan) */ @@ -17180,7 +17195,7 @@ interface HTMLTableCellElement extends HTMLElement { */ noWrap: boolean; /** - * The **`rowSpan`** read-only property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table. + * The **`rowSpan`** property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan) */ @@ -17239,7 +17254,7 @@ interface HTMLTableColElement extends HTMLElement { */ chOff: string; /** - * The **`span`** read-only property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table. + * The **`span`** property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span) */ @@ -24576,7 +24591,7 @@ interface PublicKeyCredential extends Credential { */ readonly response: AuthenticatorResponse; /** - * The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns a map between the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent. + * The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns an object mapping the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults) */ @@ -39970,9 +39985,9 @@ type ImageOrientation = "flipY" | "from-image" | "none"; type ImageSmoothingQuality = "high" | "low" | "medium"; type InsertPosition = "afterbegin" | "afterend" | "beforebegin" | "beforeend"; type IterationCompositeOperation = "accumulate" | "replace"; -type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki"; +type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki"; type KeyType = "private" | "public" | "secret"; -type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; +type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; type LatencyMode = "quality" | "realtime"; type LineAlignSetting = "center" | "end" | "start"; type LockMode = "exclusive" | "shared"; diff --git a/baselines/ts5.6/serviceworker.generated.d.ts b/baselines/ts5.6/serviceworker.generated.d.ts index 72e9bdb2a..aa9d2a301 100644 --- a/baselines/ts5.6/serviceworker.generated.d.ts +++ b/baselines/ts5.6/serviceworker.generated.d.ts @@ -352,6 +352,8 @@ interface JsonWebKey { n?: string; oth?: RsaOtherPrimesInfo[]; p?: string; + priv?: string; + pub?: string; q?: string; qi?: string; use?: string; @@ -11685,9 +11687,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict"; type IDBTransactionMode = "readonly" | "readwrite" | "versionchange"; type ImageOrientation = "flipY" | "from-image" | "none"; type ImageSmoothingQuality = "high" | "low" | "medium"; -type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki"; +type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki"; type KeyType = "private" | "public" | "secret"; -type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; +type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; type LockMode = "exclusive" | "shared"; type MediaDecodingType = "file" | "media-source" | "webrtc"; type MediaEncodingType = "record" | "webrtc"; diff --git a/baselines/ts5.6/sharedworker.generated.d.ts b/baselines/ts5.6/sharedworker.generated.d.ts index 9a1f96ea3..2a1e5f166 100644 --- a/baselines/ts5.6/sharedworker.generated.d.ts +++ b/baselines/ts5.6/sharedworker.generated.d.ts @@ -296,6 +296,8 @@ interface JsonWebKey { n?: string; oth?: RsaOtherPrimesInfo[]; p?: string; + priv?: string; + pub?: string; q?: string; qi?: string; use?: string; @@ -11370,9 +11372,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict"; type IDBTransactionMode = "readonly" | "readwrite" | "versionchange"; type ImageOrientation = "flipY" | "from-image" | "none"; type ImageSmoothingQuality = "high" | "low" | "medium"; -type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki"; +type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki"; type KeyType = "private" | "public" | "secret"; -type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; +type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; type LockMode = "exclusive" | "shared"; type MediaDecodingType = "file" | "media-source" | "webrtc"; type MediaEncodingType = "record" | "webrtc"; diff --git a/baselines/ts5.6/webworker.generated.d.ts b/baselines/ts5.6/webworker.generated.d.ts index d49387846..56125ef63 100644 --- a/baselines/ts5.6/webworker.generated.d.ts +++ b/baselines/ts5.6/webworker.generated.d.ts @@ -456,6 +456,8 @@ interface JsonWebKey { n?: string; oth?: RsaOtherPrimesInfo[]; p?: string; + priv?: string; + pub?: string; q?: string; qi?: string; use?: string; @@ -13351,9 +13353,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict"; type IDBTransactionMode = "readonly" | "readwrite" | "versionchange"; type ImageOrientation = "flipY" | "from-image" | "none"; type ImageSmoothingQuality = "high" | "low" | "medium"; -type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki"; +type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki"; type KeyType = "private" | "public" | "secret"; -type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; +type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; type LatencyMode = "quality" | "realtime"; type LockMode = "exclusive" | "shared"; type MediaDecodingType = "file" | "media-source" | "webrtc"; diff --git a/baselines/webworker.generated.d.ts b/baselines/webworker.generated.d.ts index 00b4c606b..197c393c5 100644 --- a/baselines/webworker.generated.d.ts +++ b/baselines/webworker.generated.d.ts @@ -456,6 +456,8 @@ interface JsonWebKey { n?: string; oth?: RsaOtherPrimesInfo[]; p?: string; + priv?: string; + pub?: string; q?: string; qi?: string; use?: string; @@ -13351,9 +13353,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict"; type IDBTransactionMode = "readonly" | "readwrite" | "versionchange"; type ImageOrientation = "flipY" | "from-image" | "none"; type ImageSmoothingQuality = "high" | "low" | "medium"; -type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki"; +type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki"; type KeyType = "private" | "public" | "secret"; -type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; +type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey"; type LatencyMode = "quality" | "realtime"; type LockMode = "exclusive" | "shared"; type MediaDecodingType = "file" | "media-source" | "webrtc"; diff --git a/inputfiles/mdn b/inputfiles/mdn index 07cc896ae..3e1f24c70 160000 --- a/inputfiles/mdn +++ b/inputfiles/mdn @@ -1 +1 @@ -Subproject commit 07cc896aee614b6af47546d95ac82c7e8471b448 +Subproject commit 3e1f24c70df1a6f5a76e843369b404ecab19e931 diff --git a/package-lock.json b/package-lock.json index 6d52ec82c..fa3b85116 100644 --- a/package-lock.json +++ b/package-lock.json @@ -396,9 +396,9 @@ } }, "node_modules/@mdn/browser-compat-data": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-7.1.0.tgz", - "integrity": "sha512-xEgsAGfEDa95aXtafVFQZ+KlP+MaUWwwN2thfOUfoMwM9m9P8DFmcMuJg6h2QwTg/Qpy31GjPIGbBfEilxqjOQ==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-7.1.3.tgz", + "integrity": "sha512-SvGWt5qNLSQ3ykOnQi9GyFGYPkKDVQCkfb02DEKt5v5A6tdwsfUv9ZNssM1hAxNJ3Ncuzg3IoMjuXJhlqnoxuw==", "dev": true, "license": "CC0-1.0" }, @@ -1038,9 +1038,9 @@ } }, "node_modules/@webref/css": { - "version": "6.23.7", - "resolved": "https://registry.npmjs.org/@webref/css/-/css-6.23.7.tgz", - "integrity": "sha512-9ygF88/BhW03J1NEyNykuufCBdj1QCyLcf4I3SLsBW40ARilMM7cPnToJSRW8IEiiFiMgsX6gi3ucTZLspus6w==", + "version": "6.23.9", + "resolved": "https://registry.npmjs.org/@webref/css/-/css-6.23.9.tgz", + "integrity": "sha512-nuMHvJ0Mh+a2b449WL+vlv85lJCsqO/702pmJ/fEf5GfttMZqJJfkto5X3KAcYrOsS837NPloXJ3KacNXl9xRg==", "dev": true, "license": "MIT", "peerDependencies": { @@ -1062,9 +1062,9 @@ "license": "MIT" }, "node_modules/@webref/idl": { - "version": "3.66.2", - "resolved": "https://registry.npmjs.org/@webref/idl/-/idl-3.66.2.tgz", - "integrity": "sha512-vCsirNmxN5HSUINU2Ea/v3RqUxBiXP8AezXUI6X0fYhKr89SUgkzjXj8bJFCx7S7nKUMjAR4KZDYEDv6nnQh9g==", + "version": "3.67.0", + "resolved": "https://registry.npmjs.org/@webref/idl/-/idl-3.67.0.tgz", + "integrity": "sha512-evjCa8eyVG1qjzceKcVMWnsGy4iEf7bQbkkfx7O9aJvyng93tlCHgThezh5pa1KZFb0MUPEfe0+Q4rGLuNHNvw==", "dev": true, "license": "MIT", "peerDependencies": {