unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
54 lines • 2.56 kB
TypeScript
import type { FromSchema } from 'json-schema-to-ts';
export declare const unknownFlagsResponseSchema: {
readonly $id: "#/components/schemas/unknownFlagsResponseSchema";
readonly type: "object";
readonly additionalProperties: false;
readonly required: readonly ["unknownFlags"];
readonly description: "A list of unknown flags that have been reported by the system";
readonly properties: {
readonly unknownFlags: {
readonly description: "The list of recently reported unknown flags.";
readonly type: "array";
readonly items: {
readonly $ref: "#/components/schemas/unknownFlagSchema";
};
};
};
readonly components: {
readonly schemas: {
readonly 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 UnknownFlagsResponseSchema = FromSchema<typeof unknownFlagsResponseSchema>;
//# sourceMappingURL=unknown-flags-response-schema.d.ts.map