expires should be required

This commit is contained in:
Fang-Pen Lin
2025-10-30 10:10:09 -07:00
parent 9196e74437
commit a7f773b78f

View File

@@ -15,7 +15,7 @@ export const PkiAcmeOrdersSchema = z.object({
updatedAt: z.date(),
notBefore: z.date().nullable().optional(),
notAfter: z.date().nullable().optional(),
expiresAt: z.date().nullable().optional()
expiresAt: z.date()
});
export type TPkiAcmeOrders = z.infer<typeof PkiAcmeOrdersSchema>;