1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

chore: orval types (#8661)

This commit is contained in:
Mateusz Kwasniewski 2024-11-05 15:14:28 +01:00 committed by GitHub
parent 2b13aff4f1
commit 7c192378d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 16 additions and 0 deletions

View File

@ -1022,6 +1022,7 @@ export * from './projectSettingsSchemaDefaultStickiness';
export * from './projectSettingsSchemaMode';
export * from './projectStatsSchema';
export * from './projectStatusSchema';
export * from './projectStatusSchemaResources';
export * from './projectUsersSchema';
export * from './projectsSchema';
export * from './provideFeedbackSchema';

View File

@ -15,4 +15,6 @@ export interface ProfileSchema {
/** Which projects this user is a member of */
projects: string[];
rootRole: RoleSchema;
/** Which email subscriptions this user is subscribed to */
subscriptions: string[];
}

View File

@ -0,0 +1,13 @@
/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Key resources within the project
*/
export type ProjectStatusSchemaResources = {
/** The number of environments that have received SDK traffic in this project. */
connectedEnvironments: number;
};