* feat: workflow auto translation * tests: add unit tests * refactor: tests and workflow * fix: type err * fix: type err * fix: remove redundant index on WorkflowStepTranslation The @@index on [workflowStepId, field, targetLocale] duplicates the @@unique constraint on the same columns. A unique index already provides efficient lookups, so the separate @@index adds storage overhead and write latency without benefit. Addresses Cubic AI review feedback (confidence 9/10). Co-Authored-By: unknown <> * fix: correct locale mapping when translation API returns null Map translations with their corresponding locales before filtering to preserve correct locale-to-translation associations. Previously, filtering out null translations would reindex the array, causing incorrect locale mappings when any translation in the batch failed. Also fixes pre-existing lint warnings: - Move exports to end of file - Add explicit return type to processTranslations - Replace ternary with if-else for upsertMany selection Co-Authored-By: udit@cal.com <udit222001@gmail.com> * fix: address review feedback for workflow auto-translation - Add change detection before creating translation tasks - Rename userLocale to sourceLocale in task props for clarity - Show source language in UI with new translation key - Extract SUPPORTED_LOCALES to shared translationConstants.ts - Fix locale mapping bug in translateEventTypeData.ts - Add WhatsApp translation support - Abstract translation lookup into shared translationLookup.ts helper - Restore if-else readability for SCANNING_WORKFLOW_STEPS Co-authored-by: Udit Takkar <udit.takkar@cal.com> Co-Authored-By: unknown <> * fix: update test to use sourceLocale instead of userLocale Co-Authored-By: unknown <> * refactor: feedback * fix: handle first time * fix: tests * fix: tests * fix: address Cubic AI review feedback (confidence 9/10 issues) - WhatsApp translation: Apply variable substitution using getSMSMessageWithVariables and clear contentSid when using translated body to ensure Twilio uses the translated text instead of the original template - update.handler.ts: Change sourceLocale assignment from ?? to || for consistency with tasker payload behavior (line 481) - ITranslationService.ts: Rename methods from plural to singular naming: - getWorkflowStepTranslations -> getWorkflowStepTranslation - getEventTypeTranslations -> getEventTypeTranslation Updated all call sites and tests accordingly Co-Authored-By: unknown <> * fix: address Cubic AI review feedback (confidence 9/10+ issues) - Fix getSMSMessageWithVariables to handle WHATSAPP_ATTENDEE action for locale and timezone (confidence 9/10) - Remove WhatsApp translation feature that set contentSid to undefined since Twilio ignores body parameter for WhatsApp and requires pre-approved Message Templates (confidence 10/10) Co-Authored-By: unknown <> * fix: translatio * Add tests: packages/features/eventTypeTranslation/repositories/EventTypeTranslationRepository.test.ts Generated by Paragon from proposal for PR #27087 * Add tests: packages/features/tasker/tasks/translateWorkflowStepData.test.ts Generated by Paragon from proposal for PR #27087 * chore: nit * chore: verfied atg * fix: set sourceLocale for new steps, add shouldDirty to checkbox, remove spec docs - Set sourceLocale fallback in addedSteps mapping to fix stale detection mismatch - Add { shouldDirty: true } to autoTranslateEnabled checkbox onChange - Remove specs/workflow-translation/ directory (planning docs, not for repo) Co-authored-by: Udit Takkar <udit.07.takkar@gmail.com> Co-Authored-By: unknown <> * chore: add specs back * fix: type error * fix: type error * fix: type err * fix: tests * refactor: feedback * fix: type err * refactor --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Udit Takkar <udit.takkar@cal.com> Co-authored-by: Udit Takkar <udit.07.takkar@gmail.com>
61 lines
3.0 KiB
TypeScript
61 lines
3.0 KiB
TypeScript
import { IS_PRODUCTION } from "@calcom/lib/constants";
|
|
import type { TaskHandler, TaskTypes } from "../tasker";
|
|
|
|
/**
|
|
* This is a map of all the tasks that the Tasker can handle.
|
|
* The keys are the TaskTypes and the values are the task handlers.
|
|
* The task handlers are imported dynamically to avoid circular dependencies.
|
|
*/
|
|
const tasks: Record<TaskTypes, () => Promise<TaskHandler>> = {
|
|
sendWebhook: () => import("./sendWebook").then((module) => module.sendWebhook),
|
|
triggerHostNoShowWebhook: () =>
|
|
import("./triggerNoShow/triggerHostNoShow").then((module) => module.triggerHostNoShow),
|
|
triggerGuestNoShowWebhook: () =>
|
|
import("./triggerNoShow/triggerGuestNoShow").then((module) => module.triggerGuestNoShow),
|
|
triggerFormSubmittedNoEventWebhook: () =>
|
|
import("./triggerFormSubmittedNoEvent/triggerFormSubmittedNoEventWebhook").then(
|
|
(module) => module.triggerFormSubmittedNoEventWebhook
|
|
),
|
|
triggerFormSubmittedNoEventWorkflow: () =>
|
|
import("./triggerFormSubmittedNoEvent/triggerFormSubmittedNoEventWorkflow").then(
|
|
(module) => module.triggerFormSubmittedNoEventWorkflow
|
|
),
|
|
sendSms: () => Promise.resolve(() => Promise.reject(new Error("Not implemented"))),
|
|
translateEventTypeData: () =>
|
|
import("./translateEventTypeData").then((module) => module.translateEventTypeData),
|
|
translateWorkflowStepData: () =>
|
|
import("./translateWorkflowStepData").then((module) => module.translateWorkflowStepData),
|
|
createCRMEvent: () => import("./crm/createCRMEvent").then((module) => module.createCRMEvent),
|
|
sendWorkflowEmails: () => import("./sendWorkflowEmails").then((module) => module.sendWorkflowEmails),
|
|
scanWorkflowBody: () => import("./scanWorkflowBody").then((module) => module.scanWorkflowBody),
|
|
scanWorkflowUrls: () => import("./scanWorkflowUrls").then((module) => module.scanWorkflowUrls),
|
|
sendAnalyticsEvent: () =>
|
|
import("./analytics/sendAnalyticsEvent").then((module) => module.sendAnalyticsEvent),
|
|
executeAIPhoneCall: () => import("./executeAIPhoneCall").then((module) => module.executeAIPhoneCall),
|
|
sendAwaitingPaymentEmail: () =>
|
|
import("./sendAwaitingPaymentEmail").then((module) => module.sendAwaitingPaymentEmail),
|
|
sendProrationInvoiceEmail: () =>
|
|
import("./sendProrationInvoiceEmail").then((module) => module.sendProrationInvoiceEmail),
|
|
sendProrationReminderEmail: () =>
|
|
import("./sendProrationReminderEmail").then((module) => module.sendProrationReminderEmail),
|
|
cancelProrationReminder: () =>
|
|
import("./cancelProrationReminder").then((module) => module.cancelProrationReminder),
|
|
bookingAudit: () => import("./bookingAudit").then((module) => module.bookingAudit),
|
|
webhookDelivery: () => import("./webhookDelivery").then((module) => module.webhookDelivery),
|
|
};
|
|
|
|
export const tasksConfig = {
|
|
createCRMEvent: {
|
|
minRetryIntervalMins: IS_PRODUCTION ? 10 : 1,
|
|
maxAttempts: 10,
|
|
},
|
|
executeAIPhoneCall: {
|
|
maxAttempts: 1,
|
|
},
|
|
webhookDelivery: {
|
|
minRetryIntervalMins: IS_PRODUCTION ? 5 : 1,
|
|
maxAttempts: 3,
|
|
},
|
|
};
|
|
export default tasks;
|