@bigcommerce/checkout-sdk 1.291.1 → 1.292.1
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/CHANGELOG.md +14 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.js.map +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-button.umd.js.map +1 -1
- package/dist/checkout-sdk.d.ts +2 -1
- 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/dist/internal-mappers.d.ts +1 -0
- package/docs/interfaces/Customer.md +7 -0
- package/docs/interfaces/StripeUPECustomerInitializeOptions.md +2 -2
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -4442,6 +4442,7 @@ declare interface Customer {
|
|
|
4442
4442
|
* Note: You need to enable "Prompt existing accounts to sign in" in your Checkout Settings.
|
|
4443
4443
|
*/
|
|
4444
4444
|
shouldEncourageSignIn: boolean;
|
|
4445
|
+
isStripeLinkAuthenticated?: boolean;
|
|
4445
4446
|
customerGroup?: CustomerGroup;
|
|
4446
4447
|
}
|
|
4447
4448
|
|
|
@@ -7107,7 +7108,7 @@ declare interface StripeUPECustomerInitializeOptions {
|
|
|
7107
7108
|
*/
|
|
7108
7109
|
getStyles?(): {
|
|
7109
7110
|
[key: string]: string;
|
|
7110
|
-
};
|
|
7111
|
+
} | undefined;
|
|
7111
7112
|
}
|
|
7112
7113
|
|
|
7113
7114
|
/**
|