* feat: verified resources endpoint [v2] * add tests and fixes * chore: add endpoint throttler decorator and handling * chore: code review comments * chore: code review comments * chore: code review comments * bump platform libraries * chore: add tests and fix issues
46 lines
1.9 KiB
TypeScript
46 lines
1.9 KiB
TypeScript
import AttendeeCancelledEmail from "@calcom/emails/templates/attendee-cancelled-email";
|
|
import AttendeeDeclinedEmail from "@calcom/emails/templates/attendee-declined-email";
|
|
import AttendeeRequestEmail from "@calcom/emails/templates/attendee-request-email";
|
|
import AttendeeRescheduledEmail from "@calcom/emails/templates/attendee-rescheduled-email";
|
|
import AttendeeScheduledEmail from "@calcom/emails/templates/attendee-scheduled-email";
|
|
import AttendeeUpdatedEmail from "@calcom/emails/templates/attendee-updated-email";
|
|
import AttendeeVerifyEmail from "@calcom/emails/templates/attendee-verify-email";
|
|
import OrganizerCancelledEmail from "@calcom/emails/templates/organizer-cancelled-email";
|
|
import OrganizerReassignedEmail from "@calcom/emails/templates/organizer-reassigned-email";
|
|
import OrganizerRequestEmail from "@calcom/emails/templates/organizer-request-email";
|
|
import OrganizerRescheduledEmail from "@calcom/emails/templates/organizer-rescheduled-email";
|
|
import OrganizerScheduledEmail from "@calcom/emails/templates/organizer-scheduled-email";
|
|
import { sendEmailVerificationByCode } from "@calcom/features/auth/lib/verifyEmail";
|
|
import { sendSignupToOrganizationEmail } from "@calcom/trpc/server/routers/viewer/teams/inviteMember/utils";
|
|
import { verifyEmailCodeHandler } from "@calcom/trpc/server/routers/viewer/workflows/verifyEmailCode.handler";
|
|
|
|
export { AttendeeVerifyEmail };
|
|
|
|
export { AttendeeScheduledEmail };
|
|
|
|
export { OrganizerScheduledEmail };
|
|
|
|
export { AttendeeDeclinedEmail };
|
|
|
|
export { AttendeeCancelledEmail };
|
|
|
|
export { OrganizerCancelledEmail };
|
|
|
|
export { OrganizerReassignedEmail };
|
|
|
|
export { OrganizerRescheduledEmail };
|
|
|
|
export { AttendeeRescheduledEmail };
|
|
|
|
export { AttendeeUpdatedEmail };
|
|
|
|
export { OrganizerRequestEmail };
|
|
|
|
export { AttendeeRequestEmail };
|
|
|
|
export { sendSignupToOrganizationEmail };
|
|
|
|
export { sendEmailVerificationByCode };
|
|
|
|
export { verifyEmailCodeHandler };
|