fix: Price types has changed to doubles in the API
This commit is contained in:
committed by
Michael Zetterberg
parent
8f9e268802
commit
6fb71dea1b
@@ -42,11 +42,11 @@ export const booking: SelectRateSearchParams = {
|
||||
export const breakfastPackage: BreakfastPackage = {
|
||||
code: "BRF1",
|
||||
description: "Breakfast with reservation",
|
||||
localPrice: { currency: "SEK", price: "99", totalPrice: "99" },
|
||||
localPrice: { currency: "SEK", price: 99, totalPrice: 99 },
|
||||
requestedPrice: {
|
||||
currency: "EUR",
|
||||
price: "9",
|
||||
totalPrice: "9",
|
||||
price: 9,
|
||||
totalPrice: 9,
|
||||
},
|
||||
packageType: PackageTypeEnum.BreakfastAdult as const,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user