@bigcommerce/checkout-sdk 1.395.4 → 1.396.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 +10 -0
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.umd.js +1 -1
- package/dist/internal-mappers.d.ts +10 -0
- package/docs/README.md +1 -0
- package/docs/interfaces/Checkout.md +7 -0
- package/docs/interfaces/Fee.md +50 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -2205,6 +2205,7 @@ declare interface Checkout {
|
|
|
2205
2205
|
updatedTime: string;
|
|
2206
2206
|
payments?: CheckoutPayment[];
|
|
2207
2207
|
channelId: number;
|
|
2208
|
+
fees: Fee[];
|
|
2208
2209
|
}
|
|
2209
2210
|
|
|
2210
2211
|
declare class CheckoutButtonErrorSelector {
|
|
@@ -4919,6 +4920,15 @@ declare enum ExtensionRegion {
|
|
|
4919
4920
|
ShippingShippingAddressFormAfter = "shipping.shippingAddressForm.after"
|
|
4920
4921
|
}
|
|
4921
4922
|
|
|
4923
|
+
declare interface Fee {
|
|
4924
|
+
id: string;
|
|
4925
|
+
type: string;
|
|
4926
|
+
name: string;
|
|
4927
|
+
displayName: string;
|
|
4928
|
+
cost: number;
|
|
4929
|
+
source: string;
|
|
4930
|
+
}
|
|
4931
|
+
|
|
4922
4932
|
declare interface FlashMessage {
|
|
4923
4933
|
type: FlashMessageType;
|
|
4924
4934
|
message: string;
|