import type { SecretSpec } from '../schemas/SecretSpec'; export interface Secret { /** * Secret description */ description?: string; /** * Secret identifier */ identifier: string; /** * Secret name */ name: string; /** * Organization identifier for secret */ org?: string; /** * Project identifier for secret */ project?: string; spec: T0; /** * Secret tags */ tags?: { [key: string]: string; }; }