@bigcommerce/checkout-sdk 1.301.0 → 1.302.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/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 +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/StripeUPEShippingInitializeOptions.md +20 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -7270,6 +7270,12 @@ declare interface StripeUPEShippingInitializeOptions {
|
|
|
7270
7270
|
getStyles?(): {
|
|
7271
7271
|
[key: string]: string;
|
|
7272
7272
|
};
|
|
7273
|
+
/**
|
|
7274
|
+
* get the state code needed for shipping stripe element
|
|
7275
|
+
* @param country
|
|
7276
|
+
* @param state
|
|
7277
|
+
*/
|
|
7278
|
+
getStripeState(country: string, state: string): string;
|
|
7273
7279
|
}
|
|
7274
7280
|
|
|
7275
7281
|
/**
|