2023-01-05 11:57:53 +01:00
|
|
|
/**
|
2023-03-15 13:30:07 +01:00
|
|
|
* Generated by Orval
|
2023-01-05 11:57:53 +01:00
|
|
|
* Do not edit manually.
|
2023-03-15 13:30:07 +01:00
|
|
|
* See `gen:api` script in package.json
|
2023-01-05 11:57:53 +01:00
|
|
|
*/
|
|
|
|
import type { UserSchema } from './userSchema';
|
|
|
|
import type { RoleSchema } from './roleSchema';
|
|
|
|
|
2023-07-20 12:59:55 +02:00
|
|
|
/**
|
|
|
|
* Users and root roles
|
|
|
|
*/
|
2023-01-05 11:57:53 +01:00
|
|
|
export interface UsersSchema {
|
2023-07-20 12:59:55 +02:00
|
|
|
/** A list of users in the Unleash instance. */
|
2023-01-05 11:57:53 +01:00
|
|
|
users: UserSchema[];
|
2023-08-24 12:13:02 +02:00
|
|
|
/** A list of [root roles](https://docs.getunleash.io/reference/rbac#predefined-roles) in the Unleash instance. */
|
2023-01-05 11:57:53 +01:00
|
|
|
rootRoles?: RoleSchema[];
|
|
|
|
}
|