Merged in fix/STAY-72-resend-booking-confirmation (pull request #3067)

feat(STAY-72): add resend confirmation button and endpoint

* feat(STAY-72): add resend confirmation button and endpoint

* fix: replace modify buttons with design system button


Approved-by: Chuma Mcphoy (We Ahead)
Approved-by: Erik Tiekstra
This commit is contained in:
Christel Westerberg
2025-11-06 13:40:15 +00:00
parent ec511e2c8b
commit 20bf89d206
16 changed files with 209 additions and 56 deletions

View File

@@ -22,6 +22,10 @@ export const removePackageInput = z.object({
language: z.nativeEnum(Lang).transform((val) => langToApiLang[val]),
})
export const resendConfirmationInput = z.object({
language: z.nativeEnum(Lang).transform((val) => langToApiLang[val]),
})
export const cancelBookingsInput = z.object({
language: z.nativeEnum(Lang),
})