
* feat: add translations for forgot password email and misc * fix: type fixes * feat: translate invitation email * fix: e2e tests * fix: lint * feat: type fixes and i18n for emails * Merge main * fix: jest import on server path * Merge * fix: playwright tests * fix: lint Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
23 lines
451 B
TypeScript
23 lines
451 B
TypeScript
import { Booking } from "@prisma/client";
|
|
|
|
import { LocationType } from "@lib/location";
|
|
|
|
export type BookingCreateBody = {
|
|
email: string;
|
|
end: string;
|
|
eventTypeId: number;
|
|
guests: string[];
|
|
location?: LocationType;
|
|
name: string;
|
|
notes: string;
|
|
rescheduleUid?: string;
|
|
start: string;
|
|
timeZone: string;
|
|
users?: string[];
|
|
user?: string;
|
|
language: string;
|
|
};
|
|
|
|
export type BookingResponse = Booking & {
|
|
paymentUid?: string;
|
|
};
|