diff --git a/pkg/fusionauth/Domain.go b/pkg/fusionauth/Domain.go index 00c737e..1fc62ac 100644 --- a/pkg/fusionauth/Domain.go +++ b/pkg/fusionauth/Domain.go @@ -295,17 +295,18 @@ type PasswordlessConfiguration struct { type RegistrationConfiguration struct { Enableable - BirthDate Requirable `json:"birthDate,omitempty"` - ConfirmPassword bool `json:"confirmPassword"` - FirstName Requirable `json:"firstName,omitempty"` - FormId string `json:"formId,omitempty"` - FullName Requirable `json:"fullName,omitempty"` - LastName Requirable `json:"lastName,omitempty"` - LoginIdType LoginIdType `json:"loginIdType,omitempty"` - MiddleName Requirable `json:"middleName,omitempty"` - MobilePhone Requirable `json:"mobilePhone,omitempty"` - PreferredLanguages Requirable `json:"preferredLanguages,omitempty"` - Type RegistrationType `json:"type,omitempty"` + BirthDate Requirable `json:"birthDate,omitempty"` + CompleteRegistration bool `json:"completeRegistration"` + ConfirmPassword bool `json:"confirmPassword"` + FirstName Requirable `json:"firstName,omitempty"` + FormId string `json:"formId,omitempty"` + FullName Requirable `json:"fullName,omitempty"` + LastName Requirable `json:"lastName,omitempty"` + LoginIdType LoginIdType `json:"loginIdType,omitempty"` + MiddleName Requirable `json:"middleName,omitempty"` + MobilePhone Requirable `json:"mobilePhone,omitempty"` + PreferredLanguages Requirable `json:"preferredLanguages,omitempty"` + Type RegistrationType `json:"type,omitempty"` } // This is separate from IdentityType. @@ -7044,7 +7045,8 @@ type TwoFactorTrust struct { * @author Lyle Schemmerling */ type UniversalApplicationConfiguration struct { - Universal bool `json:"universal"` + AllowTenantManagerIdentityProviders bool `json:"allowTenantManagerIdentityProviders"` + Universal bool `json:"universal"` } /**