unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
40 lines (39 loc) • 1.22 kB
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const clientApplicationSchema: {
readonly $id: "#/components/schemas/clientApplicationSchema";
readonly type: "object";
readonly required: readonly ["appName", "interval", "started", "strategies"];
readonly properties: {
readonly appName: {
readonly type: "string";
};
readonly instanceId: {
readonly type: "string";
};
readonly sdkVersion: {
readonly type: "string";
};
readonly environment: {
readonly type: "string";
};
readonly interval: {
readonly type: "number";
};
readonly started: {
readonly oneOf: readonly [{
readonly type: "string";
readonly format: "date-time";
}, {
readonly type: "number";
}];
};
readonly strategies: {
readonly type: "array";
readonly items: {
readonly type: "string";
};
};
};
readonly components: {};
};
export declare type ClientApplicationSchema = FromSchema<typeof clientApplicationSchema>;