All Release Notes

Added CustomerEmailTokenCreated and CustomerPasswordTokenCreated Messages

6 October 2023
Enhancement
Messages/SubscriptionsCustomersGraphQL

You can now subscribe to Messages for email verification and password reset tokens of Customers.

Changes:

The following changes were introduced in terms of GraphQL SDL:

type CustomerEmailTokenCreated implements MessagePayload {
customerId: String!
expiresAt: DateTime!
type: String!
}
type CustomerPasswordTokenCreated implements MessagePayload {
customerId: String!
expiresAt: DateTime!
type: String!
}