@openbox/shared-types 0.1.91 → 0.1.92

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.
@@ -6,7 +6,7 @@ export interface CustomerBranchesUpdateSingleRequest {
6
6
  address1?: string;
7
7
  address2?: string;
8
8
  zipcode?: string;
9
- country?: string;
10
- state?: string;
11
- city?: string;
9
+ country?: number;
10
+ state?: number;
11
+ city?: number;
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.1.91",
3
+ "version": "0.1.92",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -6,7 +6,7 @@ export interface CustomerBranchesUpdateSingleRequest {
6
6
  address1?: string
7
7
  address2?: string
8
8
  zipcode?: string
9
- country?: string
10
- state?: string
11
- city?: string
9
+ country?: number
10
+ state?: number
11
+ city?: number
12
12
  }