Skip to content

Commit 82f9381

Browse files
authored
feat(iam): remove send_email in UpdateUserPassword (#1718)
1 parent fed5ef2 commit 82f9381

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,6 @@ export const marshalUpdateUserPasswordRequest = (
752752
defaults: DefaultValues,
753753
): Record<string, unknown> => ({
754754
password: request.password,
755-
send_email: request.sendEmail,
756755
})
757756

758757
export const marshalUpdateUserRequest = (

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,11 +1141,6 @@ export type UpdateUserPasswordRequest = {
11411141
userId: string
11421142
/** The new password. */
11431143
password: string
1144-
/**
1145-
* Whether or not to send an email alerting the user their password has
1146-
* changed.
1147-
*/
1148-
sendEmail: boolean
11491144
}
11501145

11511146
export type UpdateUserRequest = {

0 commit comments

Comments
 (0)