/** * Metadata key-value pair for create/update operations */ export interface MetadataItemInput { /** * The metadata key name (case-sensitive) * @example "environment" */ key: string; /** * The metadata value * @example "production" */ value: string; }