import "../../../tailor-proto/src/tailor/v1/executor_resource_pb.mjs"; //#region src/cli/commands/executor/transform.d.ts export interface ExecutorJobListInfo { id: string; executorName: string; status: string; createdAt: string; } export interface ExecutorJobInfo { id: string; executorName: string; status: string; scheduledAt: string; createdAt: string; updatedAt: string; } export interface ExecutorJobAttemptInfo { id: string; jobId: string; status: string; error: string; startedAt: string; finishedAt: string; operationReference: string; } export interface ExecutorListInfo { name: string; triggerType: string; targetType: string; disabled: boolean; } export interface ExecutorInfo { name: string; description: string; triggerType: string; targetType: string; disabled: boolean; triggerConfig: Record; targetConfig: Record; } //#endregion