import type { UnifiedSchemaRequestDto } from '../schemas/UnifiedSchemaRequestDto'; export interface InfrastructureSchemaRequestDto extends UnifiedSchemaRequestDto { /** * env branch */ 'env-branch'?: string; /** * env id */ 'env-id'?: string; /** * Infrastructure id */ 'infra-id'?: string; /** * Infrastructure input yaml */ 'infra-input-yaml'?: string; /** * This specifies the type of schema request */ type: 'infrastructure'; }