UNPKG

unleash-server

Version:

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

23 lines 705 B
import { frontendApiFeatureSchema } from './frontend-api-feature-schema.js'; export const frontendApiFeaturesSchema = { $id: '#/components/schemas/frontendApiFeaturesSchema', type: 'object', required: ['toggles'], additionalProperties: false, description: 'Frontend SDK features list', properties: { toggles: { description: 'The actual features returned to the Frontend SDK', type: 'array', items: { $ref: frontendApiFeatureSchema.$id, }, }, }, components: { schemas: { frontendApiFeatureSchema, }, }, }; //# sourceMappingURL=frontend-api-features-schema.js.map