UNPKG

unleash-server

Version:

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

19 lines 949 B
import type { FromSchema } from 'json-schema-to-ts'; export declare const readyCheckSchema: { readonly $id: "#/components/schemas/readyCheckSchema"; readonly type: "object"; readonly description: "Used by service orchestrators to decide whether this Unleash instance should be considered ready to serve requests."; readonly additionalProperties: false; readonly required: readonly ["health"]; readonly properties: { readonly health: { readonly description: "The readiness state this Unleash instance is in. GOOD if the server is up and running. If the server is unhealthy you will get an unsuccessful http response."; readonly type: "string"; readonly enum: readonly ["GOOD"]; readonly example: "GOOD"; }; }; readonly components: {}; }; export type ReadyCheckSchema = FromSchema<typeof readyCheckSchema>; //# sourceMappingURL=ready-check-schema.d.ts.map