@clickaroo/checkout-ui 1.2.0-beta → 1.2.1-beta

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.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React$1, { ReactNode } from 'react';
3
- import { LayoutObject, Appearance, StripeExpressCheckoutElementOptions } from '@stripe/stripe-js';
3
+ import { LayoutObject, Appearance, StripeExpressCheckoutElementOptions, ExpressPaymentType } from '@stripe/stripe-js';
4
4
  import { z } from 'zod';
5
5
  import { BrowserOptions } from '@sentry/react';
6
6
 
@@ -435,6 +435,7 @@ interface UseOrderSubmissionOptions {
435
435
  interface SubmitOrderOverrides {
436
436
  customerInfo?: Partial<CustomerInfo>;
437
437
  deliveryAddress?: Partial<DeliveryAddress>;
438
+ expressPaymentType?: ExpressPaymentType;
438
439
  }
439
440
  declare const useOrderSubmission: (options?: UseOrderSubmissionOptions) => {
440
441
  isSubmitting: boolean;