Skip to content
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
24 changes: 12 additions & 12 deletions pkg/fusionauth/Domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -2188,7 +2188,7 @@ const (
EventType_UserUpdate EventType = "user.update"
EventType_UserUpdateComplete EventType = "user.update.complete"
EventType_Test EventType = "test"
EventType_IdentityVerified EventType = "identity.verified"
EventType_UserIdentityVerified EventType = "user.identity.verified"
EventType_UserIdentityUpdate EventType = "user.identity.update"
)

Expand Down Expand Up @@ -3356,17 +3356,6 @@ type IdentityType struct {
Name string `json:"name,omitempty"`
}

/**
* Models the identity verified event
*
* @author Brady Wied
*/
type IdentityVerifiedEvent struct {
BaseUserEvent
LoginId string `json:"loginId,omitempty"`
LoginIdType string `json:"loginIdType,omitempty"`
}

/**
* Models the reason that {@link UserIdentity#verified} was set to true or false.
*
Expand Down Expand Up @@ -7271,6 +7260,17 @@ type UserIdentityUpdateEvent struct {
PreviousLoginId string `json:"previousLoginId,omitempty"`
}

/**
* Models the user identity verified event
*
* @author Brady Wied
*/
type UserIdentityVerifiedEvent struct {
BaseUserEvent
LoginId string `json:"loginId,omitempty"`
LoginIdType string `json:"loginIdType,omitempty"`
}

/**
* Models the User Login Failed Event.
*
Expand Down