@bigcommerce/checkout-sdk 1.590.0 → 1.591.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/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +6 -0
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.js.map +1 -1
- package/dist/checkout-sdk.umd.js +1 -1
- package/dist/checkout-sdk.umd.js.map +1 -1
- package/docs/interfaces/PayPalCommerceFastlaneShippingInitializeOptions.md +23 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { CardClassSelectors } from '@square/web-payments-sdk-types';
|
|
|
11
11
|
import { CardInstrument as CardInstrument_2 } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
12
12
|
import { CartSource } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
13
13
|
import { CreditCardPaymentInitializeOptions } from '@bigcommerce/checkout-sdk/credit-card-integration';
|
|
14
|
+
import { CustomerAddress as CustomerAddress_2 } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
14
15
|
import { HostedForm as HostedFormInterface } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
15
16
|
import { HostedFormOptions as HostedFormOptions_2 } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
16
17
|
import { HostedInstrument as HostedInstrument_2 } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
@@ -7143,6 +7144,11 @@ declare interface PayPalCommerceFastlaneShippingInitializeOptions {
|
|
|
7143
7144
|
* no matter what strategy was initialised first
|
|
7144
7145
|
*/
|
|
7145
7146
|
styles?: PayPalFastlaneStylesOption;
|
|
7147
|
+
/**
|
|
7148
|
+
* Is a callback that shows PayPal Fastlane popup with customer addresses
|
|
7149
|
+
* when get triggered
|
|
7150
|
+
*/
|
|
7151
|
+
onPayPalFastlaneAddressChange?: (showPayPalFastlaneAddressSelector: () => Promise<CustomerAddress_2 | undefined>) => void;
|
|
7146
7152
|
}
|
|
7147
7153
|
|
|
7148
7154
|
declare interface PayPalCommerceFieldsStyleOptions {
|