@ahomevilla-hotel/node-sdk 1.0.7 → 1.0.8

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 +19 -0
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -722,6 +722,25 @@ export interface Province {
722
722
  * @memberof Province
723
723
  */
724
724
  'slug': string;
725
+ /**
726
+ *
727
+ * @type {ProvinceCount}
728
+ * @memberof Province
729
+ */
730
+ '_count': ProvinceCount;
731
+ }
732
+ /**
733
+ * Count of branches in the province
734
+ * @export
735
+ * @interface ProvinceCount
736
+ */
737
+ export interface ProvinceCount {
738
+ /**
739
+ *
740
+ * @type {number}
741
+ * @memberof ProvinceCount
742
+ */
743
+ 'branches'?: number;
725
744
  }
726
745
  /**
727
746
  *
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "openapi-client",
11
11
  "openapi-generator"
12
12
  ],
13
- "version": "1.0.7",
13
+ "version": "1.0.8",
14
14
  "main": "index.js",
15
15
  "scripts": {
16
16
  "test": "echo \"Error: no test specified\" && exit 1"