@ahomevilla-hotel/node-sdk 1.1.6 → 1.1.7

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 +37 -0
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -1783,6 +1783,36 @@ export interface FilterRoomDetailDto {
1783
1783
  * @memberof FilterRoomDetailDto
1784
1784
  */
1785
1785
  'maxPrice'?: object;
1786
+ /**
1787
+ * Filter by start date
1788
+ * @type {string}
1789
+ * @memberof FilterRoomDetailDto
1790
+ */
1791
+ 'startDate'?: string;
1792
+ /**
1793
+ * Filter by end date
1794
+ * @type {string}
1795
+ * @memberof FilterRoomDetailDto
1796
+ */
1797
+ 'endDate'?: string;
1798
+ /**
1799
+ * Filter by start time
1800
+ * @type {string}
1801
+ * @memberof FilterRoomDetailDto
1802
+ */
1803
+ 'startTime'?: string;
1804
+ /**
1805
+ * Filter by end time
1806
+ * @type {string}
1807
+ * @memberof FilterRoomDetailDto
1808
+ */
1809
+ 'endTime'?: string;
1810
+ /**
1811
+ * Filter by booking type
1812
+ * @type {string}
1813
+ * @memberof FilterRoomDetailDto
1814
+ */
1815
+ 'bookingType'?: FilterRoomDetailDtoBookingTypeEnum;
1786
1816
  }
1787
1817
 
1788
1818
  export const FilterRoomDetailDtoRoomTypeEnum = {
@@ -1800,6 +1830,13 @@ export const FilterRoomDetailDtoBedTypeEnum = {
1800
1830
  } as const;
1801
1831
 
1802
1832
  export type FilterRoomDetailDtoBedTypeEnum = typeof FilterRoomDetailDtoBedTypeEnum[keyof typeof FilterRoomDetailDtoBedTypeEnum];
1833
+ export const FilterRoomDetailDtoBookingTypeEnum = {
1834
+ Hourly: 'HOURLY',
1835
+ Nightly: 'NIGHTLY',
1836
+ Daily: 'DAILY'
1837
+ } as const;
1838
+
1839
+ export type FilterRoomDetailDtoBookingTypeEnum = typeof FilterRoomDetailDtoBookingTypeEnum[keyof typeof FilterRoomDetailDtoBookingTypeEnum];
1803
1840
 
1804
1841
  /**
1805
1842
  *
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "openapi-client",
11
11
  "openapi-generator"
12
12
  ],
13
- "version": "1.1.6",
13
+ "version": "1.1.7",
14
14
  "main": "index.js",
15
15
  "scripts": {
16
16
  "test": "echo \"Error: no test specified\" && exit 1"