1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-20 00:08:02 +01:00

fix: add additionalproperties to the sdkContextSchema (#4682)

This was changed a month ago, but it ends up breaking the frontend when
we regenerate the types because the playground needs to have this
structure for now. We'll need to add this back until we can rewrite the
playground to follow the schema.
This commit is contained in:
Fredrik Strand Oseberg 2023-09-13 12:39:36 +02:00 committed by GitHub
parent 14423c5870
commit 99308a7054
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,7 @@ export const sdkContextSchema = {
description: 'The Unleash context as modeled in client SDKs',
type: 'object',
required: ['appName'],
additionalProperties: true,
properties: {
appName: {
type: 'string',