diff --git a/server/routes/api/integrations/schema.ts b/server/routes/api/integrations/schema.ts index 4b9377f96..657194e40 100644 --- a/server/routes/api/integrations/schema.ts +++ b/server/routes/api/integrations/schema.ts @@ -21,7 +21,7 @@ export const IntegrationsListSchema = BaseSchema.extend({ .default("updatedAt"), /** Integration type */ - type: z.nativeEnum(IntegrationType), + type: z.nativeEnum(IntegrationType).optional(), }), });