diff --git a/backend/src/db/schemas/certificate-template-est-configs.ts b/backend/src/db/schemas/certificate-template-est-configs.ts index 8e785ff38..654b5413a 100644 --- a/backend/src/db/schemas/certificate-template-est-configs.ts +++ b/backend/src/db/schemas/certificate-template-est-configs.ts @@ -14,7 +14,7 @@ export const CertificateTemplateEstConfigsSchema = z.object({ certificateTemplateId: z.string().uuid(), encryptedCaChain: zodBuffer, hashedPassphrase: z.string(), - isEnabled: z.boolean().nullable().optional(), + isEnabled: z.boolean(), createdAt: z.date(), updatedAt: z.date() });