feat: SW-2028 Points validation redemption city search

This commit is contained in:
Hrishikesh Vaipurkar
2025-03-24 16:35:09 +01:00
parent 779495017e
commit eda475d64e
12 changed files with 71 additions and 16 deletions
@@ -15,6 +15,7 @@ export type HotelData = {
export type HotelCardListingProps = {
hotelData: HotelResponse[]
type?: HotelCardListingTypeEnum
userPoints?: number
}
export interface NullableHotelData extends Omit<HotelData, "hotelData"> {
@@ -7,4 +7,5 @@ export type HotelCardProps = {
type?: HotelCardListingTypeEnum
state?: "default" | "active"
bookingCode?: string | null
userPoints?: number
}