1
0
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:
Jaanus Sellin 2024-04-16 21:07:37 +03:00 committed by GitHub
parent ef23cc0cc1
commit 30ea2d91bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 8 additions and 0 deletions

View File

@ -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 */

View File

@ -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 */

View File

@ -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[];
}

View File

@ -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 */