UNPKG

unleash-server

Version:

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

34 lines 1.45 kB
import type { FromSchema } from 'json-schema-to-ts'; export declare const unknownFlagSchema: { readonly $id: "#/components/schemas/unknownFlagSchema"; readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["name", "appName", "seenAt", "environment"]; readonly description: "An unknown flag that has been reported by the system"; readonly properties: { readonly name: { readonly type: "string"; readonly description: "The name of the unknown flag."; readonly example: "my-unknown-flag"; }; readonly appName: { readonly type: "string"; readonly description: "The name of the application that reported the unknown flag."; readonly example: "my-app"; }; readonly seenAt: { readonly type: "string"; readonly format: "date-time"; readonly description: "The date and time when the unknown flag was reported."; readonly example: "2023-10-01T12:00:00Z"; }; readonly environment: { readonly type: "string"; readonly description: "The environment in which the unknown flag was reported."; readonly example: "production"; }; }; readonly components: {}; }; export type UnknownFlagSchema = FromSchema<typeof unknownFlagSchema>; //# sourceMappingURL=unknown-flag-schema.d.ts.map