feat: get breakfast package from API

This commit is contained in:
Simon Emanuelsson
2024-10-28 10:12:03 +01:00
parent fc8844eb96
commit 62f549e85d
47 changed files with 718 additions and 210 deletions

View File

@@ -1,4 +1,4 @@
export enum bedTypeEnum {
export enum BedTypeEnum {
KING = "KING",
QUEEN = "QUEEN",
}

View File

@@ -1,4 +1,5 @@
export enum breakfastEnum {
BREAKFAST = "BREAKFAST",
export enum BreakfastPackageEnum {
FREE_MEMBER_BREAKFAST = "BRF0",
REGULAR_BREAKFAST = "BRF1",
NO_BREAKFAST = "NO_BREAKFAST",
}

7
types/enums/currency.ts Normal file
View File

@@ -0,0 +1,7 @@
export enum CurrencyEnum {
DKK = "DKK",
EUR = "EUR",
NOK = "NOK",
PLN = "PLN",
SEK = "SEK",
}

7
types/enums/packages.ts Normal file
View File

@@ -0,0 +1,7 @@
export enum PackageTypeEnum {
AccessibleFriendlyRoom = "AccessibleFriendlyRoom",
AllergyRoom = "AllergyRoom",
BreakfastAdult = "BreakfastAdult",
BreakfastChildren = "BreakfastChildren",
PetRoom = "PetRoom",
}