Vital and libphonenumber-js (#20547)

This commit is contained in:
Keith Williams
2025-04-04 13:35:12 +00:00
committed by GitHub
parent 3d583678cf
commit 19f2197eef
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,3 +1,4 @@
import { VitalClient } from "@tryvital/vital-node";
import type { ClientConfig } from "@tryvital/vital-node/dist/lib/models";
import getAppKeysFromSlug from "../../_utils/getAppKeysFromSlug";
@@ -22,7 +23,6 @@ export async function initVitalClient() {
)
throw Error("Missing properties in vital-automation DB keys");
vitalEnv = appKeys;
const { VitalClient } = await import("@tryvital/vital-node");
vitalClient = new VitalClient({
region: appKeys.region,
api_key: appKeys.api_key || "",
@@ -1,3 +1,4 @@
import { isValidPhoneNumber } from "libphonenumber-js";
import z from "zod";
import type { ALL_VIEWS } from "@calcom/features/form-builder/schema";
@@ -144,7 +145,6 @@ function preprocess<T extends z.ZodType>({
const phoneSchema = isPartialSchema
? z.string()
: z.string().refine(async (val) => {
const { isValidPhoneNumber } = await import("libphonenumber-js");
return isValidPhoneNumber(val);
});
// Tag the message with the input name so that the message can be shown at appropriate place