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[];
|
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. */
|
/** 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;
|
rootRole?: CreateUserResponseSchemaRootRole;
|
||||||
|
/** The SCIM ID of the user, only present if managed by SCIM */
|
||||||
|
scimId?: string | null;
|
||||||
/** The last time this user logged in */
|
/** The last time this user logged in */
|
||||||
seenAt?: string | null;
|
seenAt?: string | null;
|
||||||
/** A unique username for the user */
|
/** A unique username for the user */
|
||||||
|
@ -25,6 +25,8 @@ export interface GroupSchema {
|
|||||||
projects?: string[];
|
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. */
|
/** 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;
|
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 */
|
/** The number of users that belong to this group */
|
||||||
userCount?: number;
|
userCount?: number;
|
||||||
/** A list of users belonging to this group */
|
/** A list of users belonging to this group */
|
||||||
|
@ -29,6 +29,8 @@ export interface GroupWithProjectRoleSchema {
|
|||||||
roles?: number[];
|
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. */
|
/** 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;
|
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 */
|
/** A list of users belonging to this group */
|
||||||
users?: GroupUserModelSchema[];
|
users?: GroupUserModelSchema[];
|
||||||
}
|
}
|
||||||
|
@ -35,6 +35,8 @@ export interface UserSchema {
|
|||||||
permissions?: string[];
|
permissions?: string[];
|
||||||
/** Which [root role](https://docs.getunleash.io/reference/rbac#predefined-roles) this user is assigned */
|
/** Which [root role](https://docs.getunleash.io/reference/rbac#predefined-roles) this user is assigned */
|
||||||
rootRole?: number;
|
rootRole?: number;
|
||||||
|
/** The SCIM ID of the user, only present if managed by SCIM */
|
||||||
|
scimId?: string | null;
|
||||||
/** The last time this user logged in */
|
/** The last time this user logged in */
|
||||||
seenAt?: string | null;
|
seenAt?: string | null;
|
||||||
/** A unique username for the user */
|
/** A unique username for the user */
|
||||||
|
Loading…
Reference in New Issue
Block a user