* add after event ends workflow trigger to enum * add after meetings ends trigger * fix label for time span * add deleted label for message template * add lost changes from merge conflict * set reminder for already existing bookings * fix label 'How long before event starts/ends' Co-authored-by: CarinaWolli <wollencarina@gmail.com>
21 lines
705 B
TypeScript
21 lines
705 B
TypeScript
import { TimeUnit, WorkflowActions, WorkflowTemplates, WorkflowTriggerEvents } from "@prisma/client";
|
|
|
|
export const WORKFLOW_TRIGGER_EVENTS = [
|
|
WorkflowTriggerEvents.BEFORE_EVENT,
|
|
WorkflowTriggerEvents.EVENT_CANCELLED,
|
|
WorkflowTriggerEvents.NEW_EVENT,
|
|
WorkflowTriggerEvents.AFTER_EVENT,
|
|
WorkflowTriggerEvents.RESCHEDULE_EVENT,
|
|
] as const;
|
|
|
|
export const WORKFLOW_ACTIONS = [
|
|
WorkflowActions.EMAIL_HOST,
|
|
WorkflowActions.EMAIL_ATTENDEE,
|
|
WorkflowActions.SMS_ATTENDEE,
|
|
WorkflowActions.SMS_NUMBER,
|
|
] as const;
|
|
|
|
export const TIME_UNIT = [TimeUnit.DAY, TimeUnit.HOUR, TimeUnit.MINUTE] as const;
|
|
|
|
export const WORKFLOW_TEMPLATES = [WorkflowTemplates.CUSTOM, WorkflowTemplates.REMINDER] as const;
|