import "../../../tailor-proto/src/tailor/v1/workflow_resource_pb.mjs"; //#region src/cli/commands/workflow/transform.d.ts export interface WorkflowListInfo { name: string; mainJob: string; jobFunctions: number; updatedAt: Date | null; } export interface WorkflowInfo { name: string; id: string; mainJob: string; jobFunctions: Record; createdAt: Date | null; updatedAt: Date | null; } export interface WorkflowJobExecutionInfo { id: string; stackedJobName: string; status: string; executionId: string; startedAt: Date | null; finishedAt: Date | null; } export interface WorkflowExecutionInfo { id: string; workflowName: string; status: string; jobExecutions: number; startedAt: Date | null; finishedAt: Date | null; } //#endregion