14 July 2022
Project configurationMessages/SubscriptionsGraphQL
You can now subscribe to Messages about additions, removals, or overwrites of product distribution Channels on Stores.
Changes:
- [API] Added StoreDistributionChannelsChanged Message.
 - [GraphQL API] Added the following type to the GraphQL schema: 
StoreDistributionChannelsChanged. 
The following changes were introduced in terms of GraphQL SDL:
type StoreDistributionChannelsChanged implements MessagePayload {
  addedDistributionChannels: [Channel!]!
  removedDistributionChannels: [Channel!]
  addedDistributionChannelsRef: [Reference!]!
  removedDistributionChannelsRef: [Reference!]!
  type: String!
}