feat: SW-1583 Enabled reward night in booking widget

This commit is contained in:
Hrishikesh Vaipurkar
2025-02-27 11:41:04 +01:00
parent 6232ded991
commit 51b70f3032
12 changed files with 247 additions and 69 deletions

View File

@@ -19,6 +19,7 @@ export type BookingWidgetSearchData = {
toDate?: string
rooms?: TGuestsRoom[]
bookingCode?: string
searchType?: "redemption"
}
export type BookingWidgetType = VariantProps<

View File

@@ -4,4 +4,5 @@ export interface CheckboxProps
extends React.InputHTMLAttributes<HTMLInputElement> {
name: string
registerOptions?: RegisterOptions
hideError?: boolean
}