@openbox/shared-types 0.1.81 → 0.1.82

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