@ahomevilla-hotel/node-sdk 1.0.20 → 1.1.1
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 +6 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2646,6 +2646,12 @@ export interface RoomDetail {
|
|
|
2646
2646
|
* @memberof RoomDetail
|
|
2647
2647
|
*/
|
|
2648
2648
|
'flat_rooms': Array<HotelRoom>;
|
|
2649
|
+
/**
|
|
2650
|
+
* Price history of this room
|
|
2651
|
+
* @type {Array<RoomPriceHistory>}
|
|
2652
|
+
* @memberof RoomDetail
|
|
2653
|
+
*/
|
|
2654
|
+
'roomPriceHistories'?: Array<RoomPriceHistory>;
|
|
2649
2655
|
}
|
|
2650
2656
|
|
|
2651
2657
|
export const RoomDetailRoomTypeEnum = {
|