Merged in feat/SW-1589-implement-booking-code-enter (pull request #1368)
Feat/SW-1589 implement booking code enter * feat: SW-1589 Booking code rate implementation * feat: SW-1589 Optimized price display * feat: SW-1589 Display standard price * feat: SW-1589 Fixed rate title issue Approved-by: Niclas Edenvin
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
interface TPrice {
|
||||
currency: string
|
||||
price: number
|
||||
regularPrice?: number
|
||||
}
|
||||
|
||||
export interface Price {
|
||||
|
||||
@@ -9,6 +9,7 @@ export interface Room {
|
||||
mustBeGuaranteed?: boolean
|
||||
packages: Packages | null
|
||||
rateDetails: string[]
|
||||
rateTitle?: string
|
||||
roomRate: RoomRate
|
||||
roomType: string
|
||||
roomTypeCode: string
|
||||
|
||||
@@ -27,6 +27,7 @@ export interface InitialRoomData {
|
||||
breakfastIncluded: boolean
|
||||
cancellationText: string
|
||||
rateDetails: string[] | undefined
|
||||
rateTitle?: string
|
||||
roomFeatures: Packages | null
|
||||
roomRate: RoomRate
|
||||
roomType: string
|
||||
|
||||
Reference in New Issue
Block a user