1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-27 11:02:16 +01:00
unleash.unleash/frontend/src/openapi/models/instanceAdminStatsSchemaApiTokens.ts
Tymoteusz Czech 76ffdb2cd3
chore: update Frontend schema (#8037)
update types, fix frontend types issues in insights and archive
2024-09-02 14:41:17 +02:00

27 lines
486 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* The number of API tokens in Unleash, split by type
*/
export type InstanceAdminStatsSchemaApiTokens = {
/**
* The number of admin tokens.
* @minimum 0
*/
admin?: number;
/**
* The number of client tokens.
* @minimum 0
*/
client?: number;
/**
* The number of frontend tokens.
* @minimum 0
*/
frontend?: number;
};