chore: prep platform improvements
This commit is contained in:
parent
a62f3d5283
commit
c5ddd54a3e
24 changed files with 777 additions and 649 deletions
|
|
@ -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 = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue