Skip to content

Commit fb45c8f

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 689f1bb commit fb45c8f

14 files changed

+109
-46
lines changed

baselines/dom.generated.d.ts

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -922,6 +922,8 @@ interface JsonWebKey {
922922
n?: string;
923923
oth?: RsaOtherPrimesInfo[];
924924
p?: string;
925+
priv?: string;
926+
pub?: string;
925927
q?: string;
926928
qi?: string;
927929
use?: string;
@@ -10037,6 +10039,19 @@ declare var DeviceOrientationEvent: {
1003710039
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
1003810040
};
1003910041

10042+
/** Available only in secure contexts. */
10043+
interface DigitalCredential extends Credential {
10044+
readonly data: any;
10045+
readonly protocol: string;
10046+
toJSON(): any;
10047+
}
10048+
10049+
declare var DigitalCredential: {
10050+
prototype: DigitalCredential;
10051+
new(): DigitalCredential;
10052+
userAgentAllowsProtocol(protocol: string): boolean;
10053+
};
10054+
1004010055
interface DocumentEventMap extends GlobalEventHandlersEventMap {
1004110056
"DOMContentLoaded": Event;
1004210057
"fullscreenchange": Event;
@@ -17159,7 +17174,7 @@ interface HTMLTableCellElement extends HTMLElement {
1715917174
*/
1716017175
chOff: string;
1716117176
/**
17162-
* 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.
17177+
* 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.
1716317178
*
1716417179
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
1716517180
*/
@@ -17180,7 +17195,7 @@ interface HTMLTableCellElement extends HTMLElement {
1718017195
*/
1718117196
noWrap: boolean;
1718217197
/**
17183-
* 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.
17198+
* 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.
1718417199
*
1718517200
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
1718617201
*/
@@ -17239,7 +17254,7 @@ interface HTMLTableColElement extends HTMLElement {
1723917254
*/
1724017255
chOff: string;
1724117256
/**
17242-
* 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.
17257+
* 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.
1724317258
*
1724417259
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
1724517260
*/
@@ -24576,7 +24591,7 @@ interface PublicKeyCredential extends Credential {
2457624591
*/
2457724592
readonly response: AuthenticatorResponse;
2457824593
/**
24579-
* 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.
24594+
* 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.
2458024595
*
2458124596
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
2458224597
*/
@@ -39970,9 +39985,9 @@ type ImageOrientation = "flipY" | "from-image" | "none";
3997039985
type ImageSmoothingQuality = "high" | "low" | "medium";
3997139986
type InsertPosition = "afterbegin" | "afterend" | "beforebegin" | "beforeend";
3997239987
type IterationCompositeOperation = "accumulate" | "replace";
39973-
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
39988+
type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki";
3997439989
type KeyType = "private" | "public" | "secret";
39975-
type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
39990+
type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
3997639991
type LatencyMode = "quality" | "realtime";
3997739992
type LineAlignSetting = "center" | "end" | "start";
3997839993
type LockMode = "exclusive" | "shared";

baselines/serviceworker.generated.d.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,8 @@ interface JsonWebKey {
352352
n?: string;
353353
oth?: RsaOtherPrimesInfo[];
354354
p?: string;
355+
priv?: string;
356+
pub?: string;
355357
q?: string;
356358
qi?: string;
357359
use?: string;
@@ -11685,9 +11687,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict";
1168511687
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
1168611688
type ImageOrientation = "flipY" | "from-image" | "none";
1168711689
type ImageSmoothingQuality = "high" | "low" | "medium";
11688-
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
11690+
type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki";
1168911691
type KeyType = "private" | "public" | "secret";
11690-
type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
11692+
type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
1169111693
type LockMode = "exclusive" | "shared";
1169211694
type MediaDecodingType = "file" | "media-source" | "webrtc";
1169311695
type MediaEncodingType = "record" | "webrtc";

baselines/sharedworker.generated.d.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,8 @@ interface JsonWebKey {
296296
n?: string;
297297
oth?: RsaOtherPrimesInfo[];
298298
p?: string;
299+
priv?: string;
300+
pub?: string;
299301
q?: string;
300302
qi?: string;
301303
use?: string;
@@ -11370,9 +11372,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict";
1137011372
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
1137111373
type ImageOrientation = "flipY" | "from-image" | "none";
1137211374
type ImageSmoothingQuality = "high" | "low" | "medium";
11373-
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
11375+
type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki";
1137411376
type KeyType = "private" | "public" | "secret";
11375-
type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
11377+
type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
1137611378
type LockMode = "exclusive" | "shared";
1137711379
type MediaDecodingType = "file" | "media-source" | "webrtc";
1137811380
type MediaEncodingType = "record" | "webrtc";

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

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -922,6 +922,8 @@ interface JsonWebKey {
922922
n?: string;
923923
oth?: RsaOtherPrimesInfo[];
924924
p?: string;
925+
priv?: string;
926+
pub?: string;
925927
q?: string;
926928
qi?: string;
927929
use?: string;
@@ -10029,6 +10031,19 @@ declare var DeviceOrientationEvent: {
1002910031
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
1003010032
};
1003110033

10034+
/** Available only in secure contexts. */
10035+
interface DigitalCredential extends Credential {
10036+
readonly data: any;
10037+
readonly protocol: string;
10038+
toJSON(): any;
10039+
}
10040+
10041+
declare var DigitalCredential: {
10042+
prototype: DigitalCredential;
10043+
new(): DigitalCredential;
10044+
userAgentAllowsProtocol(protocol: string): boolean;
10045+
};
10046+
1003210047
interface DocumentEventMap extends GlobalEventHandlersEventMap {
1003310048
"DOMContentLoaded": Event;
1003410049
"fullscreenchange": Event;
@@ -17138,7 +17153,7 @@ interface HTMLTableCellElement extends HTMLElement {
1713817153
*/
1713917154
chOff: string;
1714017155
/**
17141-
* 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.
17156+
* 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.
1714217157
*
1714317158
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
1714417159
*/
@@ -17159,7 +17174,7 @@ interface HTMLTableCellElement extends HTMLElement {
1715917174
*/
1716017175
noWrap: boolean;
1716117176
/**
17162-
* 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.
17177+
* 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.
1716317178
*
1716417179
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
1716517180
*/
@@ -17218,7 +17233,7 @@ interface HTMLTableColElement extends HTMLElement {
1721817233
*/
1721917234
chOff: string;
1722017235
/**
17221-
* 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.
17236+
* 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.
1722217237
*
1722317238
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
1722417239
*/
@@ -24555,7 +24570,7 @@ interface PublicKeyCredential extends Credential {
2455524570
*/
2455624571
readonly response: AuthenticatorResponse;
2455724572
/**
24558-
* 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.
24573+
* 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.
2455924574
*
2456024575
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
2456124576
*/
@@ -39947,9 +39962,9 @@ type ImageOrientation = "flipY" | "from-image" | "none";
3994739962
type ImageSmoothingQuality = "high" | "low" | "medium";
3994839963
type InsertPosition = "afterbegin" | "afterend" | "beforebegin" | "beforeend";
3994939964
type IterationCompositeOperation = "accumulate" | "replace";
39950-
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
39965+
type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki";
3995139966
type KeyType = "private" | "public" | "secret";
39952-
type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
39967+
type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
3995339968
type LatencyMode = "quality" | "realtime";
3995439969
type LineAlignSetting = "center" | "end" | "start";
3995539970
type LockMode = "exclusive" | "shared";

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,8 @@ interface JsonWebKey {
352352
n?: string;
353353
oth?: RsaOtherPrimesInfo[];
354354
p?: string;
355+
priv?: string;
356+
pub?: string;
355357
q?: string;
356358
qi?: string;
357359
use?: string;
@@ -11685,9 +11687,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict";
1168511687
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
1168611688
type ImageOrientation = "flipY" | "from-image" | "none";
1168711689
type ImageSmoothingQuality = "high" | "low" | "medium";
11688-
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
11690+
type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki";
1168911691
type KeyType = "private" | "public" | "secret";
11690-
type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
11692+
type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
1169111693
type LockMode = "exclusive" | "shared";
1169211694
type MediaDecodingType = "file" | "media-source" | "webrtc";
1169311695
type MediaEncodingType = "record" | "webrtc";

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,8 @@ interface JsonWebKey {
296296
n?: string;
297297
oth?: RsaOtherPrimesInfo[];
298298
p?: string;
299+
priv?: string;
300+
pub?: string;
299301
q?: string;
300302
qi?: string;
301303
use?: string;
@@ -11370,9 +11372,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict";
1137011372
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
1137111373
type ImageOrientation = "flipY" | "from-image" | "none";
1137211374
type ImageSmoothingQuality = "high" | "low" | "medium";
11373-
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
11375+
type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki";
1137411376
type KeyType = "private" | "public" | "secret";
11375-
type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
11377+
type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
1137611378
type LockMode = "exclusive" | "shared";
1137711379
type MediaDecodingType = "file" | "media-source" | "webrtc";
1137811380
type MediaEncodingType = "record" | "webrtc";

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,8 @@ interface JsonWebKey {
456456
n?: string;
457457
oth?: RsaOtherPrimesInfo[];
458458
p?: string;
459+
priv?: string;
460+
pub?: string;
459461
q?: string;
460462
qi?: string;
461463
use?: string;
@@ -13351,9 +13353,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict";
1335113353
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
1335213354
type ImageOrientation = "flipY" | "from-image" | "none";
1335313355
type ImageSmoothingQuality = "high" | "low" | "medium";
13354-
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
13356+
type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki";
1335513357
type KeyType = "private" | "public" | "secret";
13356-
type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
13358+
type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
1335713359
type LatencyMode = "quality" | "realtime";
1335813360
type LockMode = "exclusive" | "shared";
1335913361
type MediaDecodingType = "file" | "media-source" | "webrtc";

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

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -922,6 +922,8 @@ interface JsonWebKey {
922922
n?: string;
923923
oth?: RsaOtherPrimesInfo[];
924924
p?: string;
925+
priv?: string;
926+
pub?: string;
925927
q?: string;
926928
qi?: string;
927929
use?: string;
@@ -10037,6 +10039,19 @@ declare var DeviceOrientationEvent: {
1003710039
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
1003810040
};
1003910041

10042+
/** Available only in secure contexts. */
10043+
interface DigitalCredential extends Credential {
10044+
readonly data: any;
10045+
readonly protocol: string;
10046+
toJSON(): any;
10047+
}
10048+
10049+
declare var DigitalCredential: {
10050+
prototype: DigitalCredential;
10051+
new(): DigitalCredential;
10052+
userAgentAllowsProtocol(protocol: string): boolean;
10053+
};
10054+
1004010055
interface DocumentEventMap extends GlobalEventHandlersEventMap {
1004110056
"DOMContentLoaded": Event;
1004210057
"fullscreenchange": Event;
@@ -17159,7 +17174,7 @@ interface HTMLTableCellElement extends HTMLElement {
1715917174
*/
1716017175
chOff: string;
1716117176
/**
17162-
* 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.
17177+
* 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.
1716317178
*
1716417179
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
1716517180
*/
@@ -17180,7 +17195,7 @@ interface HTMLTableCellElement extends HTMLElement {
1718017195
*/
1718117196
noWrap: boolean;
1718217197
/**
17183-
* 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.
17198+
* 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.
1718417199
*
1718517200
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
1718617201
*/
@@ -17239,7 +17254,7 @@ interface HTMLTableColElement extends HTMLElement {
1723917254
*/
1724017255
chOff: string;
1724117256
/**
17242-
* 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.
17257+
* 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.
1724317258
*
1724417259
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
1724517260
*/
@@ -24576,7 +24591,7 @@ interface PublicKeyCredential extends Credential {
2457624591
*/
2457724592
readonly response: AuthenticatorResponse;
2457824593
/**
24579-
* 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.
24594+
* 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.
2458024595
*
2458124596
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
2458224597
*/
@@ -39970,9 +39985,9 @@ type ImageOrientation = "flipY" | "from-image" | "none";
3997039985
type ImageSmoothingQuality = "high" | "low" | "medium";
3997139986
type InsertPosition = "afterbegin" | "afterend" | "beforebegin" | "beforeend";
3997239987
type IterationCompositeOperation = "accumulate" | "replace";
39973-
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
39988+
type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki";
3997439989
type KeyType = "private" | "public" | "secret";
39975-
type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
39990+
type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
3997639991
type LatencyMode = "quality" | "realtime";
3997739992
type LineAlignSetting = "center" | "end" | "start";
3997839993
type LockMode = "exclusive" | "shared";

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,8 @@ interface JsonWebKey {
352352
n?: string;
353353
oth?: RsaOtherPrimesInfo[];
354354
p?: string;
355+
priv?: string;
356+
pub?: string;
355357
q?: string;
356358
qi?: string;
357359
use?: string;
@@ -11685,9 +11687,9 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict";
1168511687
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
1168611688
type ImageOrientation = "flipY" | "from-image" | "none";
1168711689
type ImageSmoothingQuality = "high" | "low" | "medium";
11688-
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
11690+
type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-private" | "raw-public" | "raw-secret" | "raw-seed" | "spki";
1168911691
type KeyType = "private" | "public" | "secret";
11690-
type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
11692+
type KeyUsage = "decapsulateBits" | "decapsulateKey" | "decrypt" | "deriveBits" | "deriveKey" | "encapsulateBits" | "encapsulateKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
1169111693
type LockMode = "exclusive" | "shared";
1169211694
type MediaDecodingType = "file" | "media-source" | "webrtc";
1169311695
type MediaEncodingType = "record" | "webrtc";

0 commit comments

Comments
 (0)