mirror of
https://github.com/Unleash/unleash.git
synced 2025-08-04 13:48:56 +02:00
chore: orval types (#8661)
This commit is contained in:
parent
2b13aff4f1
commit
7c192378d6
@ -1022,6 +1022,7 @@ export * from './projectSettingsSchemaDefaultStickiness';
|
|||||||
export * from './projectSettingsSchemaMode';
|
export * from './projectSettingsSchemaMode';
|
||||||
export * from './projectStatsSchema';
|
export * from './projectStatsSchema';
|
||||||
export * from './projectStatusSchema';
|
export * from './projectStatusSchema';
|
||||||
|
export * from './projectStatusSchemaResources';
|
||||||
export * from './projectUsersSchema';
|
export * from './projectUsersSchema';
|
||||||
export * from './projectsSchema';
|
export * from './projectsSchema';
|
||||||
export * from './provideFeedbackSchema';
|
export * from './provideFeedbackSchema';
|
||||||
|
@ -15,4 +15,6 @@ export interface ProfileSchema {
|
|||||||
/** Which projects this user is a member of */
|
/** Which projects this user is a member of */
|
||||||
projects: string[];
|
projects: string[];
|
||||||
rootRole: RoleSchema;
|
rootRole: RoleSchema;
|
||||||
|
/** Which email subscriptions this user is subscribed to */
|
||||||
|
subscriptions: string[];
|
||||||
}
|
}
|
||||||
|
13
frontend/src/openapi/models/projectStatusSchemaResources.ts
Normal file
13
frontend/src/openapi/models/projectStatusSchemaResources.ts
Normal 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;
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user