UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

19 lines 968 B
import type { FromSchema } from 'json-schema-to-ts'; export declare const healthCheckSchema: { readonly $id: "#/components/schemas/healthCheckSchema"; readonly type: "object"; readonly description: "Used by service orchestrators to decide whether this Unleash instance should be marked as healthy or unhealthy"; readonly additionalProperties: false; readonly required: readonly ["health"]; readonly properties: { readonly health: { readonly description: "The state this Unleash instance is in. GOOD if the server is up and running. It never returns BAD, if the server is unhealthy you will get an unsuccessful http response."; readonly type: "string"; readonly enum: readonly ["GOOD", "BAD"]; readonly example: "GOOD"; }; }; readonly components: {}; }; export type HealthCheckSchema = FromSchema<typeof healthCheckSchema>; //# sourceMappingURL=health-check-schema.d.ts.map