import type { VersionDeploymentV3 } from '../schemas/VersionDeploymentV3'; import type { DeploymentMetadataV3 } from '../schemas/DeploymentMetadataV3'; import type { PageInfoV3 } from '../schemas/PageInfoV3'; export interface ListVersionDeploymentsResponseBodyV3 extends PageInfoV3 { /** * List of deployment records. */ items: VersionDeploymentV3[]; meta?: DeploymentMetadataV3; }