add whatsapp modules
This commit is contained in:
@@ -52,5 +52,18 @@ export const _env = z
|
||||
.min(0, "Min 0."),
|
||||
MAIL_USERNAME: z.string("Must be string.").nonempty("Must not empty."),
|
||||
MAIL_PASSWORD: z.string("Must be string.").nonempty("Must not empty."),
|
||||
|
||||
WHATSAPP_BUSINESS_ACCESS_TOKEN: z
|
||||
.string("Must be string.")
|
||||
.nonempty("Must not empty."),
|
||||
WHATSAPP_BUSINESS_PHONE_NUMBER_ID: z
|
||||
.string("Must be string.")
|
||||
.nonempty("Must not empty."),
|
||||
WHATSAPP_BUSINESS_ACCOUNT_ID: z
|
||||
.string("Must be string.")
|
||||
.nonempty("Must not empty."),
|
||||
WHATSAPP_BUSINESS_WEBHOOK_VERIFY_TOKEN: z
|
||||
.string("Must be string.")
|
||||
.nonempty("Must not empty."),
|
||||
})
|
||||
.parse(Bun.env);
|
||||
|
||||
Reference in New Issue
Block a user