chore: sync staging

This commit is contained in:
Esdras Renan 2025-11-10 01:57:45 -03:00
parent c5ddd54a3e
commit 561b19cf66
610 changed files with 105285 additions and 1206 deletions

View file

@ -6,6 +6,8 @@ export const ticketSubcategorySchema = z.object({
slug: z.string().optional(),
order: z.number().optional(),
categoryId: z.string().optional(),
createdAt: z.number().optional(),
updatedAt: z.number().optional(),
})
export type TicketSubcategory = z.infer<typeof ticketSubcategorySchema>
@ -15,6 +17,8 @@ export const ticketCategorySchema = z.object({
slug: z.string().optional(),
description: z.string().optional().nullable(),
order: z.number().optional(),
createdAt: z.number().optional(),
updatedAt: z.number().optional(),
secondary: z.array(ticketSubcategorySchema),
})
export type TicketCategory = z.infer<typeof ticketCategorySchema>