chore: sync staging
This commit is contained in:
parent
c5ddd54a3e
commit
561b19cf66
610 changed files with 105285 additions and 1206 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue