Skip to content

Commit 3897493

Browse files
authored
feat(iam): add accountRootUserId in User (#644)
1 parent e2e09c7 commit 3897493

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
@@ -226,6 +226,7 @@ export const unmarshalUser = (data: unknown) => {
226226
}
227227

228228
return {
229+
accountRootUserId: data.account_root_user_id,
229230
createdAt: unmarshalDate(data.created_at),
230231
deletable: data.deletable,
231232
email: data.email,

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,8 @@ export interface User {
435435
status: UserStatus
436436
/** Defines whether MFA is enabled. */
437437
mfa: boolean
438+
/** ID of the account root user associated with the user. */
439+
accountRootUserId: string
438440
}
439441

440442
export type ListSSHKeysRequest = {

0 commit comments

Comments
 (0)