@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.
- package/api.ts +19 -0
- 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
|
*
|