Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(iam): remove send_email in UpdateUserPassword #1718

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion packages/clients/src/api/iam/v1alpha1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,6 @@ export const marshalUpdateUserPasswordRequest = (
defaults: DefaultValues,
): Record<string, unknown> => ({
password: request.password,
send_email: request.sendEmail,
})

export const marshalUpdateUserRequest = (
Expand Down
5 changes: 0 additions & 5 deletions packages/clients/src/api/iam/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1141,11 +1141,6 @@ export type UpdateUserPasswordRequest = {
userId: string
/** The new password. */
password: string
/**
* Whether or not to send an email alerting the user their password has
* changed.
*/
sendEmail: boolean
}

export type UpdateUserRequest = {
Expand Down
Loading