import type { EntityMetadata } from '../schemas/EntityMetadata'; import type { ErrorMetadata } from '../schemas/ErrorMetadata'; /** * Entity Details with its yaml validation result */ export interface EntityDetails { branch?: string; entity_metadata?: EntityMetadata; entity_type?: 'Environment' | 'IdpCatalog' | 'Infrastructure' | 'InputSets' | 'Overrides' | 'Pipelines' | 'Service' | 'Template' | 'Unknown'; entity_url?: string; error_metadata?: ErrorMetadata; identifier?: string; is_valid?: boolean; org?: string; project?: string; }