@stripe/stripe-js 5.5.0 → 5.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/pure.js +1 -1
- package/dist/pure.mjs +1 -1
- package/dist/stripe-js/checkout.d.mts +1 -3
- package/dist/stripe-js/checkout.d.ts +1 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/dist/pure.js
CHANGED
package/dist/pure.mjs
CHANGED
|
@@ -423,9 +423,7 @@ export type StripeCheckoutConfirmResult =
|
|
|
423
423
|
| {type: 'success'; success: StripeCheckoutSession}
|
|
424
424
|
| {type: 'error'; error: ConfirmError};
|
|
425
425
|
|
|
426
|
-
type RunServerUpdateFunction = (
|
|
427
|
-
session: StripeCheckoutSession
|
|
428
|
-
) => Promise<void>;
|
|
426
|
+
type RunServerUpdateFunction = () => Promise<unknown>;
|
|
429
427
|
export type StripeCheckoutRunServerUpdateResult =
|
|
430
428
|
| {type: 'success'; success: StripeCheckoutSession}
|
|
431
429
|
| {type: 'error'; error: AnyBuyerError};
|
|
@@ -423,9 +423,7 @@ export type StripeCheckoutConfirmResult =
|
|
|
423
423
|
| {type: 'success'; success: StripeCheckoutSession}
|
|
424
424
|
| {type: 'error'; error: ConfirmError};
|
|
425
425
|
|
|
426
|
-
type RunServerUpdateFunction = (
|
|
427
|
-
session: StripeCheckoutSession
|
|
428
|
-
) => Promise<void>;
|
|
426
|
+
type RunServerUpdateFunction = () => Promise<unknown>;
|
|
429
427
|
export type StripeCheckoutRunServerUpdateResult =
|
|
430
428
|
| {type: 'success'; success: StripeCheckoutSession}
|
|
431
429
|
| {type: 'error'; error: AnyBuyerError};
|