/** * ManifestsResponseDTO returns a list of manifest identifiers from a service's eligible primary manifests. */ export interface ManifestsResponseDto { /** * List of Manifest Identifiers */ identifiers?: string[]; /** * Map of manifest identifiers to YAML input templates */ manifestIdentifierToInputMap?: { [key: string]: string; }; }