Skip to content

Commit 99f2054

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent c04927c commit 99f2054

File tree

5 files changed

+40
-13
lines changed

5 files changed

+40
-13
lines changed

baselines/dom.generated.d.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ interface AuthenticationExtensionsClientOutputs {
203203
credProps?: CredentialPropertiesOutput;
204204
hmacCreateSecret?: boolean;
205205
largeBlob?: AuthenticationExtensionsLargeBlobOutputs;
206+
payment?: AuthenticationExtensionsPaymentOutputs;
206207
prf?: AuthenticationExtensionsPRFOutputs;
207208
}
208209

@@ -249,6 +250,10 @@ interface AuthenticationExtensionsPRFValuesJSON {
249250
second?: Base64URLString;
250251
}
251252

253+
interface AuthenticationExtensionsPaymentOutputs {
254+
browserBoundSignature?: BrowserBoundSignature;
255+
}
256+
252257
interface AuthenticatorSelectionCriteria {
253258
authenticatorAttachment?: AuthenticatorAttachment;
254259
requireResidentKey?: boolean;
@@ -278,6 +283,10 @@ interface BlobPropertyBag {
278283
type?: string;
279284
}
280285

286+
interface BrowserBoundSignature {
287+
signature: ArrayBuffer;
288+
}
289+
281290
interface CSSMatrixComponentOptions {
282291
is2D?: boolean;
283292
}
@@ -8656,7 +8665,7 @@ interface DOMImplementation {
86568665
*
86578666
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
86588667
*/
8659-
createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType;
8668+
createDocumentType(name: string, publicId: string, systemId: string): DocumentType;
86608669
/**
86618670
* The **`DOMImplementation.createHTMLDocument()`** method creates a new HTML Document.
86628671
*

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

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ interface AuthenticationExtensionsClientOutputs {
203203
credProps?: CredentialPropertiesOutput;
204204
hmacCreateSecret?: boolean;
205205
largeBlob?: AuthenticationExtensionsLargeBlobOutputs;
206+
payment?: AuthenticationExtensionsPaymentOutputs;
206207
prf?: AuthenticationExtensionsPRFOutputs;
207208
}
208209

@@ -249,6 +250,10 @@ interface AuthenticationExtensionsPRFValuesJSON {
249250
second?: Base64URLString;
250251
}
251252

253+
interface AuthenticationExtensionsPaymentOutputs {
254+
browserBoundSignature?: BrowserBoundSignature;
255+
}
256+
252257
interface AuthenticatorSelectionCriteria {
253258
authenticatorAttachment?: AuthenticatorAttachment;
254259
requireResidentKey?: boolean;
@@ -278,6 +283,10 @@ interface BlobPropertyBag {
278283
type?: string;
279284
}
280285

286+
interface BrowserBoundSignature {
287+
signature: ArrayBuffer;
288+
}
289+
281290
interface CSSMatrixComponentOptions {
282291
is2D?: boolean;
283292
}
@@ -8649,7 +8658,7 @@ interface DOMImplementation {
86498658
*
86508659
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
86518660
*/
8652-
createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType;
8661+
createDocumentType(name: string, publicId: string, systemId: string): DocumentType;
86538662
/**
86548663
* The **`DOMImplementation.createHTMLDocument()`** method creates a new HTML Document.
86558664
*

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

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ interface AuthenticationExtensionsClientOutputs {
203203
credProps?: CredentialPropertiesOutput;
204204
hmacCreateSecret?: boolean;
205205
largeBlob?: AuthenticationExtensionsLargeBlobOutputs;
206+
payment?: AuthenticationExtensionsPaymentOutputs;
206207
prf?: AuthenticationExtensionsPRFOutputs;
207208
}
208209

@@ -249,6 +250,10 @@ interface AuthenticationExtensionsPRFValuesJSON {
249250
second?: Base64URLString;
250251
}
251252

253+
interface AuthenticationExtensionsPaymentOutputs {
254+
browserBoundSignature?: BrowserBoundSignature;
255+
}
256+
252257
interface AuthenticatorSelectionCriteria {
253258
authenticatorAttachment?: AuthenticatorAttachment;
254259
requireResidentKey?: boolean;
@@ -278,6 +283,10 @@ interface BlobPropertyBag {
278283
type?: string;
279284
}
280285

286+
interface BrowserBoundSignature {
287+
signature: ArrayBuffer;
288+
}
289+
281290
interface CSSMatrixComponentOptions {
282291
is2D?: boolean;
283292
}
@@ -8656,7 +8665,7 @@ interface DOMImplementation {
86568665
*
86578666
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
86588667
*/
8659-
createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType;
8668+
createDocumentType(name: string, publicId: string, systemId: string): DocumentType;
86608669
/**
86618670
* The **`DOMImplementation.createHTMLDocument()`** method creates a new HTML Document.
86628671
*

inputfiles/mdn

Submodule mdn updated 385 files

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)