import { WorkflowState } from '@loopstack/contracts/enums'; import { WorkflowTransitionType } from '@loopstack/contracts/types'; import { HistoryTransition } from '@loopstack/contracts/types'; import { DocumentEntity } from '../entities/index.js'; export interface WorkflowMetadataInterface { hasError: boolean; errorMessage?: string; stop: boolean; status: WorkflowState; availableTransitions: WorkflowTransitionType[]; persistenceState: { documentsUpdated: boolean; }; nextPlace?: string; documents: DocumentEntity[]; place: string; tools: Record; transition?: HistoryTransition; result: Record | null; retryCount: number; retryTransitionId?: string; _retrySignal?: { delayMs: number; }; } //# sourceMappingURL=workflow-metadata.interface.d.ts.map