feat: SW-1583 City search Map view redemption

This commit is contained in:
Hrishikesh Vaipurkar
2025-03-05 19:08:54 +01:00
parent f6db5f2732
commit 23eaa772ea
11 changed files with 72 additions and 16 deletions

View File

@@ -32,6 +32,7 @@ export type HotelPin = {
coordinates: Coordinates
publicPrice: number | null
memberPrice: number | null
redemptionPrice: number | null
rateType: string | null
currency: string
images: {

View File

@@ -9,5 +9,6 @@ export type PriceCardProps = {
}
export type PointsCardProps = {
productTypePoints: ProductTypePoints
productTypePoints?: ProductTypePoints
redemptionPrice?: number
}