UNPKG

unleash-server

Version:

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

17 lines 602 B
import { sdkContextSchema } from './sdk-context-schema.js'; export const frontendApiFeaturesPostSchema = { $id: '#/components/schemas/frontendApiFeaturesPostContextSchema', description: 'The Unleash frontend API POST request body.', type: 'object', additionalProperties: true, properties: { context: { description: 'The Unleash context.', type: 'object', additionalProperties: true, properties: sdkContextSchema.properties, }, }, components: {}, }; //# sourceMappingURL=frontend-api-features-post-schema.js.map