Skip to content

Commit

Permalink
🤖 Update core dependencies (#1800)
Browse files Browse the repository at this point in the history
Co-authored-by: saschanaz <saschanaz@users.noreply.github.com>
  • Loading branch information
typescript-bot and saschanaz authored Sep 6, 2024
1 parent e342c0e commit 739c7c6
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 86 deletions.
12 changes: 6 additions & 6 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16978,8 +16978,8 @@ declare var PaymentMethodChangeEvent: {

interface PaymentRequestEventMap {
"paymentmethodchange": PaymentMethodChangeEvent;
"shippingaddresschange": Event;
"shippingoptionchange": Event;
"shippingaddresschange": PaymentRequestUpdateEvent;
"shippingoptionchange": PaymentRequestUpdateEvent;
}

/**
Expand All @@ -16998,13 +16998,13 @@ interface PaymentRequest extends EventTarget {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingaddresschange_event)
*/
onshippingaddresschange: ((this: PaymentRequest, ev: Event) => any) | null;
onshippingaddresschange: ((this: PaymentRequest, ev: PaymentRequestUpdateEvent) => any) | null;
/**
* @deprecated
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingoptionchange_event)
*/
onshippingoptionchange: ((this: PaymentRequest, ev: Event) => any) | null;
onshippingoptionchange: ((this: PaymentRequest, ev: PaymentRequestUpdateEvent) => any) | null;
/**
* @deprecated
*
Expand Down Expand Up @@ -17057,7 +17057,7 @@ declare var PaymentRequestUpdateEvent: {
};

interface PaymentResponseEventMap {
"payerdetailchange": Event;
"payerdetailchange": PaymentRequestUpdateEvent;
}

/**
Expand All @@ -17072,7 +17072,7 @@ interface PaymentResponse extends EventTarget {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/methodName) */
readonly methodName: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerdetailchange_event) */
onpayerdetailchange: ((this: PaymentResponse, ev: Event) => any) | null;
onpayerdetailchange: ((this: PaymentResponse, ev: PaymentRequestUpdateEvent) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerEmail) */
readonly payerEmail: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerName) */
Expand Down
12 changes: 6 additions & 6 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16978,8 +16978,8 @@ declare var PaymentMethodChangeEvent: {

interface PaymentRequestEventMap {
"paymentmethodchange": PaymentMethodChangeEvent;
"shippingaddresschange": Event;
"shippingoptionchange": Event;
"shippingaddresschange": PaymentRequestUpdateEvent;
"shippingoptionchange": PaymentRequestUpdateEvent;
}

/**
Expand All @@ -16998,13 +16998,13 @@ interface PaymentRequest extends EventTarget {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingaddresschange_event)
*/
onshippingaddresschange: ((this: PaymentRequest, ev: Event) => any) | null;
onshippingaddresschange: ((this: PaymentRequest, ev: PaymentRequestUpdateEvent) => any) | null;
/**
* @deprecated
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingoptionchange_event)
*/
onshippingoptionchange: ((this: PaymentRequest, ev: Event) => any) | null;
onshippingoptionchange: ((this: PaymentRequest, ev: PaymentRequestUpdateEvent) => any) | null;
/**
* @deprecated
*
Expand Down Expand Up @@ -17057,7 +17057,7 @@ declare var PaymentRequestUpdateEvent: {
};

interface PaymentResponseEventMap {
"payerdetailchange": Event;
"payerdetailchange": PaymentRequestUpdateEvent;
}

/**
Expand All @@ -17072,7 +17072,7 @@ interface PaymentResponse extends EventTarget {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/methodName) */
readonly methodName: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerdetailchange_event) */
onpayerdetailchange: ((this: PaymentResponse, ev: Event) => any) | null;
onpayerdetailchange: ((this: PaymentResponse, ev: PaymentRequestUpdateEvent) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerEmail) */
readonly payerEmail: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerName) */
Expand Down
85 changes: 11 additions & 74 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 739c7c6

Please sign in to comment.