@ahomevilla-hotel/node-sdk 1.0.11 → 1.0.12

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.
Files changed (2) hide show
  1. package/api.ts +13 -1
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -135,6 +135,12 @@ export interface Branch {
135
135
  * @memberof Branch
136
136
  */
137
137
  'provinceId': string;
138
+ /**
139
+ * Province where this branch is located
140
+ * @type {Province}
141
+ * @memberof Branch
142
+ */
143
+ 'province'?: Province;
138
144
  /**
139
145
  * Branch\'s thumbnail image
140
146
  * @type {Image}
@@ -238,6 +244,12 @@ export interface BranchDetail {
238
244
  * @memberof BranchDetail
239
245
  */
240
246
  'provinceId': string;
247
+ /**
248
+ * Province where this branch is located
249
+ * @type {Province}
250
+ * @memberof BranchDetail
251
+ */
252
+ 'province'?: Province;
241
253
  /**
242
254
  * Branch\'s thumbnail image
243
255
  * @type {Image}
@@ -927,7 +939,7 @@ export interface Province {
927
939
  * @type {ProvinceCount}
928
940
  * @memberof Province
929
941
  */
930
- '_count': ProvinceCount;
942
+ '_count'?: ProvinceCount;
931
943
  }
932
944
  /**
933
945
  * Count of branches in the province
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "openapi-client",
11
11
  "openapi-generator"
12
12
  ],
13
- "version": "1.0.11",
13
+ "version": "1.0.12",
14
14
  "main": "index.js",
15
15
  "scripts": {
16
16
  "test": "echo \"Error: no test specified\" && exit 1"