export type TriggerType = 'event' | 'schedule' | 'operation' | 'webhook' | 'manual'; type Status = 'active' | 'inactive'; export interface Flow { id: string; name: string | null; icon: string | null; description: string | null; status: Status; trigger: TriggerType | null; options: Record; operation: Operation | null; accountability: 'all' | 'activity' | null; } export interface Operation { id: string; name: string | null; key: string; type: string; position_x: number; position_y: number; options: Record; resolve: Operation | null; reject: Operation | null; } export interface FlowRaw { id: string; name: string; icon: string | null; color: string | null; description: string | null; status: Status; trigger: TriggerType | null; options: Record | null; operation: string | null; operations: OperationRaw[]; date_created: string; user_created: string; accountability: 'all' | 'activity' | null; } export interface OperationRaw { id: string; name: string | null; key: string; type: string; position_x: number; position_y: number; options: Record; resolve: string | null; reject: string | null; flow: string; date_created: string; user_created: string; } export {}; //# sourceMappingURL=flows.d.ts.map