chore: prep platform improvements

This commit is contained in:
Esdras Renan 2025-11-09 21:09:38 -03:00
parent a62f3d5283
commit c5ddd54a3e
24 changed files with 777 additions and 649 deletions

View file

@ -1,5 +1,7 @@
"use server";
import type { Id } from "./_generated/dataModel";
export type TicketFormFieldSeed = {
key: string;
label: string;
@ -7,6 +9,7 @@ export type TicketFormFieldSeed = {
required?: boolean;
description?: string;
options?: Array<{ value: string; label: string }>;
companyId?: Id<"companies"> | null;
};
export const TICKET_FORM_CONFIG = [