UNPKG

unleash-server

Version:

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

45 lines (44 loc) 1.3 kB
import { FromSchema } from 'json-schema-to-ts'; export declare const projectSchema: { readonly $id: "#/components/schemas/projectSchema"; readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["id", "name"]; readonly properties: { readonly id: { readonly type: "string"; }; readonly name: { readonly type: "string"; }; readonly description: { readonly type: "string"; }; readonly health: { readonly type: "number"; }; readonly featureCount: { readonly type: "number"; }; readonly memberCount: { readonly type: "number"; }; readonly createdAt: { readonly type: "string"; readonly format: "date-time"; }; readonly updatedAt: { readonly type: "string"; readonly format: "date-time"; readonly nullable: true; }; readonly changeRequestsEnabled: { readonly type: "boolean"; }; readonly favorite: { readonly type: "boolean"; }; }; readonly components: {}; }; export declare type ProjectSchema = FromSchema<typeof projectSchema>;