@betterstore/sdk 0.3.28 → 0.3.30

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @betterstore/sdk
2
2
 
3
+ ## 0.3.30
4
+
5
+ ### Patch Changes
6
+
7
+ - adding country code prop
8
+
9
+ ## 0.3.29
10
+
11
+ ### Patch Changes
12
+
13
+ - bug fix
14
+
3
15
  ## 0.3.28
4
16
 
5
17
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -6,6 +6,7 @@ type Address = {
6
6
  city: string;
7
7
  state?: string;
8
8
  country: string;
9
+ countryCode: string;
9
10
  zipCode: string;
10
11
  phone: string;
11
12
  };
@@ -112,7 +113,6 @@ interface CheckoutUpdateParams {
112
113
  shipping?: number;
113
114
  shipmentInfo?: {
114
115
  provider: string;
115
- price: number;
116
116
  name?: string;
117
117
  pickupPointId?: string;
118
118
  trackingNumber?: string;
package/dist/index.d.ts CHANGED
@@ -6,6 +6,7 @@ type Address = {
6
6
  city: string;
7
7
  state?: string;
8
8
  country: string;
9
+ countryCode: string;
9
10
  zipCode: string;
10
11
  phone: string;
11
12
  };
@@ -112,7 +113,6 @@ interface CheckoutUpdateParams {
112
113
  shipping?: number;
113
114
  shipmentInfo?: {
114
115
  provider: string;
115
- price: number;
116
116
  name?: string;
117
117
  pickupPointId?: string;
118
118
  trackingNumber?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@betterstore/sdk",
3
- "version": "0.3.28",
3
+ "version": "0.3.30",
4
4
  "description": "E-commerce for Developers",
5
5
  "private": false,
6
6
  "publishConfig": {