feat: add WhatsApp config fields and IngestJobData type

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-27 14:58:46 +05:30
parent b16a30beb2
commit 891986d3ba
3 changed files with 32 additions and 0 deletions
+2
View File
@@ -9,6 +9,8 @@ const envSchema = z.object({
MEILI_URL: z.string().url().default('http://localhost:7700'),
MEILI_MASTER_KEY: z.string().default('tower_meili_dev_key'),
LOG_LEVEL: z.enum(['trace', 'debug', 'info', 'warn', 'error']).default('info'),
WHATSAPP_SESSION_PATH: z.string().default('./sessions'),
TOWER_ADMIN_JIDS: z.string().default(''),
});
export type Env = z.infer<typeof envSchema>;