export type Holiday = { id: string name: string from: string to: string message: string accountId: string createdAt: string updatedAt: string | null deletedAt: string | null } export type CreateHolidayPayload = { name: string from: string to: string message: string } export type UpdateHolidayPayload = { name?: string from?: string to?: string message?: string }