import type { UnifiedSchemaResponseDto } from '../schemas/UnifiedSchemaResponseDto'; export interface InfrastructureSchemaResponseDto extends UnifiedSchemaResponseDto { /** * env id */ 'env-id'?: string; /** * Infrastructure id */ 'infra-id'?: string; /** * This specifies the type of schema response */ type: 'infrastructure'; /** * infrastructure yaml with inputs populated */ yaml?: string; }