2
0

Add attachments option to text input (#1608)

Closes #854
This commit is contained in:
Baptiste Arnaud
2024-06-26 10:13:38 +02:00
committed by GitHub
parent 80da7af4f1
commit 6db0464fd7
88 changed files with 2959 additions and 735 deletions

9
packages/env/env.ts vendored
View File

@ -341,10 +341,9 @@ const whatsAppEnv = {
},
}
const upstashRedis = {
const redisEnv = {
server: {
UPSTASH_REDIS_REST_URL: z.string().url().optional(),
UPSTASH_REDIS_REST_TOKEN: z.string().min(1).optional(),
REDIS_URL: z.string().url().optional(),
},
}
@ -425,13 +424,13 @@ export const env = createEnv({
...vercelEnv.server,
...sleekPlanEnv.server,
...whatsAppEnv.server,
...upstashRedis.server,
...redisEnv.server,
...gitlabEnv.server,
...azureEnv.server,
...customOAuthEnv.server,
...sentryEnv.server,
...telemetryEnv.server,
...keycloakEnv.server
...keycloakEnv.server,
},
client: {
...baseEnv.client,