diff --git a/api-specs/graphql/schema.sdl b/api-specs/graphql/schema.sdl index 2c8d7f855..1f390f7e4 100644 --- a/api-specs/graphql/schema.sdl +++ b/api-specs/graphql/schema.sdl @@ -3499,6 +3499,12 @@ type CustomerEmailToken implements Versioned { lastModifiedBy: Initiator } +type CustomerEmailTokenCreated implements MessagePayload { + customerId: String! + expiresAt: DateTime! + type: String! +} + type CustomerEmailVerified implements MessagePayload { type: String! } @@ -3620,6 +3626,12 @@ type CustomerPasswordToken implements Versioned { lastModifiedBy: Initiator } +type CustomerPasswordTokenCreated implements MessagePayload { + customerId: String! + expiresAt: DateTime! + type: String! +} + type CustomerPasswordUpdated implements MessagePayload { reset: Boolean! type: String!