type InventoryEntryUpdateAction = {
addQuantity?: InputMaybe<AddInventoryEntryQuantity>;
changeQuantity?: InputMaybe<ChangeInventoryEntryQuantity>;
removeQuantity?: InputMaybe<RemoveInventoryEntryQuantity>;
setRestockableInDays?: InputMaybe<SetInventoryEntryRestockableInDays>;
setExpectedDelivery?: InputMaybe<SetInventoryEntryExpectedDelivery>;
setSupplyChannel?: InputMaybe<SetInventoryEntrySupplyChannel>;
setCustomType?: InputMaybe<SetInventoryEntryCustomType>;
setCustomField?: InputMaybe<SetInventoryEntryCustomField>;
};