UNPKG

unleash-server

Version:

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

55 lines (54 loc) 1.97 kB
import { FromSchema } from 'json-schema-to-ts'; export declare const applicationsSchema: { readonly $id: "#/components/schemas/applicationsSchema"; readonly type: "object"; readonly properties: { readonly applications: { readonly type: "array"; readonly items: { readonly $ref: "#/components/schemas/applicationSchema"; }; }; }; readonly components: { readonly schemas: { readonly applicationSchema: { readonly $id: "#/components/schemas/applicationSchema"; readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["appName"]; readonly properties: { readonly appName: { readonly type: "string"; }; readonly sdkVersion: { readonly type: "string"; }; readonly strategies: { readonly type: "array"; readonly items: { readonly type: "string"; }; }; readonly description: { readonly type: "string"; }; readonly url: { readonly type: "string"; }; readonly color: { readonly type: "string"; }; readonly icon: { readonly type: "string"; }; readonly announced: { readonly type: "boolean"; }; }; readonly components: {}; }; }; }; }; export declare type ApplicationsSchema = FromSchema<typeof applicationsSchema>;