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