@betterstore/sdk 0.3.29 → 0.3.31

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.31
4
+
5
+ ### Patch Changes
6
+
7
+ - small tweak
8
+
9
+ ## 0.3.30
10
+
11
+ ### Patch Changes
12
+
13
+ - adding country code prop
14
+
3
15
  ## 0.3.29
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
  };
@@ -80,6 +81,7 @@ interface Product {
80
81
  type ShippingRate = ZasilkovnaRate;
81
82
  interface BaseRate {
82
83
  provider: string;
84
+ name: string;
83
85
  price: number;
84
86
  }
85
87
  interface ZasilkovnaRate extends BaseRate {
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
  };
@@ -80,6 +81,7 @@ interface Product {
80
81
  type ShippingRate = ZasilkovnaRate;
81
82
  interface BaseRate {
82
83
  provider: string;
84
+ name: string;
83
85
  price: number;
84
86
  }
85
87
  interface ZasilkovnaRate extends BaseRate {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@betterstore/sdk",
3
- "version": "0.3.29",
3
+ "version": "0.3.31",
4
4
  "description": "E-commerce for Developers",
5
5
  "private": false,
6
6
  "publishConfig": {