Skip to content

Commit

Permalink
chore: orval types (#8661)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Nov 5, 2024
1 parent 2b13aff commit 7c19237
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions frontend/src/openapi/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/openapi/models/profileSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 13 additions & 0 deletions frontend/src/openapi/models/projectStatusSchemaResources.ts
Original file line number Diff line number Diff line change
@@ -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;
};

0 comments on commit 7c19237

Please sign in to comment.