/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; export interface WorkflowDeploymentHistoryItem { id: string; workflowDeploymentId: string; timestamp: Date; /** A human-readable label for the workflow deployment */ label: string; /** A name that uniquely identifies this workflow deployment within its workspace */ name: string; inputVariables: Vellum.VellumVariable[]; outputVariables: Vellum.VellumVariable[]; /** A human-readable description of the workflow deployment */ description?: string | null; }