All Release Notes
Added Store Created and Store Deleted Messages
5 August 2021
Composable Commerce
HTTP API
Enhancement
GraphQLProject configurationMessages/Subscriptions
You can now subscribe to messages triggered when Stores are created and deleted.
Changes:
- [API] Added StoreCreated Message
- [API] Added StoreDeleted Message
- [GraphQL API] Added the following types to the GraphQL schema:
StoreCreated
, andStoreDeleted
.
The following changes were introduced in terms of GraphQL SDL:
type StoreCreated implements MessagePayload {languages: [Locale!]!custom: CustomFieldsTypename("String is defined for different locales. This argument specifies the desired locale."locale: Locale,"List of languages the client is able to understand, and which locale variant is preferred."acceptLanguage: [Locale!]): StringdistributionChannels: [Channel!]!supplyChannels: [Channel!]!distributionChannelsRef: [Reference!]!supplyChannelsRef: [Reference!]!nameAllLocales: [LocalizedString!]type: String!}type StoreDeleted implements MessagePayload {type: String!}