mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
27 lines
486 B
TypeScript
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;
|
|
};
|