/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { SafeguardSchemaTriggerCondition } from './safeguardSchemaTriggerCondition.js'; /** * A safeguard configuration for release plan automation */ export interface SafeguardSchema { /** The unique ULID identifier for this safeguard */ id: string; /** The impact metric id */ impactMetric: string; /** The condition that triggers the safeguard action */ triggerCondition: SafeguardSchemaTriggerCondition; }