/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ /** * The state this Unleash instance is in. GOOD if everything is ok, BAD if the instance should be restarted */ export type HealthCheckSchemaHealth = (typeof HealthCheckSchemaHealth)[keyof typeof HealthCheckSchemaHealth]; // eslint-disable-next-line @typescript-eslint/no-redeclare export const HealthCheckSchemaHealth = { GOOD: 'GOOD', BAD: 'BAD', } as const;