1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-04 01:18:20 +02:00
unleash.unleash/src/lib/openapi/spec/project-application-schema.ts
Jaanus Sellin 5a75093cbc
feat: project applications e2e PoC (#6189)
1. Adding store layer
2. Updating schemas
3. Refactoring project files that I touched into feature oriented
architecture

Next steps E2E tests.
2024-02-12 16:00:59 +02:00

48 lines
1.6 KiB
TypeScript

import { FromSchema } from 'json-schema-to-ts';
import { projectApplicationSdkSchema } from './project-application-sdk-schema';
export const projectApplicationSchema = {
$id: '#/components/schemas/projectApplicationSchema',
type: 'object',
additionalProperties: false,
required: ['name', 'environments', 'instances', 'sdks'],
description: 'A project application instance.',
properties: {
name: {
type: 'string',
description:
'Name of the application that is using the SDK. This is the same as the appName in the SDK configuration.',
},
environments: {
description:
'The environments that the application is using. This is the same as the environment in the SDK configuration.',
type: 'array',
items: {
type: 'string',
},
example: ['development', 'production'],
},
instances: {
description:
'The instances of the application that are using the SDK.',
type: 'array',
items: {
type: 'string',
},
example: ['prod-b4ca', 'prod-ac8a'],
},
sdks: {
type: 'array',
description: 'The SDKs that the application is using.',
items: {
$ref: '#/components/schemas/projectApplicationSdkSchema',
},
},
},
components: { projectApplicationSdkSchema },
} as const;
export type ProjectApplicationSchema = FromSchema<
typeof projectApplicationSchema
>;