mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
chore: generate orval types (#6871)
This commit is contained in:
parent
ef23cc0cc1
commit
30ea2d91bd
@ -36,6 +36,8 @@ export interface CreateUserResponseSchema {
|
||||
permissions?: string[];
|
||||
/** Which [root role](https://docs.getunleash.io/reference/rbac#predefined-roles) this user is assigned. Usually a numeric role ID, but can be a string when returning newly created user with an explicit string role. */
|
||||
rootRole?: CreateUserResponseSchemaRootRole;
|
||||
/** The SCIM ID of the user, only present if managed by SCIM */
|
||||
scimId?: string | null;
|
||||
/** The last time this user logged in */
|
||||
seenAt?: string | null;
|
||||
/** A unique username for the user */
|
||||
|
@ -25,6 +25,8 @@ export interface GroupSchema {
|
||||
projects?: string[];
|
||||
/** A role id that is used as the root role for all users in this group. This can be either the id of the Viewer, Editor or Admin role. */
|
||||
rootRole?: number | null;
|
||||
/** The SCIM ID of the group, only present if managed by SCIM */
|
||||
scimId?: string | null;
|
||||
/** The number of users that belong to this group */
|
||||
userCount?: number;
|
||||
/** A list of users belonging to this group */
|
||||
|
@ -29,6 +29,8 @@ export interface GroupWithProjectRoleSchema {
|
||||
roles?: number[];
|
||||
/** A role id that is used as the root role for all users in this group. This can be either the id of the Viewer, Editor or Admin role. */
|
||||
rootRole?: number | null;
|
||||
/** The SCIM ID of the group, only present if managed by SCIM */
|
||||
scimId?: string | null;
|
||||
/** A list of users belonging to this group */
|
||||
users?: GroupUserModelSchema[];
|
||||
}
|
||||
|
@ -35,6 +35,8 @@ export interface UserSchema {
|
||||
permissions?: string[];
|
||||
/** Which [root role](https://docs.getunleash.io/reference/rbac#predefined-roles) this user is assigned */
|
||||
rootRole?: number;
|
||||
/** The SCIM ID of the user, only present if managed by SCIM */
|
||||
scimId?: string | null;
|
||||
/** The last time this user logged in */
|
||||
seenAt?: string | null;
|
||||
/** A unique username for the user */
|
||||
|
Loading…
Reference in New Issue
Block a user