13 August 2025
Composable Commerce
HTTP API
Enhancement
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:

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!
}