import { BaseFilterable, OperatorMap } from "../dal"; import { TransactionState } from "../http"; export interface WorkflowExecutionDTO { id: string; workflow_id: string; transaction_id: string; execution: Record | null; context: Record | null; state: TransactionState; created_at: Date; updated_at: Date; deleted_at: Date | null; } export interface FilterableWorkflowExecutionProps extends BaseFilterable { q?: string; id?: string | string[] | OperatorMap; workflow_id?: string | string[] | OperatorMap; transaction_id?: string | string[] | OperatorMap; state?: string | string[] | OperatorMap; } //# sourceMappingURL=common.d.ts.map