fix: RateOverrideApi type to camelCase — transformKeys was converting keys but type was snake_case

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-23 16:26:51 +03:00
parent 2a741d89d0
commit 70531c3a9a
2 changed files with 9 additions and 9 deletions

View File

@@ -743,12 +743,12 @@ export interface TariffPayload {
}
export interface RateOverrideApi {
category_id: string
categoryId: string
date: string
price: number
extra_person: number
min_nights: number
channel_prices: Record<string, number>
extraPerson: number
minNights: number
channelPrices: Record<string, number>
closed: boolean
}