* fix: use destination calendar email * fix: success page * feat: add primary email in destination calendar * fix: set destination bug * chore: fix tests * test: add test for different email * wip: save progress * feat: add switch and email in booking * fix: use userPrimaryEmail * chore: fix type errr * chore: update buileder * fix: type err in advanced tab * fix: unit tests * Update apps/web/public/static/locales/en/common.json Co-authored-by: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com> * fix: cancel, request reschedule, paymeny --------- Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com>
14 lines
294 B
TypeScript
14 lines
294 B
TypeScript
import { Prisma } from "@prisma/client";
|
|
|
|
export const bookingMinimalSelect = Prisma.validator<Prisma.BookingSelect>()({
|
|
id: true,
|
|
title: true,
|
|
userPrimaryEmail: true,
|
|
description: true,
|
|
customInputs: true,
|
|
startTime: true,
|
|
endTime: true,
|
|
attendees: true,
|
|
metadata: true,
|
|
});
|