import { RunPayload } from '@loopstack/contracts/schemas'; import type { WorkflowEntity } from '../entities/index.js'; export interface InternalRunContext { root: string; userId: string; workspaceId: string; workflowId?: string; labels: string[]; payload: RunPayload; workflowContext?: Record; workflowEntity?: WorkflowEntity; options: { stateless: boolean; }; } //# sourceMappingURL=internal-run-context.d.ts.map