@getopenpay/openpay-js-react 0.1.18 → 0.1.20-alpha.c891c7b

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,3 +1,4 @@
1
+ import { ApplePayOption } from '@stripe/stripe-js/dist/stripe-js/elements/apple-pay';
1
2
  import { FC } from 'react';
2
3
  import { z } from 'zod';
3
4
 
@@ -188,6 +189,7 @@ export declare type PaymentRequestStartParams = {
188
189
  overridePaymentRequest?: {
189
190
  amount: Amount;
190
191
  pending: boolean;
192
+ stripeApplePay?: ApplePayOption;
191
193
  };
192
194
  };
193
195