1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-15 01:16:22 +02:00
unleash.unleash/frontend/src/openapi/models/projectStatusSchemaResources.ts
Jaanus Sellin 8a507b2eec
feat: connect project health frontend with backend (#8695)
1. Connected project health frontend with backend
2. Synced orval
2024-11-08 10:53:45 +02:00

32 lines
764 B
TypeScript

/**
* 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 API tokens created specifically for this project.
* @minimum 0
*/
apiTokens: number;
/**
* The number of environments that have received SDK traffic in this project.
* @minimum 0
*/
connectedEnvironments: number;
/**
* The number of users who have been granted roles in this project. Does not include users who have access via groups.
* @minimum 0
*/
members: number;
/**
* The number of segments that are scoped to this project.
* @minimum 0
*/
segments: number;
};