diff --git a/src/FusionAuthClient.ts b/src/FusionAuthClient.ts index 882cff8..288d4ec 100644 --- a/src/FusionAuthClient.ts +++ b/src/FusionAuthClient.ts @@ -7923,6 +7923,16 @@ export interface FormResponse { */ export interface FormStep { fields?: Array; + type?: FormStepType; +} + +/** + * Denotes the type of form step. This is used to configure different behavior on form steps in the registration flow. + */ +export enum FormStepType { + collectData = "collectData", + verifyEmail = "verifyEmail", + verifyPhoneNumber = "verifyPhoneNumber" } /**