All Release Notes
Audit Log now tracks changes on Store's Product Selections
1 December 2022
Composable Commerce
HTTP API
Enhancement
Product catalogAudit Log
We have extended the abilities of Audit Log to include tracking of changes made on a Store's Product Selections. With this enhancement, all Product Selection-related Changes performed on Stores are tracked from now on and these Changes are now retrievable via API.
Changes:
- [API] Added support for update actions
addProductSelection
,removeProductSelection
, andchangeProductSelectionActive
on Stores. - [GraphQL API] Added
addProductSelection
,removeProductSelection
, andchangeProductSelectionActive
toStoreChangeInput
. - [GraphQL API] Added
addProductSelection
,removeProductSelection
, andchangeProductSelectionActive
toResourceChangeInput
. - [GraphQL API] Added
productSelection
field toStoreChange
.
The following changes were introduced in terms of GraphQL SDL:
enum StoreChangeInput {...changeProductSelectionActiveaddProductSelectionremoveProductSelection}enum ResourceChangeInput {...changeProductSelectionActiveaddProductSelectionremoveProductSelection}type StoreChange implements Change {...productSelection: Reference}