mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
24 lines
650 B
TypeScript
24 lines
650 B
TypeScript
|
import { FromSchema } from 'json-schema-to-ts';
|
||
|
|
||
|
export const setUiConfigSchema = {
|
||
|
$id: '#/components/schemas/setUiConfigSchema',
|
||
|
type: 'object',
|
||
|
additionalProperties: false,
|
||
|
properties: {
|
||
|
frontendSettings: {
|
||
|
type: 'object',
|
||
|
additionalProperties: false,
|
||
|
required: ['frontendApiOrigins'],
|
||
|
properties: {
|
||
|
frontendApiOrigins: {
|
||
|
type: 'array',
|
||
|
items: { type: 'string' },
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
components: {},
|
||
|
} as const;
|
||
|
|
||
|
export type SetUiConfigSchema = FromSchema<typeof setUiConfigSchema>;
|