chore: merge release-8.1 into telnyx (#1572)

* fix: concurrency issues caused by poller

* chore: version 8.1.4 (#1561)

* Revert "chore: version 8.1.4 (#1561)" (#1562)

This reverts commit eaa3dc5720.

---------

Co-authored-by: Taranto <rafael.taranto@protonmail.com>
This commit is contained in:
CrypticaScriptura 2023-07-31 17:49:27 -04:00 committed by GitHub
parent e8a3d2ed11
commit becd3e7a82
7 changed files with 48 additions and 26 deletions

View file

@ -59,6 +59,11 @@ function diff (oldTx, newTx) {
return updatedTx['customerId'] = newTx['customerId']
}
return
case 'dispense':
if (!oldTx.dispense) {
return updatedTx[fieldKey] = newTx[fieldKey]
}
return
default:
return updatedTx[fieldKey] = newTx[fieldKey]
}