13 August 2025
CustomersMessages/SubscriptionsGraphQL
You can now subscribe to Messages to receive notifications when the associated stores, default billing address, and default shipping address of a Customer are changed.
Changes:
- [API] Added the following Messages: CustomerDefaultBillingAddressSet, CustomerDefaultShippingAddressSet, and CustomerStoresSet.
 - [GraphQL API] Added the following types to the GraphQL schema: 
CustomerDefaultBillingAddressSet,CustomerDefaultShippingAddressSet,CustomerStoresSet. 
The following changes were introduced in terms of GraphQL SDL:
type CustomerDefaultBillingAddressSet implements MessagePayload {
  address: Address
  type: String!
}
type CustomerDefaultShippingAddressSet implements MessagePayload {
  address: Address
  type: String!
}
type CustomerStoresSet implements MessagePayload {
  stores: [Store!]!
  oldStores: [Store!]!
  storesRef: [KeyReference!]!
  oldStoresRef: [KeyReference!]!
  type: String!
}