import type { Environment } from '@aws-cdk/cloud-assembly-api'; export interface Component { name: string; /** * The range of affected versions */ version: string; } export interface Notice { title: string; issueNumber: number; overview: string; /** * A flat list of affected components, evaluated as an OR. * * The notice matches if any single component matches. */ components: Array; /** * A list of affected components in Disjunctive Normal Form (OR of ANDs). * * The outer array is an OR, the inner arrays are ANDs. The notice matches * if all components of at least one inner array match. * * Only available when `schemaVersion` is `'2'`. */ componentsV2?: Array; schemaVersion: string; severity?: string; /** * Per-placeholder rendering options, keyed by the dynamic name used in * `{resolve:NAME}` placeholders within `overview`. Unknown fields on the * spec object MUST be ignored, so new capabilities can be added later * without breaking older CLIs. * * @default - no overrides; placeholders render with default settings (separator ',') */ dynamicValues?: Record; } /** * Rendering options for a single dynamic value placeholder. */ export interface DynamicValueSpec { /** * Separator used to join multiple values for the same dynamic name. * * @default "," */ readonly separator?: string; } export interface NoticeDataSource { fetch(): Promise; } /** * Information about a bootstrapped environment. */ export interface BootstrappedEnvironment { readonly bootstrapStackVersion: number; readonly environment: Environment; } //# sourceMappingURL=types.d.ts.map