@openbox/shared-types 0.5.35 → 0.5.36

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,4 +5,4 @@ module.exports = {
5
5
  'scope-case': [2, 'always', ['upper-case', 'lower-case']],
6
6
  'subject-case': [2, 'always', ['sentence-case', 'start-case', 'lower-case', 'upper-case']],
7
7
  },
8
- };
8
+ }
@@ -52,9 +52,9 @@ export type PartnersV1InvoicesCreateSingleRequestDataHeaderCustomerDirectory = {
52
52
  export type PartnersV1InvoicesCreateSingleRequestDataHeaderCustomerBranch = {
53
53
  address1: string;
54
54
  address2: string | null;
55
- country: number;
56
- state: number;
57
- city: number;
55
+ country: number | string;
56
+ state: number | string;
57
+ city: number | string;
58
58
  directory: Array<PartnersV1InvoicesCreateSingleRequestDataHeaderCustomerDirectory> | null;
59
59
  };
60
60
  export type PartnersV1InvoicesCreateSingleRequestDataHeaderCustomer = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.5.35",
3
+ "version": "0.5.36",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -63,9 +63,9 @@ export type PartnersV1InvoicesCreateSingleRequestDataHeaderCustomerDirectory = {
63
63
  export type PartnersV1InvoicesCreateSingleRequestDataHeaderCustomerBranch = {
64
64
  address1: string
65
65
  address2: string | null
66
- country: number
67
- state: number
68
- city: number
66
+ country: number | string
67
+ state: number | string
68
+ city: number | string
69
69
  directory: Array<PartnersV1InvoicesCreateSingleRequestDataHeaderCustomerDirectory> | null
70
70
  }
71
71