type StoreUpdateAction = {
addProductSelection?: InputMaybe<AddStoreProductSelection>;
addDistributionChannel?: InputMaybe<AddStoreDistributionChannel>;
addSupplyChannel?: InputMaybe<AddStoreSupplyChannel>;
changeProductSelectionActive?: InputMaybe<ChangeStoreProductSelectionActive>;
removeProductSelection?: InputMaybe<RemoveStoreProductSelection>;
removeDistributionChannel?: InputMaybe<RemoveStoreDistributionChannel>;
removeSupplyChannel?: InputMaybe<RemoveStoreSupplyChannel>;
setProductSelections?: InputMaybe<SetStoreProductSelections>;
setCustomField?: InputMaybe<SetStoreCustomField>;
setCustomType?: InputMaybe<SetStoreCustomType>;
setDistributionChannels?: InputMaybe<SetStoreDistributionChannels>;
setLanguages?: InputMaybe<SetStoreLanguages>;
setName?: InputMaybe<SetStoreName>;
setSupplyChannels?: InputMaybe<SetStoreSupplyChannels>;
};