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:
parent
2b13aff4f1
commit
7c192378d6
@ -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';
|
||||
|
@ -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[];
|
||||
}
|
||||
|
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