* --INIT * fixes * better comments and some clean up * test and type fix * clean up * address feedback * fix erroneous booking_confirmed to booking_rescheduled
11 lines
472 B
TypeScript
11 lines
472 B
TypeScript
import { FormWebhookDataFetcher } from "@calcom/features/webhooks/lib/service/data-fetchers/FormWebhookDataFetcher";
|
|
import { createModule } from "@evyweb/ioctopus";
|
|
import { SHARED_TOKENS } from "../../shared/shared.tokens";
|
|
import { WEBHOOK_TOKENS } from "../Webhooks.tokens";
|
|
|
|
export const formWebhookDataFetcherModule = createModule();
|
|
|
|
formWebhookDataFetcherModule
|
|
.bind(WEBHOOK_TOKENS.FORM_DATA_FETCHER)
|
|
.toClass(FormWebhookDataFetcher, [SHARED_TOKENS.LOGGER]);
|