@openbox/shared-types 0.1.88 → 0.1.90

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,6 +5,7 @@ export interface CustomerBranchesCreateSingleRequest {
5
5
  default: boolean;
6
6
  address1: string;
7
7
  address2?: string;
8
+ zipcode?: string;
8
9
  country: number;
9
10
  state: number;
10
11
  city: number;
@@ -11,6 +11,7 @@ export interface CustomerBranchesMany {
11
11
  };
12
12
  address1: string;
13
13
  address2: string;
14
+ zipcode: string;
14
15
  default: boolean;
15
16
  city: SystemCityMany;
16
17
  country: SystemCountryMany;
@@ -9,6 +9,7 @@ export interface CustomerBranchesSingle {
9
9
  };
10
10
  address1: string;
11
11
  address2: string;
12
+ zipcode: string;
12
13
  default: boolean;
13
14
  city: SystemCityMany;
14
15
  country: SystemCountryMany;
@@ -6,6 +6,7 @@ export interface CustomerBranchesUpdateManyRequest {
6
6
  default?: boolean;
7
7
  address1?: string;
8
8
  address2?: string;
9
+ zipcode?: string;
9
10
  country?: string;
10
11
  state?: string;
11
12
  city?: string;
@@ -5,6 +5,7 @@ export interface CustomerBranchesUpdateSingle {
5
5
  default?: boolean;
6
6
  address1?: string;
7
7
  address2?: string;
8
+ zipcode?: string;
8
9
  country?: string;
9
10
  state?: string;
10
11
  city?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.1.88",
3
+ "version": "0.1.90",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -5,6 +5,7 @@ export interface CustomerBranchesCreateSingleRequest {
5
5
  default: boolean
6
6
  address1: string
7
7
  address2?: string
8
+ zipcode?: string
8
9
  country: number
9
10
  state: number
10
11
  city: number
@@ -9,6 +9,7 @@ export interface CustomerBranchesMany {
9
9
  contactInfo: { phone: string[]; emails: [] }
10
10
  address1: string
11
11
  address2: string
12
+ zipcode: string
12
13
  default: boolean
13
14
  city: SystemCityMany
14
15
  country: SystemCountryMany
@@ -7,6 +7,7 @@ export interface CustomerBranchesSingle {
7
7
  contactInfo: { phone: string[]; emails: [] }
8
8
  address1: string
9
9
  address2: string
10
+ zipcode: string
10
11
  default: boolean
11
12
  city: SystemCityMany
12
13
  country: SystemCountryMany
@@ -6,6 +6,7 @@ export interface CustomerBranchesUpdateManyRequest {
6
6
  default?: boolean
7
7
  address1?: string
8
8
  address2?: string
9
+ zipcode?: string
9
10
  country?: string
10
11
  state?: string
11
12
  city?: string
@@ -5,6 +5,7 @@ export interface CustomerBranchesUpdateSingle {
5
5
  default?: boolean
6
6
  address1?: string
7
7
  address2?: string
8
+ zipcode?: string
8
9
  country?: string
9
10
  state?: string
10
11
  city?: string