@ahomevilla-hotel/node-sdk 1.1.6 → 1.1.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 +49 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1783,6 +1783,48 @@ 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;
|
|
1816
|
+
/**
|
|
1817
|
+
* Filter by number of adults
|
|
1818
|
+
* @type {number}
|
|
1819
|
+
* @memberof FilterRoomDetailDto
|
|
1820
|
+
*/
|
|
1821
|
+
'adults'?: number;
|
|
1822
|
+
/**
|
|
1823
|
+
* Filter by number of children
|
|
1824
|
+
* @type {number}
|
|
1825
|
+
* @memberof FilterRoomDetailDto
|
|
1826
|
+
*/
|
|
1827
|
+
'children'?: number;
|
|
1786
1828
|
}
|
|
1787
1829
|
|
|
1788
1830
|
export const FilterRoomDetailDtoRoomTypeEnum = {
|
|
@@ -1800,6 +1842,13 @@ export const FilterRoomDetailDtoBedTypeEnum = {
|
|
|
1800
1842
|
} as const;
|
|
1801
1843
|
|
|
1802
1844
|
export type FilterRoomDetailDtoBedTypeEnum = typeof FilterRoomDetailDtoBedTypeEnum[keyof typeof FilterRoomDetailDtoBedTypeEnum];
|
|
1845
|
+
export const FilterRoomDetailDtoBookingTypeEnum = {
|
|
1846
|
+
Hourly: 'HOURLY',
|
|
1847
|
+
Nightly: 'NIGHTLY',
|
|
1848
|
+
Daily: 'DAILY'
|
|
1849
|
+
} as const;
|
|
1850
|
+
|
|
1851
|
+
export type FilterRoomDetailDtoBookingTypeEnum = typeof FilterRoomDetailDtoBookingTypeEnum[keyof typeof FilterRoomDetailDtoBookingTypeEnum];
|
|
1803
1852
|
|
|
1804
1853
|
/**
|
|
1805
1854
|
*
|