@betterstore/sdk 0.3.27 → 0.3.29
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 +12 -0
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -110,10 +110,10 @@ interface CheckoutUpdateParams {
|
|
|
110
110
|
customerId?: string;
|
|
111
111
|
tax?: number;
|
|
112
112
|
shipping?: number;
|
|
113
|
-
|
|
113
|
+
shipmentInfo?: {
|
|
114
114
|
provider: string;
|
|
115
|
-
price: number;
|
|
116
115
|
name?: string;
|
|
116
|
+
pickupPointId?: string;
|
|
117
117
|
trackingNumber?: string;
|
|
118
118
|
trackingUrl?: string;
|
|
119
119
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -110,10 +110,10 @@ interface CheckoutUpdateParams {
|
|
|
110
110
|
customerId?: string;
|
|
111
111
|
tax?: number;
|
|
112
112
|
shipping?: number;
|
|
113
|
-
|
|
113
|
+
shipmentInfo?: {
|
|
114
114
|
provider: string;
|
|
115
|
-
price: number;
|
|
116
115
|
name?: string;
|
|
116
|
+
pickupPointId?: string;
|
|
117
117
|
trackingNumber?: string;
|
|
118
118
|
trackingUrl?: string;
|
|
119
119
|
};
|