@zeniai/client-epic-state 4.19.24-betaAR13 → 4.19.24-betaAR15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -136,6 +136,7 @@ exports.default = transaction.reducer;
136
136
  function doUpdateTransaction(draft, id, payload, updateType) {
137
137
  const transaction = (0, toSupportedTransaction_1.default)(payload);
138
138
  const existingTransaction = draft[id];
139
+ console.log("CES: doUpdateTransaction", id, payload, updateType, existingTransaction);
139
140
  if (existingTransaction != null && updateType === 'merge') {
140
141
  (0, assignWith_1.default)(draft[id], transaction, (objValue, srcValue, key) => {
141
142
  if (key === 'lines' && objValue != null && srcValue != null) {