Skip to content

Variable: WorkflowHistoryListResponseDTOSchema

ts
const WorkflowHistoryListResponseDTOSchema: ZodObject<{
  entries: ZodOptional<ZodArray<ZodObject<{
     isIntermediate: ZodOptional<ZodBoolean>;
     workflowId: ZodOptional<ZodString>;
     workflowVersion: ZodOptional<ZodNumber>;
     writtenAt: ZodOptional<ZodString>;
  }, $loose>>>;
}, $loose>;

Defined in: src/cloud/models/workflowHistoryListResponseDTO.ts:6

A list of workflow history entries.