@develit-services/bank 0.4.1 → 0.4.2
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.
- package/dist/export/worker.cjs +1 -1
- package/dist/export/worker.mjs +1 -1
- package/package.json +1 -1
package/dist/export/worker.cjs
CHANGED
|
@@ -965,7 +965,7 @@ let BankServiceBase = class extends backendSdk.develitWorker(cloudflare_workers.
|
|
|
965
965
|
connectorKey
|
|
966
966
|
}) => {
|
|
967
967
|
const account = await getAccountByIbanQuery(this.db, {
|
|
968
|
-
iban:
|
|
968
|
+
iban: creditor.iban
|
|
969
969
|
});
|
|
970
970
|
if (!account)
|
|
971
971
|
throw backendSdk.createInternalError(null, {
|
package/dist/export/worker.mjs
CHANGED
|
@@ -963,7 +963,7 @@ let BankServiceBase = class extends develitWorker(WorkerEntrypoint) {
|
|
|
963
963
|
connectorKey
|
|
964
964
|
}) => {
|
|
965
965
|
const account = await getAccountByIbanQuery(this.db, {
|
|
966
|
-
iban:
|
|
966
|
+
iban: creditor.iban
|
|
967
967
|
});
|
|
968
968
|
if (!account)
|
|
969
969
|
throw createInternalError(null, {
|