Vital and libphonenumber-js (#20547)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user