Skip to content

Merge wied03/ENG-2002/sms-send-set-pass #158

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

Merged
merged 1 commit into from
May 14, 2025
Merged
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
13 changes: 13 additions & 0 deletions src/FusionAuthClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10146,6 +10146,7 @@ export interface RegistrationRequest extends BaseEventRequest {
generateAuthenticationToken?: boolean;
registration?: UserRegistration;
sendSetPasswordEmail?: boolean;
sendSetPasswordIdentityType?: SendSetPasswordIdentityType;
skipRegistrationVerification?: boolean;
skipVerification?: boolean;
user?: User;
Expand Down Expand Up @@ -10453,6 +10454,16 @@ export interface EmailTemplateErrors {
renderErrors?: Record<string, string>;
}

/**
* Used to indicate which identity type a password "request" might go to. It could be
* used for send set passwords or send password resets.
*/
export enum SendSetPasswordIdentityType {
email = "email",
phone = "phone",
doNotSend = "doNotSend"
}

/**
* Theme object for values used in the css variables for simple themes.
*
Expand Down Expand Up @@ -10799,6 +10810,7 @@ export interface TenantPhoneConfiguration {
forgotPasswordTemplateId?: UUID;
messengerId?: UUID;
passwordlessTemplateId?: UUID;
setPasswordTemplateId?: UUID;
unverified?: PhoneUnverifiedOptions;
verificationCompleteTemplateId?: UUID;
verificationStrategy?: VerificationStrategy;
Expand Down Expand Up @@ -12006,6 +12018,7 @@ export interface UserRequest extends BaseEventRequest {
currentPassword?: string;
disableDomainBlock?: boolean;
sendSetPasswordEmail?: boolean;
sendSetPasswordIdentityType?: SendSetPasswordIdentityType;
skipVerification?: boolean;
user?: User;
verificationIds?: Array<string>;
Expand Down