* Add full names in the descripiton of dynamic events. * Initialising dynamic event desc after the check. * Revert "Initialising dynamic event desc after the check." This reverts commit ddd89c4e252f439a5875bfc34b20050a29b68de8. * Revert "Add full names in the descripiton of dynamic events." This reverts commit ce232d6256b4fe03c5b0665133be6ea524349c5c. * Added booking title for dynamic events. * Update apps/web/public/static/locales/en/common.json * Fix typo. * Fix lint error. * Fix redundant booking information. * Fix type script lint. * Addressed review suggestions. --------- Co-authored-by: Peer Richelsen <peer@cal.com> Co-authored-by: Syed Ali Shahbaz <52925846+alishaz-polymath@users.noreply.github.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>
13 lines
180 B
TypeScript
13 lines
180 B
TypeScript
import { z } from "zod";
|
|
|
|
export const SystemField = z.enum([
|
|
"name",
|
|
"email",
|
|
"location",
|
|
"title",
|
|
"notes",
|
|
"guests",
|
|
"rescheduleReason",
|
|
"smsReminderNumber",
|
|
]);
|