Skip to content

Commit 238aeab

Browse files
authored
feat(iam): add locked status on User (#1432)
1 parent 8ec62c1 commit 238aeab

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/iam/v1alpha1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ export const unmarshalUser = (data: unknown): User => {
233233
email: data.email,
234234
id: data.id,
235235
lastLoginAt: unmarshalDate(data.last_login_at),
236+
locked: data.locked,
236237
mfa: data.mfa,
237238
organizationId: data.organization_id,
238239
status: data.status,

packages/clients/src/api/iam/v1alpha1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,8 @@ export interface User {
407407
accountRootUserId: string
408408
/** Tags associated with the user. */
409409
tags: string[]
410+
/** Defines whether the user is locked. */
411+
locked: boolean
410412
}
411413

412414
export type AddGroupMemberRequest = {

0 commit comments

Comments
 (0)