increase 0.2.0 → 0.4.0
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/.prettierignore +1 -0
- package/.release-please-manifest.json +3 -0
- package/.stats.yml +1 -1
- package/CHANGELOG.md +130 -0
- package/README.md +19 -5
- package/api.md +99 -0
- package/bin/check-release-environment +25 -0
- package/bin/publish-npm +6 -0
- package/check-version.ts +4 -1
- package/core.ts +32 -126
- package/dist/cjs/check-version.d.ts +1 -0
- package/dist/cjs/check-version.d.ts.map +1 -0
- package/dist/cjs/check-version.js +3 -1
- package/dist/cjs/check-version.js.map +1 -1
- package/dist/cjs/core.d.ts +25 -55
- package/dist/cjs/core.d.ts.map +1 -0
- package/dist/cjs/core.js +43 -168
- package/dist/cjs/core.js.map +1 -1
- package/dist/cjs/error.d.ts +208 -0
- package/dist/cjs/error.d.ts.map +1 -0
- package/dist/cjs/error.js +326 -0
- package/dist/cjs/error.js.map +1 -0
- package/dist/cjs/examples/api-error.d.ts +3 -0
- package/dist/cjs/examples/api-error.d.ts.map +1 -0
- package/dist/cjs/examples/api-error.js +92 -0
- package/dist/cjs/examples/api-error.js.map +1 -0
- package/dist/cjs/fetch-polyfill.d.ts +1 -0
- package/dist/cjs/fetch-polyfill.d.ts.map +1 -0
- package/dist/cjs/fetch-polyfill.js +2 -2
- package/dist/cjs/fetch-polyfill.js.map +1 -1
- package/dist/cjs/index.d.ts +81 -22
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +80 -26
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/pagination.d.ts +4 -0
- package/dist/cjs/pagination.d.ts.map +1 -0
- package/dist/cjs/pagination.js.map +1 -1
- package/dist/cjs/resource.d.ts +1 -0
- package/dist/cjs/resource.d.ts.map +1 -0
- package/dist/cjs/resources/account-numbers.d.ts +26 -0
- package/dist/cjs/resources/account-numbers.d.ts.map +1 -0
- package/dist/cjs/resources/account-numbers.js.map +1 -1
- package/dist/cjs/resources/account-statements.d.ts +1 -0
- package/dist/cjs/resources/account-statements.d.ts.map +1 -0
- package/dist/cjs/resources/account-statements.js.map +1 -1
- package/dist/cjs/resources/account-transfers.d.ts +20 -11
- package/dist/cjs/resources/account-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/account-transfers.js.map +1 -1
- package/dist/cjs/resources/accounts.d.ts +41 -19
- package/dist/cjs/resources/accounts.d.ts.map +1 -0
- package/dist/cjs/resources/accounts.js.map +1 -1
- package/dist/cjs/resources/ach-prenotifications.d.ts +4 -0
- package/dist/cjs/resources/ach-prenotifications.d.ts.map +1 -0
- package/dist/cjs/resources/ach-prenotifications.js.map +1 -1
- package/dist/cjs/resources/ach-transfers.d.ts +89 -9
- package/dist/cjs/resources/ach-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/ach-transfers.js.map +1 -1
- package/dist/cjs/resources/balance-lookups.d.ts +47 -0
- package/dist/cjs/resources/balance-lookups.d.ts.map +1 -0
- package/dist/cjs/resources/balance-lookups.js +15 -0
- package/dist/cjs/resources/balance-lookups.js.map +1 -0
- package/dist/cjs/resources/bookkeeping-accounts.d.ts +71 -0
- package/dist/cjs/resources/bookkeeping-accounts.d.ts.map +1 -0
- package/dist/cjs/resources/bookkeeping-accounts.js +29 -0
- package/dist/cjs/resources/bookkeeping-accounts.js.map +1 -0
- package/dist/cjs/resources/bookkeeping-entries.d.ts +43 -0
- package/dist/cjs/resources/bookkeeping-entries.d.ts.map +1 -0
- package/dist/cjs/resources/bookkeeping-entries.js +19 -0
- package/dist/cjs/resources/bookkeeping-entries.js.map +1 -0
- package/dist/cjs/resources/bookkeeping-entry-sets.d.ts +83 -0
- package/dist/cjs/resources/bookkeeping-entry-sets.d.ts.map +1 -0
- package/dist/cjs/resources/bookkeeping-entry-sets.js +15 -0
- package/dist/cjs/resources/bookkeeping-entry-sets.js.map +1 -0
- package/dist/cjs/resources/card-disputes.d.ts +13 -3
- package/dist/cjs/resources/card-disputes.d.ts.map +1 -0
- package/dist/cjs/resources/card-disputes.js.map +1 -1
- package/dist/cjs/resources/card-profiles.d.ts +18 -2
- package/dist/cjs/resources/card-profiles.d.ts.map +1 -0
- package/dist/cjs/resources/card-profiles.js.map +1 -1
- package/dist/cjs/resources/cards.d.ts +31 -2
- package/dist/cjs/resources/cards.d.ts.map +1 -0
- package/dist/cjs/resources/cards.js.map +1 -1
- package/dist/cjs/resources/check-deposits.d.ts +16 -1
- package/dist/cjs/resources/check-deposits.d.ts.map +1 -0
- package/dist/cjs/resources/check-deposits.js.map +1 -1
- package/dist/cjs/resources/check-transfers.d.ts +104 -5
- package/dist/cjs/resources/check-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/check-transfers.js.map +1 -1
- package/dist/cjs/resources/declined-transactions.d.ts +85 -23
- package/dist/cjs/resources/declined-transactions.d.ts.map +1 -0
- package/dist/cjs/resources/declined-transactions.js.map +1 -1
- package/dist/cjs/resources/digital-wallet-tokens.d.ts +1 -0
- package/dist/cjs/resources/digital-wallet-tokens.d.ts.map +1 -0
- package/dist/cjs/resources/digital-wallet-tokens.js.map +1 -1
- package/dist/cjs/resources/documents.d.ts +105 -4
- package/dist/cjs/resources/documents.d.ts.map +1 -0
- package/dist/cjs/resources/documents.js.map +1 -1
- package/dist/cjs/resources/entities/entities.d.ts +363 -136
- package/dist/cjs/resources/entities/entities.d.ts.map +1 -0
- package/dist/cjs/resources/entities/entities.js +1 -1
- package/dist/cjs/resources/entities/entities.js.map +1 -1
- package/dist/cjs/resources/entities/index.d.ts +7 -1
- package/dist/cjs/resources/entities/index.d.ts.map +1 -0
- package/dist/cjs/resources/entities/index.js +8 -1
- package/dist/cjs/resources/entities/index.js.map +1 -1
- package/dist/cjs/resources/entities/supplemental-documents.d.ts +36 -0
- package/dist/cjs/resources/entities/supplemental-documents.d.ts.map +1 -0
- package/dist/cjs/resources/entities/supplemental-documents.js +14 -1
- package/dist/cjs/resources/entities/supplemental-documents.js.map +1 -1
- package/dist/cjs/resources/event-subscriptions.d.ts +5 -0
- package/dist/cjs/resources/event-subscriptions.d.ts.map +1 -0
- package/dist/cjs/resources/event-subscriptions.js.map +1 -1
- package/dist/cjs/resources/events.d.ts +30 -24
- package/dist/cjs/resources/events.d.ts.map +1 -0
- package/dist/cjs/resources/events.js.map +1 -1
- package/dist/cjs/resources/exports.d.ts +162 -0
- package/dist/cjs/resources/exports.d.ts.map +1 -0
- package/dist/cjs/resources/exports.js +31 -0
- package/dist/cjs/resources/exports.js.map +1 -0
- package/dist/cjs/resources/external-accounts.d.ts +4 -2
- package/dist/cjs/resources/external-accounts.d.ts.map +1 -0
- package/dist/cjs/resources/external-accounts.js.map +1 -1
- package/dist/cjs/resources/files.d.ts +10 -4
- package/dist/cjs/resources/files.d.ts.map +1 -0
- package/dist/cjs/resources/files.js.map +1 -1
- package/dist/cjs/resources/groups.d.ts +1 -0
- package/dist/cjs/resources/groups.d.ts.map +1 -0
- package/dist/cjs/resources/inbound-ach-transfer-returns.d.ts +4 -0
- package/dist/cjs/resources/inbound-ach-transfer-returns.d.ts.map +1 -0
- package/dist/cjs/resources/inbound-ach-transfer-returns.js.map +1 -1
- package/dist/cjs/resources/inbound-wire-drawdown-requests.d.ts +1 -0
- package/dist/cjs/resources/inbound-wire-drawdown-requests.d.ts.map +1 -0
- package/dist/cjs/resources/inbound-wire-drawdown-requests.js.map +1 -1
- package/dist/cjs/resources/index.d.ts +29 -0
- package/dist/cjs/resources/index.d.ts.map +1 -0
- package/dist/cjs/resources/index.js +100 -9
- package/dist/cjs/resources/index.js.map +1 -1
- package/dist/cjs/resources/limits.d.ts +1 -0
- package/dist/cjs/resources/limits.d.ts.map +1 -0
- package/dist/cjs/resources/limits.js.map +1 -1
- package/dist/cjs/resources/oauth-connections.d.ts +1 -0
- package/dist/cjs/resources/oauth-connections.d.ts.map +1 -0
- package/dist/cjs/resources/oauth-connections.js.map +1 -1
- package/dist/cjs/resources/pending-transactions.d.ts +115 -36
- package/dist/cjs/resources/pending-transactions.d.ts.map +1 -0
- package/dist/cjs/resources/pending-transactions.js.map +1 -1
- package/dist/cjs/resources/programs.d.ts +48 -0
- package/dist/cjs/resources/programs.d.ts.map +1 -0
- package/dist/cjs/resources/programs.js +25 -0
- package/dist/cjs/resources/programs.js.map +1 -0
- package/dist/cjs/resources/real-time-decisions.d.ts +43 -7
- package/dist/cjs/resources/real-time-decisions.d.ts.map +1 -0
- package/dist/cjs/resources/real-time-payments-transfers.d.ts +287 -0
- package/dist/cjs/resources/real-time-payments-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/real-time-payments-transfers.js +35 -0
- package/dist/cjs/resources/real-time-payments-transfers.js.map +1 -0
- package/dist/cjs/resources/routing-numbers.d.ts +1 -0
- package/dist/cjs/resources/routing-numbers.d.ts.map +1 -0
- package/dist/cjs/resources/shared.d.ts +1 -0
- package/dist/cjs/resources/shared.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/account-statements.d.ts +1 -0
- package/dist/cjs/resources/simulations/account-statements.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/account-transfers.d.ts +1 -0
- package/dist/cjs/resources/simulations/account-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/ach-transfers.d.ts +470 -157
- package/dist/cjs/resources/simulations/ach-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/card-disputes.d.ts +1 -0
- package/dist/cjs/resources/simulations/card-disputes.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/card-refunds.d.ts +1 -0
- package/dist/cjs/resources/simulations/card-refunds.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/cards.d.ts +188 -56
- package/dist/cjs/resources/simulations/cards.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/check-deposits.d.ts +1 -0
- package/dist/cjs/resources/simulations/check-deposits.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/check-transfers.d.ts +16 -0
- package/dist/cjs/resources/simulations/check-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/check-transfers.js +10 -0
- package/dist/cjs/resources/simulations/check-transfers.js.map +1 -1
- package/dist/cjs/resources/simulations/digital-wallet-token-requests.d.ts +1 -0
- package/dist/cjs/resources/simulations/digital-wallet-token-requests.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/documents.d.ts +1 -0
- package/dist/cjs/resources/simulations/documents.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/inbound-wire-drawdown-requests.d.ts +1 -0
- package/dist/cjs/resources/simulations/inbound-wire-drawdown-requests.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/index.d.ts +5 -0
- package/dist/cjs/resources/simulations/index.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/interest-payments.d.ts +1237 -0
- package/dist/cjs/resources/simulations/interest-payments.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/interest-payments.js +16 -0
- package/dist/cjs/resources/simulations/interest-payments.js.map +1 -0
- package/dist/cjs/resources/simulations/programs.d.ts +21 -0
- package/dist/cjs/resources/simulations/programs.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/programs.js +17 -0
- package/dist/cjs/resources/simulations/programs.js.map +1 -0
- package/dist/cjs/resources/simulations/real-time-payments-transfers.d.ts +470 -155
- package/dist/cjs/resources/simulations/real-time-payments-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/real-time-payments-transfers.js +11 -0
- package/dist/cjs/resources/simulations/real-time-payments-transfers.js.map +1 -1
- package/dist/cjs/resources/simulations/simulations.d.ts +5 -0
- package/dist/cjs/resources/simulations/simulations.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/simulations.js +4 -0
- package/dist/cjs/resources/simulations/simulations.js.map +1 -1
- package/dist/cjs/resources/simulations/wire-transfers.d.ts +332 -133
- package/dist/cjs/resources/simulations/wire-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/transactions.d.ts +353 -165
- package/dist/cjs/resources/transactions.d.ts.map +1 -0
- package/dist/cjs/resources/transactions.js.map +1 -1
- package/dist/cjs/resources/wire-drawdown-requests.d.ts +5 -0
- package/dist/cjs/resources/wire-drawdown-requests.d.ts.map +1 -0
- package/dist/cjs/resources/wire-drawdown-requests.js.map +1 -1
- package/dist/cjs/resources/wire-transfers.d.ts +39 -4
- package/dist/cjs/resources/wire-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/wire-transfers.js.map +1 -1
- package/dist/cjs/streaming.d.ts +13 -0
- package/dist/cjs/streaming.d.ts.map +1 -0
- package/dist/cjs/streaming.js +282 -0
- package/dist/cjs/streaming.js.map +1 -0
- package/dist/cjs/tests/api-resources/account-numbers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/account-numbers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/account-numbers.test.js +25 -28
- package/dist/cjs/tests/api-resources/account-numbers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/account-statements.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/account-statements.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/account-statements.test.js +7 -20
- package/dist/cjs/tests/api-resources/account-statements.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/account-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/account-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/account-transfers.test.js +16 -29
- package/dist/cjs/tests/api-resources/account-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/accounts.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/accounts.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/accounts.test.js +22 -23
- package/dist/cjs/tests/api-resources/accounts.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/ach-prenotifications.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/ach-prenotifications.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/ach-prenotifications.test.js +12 -24
- package/dist/cjs/tests/api-resources/ach-prenotifications.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/ach-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/ach-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/ach-transfers.test.js +17 -31
- package/dist/cjs/tests/api-resources/ach-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/balance-lookups.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/balance-lookups.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/balance-lookups.test.js +55 -0
- package/dist/cjs/tests/api-resources/balance-lookups.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/bookkeeping-accounts.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/bookkeeping-accounts.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/bookkeeping-accounts.test.js +78 -0
- package/dist/cjs/tests/api-resources/bookkeeping-accounts.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entries.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entries.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entries.test.js +65 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entries.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entry-sets.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entry-sets.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entry-sets.test.js +66 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entry-sets.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/card-disputes.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/card-disputes.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/card-disputes.test.js +18 -24
- package/dist/cjs/tests/api-resources/card-disputes.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/card-profiles.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/card-profiles.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/card-profiles.test.js +28 -19
- package/dist/cjs/tests/api-resources/card-profiles.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/cards.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/cards.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/cards.test.js +13 -35
- package/dist/cjs/tests/api-resources/cards.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/check-deposits.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/check-deposits.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/check-deposits.test.js +24 -27
- package/dist/cjs/tests/api-resources/check-deposits.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/check-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/check-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/check-transfers.test.js +27 -40
- package/dist/cjs/tests/api-resources/check-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/declined-transactions.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/declined-transactions.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/declined-transactions.test.js +9 -23
- package/dist/cjs/tests/api-resources/declined-transactions.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.js +8 -21
- package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/documents.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/documents.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/documents.test.js +15 -23
- package/dist/cjs/tests/api-resources/documents.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/entities/entities.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/entities/entities.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/entities/entities.test.js +40 -31
- package/dist/cjs/tests/api-resources/entities/entities.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.js +25 -6
- package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/event-subscriptions.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/event-subscriptions.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/event-subscriptions.test.js +10 -20
- package/dist/cjs/tests/api-resources/event-subscriptions.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/events.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/events.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/events.test.js +8 -22
- package/dist/cjs/tests/api-resources/events.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/exports.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/exports.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/exports.test.js +101 -0
- package/dist/cjs/tests/api-resources/exports.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/external-accounts.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/external-accounts.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/external-accounts.test.js +13 -27
- package/dist/cjs/tests/api-resources/external-accounts.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/files.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/files.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/files.test.js +8 -21
- package/dist/cjs/tests/api-resources/files.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/groups.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/groups.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/groups.test.js +6 -5
- package/dist/cjs/tests/api-resources/groups.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.js +16 -12
- package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.js +6 -9
- package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/limits.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/limits.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/limits.test.js +14 -17
- package/dist/cjs/tests/api-resources/limits.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/oauth-connections.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/oauth-connections.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/oauth-connections.test.js +6 -9
- package/dist/cjs/tests/api-resources/oauth-connections.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/pending-transactions.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/pending-transactions.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/pending-transactions.test.js +13 -17
- package/dist/cjs/tests/api-resources/pending-transactions.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/programs.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/programs.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/programs.test.js +73 -0
- package/dist/cjs/tests/api-resources/programs.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/real-time-decisions.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/real-time-decisions.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/real-time-decisions.test.js +6 -16
- package/dist/cjs/tests/api-resources/real-time-decisions.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/real-time-payments-transfers.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/real-time-payments-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/real-time-payments-transfers.test.js +113 -0
- package/dist/cjs/tests/api-resources/real-time-payments-transfers.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/routing-numbers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/routing-numbers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/routing-numbers.test.js +6 -5
- package/dist/cjs/tests/api-resources/routing-numbers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/account-statements.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/account-statements.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/account-statements.test.js +11 -8
- package/dist/cjs/tests/api-resources/simulations/account-statements.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/account-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/account-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/account-transfers.test.js +5 -4
- package/dist/cjs/tests/api-resources/simulations/account-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.js +13 -19
- package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/card-disputes.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/card-disputes.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/card-disputes.test.js +8 -7
- package/dist/cjs/tests/api-resources/simulations/card-disputes.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/card-refunds.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/card-refunds.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/card-refunds.test.js +11 -8
- package/dist/cjs/tests/api-resources/simulations/card-refunds.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/cards.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/cards.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/cards.test.js +12 -10
- package/dist/cjs/tests/api-resources/simulations/cards.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/check-deposits.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/check-deposits.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/check-deposits.test.js +5 -4
- package/dist/cjs/tests/api-resources/simulations/check-deposits.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/check-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/check-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/check-transfers.test.js +23 -4
- package/dist/cjs/tests/api-resources/simulations/check-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.js +11 -8
- package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/documents.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/documents.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/documents.test.js +10 -7
- package/dist/cjs/tests/api-resources/simulations/documents.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.js +29 -28
- package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/interest-payments.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/simulations/interest-payments.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/interest-payments.test.js +58 -0
- package/dist/cjs/tests/api-resources/simulations/interest-payments.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/programs.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/simulations/programs.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/programs.test.js +52 -0
- package/dist/cjs/tests/api-resources/simulations/programs.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.js +20 -12
- package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.js +11 -10
- package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/transactions.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/transactions.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/transactions.test.js +11 -28
- package/dist/cjs/tests/api-resources/transactions.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.js +20 -23
- package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/wire-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/wire-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/wire-transfers.test.js +22 -36
- package/dist/cjs/tests/api-resources/wire-transfers.test.js.map +1 -1
- package/dist/cjs/tests/form.test.d.ts +1 -0
- package/dist/cjs/tests/form.test.d.ts.map +1 -0
- package/dist/cjs/tests/form.test.js +4 -3
- package/dist/cjs/tests/index.test.d.ts +1 -0
- package/dist/cjs/tests/index.test.d.ts.map +1 -0
- package/dist/cjs/tests/index.test.js +36 -4
- package/dist/cjs/tests/index.test.js.map +1 -1
- package/dist/cjs/tests/responses.test.d.ts +1 -0
- package/dist/cjs/tests/responses.test.d.ts.map +1 -0
- package/dist/cjs/tests/responses.test.js +4 -3
- package/dist/cjs/version.d.ts +2 -1
- package/dist/cjs/version.d.ts.map +1 -0
- package/dist/cjs/version.js +1 -1
- package/dist/cjs/version.js.map +1 -1
- package/error.ts +505 -0
- package/examples/api-error.ts +21 -0
- package/fetch-polyfill.ts +2 -2
- package/index.ts +90 -20
- package/package.json +2 -2
- package/pagination.ts +3 -0
- package/release-please-config.json +61 -0
- package/resources/account-numbers.ts +30 -1
- package/resources/account-statements.ts +0 -1
- package/resources/account-transfers.ts +21 -13
- package/resources/accounts.ts +48 -23
- package/resources/ach-prenotifications.ts +3 -1
- package/resources/ach-transfers.ts +92 -11
- package/resources/balance-lookups.ts +57 -0
- package/resources/bookkeeping-accounts.ts +98 -0
- package/resources/bookkeeping-entries.ts +62 -0
- package/resources/bookkeeping-entry-sets.ts +100 -0
- package/resources/card-disputes.ts +12 -4
- package/resources/card-profiles.ts +17 -3
- package/resources/cards.ts +30 -3
- package/resources/check-deposits.ts +15 -2
- package/resources/check-transfers.ts +117 -7
- package/resources/declined-transactions.ts +96 -27
- package/resources/digital-wallet-tokens.ts +0 -1
- package/resources/documents.ts +104 -5
- package/resources/entities/entities.ts +443 -212
- package/resources/entities/index.ts +6 -1
- package/resources/entities/supplemental-documents.ts +46 -0
- package/resources/event-subscriptions.ts +4 -1
- package/resources/events.ts +33 -29
- package/resources/exports.ts +204 -0
- package/resources/external-accounts.ts +3 -3
- package/resources/files.ts +9 -5
- package/resources/inbound-ach-transfer-returns.ts +3 -1
- package/resources/inbound-wire-drawdown-requests.ts +0 -1
- package/resources/index.ts +28 -0
- package/resources/limits.ts +0 -1
- package/resources/oauth-connections.ts +0 -1
- package/resources/pending-transactions.ts +126 -48
- package/resources/programs.ts +70 -0
- package/resources/real-time-decisions.ts +43 -8
- package/resources/real-time-payments-transfers.ts +351 -0
- package/resources/simulations/ach-transfers.ts +504 -192
- package/resources/simulations/cards.ts +206 -69
- package/resources/simulations/check-transfers.ts +19 -0
- package/resources/simulations/index.ts +4 -0
- package/resources/simulations/interest-payments.ts +1501 -0
- package/resources/simulations/programs.ts +26 -0
- package/resources/simulations/real-time-payments-transfers.ts +512 -190
- package/resources/simulations/simulations.ts +4 -0
- package/resources/simulations/wire-transfers.ts +354 -165
- package/resources/transactions.ts +379 -202
- package/resources/wire-drawdown-requests.ts +4 -1
- package/resources/wire-transfers.ts +43 -6
- package/streaming.ts +199 -0
- package/tests/api-resources/account-numbers.test.ts +22 -25
- package/tests/api-resources/account-statements.test.ts +4 -17
- package/tests/api-resources/account-transfers.test.ts +13 -26
- package/tests/api-resources/accounts.test.ts +19 -20
- package/tests/api-resources/ach-prenotifications.test.ts +9 -21
- package/tests/api-resources/ach-transfers.test.ts +14 -28
- package/tests/api-resources/balance-lookups.test.ts +18 -0
- package/tests/api-resources/bookkeeping-accounts.test.ts +38 -0
- package/tests/api-resources/bookkeeping-entries.test.ts +25 -0
- package/tests/api-resources/bookkeeping-entry-sets.test.ts +29 -0
- package/tests/api-resources/card-disputes.test.ts +15 -21
- package/tests/api-resources/card-profiles.test.ts +25 -16
- package/tests/api-resources/cards.test.ts +10 -32
- package/tests/api-resources/check-deposits.test.ts +21 -24
- package/tests/api-resources/check-transfers.test.ts +24 -37
- package/tests/api-resources/declined-transactions.test.ts +6 -20
- package/tests/api-resources/digital-wallet-tokens.test.ts +5 -18
- package/tests/api-resources/documents.test.ts +8 -20
- package/tests/api-resources/entities/entities.test.ts +37 -31
- package/tests/api-resources/entities/supplemental-documents.test.ts +22 -3
- package/tests/api-resources/event-subscriptions.test.ts +7 -17
- package/tests/api-resources/events.test.ts +5 -19
- package/tests/api-resources/exports.test.ts +64 -0
- package/tests/api-resources/external-accounts.test.ts +10 -24
- package/tests/api-resources/files.test.ts +5 -19
- package/tests/api-resources/groups.test.ts +3 -2
- package/tests/api-resources/inbound-ach-transfer-returns.test.ts +13 -9
- package/tests/api-resources/inbound-wire-drawdown-requests.test.ts +3 -6
- package/tests/api-resources/limits.test.ts +11 -14
- package/tests/api-resources/oauth-connections.test.ts +3 -6
- package/tests/api-resources/pending-transactions.test.ts +10 -14
- package/tests/api-resources/programs.test.ts +36 -0
- package/tests/api-resources/real-time-decisions.test.ts +3 -13
- package/tests/api-resources/real-time-payments-transfers.test.ts +76 -0
- package/tests/api-resources/routing-numbers.test.ts +3 -2
- package/tests/api-resources/simulations/account-statements.test.ts +8 -5
- package/tests/api-resources/simulations/account-transfers.test.ts +2 -1
- package/tests/api-resources/simulations/ach-transfers.test.ts +10 -16
- package/tests/api-resources/simulations/card-disputes.test.ts +5 -4
- package/tests/api-resources/simulations/card-refunds.test.ts +8 -5
- package/tests/api-resources/simulations/cards.test.ts +9 -7
- package/tests/api-resources/simulations/check-deposits.test.ts +2 -1
- package/tests/api-resources/simulations/check-transfers.test.ts +14 -1
- package/tests/api-resources/simulations/digital-wallet-token-requests.test.ts +8 -5
- package/tests/api-resources/simulations/documents.test.ts +7 -4
- package/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.ts +26 -25
- package/tests/api-resources/simulations/interest-payments.test.ts +15 -0
- package/tests/api-resources/simulations/programs.test.ts +15 -0
- package/tests/api-resources/simulations/real-time-payments-transfers.test.ts +17 -9
- package/tests/api-resources/simulations/wire-transfers.test.ts +8 -7
- package/tests/api-resources/transactions.test.ts +8 -25
- package/tests/api-resources/wire-drawdown-requests.test.ts +17 -20
- package/tests/api-resources/wire-transfers.test.ts +19 -33
- package/tests/index.test.ts +30 -1
- package/tsconfig.json +2 -0
- package/version.ts +1 -1
|
@@ -61,6 +61,11 @@ export interface ACHTransferSimulation {
|
|
|
61
61
|
type: 'inbound_ach_transfer_simulation_result';
|
|
62
62
|
}
|
|
63
63
|
export declare namespace ACHTransferSimulation {
|
|
64
|
+
/**
|
|
65
|
+
* If the ACH Transfer attempt succeeds, this will contain the resulting
|
|
66
|
+
* [Transaction](#transactions) object. The Transaction's `source` will be of
|
|
67
|
+
* `category: inbound_ach_transfer`.
|
|
68
|
+
*/
|
|
64
69
|
interface Transaction {
|
|
65
70
|
/**
|
|
66
71
|
* The identifier for the Account the Transaction belongs to.
|
|
@@ -100,7 +105,7 @@ export declare namespace ACHTransferSimulation {
|
|
|
100
105
|
/**
|
|
101
106
|
* The type of the route this Transaction came through.
|
|
102
107
|
*/
|
|
103
|
-
route_type:
|
|
108
|
+
route_type: 'account_number' | 'card' | null;
|
|
104
109
|
/**
|
|
105
110
|
* This is an object giving more details on the network-level event that caused the
|
|
106
111
|
* Transaction. Note that for backwards compatibility reasons, additional
|
|
@@ -115,22 +120,18 @@ export declare namespace ACHTransferSimulation {
|
|
|
115
120
|
type: 'transaction';
|
|
116
121
|
}
|
|
117
122
|
namespace Transaction {
|
|
123
|
+
/**
|
|
124
|
+
* This is an object giving more details on the network-level event that caused the
|
|
125
|
+
* Transaction. Note that for backwards compatibility reasons, additional
|
|
126
|
+
* undocumented keys may appear in this object. These should be treated as
|
|
127
|
+
* deprecated and will be removed in the future.
|
|
128
|
+
*/
|
|
118
129
|
interface Source {
|
|
119
130
|
/**
|
|
120
131
|
* A Account Transfer Intention object. This field will be present in the JSON
|
|
121
132
|
* response if and only if `category` is equal to `account_transfer_intention`.
|
|
122
133
|
*/
|
|
123
134
|
account_transfer_intention: Source.AccountTransferIntention | null;
|
|
124
|
-
/**
|
|
125
|
-
* A ACH Check Conversion object. This field will be present in the JSON response
|
|
126
|
-
* if and only if `category` is equal to `ach_check_conversion`.
|
|
127
|
-
*/
|
|
128
|
-
ach_check_conversion: Source.ACHCheckConversion | null;
|
|
129
|
-
/**
|
|
130
|
-
* A ACH Check Conversion Return object. This field will be present in the JSON
|
|
131
|
-
* response if and only if `category` is equal to `ach_check_conversion_return`.
|
|
132
|
-
*/
|
|
133
|
-
ach_check_conversion_return: Source.ACHCheckConversionReturn | null;
|
|
134
135
|
/**
|
|
135
136
|
* A ACH Transfer Intention object. This field will be present in the JSON response
|
|
136
137
|
* if and only if `category` is equal to `ach_transfer_intention`.
|
|
@@ -157,15 +158,10 @@ export declare namespace ACHTransferSimulation {
|
|
|
157
158
|
*/
|
|
158
159
|
card_refund: Source.CardRefund | null;
|
|
159
160
|
/**
|
|
160
|
-
* A
|
|
161
|
-
* if and only if `category` is equal to `
|
|
161
|
+
* A Card Revenue Payment object. This field will be present in the JSON response
|
|
162
|
+
* if and only if `category` is equal to `card_revenue_payment`.
|
|
162
163
|
*/
|
|
163
|
-
|
|
164
|
-
/**
|
|
165
|
-
* A Deprecated Card Settlement object. This field will be present in the JSON
|
|
166
|
-
* response if and only if `category` is equal to `card_route_settlement`.
|
|
167
|
-
*/
|
|
168
|
-
card_route_settlement: Source.CardRouteSettlement | null;
|
|
164
|
+
card_revenue_payment: Source.CardRevenuePayment | null;
|
|
169
165
|
/**
|
|
170
166
|
* A Card Settlement object. This field will be present in the JSON response if and
|
|
171
167
|
* only if `category` is equal to `card_settlement`.
|
|
@@ -178,22 +174,20 @@ export declare namespace ACHTransferSimulation {
|
|
|
178
174
|
*/
|
|
179
175
|
category:
|
|
180
176
|
| 'account_transfer_intention'
|
|
181
|
-
| 'ach_check_conversion_return'
|
|
182
|
-
| 'ach_check_conversion'
|
|
183
177
|
| 'ach_transfer_intention'
|
|
184
178
|
| 'ach_transfer_rejection'
|
|
185
179
|
| 'ach_transfer_return'
|
|
186
180
|
| 'card_dispute_acceptance'
|
|
187
181
|
| 'card_refund'
|
|
188
182
|
| 'card_settlement'
|
|
183
|
+
| 'card_revenue_payment'
|
|
189
184
|
| 'check_deposit_acceptance'
|
|
190
185
|
| 'check_deposit_return'
|
|
191
186
|
| 'check_transfer_intention'
|
|
192
187
|
| 'check_transfer_return'
|
|
193
188
|
| 'check_transfer_rejection'
|
|
194
189
|
| 'check_transfer_stop_payment_request'
|
|
195
|
-
| '
|
|
196
|
-
| 'empyreal_cash_deposit'
|
|
190
|
+
| 'fee_payment'
|
|
197
191
|
| 'inbound_ach_transfer'
|
|
198
192
|
| 'inbound_ach_transfer_return_intention'
|
|
199
193
|
| 'inbound_check'
|
|
@@ -204,14 +198,9 @@ export declare namespace ACHTransferSimulation {
|
|
|
204
198
|
| 'inbound_wire_reversal'
|
|
205
199
|
| 'inbound_wire_transfer'
|
|
206
200
|
| 'interest_payment'
|
|
207
|
-
| 'internal_general_ledger_transaction'
|
|
208
201
|
| 'internal_source'
|
|
209
|
-
| 'card_route_refund'
|
|
210
|
-
| 'card_route_settlement'
|
|
211
202
|
| 'real_time_payments_transfer_acknowledgement'
|
|
212
203
|
| 'sample_funds'
|
|
213
|
-
| 'wire_drawdown_payment_intention'
|
|
214
|
-
| 'wire_drawdown_payment_rejection'
|
|
215
204
|
| 'wire_transfer_intention'
|
|
216
205
|
| 'wire_transfer_rejection'
|
|
217
206
|
| 'other';
|
|
@@ -247,15 +236,10 @@ export declare namespace ACHTransferSimulation {
|
|
|
247
236
|
*/
|
|
248
237
|
check_transfer_stop_payment_request: Source.CheckTransferStopPaymentRequest | null;
|
|
249
238
|
/**
|
|
250
|
-
* A
|
|
251
|
-
*
|
|
252
|
-
*/
|
|
253
|
-
dispute_resolution: Source.DisputeResolution | null;
|
|
254
|
-
/**
|
|
255
|
-
* A Empyreal Cash Deposit object. This field will be present in the JSON response
|
|
256
|
-
* if and only if `category` is equal to `empyreal_cash_deposit`.
|
|
239
|
+
* A Fee Payment object. This field will be present in the JSON response if and
|
|
240
|
+
* only if `category` is equal to `fee_payment`.
|
|
257
241
|
*/
|
|
258
|
-
|
|
242
|
+
fee_payment: Source.FeePayment | null;
|
|
259
243
|
/**
|
|
260
244
|
* A Inbound ACH Transfer object. This field will be present in the JSON response
|
|
261
245
|
* if and only if `category` is equal to `inbound_ach_transfer`.
|
|
@@ -309,23 +293,17 @@ export declare namespace ACHTransferSimulation {
|
|
|
309
293
|
* only if `category` is equal to `internal_source`.
|
|
310
294
|
*/
|
|
311
295
|
internal_source: Source.InternalSource | null;
|
|
296
|
+
/**
|
|
297
|
+
* A Real Time Payments Transfer Acknowledgement object. This field will be present
|
|
298
|
+
* in the JSON response if and only if `category` is equal to
|
|
299
|
+
* `real_time_payments_transfer_acknowledgement`.
|
|
300
|
+
*/
|
|
301
|
+
real_time_payments_transfer_acknowledgement: Source.RealTimePaymentsTransferAcknowledgement | null;
|
|
312
302
|
/**
|
|
313
303
|
* A Sample Funds object. This field will be present in the JSON response if and
|
|
314
304
|
* only if `category` is equal to `sample_funds`.
|
|
315
305
|
*/
|
|
316
306
|
sample_funds: Source.SampleFunds | null;
|
|
317
|
-
/**
|
|
318
|
-
* A Wire Drawdown Payment Intention object. This field will be present in the JSON
|
|
319
|
-
* response if and only if `category` is equal to
|
|
320
|
-
* `wire_drawdown_payment_intention`.
|
|
321
|
-
*/
|
|
322
|
-
wire_drawdown_payment_intention: Source.WireDrawdownPaymentIntention | null;
|
|
323
|
-
/**
|
|
324
|
-
* A Wire Drawdown Payment Rejection object. This field will be present in the JSON
|
|
325
|
-
* response if and only if `category` is equal to
|
|
326
|
-
* `wire_drawdown_payment_rejection`.
|
|
327
|
-
*/
|
|
328
|
-
wire_drawdown_payment_rejection: Source.WireDrawdownPaymentRejection | null;
|
|
329
307
|
/**
|
|
330
308
|
* A Wire Transfer Intention object. This field will be present in the JSON
|
|
331
309
|
* response if and only if `category` is equal to `wire_transfer_intention`.
|
|
@@ -338,6 +316,10 @@ export declare namespace ACHTransferSimulation {
|
|
|
338
316
|
wire_transfer_rejection: Source.WireTransferRejection | null;
|
|
339
317
|
}
|
|
340
318
|
namespace Source {
|
|
319
|
+
/**
|
|
320
|
+
* A Account Transfer Intention object. This field will be present in the JSON
|
|
321
|
+
* response if and only if `category` is equal to `account_transfer_intention`.
|
|
322
|
+
*/
|
|
341
323
|
interface AccountTransferIntention {
|
|
342
324
|
/**
|
|
343
325
|
* The pending amount in the minor unit of the transaction's currency. For dollars,
|
|
@@ -366,28 +348,10 @@ export declare namespace ACHTransferSimulation {
|
|
|
366
348
|
*/
|
|
367
349
|
transfer_id: string;
|
|
368
350
|
}
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
*/
|
|
374
|
-
amount: number;
|
|
375
|
-
/**
|
|
376
|
-
* Why the transfer was returned.
|
|
377
|
-
*/
|
|
378
|
-
return_reason_code: string;
|
|
379
|
-
}
|
|
380
|
-
interface ACHCheckConversion {
|
|
381
|
-
/**
|
|
382
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
383
|
-
* example, this is cents.
|
|
384
|
-
*/
|
|
385
|
-
amount: number;
|
|
386
|
-
/**
|
|
387
|
-
* The identifier of the File containing an image of the returned check.
|
|
388
|
-
*/
|
|
389
|
-
file_id: string;
|
|
390
|
-
}
|
|
351
|
+
/**
|
|
352
|
+
* A ACH Transfer Intention object. This field will be present in the JSON response
|
|
353
|
+
* if and only if `category` is equal to `ach_transfer_intention`.
|
|
354
|
+
*/
|
|
391
355
|
interface ACHTransferIntention {
|
|
392
356
|
account_number: string;
|
|
393
357
|
/**
|
|
@@ -402,18 +366,30 @@ export declare namespace ACHTransferSimulation {
|
|
|
402
366
|
*/
|
|
403
367
|
transfer_id: string;
|
|
404
368
|
}
|
|
369
|
+
/**
|
|
370
|
+
* A ACH Transfer Rejection object. This field will be present in the JSON response
|
|
371
|
+
* if and only if `category` is equal to `ach_transfer_rejection`.
|
|
372
|
+
*/
|
|
405
373
|
interface ACHTransferRejection {
|
|
406
374
|
/**
|
|
407
375
|
* The identifier of the ACH Transfer that led to this Transaction.
|
|
408
376
|
*/
|
|
409
377
|
transfer_id: string;
|
|
410
378
|
}
|
|
379
|
+
/**
|
|
380
|
+
* A ACH Transfer Return object. This field will be present in the JSON response if
|
|
381
|
+
* and only if `category` is equal to `ach_transfer_return`.
|
|
382
|
+
*/
|
|
411
383
|
interface ACHTransferReturn {
|
|
412
384
|
/**
|
|
413
385
|
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
414
386
|
* the transfer was created.
|
|
415
387
|
*/
|
|
416
388
|
created_at: string;
|
|
389
|
+
/**
|
|
390
|
+
* The three character ACH return code, in the range R01 to R85.
|
|
391
|
+
*/
|
|
392
|
+
raw_return_reason_code: string;
|
|
417
393
|
/**
|
|
418
394
|
* Why the ACH Transfer was returned.
|
|
419
395
|
*/
|
|
@@ -437,10 +413,58 @@ export declare namespace ACHTransferSimulation {
|
|
|
437
413
|
| 'file_record_edit_criteria'
|
|
438
414
|
| 'enr_invalid_individual_name'
|
|
439
415
|
| 'returned_per_odfi_request'
|
|
440
|
-
| 'addenda_error'
|
|
441
416
|
| 'limited_participation_dfi'
|
|
442
417
|
| 'incorrectly_coded_outbound_international_payment'
|
|
443
|
-
| 'other'
|
|
418
|
+
| 'other'
|
|
419
|
+
| 'account_sold_to_another_dfi'
|
|
420
|
+
| 'addenda_error'
|
|
421
|
+
| 'beneficiary_or_account_holder_deceased'
|
|
422
|
+
| 'customer_advised_not_within_authorization_terms'
|
|
423
|
+
| 'corrected_return'
|
|
424
|
+
| 'duplicate_entry'
|
|
425
|
+
| 'duplicate_return'
|
|
426
|
+
| 'enr_duplicate_enrollment'
|
|
427
|
+
| 'enr_invalid_dfi_account_number'
|
|
428
|
+
| 'enr_invalid_individual_id_number'
|
|
429
|
+
| 'enr_invalid_representative_payee_indicator'
|
|
430
|
+
| 'enr_invalid_transaction_code'
|
|
431
|
+
| 'enr_return_of_enr_entry'
|
|
432
|
+
| 'enr_routing_number_check_digit_error'
|
|
433
|
+
| 'entry_not_processed_by_gateway'
|
|
434
|
+
| 'field_error'
|
|
435
|
+
| 'foreign_receiving_dfi_unable_to_settle'
|
|
436
|
+
| 'iat_entry_coding_error'
|
|
437
|
+
| 'improper_effective_entry_date'
|
|
438
|
+
| 'improper_source_document_source_document_presented'
|
|
439
|
+
| 'invalid_company_id'
|
|
440
|
+
| 'invalid_foreign_receiving_dfi_identification'
|
|
441
|
+
| 'invalid_individual_id_number'
|
|
442
|
+
| 'item_and_rck_entry_presented_for_payment'
|
|
443
|
+
| 'item_related_to_rck_entry_is_ineligible'
|
|
444
|
+
| 'mandatory_field_error'
|
|
445
|
+
| 'misrouted_dishonored_return'
|
|
446
|
+
| 'misrouted_return'
|
|
447
|
+
| 'no_errors_found'
|
|
448
|
+
| 'non_acceptance_of_r62_dishonored_return'
|
|
449
|
+
| 'non_participant_in_iat_program'
|
|
450
|
+
| 'permissible_return_entry'
|
|
451
|
+
| 'permissible_return_entry_not_accepted'
|
|
452
|
+
| 'rdfi_non_settlement'
|
|
453
|
+
| 'rdfi_participant_in_check_truncation_program'
|
|
454
|
+
| 'representative_payee_deceased_or_unable_to_continue_in_that_capacity'
|
|
455
|
+
| 'return_not_a_duplicate'
|
|
456
|
+
| 'return_of_erroneous_or_reversing_debit'
|
|
457
|
+
| 'return_of_improper_credit_entry'
|
|
458
|
+
| 'return_of_improper_debit_entry'
|
|
459
|
+
| 'return_of_xck_entry'
|
|
460
|
+
| 'source_document_presented_for_payment'
|
|
461
|
+
| 'state_law_affecting_rck_acceptance'
|
|
462
|
+
| 'stop_payment_on_item_related_to_rck_entry'
|
|
463
|
+
| 'stop_payment_on_source_document'
|
|
464
|
+
| 'timely_original_return'
|
|
465
|
+
| 'trace_number_error'
|
|
466
|
+
| 'untimely_dishonored_return'
|
|
467
|
+
| 'untimely_return';
|
|
444
468
|
/**
|
|
445
469
|
* The identifier of the Tranasaction associated with this return.
|
|
446
470
|
*/
|
|
@@ -450,6 +474,10 @@ export declare namespace ACHTransferSimulation {
|
|
|
450
474
|
*/
|
|
451
475
|
transfer_id: string;
|
|
452
476
|
}
|
|
477
|
+
/**
|
|
478
|
+
* A Card Dispute Acceptance object. This field will be present in the JSON
|
|
479
|
+
* response if and only if `category` is equal to `card_dispute_acceptance`.
|
|
480
|
+
*/
|
|
453
481
|
interface CardDisputeAcceptance {
|
|
454
482
|
/**
|
|
455
483
|
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
@@ -464,44 +492,106 @@ export declare namespace ACHTransferSimulation {
|
|
|
464
492
|
* The identifier of the Transaction that was created to return the disputed funds
|
|
465
493
|
* to your account.
|
|
466
494
|
*/
|
|
467
|
-
transaction_id: string
|
|
495
|
+
transaction_id: string;
|
|
468
496
|
}
|
|
497
|
+
/**
|
|
498
|
+
* A Card Refund object. This field will be present in the JSON response if and
|
|
499
|
+
* only if `category` is equal to `card_refund`.
|
|
500
|
+
*/
|
|
469
501
|
interface CardRefund {
|
|
470
502
|
/**
|
|
471
503
|
* The pending amount in the minor unit of the transaction's currency. For dollars,
|
|
472
504
|
* for example, this is cents.
|
|
473
505
|
*/
|
|
474
506
|
amount: number;
|
|
475
|
-
/**
|
|
476
|
-
* The identifier for the Transaction this refunds, if any.
|
|
477
|
-
*/
|
|
478
|
-
card_settlement_transaction_id: string | null;
|
|
479
507
|
/**
|
|
480
508
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
481
509
|
* transaction's currency.
|
|
482
510
|
*/
|
|
483
511
|
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
512
|
+
/**
|
|
513
|
+
* The Card Refund identifier.
|
|
514
|
+
*/
|
|
515
|
+
id: string;
|
|
516
|
+
/**
|
|
517
|
+
* The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
518
|
+
* is transacting with.
|
|
519
|
+
*/
|
|
520
|
+
merchant_acceptor_id: string | null;
|
|
521
|
+
/**
|
|
522
|
+
* The 4-digit MCC describing the merchant's business.
|
|
523
|
+
*/
|
|
524
|
+
merchant_category_code: string;
|
|
525
|
+
/**
|
|
526
|
+
* The city the merchant resides in.
|
|
527
|
+
*/
|
|
528
|
+
merchant_city: string | null;
|
|
529
|
+
/**
|
|
530
|
+
* The country the merchant resides in.
|
|
531
|
+
*/
|
|
532
|
+
merchant_country: string;
|
|
533
|
+
/**
|
|
534
|
+
* The name of the merchant.
|
|
535
|
+
*/
|
|
536
|
+
merchant_name: string | null;
|
|
537
|
+
/**
|
|
538
|
+
* The state the merchant resides in.
|
|
539
|
+
*/
|
|
540
|
+
merchant_state: string | null;
|
|
484
541
|
/**
|
|
485
542
|
* A constant representing the object's type. For this resource it will always be
|
|
486
543
|
* `card_refund`.
|
|
487
544
|
*/
|
|
488
545
|
type: 'card_refund';
|
|
489
546
|
}
|
|
547
|
+
/**
|
|
548
|
+
* A Card Settlement object. This field will be present in the JSON response if and
|
|
549
|
+
* only if `category` is equal to `card_settlement`.
|
|
550
|
+
*/
|
|
490
551
|
interface CardSettlement {
|
|
491
552
|
/**
|
|
492
553
|
* The amount in the minor unit of the transaction's settlement currency. For
|
|
493
554
|
* dollars, for example, this is cents.
|
|
494
555
|
*/
|
|
495
556
|
amount: number;
|
|
557
|
+
/**
|
|
558
|
+
* The Card Authorization that was created prior to this Card Settlement, if on
|
|
559
|
+
* exists.
|
|
560
|
+
*/
|
|
561
|
+
card_authorization: string | null;
|
|
496
562
|
/**
|
|
497
563
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
498
564
|
* transaction's settlement currency.
|
|
499
565
|
*/
|
|
500
566
|
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
567
|
+
/**
|
|
568
|
+
* The Card Settlement identifier.
|
|
569
|
+
*/
|
|
570
|
+
id: string;
|
|
571
|
+
/**
|
|
572
|
+
* The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
573
|
+
* is transacting with.
|
|
574
|
+
*/
|
|
575
|
+
merchant_acceptor_id: string | null;
|
|
576
|
+
/**
|
|
577
|
+
* The 4-digit MCC describing the merchant's business.
|
|
578
|
+
*/
|
|
501
579
|
merchant_category_code: string;
|
|
580
|
+
/**
|
|
581
|
+
* The city the merchant resides in.
|
|
582
|
+
*/
|
|
502
583
|
merchant_city: string | null;
|
|
584
|
+
/**
|
|
585
|
+
* The country the merchant resides in.
|
|
586
|
+
*/
|
|
503
587
|
merchant_country: string;
|
|
588
|
+
/**
|
|
589
|
+
* The name of the merchant.
|
|
590
|
+
*/
|
|
504
591
|
merchant_name: string | null;
|
|
592
|
+
/**
|
|
593
|
+
* The state the merchant resides in.
|
|
594
|
+
*/
|
|
505
595
|
merchant_state: string | null;
|
|
506
596
|
/**
|
|
507
597
|
* The identifier of the Pending Transaction associated with this Transaction.
|
|
@@ -522,6 +612,38 @@ export declare namespace ACHTransferSimulation {
|
|
|
522
612
|
*/
|
|
523
613
|
type: 'card_settlement';
|
|
524
614
|
}
|
|
615
|
+
/**
|
|
616
|
+
* A Card Revenue Payment object. This field will be present in the JSON response
|
|
617
|
+
* if and only if `category` is equal to `card_revenue_payment`.
|
|
618
|
+
*/
|
|
619
|
+
interface CardRevenuePayment {
|
|
620
|
+
/**
|
|
621
|
+
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
622
|
+
* example, this is cents.
|
|
623
|
+
*/
|
|
624
|
+
amount: number;
|
|
625
|
+
/**
|
|
626
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
|
|
627
|
+
* currency.
|
|
628
|
+
*/
|
|
629
|
+
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
630
|
+
/**
|
|
631
|
+
* The end of the period for which this transaction paid interest.
|
|
632
|
+
*/
|
|
633
|
+
period_end: string;
|
|
634
|
+
/**
|
|
635
|
+
* The start of the period for which this transaction paid interest.
|
|
636
|
+
*/
|
|
637
|
+
period_start: string;
|
|
638
|
+
/**
|
|
639
|
+
* The account the card belonged to.
|
|
640
|
+
*/
|
|
641
|
+
transacted_on_account_id: string | null;
|
|
642
|
+
}
|
|
643
|
+
/**
|
|
644
|
+
* A Check Deposit Acceptance object. This field will be present in the JSON
|
|
645
|
+
* response if and only if `category` is equal to `check_deposit_acceptance`.
|
|
646
|
+
*/
|
|
525
647
|
interface CheckDepositAcceptance {
|
|
526
648
|
/**
|
|
527
649
|
* The account number printed on the check.
|
|
@@ -556,6 +678,10 @@ export declare namespace ACHTransferSimulation {
|
|
|
556
678
|
*/
|
|
557
679
|
serial_number: string | null;
|
|
558
680
|
}
|
|
681
|
+
/**
|
|
682
|
+
* A Check Deposit Return object. This field will be present in the JSON response
|
|
683
|
+
* if and only if `category` is equal to `check_deposit_return`.
|
|
684
|
+
*/
|
|
559
685
|
interface CheckDepositReturn {
|
|
560
686
|
/**
|
|
561
687
|
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
@@ -582,7 +708,8 @@ export declare namespace ACHTransferSimulation {
|
|
|
582
708
|
| 'stop_payment'
|
|
583
709
|
| 'unknown_reason'
|
|
584
710
|
| 'unmatched_details'
|
|
585
|
-
| 'unreadable_image'
|
|
711
|
+
| 'unreadable_image'
|
|
712
|
+
| 'endorsement_irregular';
|
|
586
713
|
/**
|
|
587
714
|
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
588
715
|
* the check deposit was returned.
|
|
@@ -594,6 +721,10 @@ export declare namespace ACHTransferSimulation {
|
|
|
594
721
|
*/
|
|
595
722
|
transaction_id: string;
|
|
596
723
|
}
|
|
724
|
+
/**
|
|
725
|
+
* A Check Transfer Intention object. This field will be present in the JSON
|
|
726
|
+
* response if and only if `category` is equal to `check_transfer_intention`.
|
|
727
|
+
*/
|
|
597
728
|
interface CheckTransferIntention {
|
|
598
729
|
/**
|
|
599
730
|
* The city of the check's destination.
|
|
@@ -633,22 +764,49 @@ export declare namespace ACHTransferSimulation {
|
|
|
633
764
|
*/
|
|
634
765
|
transfer_id: string;
|
|
635
766
|
}
|
|
767
|
+
/**
|
|
768
|
+
* A Check Transfer Return object. This field will be present in the JSON response
|
|
769
|
+
* if and only if `category` is equal to `check_transfer_return`.
|
|
770
|
+
*/
|
|
636
771
|
interface CheckTransferReturn {
|
|
637
772
|
/**
|
|
638
773
|
* If available, a document with additional information about the return.
|
|
639
774
|
*/
|
|
640
775
|
file_id: string | null;
|
|
776
|
+
/**
|
|
777
|
+
* The reason why the check was returned.
|
|
778
|
+
*/
|
|
779
|
+
reason: 'mail_delivery_failure' | 'refused_by_recipient' | 'returned_not_authorized';
|
|
780
|
+
/**
|
|
781
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
782
|
+
* the check was returned.
|
|
783
|
+
*/
|
|
784
|
+
returned_at: string;
|
|
785
|
+
/**
|
|
786
|
+
* The identifier of the Transaction that was created to credit you for the
|
|
787
|
+
* returned check.
|
|
788
|
+
*/
|
|
789
|
+
transaction_id: string | null;
|
|
641
790
|
/**
|
|
642
791
|
* The identifier of the returned Check Transfer.
|
|
643
792
|
*/
|
|
644
793
|
transfer_id: string;
|
|
645
794
|
}
|
|
795
|
+
/**
|
|
796
|
+
* A Check Transfer Rejection object. This field will be present in the JSON
|
|
797
|
+
* response if and only if `category` is equal to `check_transfer_rejection`.
|
|
798
|
+
*/
|
|
646
799
|
interface CheckTransferRejection {
|
|
647
800
|
/**
|
|
648
801
|
* The identifier of the Check Transfer that led to this Transaction.
|
|
649
802
|
*/
|
|
650
803
|
transfer_id: string;
|
|
651
804
|
}
|
|
805
|
+
/**
|
|
806
|
+
* A Check Transfer Stop Payment Request object. This field will be present in the
|
|
807
|
+
* JSON response if and only if `category` is equal to
|
|
808
|
+
* `check_transfer_stop_payment_request`.
|
|
809
|
+
*/
|
|
652
810
|
interface CheckTransferStopPaymentRequest {
|
|
653
811
|
/**
|
|
654
812
|
* The time the stop-payment was requested.
|
|
@@ -668,31 +826,26 @@ export declare namespace ACHTransferSimulation {
|
|
|
668
826
|
*/
|
|
669
827
|
type: 'check_transfer_stop_payment_request';
|
|
670
828
|
}
|
|
671
|
-
|
|
829
|
+
/**
|
|
830
|
+
* A Fee Payment object. This field will be present in the JSON response if and
|
|
831
|
+
* only if `category` is equal to `fee_payment`.
|
|
832
|
+
*/
|
|
833
|
+
interface FeePayment {
|
|
672
834
|
/**
|
|
673
835
|
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
674
836
|
* example, this is cents.
|
|
675
837
|
*/
|
|
676
838
|
amount: number;
|
|
677
839
|
/**
|
|
678
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
679
|
-
*
|
|
840
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
|
|
841
|
+
* currency.
|
|
680
842
|
*/
|
|
681
843
|
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
682
|
-
/**
|
|
683
|
-
* The identifier of the Transaction that was disputed.
|
|
684
|
-
*/
|
|
685
|
-
disputed_transaction_id: string;
|
|
686
|
-
}
|
|
687
|
-
interface EmpyrealCashDeposit {
|
|
688
|
-
/**
|
|
689
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
690
|
-
* example, this is cents.
|
|
691
|
-
*/
|
|
692
|
-
amount: number;
|
|
693
|
-
bag_id: string;
|
|
694
|
-
deposit_date: string;
|
|
695
844
|
}
|
|
845
|
+
/**
|
|
846
|
+
* A Inbound ACH Transfer object. This field will be present in the JSON response
|
|
847
|
+
* if and only if `category` is equal to `inbound_ach_transfer`.
|
|
848
|
+
*/
|
|
696
849
|
interface InboundACHTransfer {
|
|
697
850
|
/**
|
|
698
851
|
* The amount in the minor unit of the destination account currency. For dollars,
|
|
@@ -708,6 +861,10 @@ export declare namespace ACHTransferSimulation {
|
|
|
708
861
|
receiver_name: string | null;
|
|
709
862
|
trace_number: string;
|
|
710
863
|
}
|
|
864
|
+
/**
|
|
865
|
+
* A Inbound Check object. This field will be present in the JSON response if and
|
|
866
|
+
* only if `category` is equal to `inbound_check`.
|
|
867
|
+
*/
|
|
711
868
|
interface InboundCheck {
|
|
712
869
|
/**
|
|
713
870
|
* The amount in the minor unit of the destination account currency. For dollars,
|
|
@@ -723,6 +880,11 @@ export declare namespace ACHTransferSimulation {
|
|
|
723
880
|
*/
|
|
724
881
|
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
725
882
|
}
|
|
883
|
+
/**
|
|
884
|
+
* A Inbound International ACH Transfer object. This field will be present in the
|
|
885
|
+
* JSON response if and only if `category` is equal to
|
|
886
|
+
* `inbound_international_ach_transfer`.
|
|
887
|
+
*/
|
|
726
888
|
interface InboundInternationalACHTransfer {
|
|
727
889
|
/**
|
|
728
890
|
* The amount in the minor unit of the destination account currency. For dollars,
|
|
@@ -765,6 +927,11 @@ export declare namespace ACHTransferSimulation {
|
|
|
765
927
|
receiving_depository_financial_institution_name: string;
|
|
766
928
|
trace_number: string;
|
|
767
929
|
}
|
|
930
|
+
/**
|
|
931
|
+
* A Inbound Real Time Payments Transfer Confirmation object. This field will be
|
|
932
|
+
* present in the JSON response if and only if `category` is equal to
|
|
933
|
+
* `inbound_real_time_payments_transfer_confirmation`.
|
|
934
|
+
*/
|
|
768
935
|
interface InboundRealTimePaymentsTransferConfirmation {
|
|
769
936
|
/**
|
|
770
937
|
* The amount in the minor unit of the transfer's currency. For dollars, for
|
|
@@ -801,6 +968,11 @@ export declare namespace ACHTransferSimulation {
|
|
|
801
968
|
*/
|
|
802
969
|
transaction_identification: string;
|
|
803
970
|
}
|
|
971
|
+
/**
|
|
972
|
+
* A Inbound Wire Drawdown Payment Reversal object. This field will be present in
|
|
973
|
+
* the JSON response if and only if `category` is equal to
|
|
974
|
+
* `inbound_wire_drawdown_payment_reversal`.
|
|
975
|
+
*/
|
|
804
976
|
interface InboundWireDrawdownPaymentReversal {
|
|
805
977
|
/**
|
|
806
978
|
* The amount that was reversed.
|
|
@@ -843,6 +1015,10 @@ export declare namespace ACHTransferSimulation {
|
|
|
843
1015
|
*/
|
|
844
1016
|
previous_message_input_source: string;
|
|
845
1017
|
}
|
|
1018
|
+
/**
|
|
1019
|
+
* A Inbound Wire Drawdown Payment object. This field will be present in the JSON
|
|
1020
|
+
* response if and only if `category` is equal to `inbound_wire_drawdown_payment`.
|
|
1021
|
+
*/
|
|
846
1022
|
interface InboundWireDrawdownPayment {
|
|
847
1023
|
/**
|
|
848
1024
|
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
@@ -862,11 +1038,20 @@ export declare namespace ACHTransferSimulation {
|
|
|
862
1038
|
originator_name: string | null;
|
|
863
1039
|
originator_to_beneficiary_information: string | null;
|
|
864
1040
|
}
|
|
1041
|
+
/**
|
|
1042
|
+
* A Inbound Wire Reversal object. This field will be present in the JSON response
|
|
1043
|
+
* if and only if `category` is equal to `inbound_wire_reversal`.
|
|
1044
|
+
*/
|
|
865
1045
|
interface InboundWireReversal {
|
|
866
1046
|
/**
|
|
867
1047
|
* The amount that was reversed.
|
|
868
1048
|
*/
|
|
869
1049
|
amount: number;
|
|
1050
|
+
/**
|
|
1051
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
1052
|
+
* the reversal was created.
|
|
1053
|
+
*/
|
|
1054
|
+
created_at: string;
|
|
870
1055
|
/**
|
|
871
1056
|
* The description on the reversal message from Fedwire.
|
|
872
1057
|
*/
|
|
@@ -912,7 +1097,19 @@ export declare namespace ACHTransferSimulation {
|
|
|
912
1097
|
* institution.
|
|
913
1098
|
*/
|
|
914
1099
|
receiver_financial_institution_information: string | null;
|
|
1100
|
+
/**
|
|
1101
|
+
* The ID for the Transaction associated with the transfer reversal.
|
|
1102
|
+
*/
|
|
1103
|
+
transaction_id: string | null;
|
|
1104
|
+
/**
|
|
1105
|
+
* The ID for the Wire Transfer that is being reversed.
|
|
1106
|
+
*/
|
|
1107
|
+
wire_transfer_id: string;
|
|
915
1108
|
}
|
|
1109
|
+
/**
|
|
1110
|
+
* A Inbound Wire Transfer object. This field will be present in the JSON response
|
|
1111
|
+
* if and only if `category` is equal to `inbound_wire_transfer`.
|
|
1112
|
+
*/
|
|
916
1113
|
interface InboundWireTransfer {
|
|
917
1114
|
/**
|
|
918
1115
|
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
@@ -936,6 +1133,10 @@ export declare namespace ACHTransferSimulation {
|
|
|
936
1133
|
originator_to_beneficiary_information_line3: string | null;
|
|
937
1134
|
originator_to_beneficiary_information_line4: string | null;
|
|
938
1135
|
}
|
|
1136
|
+
/**
|
|
1137
|
+
* A Interest Payment object. This field will be present in the JSON response if
|
|
1138
|
+
* and only if `category` is equal to `interest_payment`.
|
|
1139
|
+
*/
|
|
939
1140
|
interface InterestPayment {
|
|
940
1141
|
/**
|
|
941
1142
|
* The account on which the interest was accrued.
|
|
@@ -960,6 +1161,10 @@ export declare namespace ACHTransferSimulation {
|
|
|
960
1161
|
*/
|
|
961
1162
|
period_start: string;
|
|
962
1163
|
}
|
|
1164
|
+
/**
|
|
1165
|
+
* A Internal Source object. This field will be present in the JSON response if and
|
|
1166
|
+
* only if `category` is equal to `internal_source`.
|
|
1167
|
+
*/
|
|
963
1168
|
interface InternalSource {
|
|
964
1169
|
/**
|
|
965
1170
|
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
@@ -972,71 +1177,60 @@ export declare namespace ACHTransferSimulation {
|
|
|
972
1177
|
*/
|
|
973
1178
|
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
974
1179
|
reason:
|
|
1180
|
+
| 'account_closure'
|
|
975
1181
|
| 'bank_migration'
|
|
976
1182
|
| 'cashback'
|
|
1183
|
+
| 'collection_receivable'
|
|
977
1184
|
| 'empyreal_adjustment'
|
|
978
1185
|
| 'error'
|
|
979
1186
|
| 'error_correction'
|
|
980
1187
|
| 'fees'
|
|
981
1188
|
| 'interest'
|
|
1189
|
+
| 'negative_balance_forgiveness'
|
|
982
1190
|
| 'sample_funds'
|
|
983
1191
|
| 'sample_funds_return';
|
|
984
1192
|
}
|
|
985
|
-
|
|
1193
|
+
/**
|
|
1194
|
+
* A Real Time Payments Transfer Acknowledgement object. This field will be present
|
|
1195
|
+
* in the JSON response if and only if `category` is equal to
|
|
1196
|
+
* `real_time_payments_transfer_acknowledgement`.
|
|
1197
|
+
*/
|
|
1198
|
+
interface RealTimePaymentsTransferAcknowledgement {
|
|
986
1199
|
/**
|
|
987
|
-
* The
|
|
988
|
-
* example, this is cents.
|
|
1200
|
+
* The transfer amount in USD cents.
|
|
989
1201
|
*/
|
|
990
1202
|
amount: number;
|
|
991
1203
|
/**
|
|
992
|
-
* The
|
|
993
|
-
* currency.
|
|
1204
|
+
* The destination account number.
|
|
994
1205
|
*/
|
|
995
|
-
|
|
996
|
-
merchant_acceptor_id: string;
|
|
997
|
-
merchant_category_code: string | null;
|
|
998
|
-
merchant_city: string | null;
|
|
999
|
-
merchant_country: string;
|
|
1000
|
-
merchant_descriptor: string;
|
|
1001
|
-
merchant_state: string | null;
|
|
1002
|
-
}
|
|
1003
|
-
interface CardRouteSettlement {
|
|
1206
|
+
destination_account_number: string;
|
|
1004
1207
|
/**
|
|
1005
|
-
* The
|
|
1006
|
-
* for example, this is cents.
|
|
1208
|
+
* The American Bankers' Association (ABA) Routing Transit Number (RTN).
|
|
1007
1209
|
*/
|
|
1008
|
-
|
|
1210
|
+
destination_routing_number: string;
|
|
1009
1211
|
/**
|
|
1010
|
-
*
|
|
1011
|
-
* currency.
|
|
1212
|
+
* Unstructured information that will show on the recipient's bank statement.
|
|
1012
1213
|
*/
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
merchant_descriptor: string;
|
|
1019
|
-
merchant_state: string | null;
|
|
1214
|
+
remittance_information: string;
|
|
1215
|
+
/**
|
|
1216
|
+
* The identifier of the Real Time Payments Transfer that led to this Transaction.
|
|
1217
|
+
*/
|
|
1218
|
+
transfer_id: string;
|
|
1020
1219
|
}
|
|
1220
|
+
/**
|
|
1221
|
+
* A Sample Funds object. This field will be present in the JSON response if and
|
|
1222
|
+
* only if `category` is equal to `sample_funds`.
|
|
1223
|
+
*/
|
|
1021
1224
|
interface SampleFunds {
|
|
1022
1225
|
/**
|
|
1023
1226
|
* Where the sample funds came from.
|
|
1024
1227
|
*/
|
|
1025
1228
|
originator: string;
|
|
1026
1229
|
}
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
*/
|
|
1032
|
-
amount: number;
|
|
1033
|
-
message_to_recipient: string;
|
|
1034
|
-
routing_number: string;
|
|
1035
|
-
transfer_id: string;
|
|
1036
|
-
}
|
|
1037
|
-
interface WireDrawdownPaymentRejection {
|
|
1038
|
-
transfer_id: string;
|
|
1039
|
-
}
|
|
1230
|
+
/**
|
|
1231
|
+
* A Wire Transfer Intention object. This field will be present in the JSON
|
|
1232
|
+
* response if and only if `category` is equal to `wire_transfer_intention`.
|
|
1233
|
+
*/
|
|
1040
1234
|
interface WireTransferIntention {
|
|
1041
1235
|
/**
|
|
1042
1236
|
* The destination account number.
|
|
@@ -1056,11 +1250,20 @@ export declare namespace ACHTransferSimulation {
|
|
|
1056
1250
|
routing_number: string;
|
|
1057
1251
|
transfer_id: string;
|
|
1058
1252
|
}
|
|
1253
|
+
/**
|
|
1254
|
+
* A Wire Transfer Rejection object. This field will be present in the JSON
|
|
1255
|
+
* response if and only if `category` is equal to `wire_transfer_rejection`.
|
|
1256
|
+
*/
|
|
1059
1257
|
interface WireTransferRejection {
|
|
1060
1258
|
transfer_id: string;
|
|
1061
1259
|
}
|
|
1062
1260
|
}
|
|
1063
1261
|
}
|
|
1262
|
+
/**
|
|
1263
|
+
* If the ACH Transfer attempt fails, this will contain the resulting
|
|
1264
|
+
* [Declined Transaction](#declined-transactions) object. The Declined
|
|
1265
|
+
* Transaction's `source` will be of `category: inbound_ach_transfer`.
|
|
1266
|
+
*/
|
|
1064
1267
|
interface DeclinedTransaction {
|
|
1065
1268
|
/**
|
|
1066
1269
|
* The identifier for the Account the Declined Transaction belongs to.
|
|
@@ -1098,7 +1301,7 @@ export declare namespace ACHTransferSimulation {
|
|
|
1098
1301
|
/**
|
|
1099
1302
|
* The type of the route this Declined Transaction came through.
|
|
1100
1303
|
*/
|
|
1101
|
-
route_type:
|
|
1304
|
+
route_type: 'account_number' | 'card' | null;
|
|
1102
1305
|
/**
|
|
1103
1306
|
* This is an object giving more details on the network-level event that caused the
|
|
1104
1307
|
* Declined Transaction. For example, for a card transaction this lists the
|
|
@@ -1114,6 +1317,13 @@ export declare namespace ACHTransferSimulation {
|
|
|
1114
1317
|
type: 'declined_transaction';
|
|
1115
1318
|
}
|
|
1116
1319
|
namespace DeclinedTransaction {
|
|
1320
|
+
/**
|
|
1321
|
+
* This is an object giving more details on the network-level event that caused the
|
|
1322
|
+
* Declined Transaction. For example, for a card transaction this lists the
|
|
1323
|
+
* merchant's industry and location. Note that for backwards compatibility reasons,
|
|
1324
|
+
* additional undocumented keys may appear in this object. These should be treated
|
|
1325
|
+
* as deprecated and will be removed in the future.
|
|
1326
|
+
*/
|
|
1117
1327
|
interface Source {
|
|
1118
1328
|
/**
|
|
1119
1329
|
* A ACH Decline object. This field will be present in the JSON response if and
|
|
@@ -1125,11 +1335,6 @@ export declare namespace ACHTransferSimulation {
|
|
|
1125
1335
|
* only if `category` is equal to `card_decline`.
|
|
1126
1336
|
*/
|
|
1127
1337
|
card_decline: Source.CardDecline | null;
|
|
1128
|
-
/**
|
|
1129
|
-
* A Deprecated Card Decline object. This field will be present in the JSON
|
|
1130
|
-
* response if and only if `category` is equal to `card_route_decline`.
|
|
1131
|
-
*/
|
|
1132
|
-
card_route_decline: Source.CardRouteDecline | null;
|
|
1133
1338
|
/**
|
|
1134
1339
|
* The type of decline that took place. We may add additional possible values for
|
|
1135
1340
|
* this enum over time; your application should be able to handle such additions
|
|
@@ -1141,7 +1346,7 @@ export declare namespace ACHTransferSimulation {
|
|
|
1141
1346
|
| 'check_decline'
|
|
1142
1347
|
| 'inbound_real_time_payments_transfer_decline'
|
|
1143
1348
|
| 'international_ach_decline'
|
|
1144
|
-
| '
|
|
1349
|
+
| 'wire_decline'
|
|
1145
1350
|
| 'other';
|
|
1146
1351
|
/**
|
|
1147
1352
|
* A Check Decline object. This field will be present in the JSON response if and
|
|
@@ -1159,8 +1364,17 @@ export declare namespace ACHTransferSimulation {
|
|
|
1159
1364
|
* response if and only if `category` is equal to `international_ach_decline`.
|
|
1160
1365
|
*/
|
|
1161
1366
|
international_ach_decline: Source.InternationalACHDecline | null;
|
|
1367
|
+
/**
|
|
1368
|
+
* A Wire Decline object. This field will be present in the JSON response if and
|
|
1369
|
+
* only if `category` is equal to `wire_decline`.
|
|
1370
|
+
*/
|
|
1371
|
+
wire_decline: Source.WireDecline | null;
|
|
1162
1372
|
}
|
|
1163
1373
|
namespace Source {
|
|
1374
|
+
/**
|
|
1375
|
+
* A ACH Decline object. This field will be present in the JSON response if and
|
|
1376
|
+
* only if `category` is equal to `ach_decline`.
|
|
1377
|
+
*/
|
|
1164
1378
|
interface ACHDecline {
|
|
1165
1379
|
/**
|
|
1166
1380
|
* The declined amount in the minor unit of the destination account currency. For
|
|
@@ -1181,15 +1395,20 @@ export declare namespace ACHTransferSimulation {
|
|
|
1181
1395
|
| 'credit_entry_refused_by_receiver'
|
|
1182
1396
|
| 'duplicate_return'
|
|
1183
1397
|
| 'entity_not_active'
|
|
1184
|
-
| 'transaction_not_allowed'
|
|
1185
1398
|
| 'group_locked'
|
|
1186
1399
|
| 'insufficient_funds'
|
|
1400
|
+
| 'misrouted_return'
|
|
1187
1401
|
| 'no_ach_route'
|
|
1188
|
-
| 'originator_request'
|
|
1402
|
+
| 'originator_request'
|
|
1403
|
+
| 'transaction_not_allowed';
|
|
1189
1404
|
receiver_id_number: string | null;
|
|
1190
1405
|
receiver_name: string | null;
|
|
1191
1406
|
trace_number: string;
|
|
1192
1407
|
}
|
|
1408
|
+
/**
|
|
1409
|
+
* A Card Decline object. This field will be present in the JSON response if and
|
|
1410
|
+
* only if `category` is equal to `card_decline`.
|
|
1411
|
+
*/
|
|
1193
1412
|
interface CardDecline {
|
|
1194
1413
|
/**
|
|
1195
1414
|
* The declined amount in the minor unit of the destination account currency. For
|
|
@@ -1255,12 +1474,18 @@ export declare namespace ACHTransferSimulation {
|
|
|
1255
1474
|
| 'insufficient_funds'
|
|
1256
1475
|
| 'cvv2_mismatch'
|
|
1257
1476
|
| 'transaction_not_allowed'
|
|
1477
|
+
| 'breaches_internal_limit'
|
|
1258
1478
|
| 'breaches_limit'
|
|
1259
1479
|
| 'webhook_declined'
|
|
1260
1480
|
| 'webhook_timed_out'
|
|
1261
|
-
| 'declined_by_stand_in_processing'
|
|
1481
|
+
| 'declined_by_stand_in_processing'
|
|
1482
|
+
| 'invalid_physical_card'
|
|
1483
|
+
| 'missing_original_authorization';
|
|
1262
1484
|
}
|
|
1263
1485
|
namespace CardDecline {
|
|
1486
|
+
/**
|
|
1487
|
+
* Fields specific to the `network`
|
|
1488
|
+
*/
|
|
1264
1489
|
interface NetworkDetails {
|
|
1265
1490
|
/**
|
|
1266
1491
|
* Fields specific to the `visa` network
|
|
@@ -1268,6 +1493,9 @@ export declare namespace ACHTransferSimulation {
|
|
|
1268
1493
|
visa: NetworkDetails.Visa;
|
|
1269
1494
|
}
|
|
1270
1495
|
namespace NetworkDetails {
|
|
1496
|
+
/**
|
|
1497
|
+
* Fields specific to the `visa` network
|
|
1498
|
+
*/
|
|
1271
1499
|
interface Visa {
|
|
1272
1500
|
/**
|
|
1273
1501
|
* For electronic commerce transactions, this identifies the level of security used
|
|
@@ -1288,10 +1516,14 @@ export declare namespace ACHTransferSimulation {
|
|
|
1288
1516
|
* The method used to enter the cardholder's primary account number and card
|
|
1289
1517
|
* expiration date
|
|
1290
1518
|
*/
|
|
1291
|
-
point_of_service_entry_mode: Shared.PointOfServiceEntryMode;
|
|
1519
|
+
point_of_service_entry_mode: Shared.PointOfServiceEntryMode | null;
|
|
1292
1520
|
}
|
|
1293
1521
|
}
|
|
1294
1522
|
}
|
|
1523
|
+
/**
|
|
1524
|
+
* A Check Decline object. This field will be present in the JSON response if and
|
|
1525
|
+
* only if `category` is equal to `check_decline`.
|
|
1526
|
+
*/
|
|
1295
1527
|
interface CheckDecline {
|
|
1296
1528
|
/**
|
|
1297
1529
|
* The declined amount in the minor unit of the destination account currency. For
|
|
@@ -1310,11 +1542,20 @@ export declare namespace ACHTransferSimulation {
|
|
|
1310
1542
|
| 'group_locked'
|
|
1311
1543
|
| 'insufficient_funds'
|
|
1312
1544
|
| 'unable_to_locate_account'
|
|
1545
|
+
| 'not_our_item'
|
|
1313
1546
|
| 'unable_to_process'
|
|
1314
1547
|
| 'refer_to_image'
|
|
1315
1548
|
| 'stop_payment_requested'
|
|
1316
|
-
| 'returned'
|
|
1549
|
+
| 'returned'
|
|
1550
|
+
| 'duplicate_presentment'
|
|
1551
|
+
| 'not_authorized'
|
|
1552
|
+
| 'altered_or_fictitious';
|
|
1317
1553
|
}
|
|
1554
|
+
/**
|
|
1555
|
+
* A Inbound Real Time Payments Transfer Decline object. This field will be present
|
|
1556
|
+
* in the JSON response if and only if `category` is equal to
|
|
1557
|
+
* `inbound_real_time_payments_transfer_decline`.
|
|
1558
|
+
*/
|
|
1318
1559
|
interface InboundRealTimePaymentsTransferDecline {
|
|
1319
1560
|
/**
|
|
1320
1561
|
* The declined amount in the minor unit of the destination account currency. For
|
|
@@ -1349,6 +1590,7 @@ export declare namespace ACHTransferSimulation {
|
|
|
1349
1590
|
reason:
|
|
1350
1591
|
| 'account_number_canceled'
|
|
1351
1592
|
| 'account_number_disabled'
|
|
1593
|
+
| 'account_restricted'
|
|
1352
1594
|
| 'group_locked'
|
|
1353
1595
|
| 'entity_not_active'
|
|
1354
1596
|
| 'real_time_payments_not_enabled';
|
|
@@ -1361,6 +1603,10 @@ export declare namespace ACHTransferSimulation {
|
|
|
1361
1603
|
*/
|
|
1362
1604
|
transaction_identification: string;
|
|
1363
1605
|
}
|
|
1606
|
+
/**
|
|
1607
|
+
* A International ACH Decline object. This field will be present in the JSON
|
|
1608
|
+
* response if and only if `category` is equal to `international_ach_decline`.
|
|
1609
|
+
*/
|
|
1364
1610
|
interface InternationalACHDecline {
|
|
1365
1611
|
/**
|
|
1366
1612
|
* The declined amount in the minor unit of the destination account currency. For
|
|
@@ -1403,23 +1649,41 @@ export declare namespace ACHTransferSimulation {
|
|
|
1403
1649
|
receiving_depository_financial_institution_name: string;
|
|
1404
1650
|
trace_number: string;
|
|
1405
1651
|
}
|
|
1406
|
-
|
|
1652
|
+
/**
|
|
1653
|
+
* A Wire Decline object. This field will be present in the JSON response if and
|
|
1654
|
+
* only if `category` is equal to `wire_decline`.
|
|
1655
|
+
*/
|
|
1656
|
+
interface WireDecline {
|
|
1407
1657
|
/**
|
|
1408
1658
|
* The declined amount in the minor unit of the destination account currency. For
|
|
1409
1659
|
* dollars, for example, this is cents.
|
|
1410
1660
|
*/
|
|
1411
1661
|
amount: number;
|
|
1662
|
+
beneficiary_address_line1: string | null;
|
|
1663
|
+
beneficiary_address_line2: string | null;
|
|
1664
|
+
beneficiary_address_line3: string | null;
|
|
1665
|
+
beneficiary_name: string | null;
|
|
1666
|
+
beneficiary_reference: string | null;
|
|
1667
|
+
description: string;
|
|
1668
|
+
input_message_accountability_data: string | null;
|
|
1669
|
+
originator_address_line1: string | null;
|
|
1670
|
+
originator_address_line2: string | null;
|
|
1671
|
+
originator_address_line3: string | null;
|
|
1672
|
+
originator_name: string | null;
|
|
1673
|
+
originator_to_beneficiary_information_line1: string | null;
|
|
1674
|
+
originator_to_beneficiary_information_line2: string | null;
|
|
1675
|
+
originator_to_beneficiary_information_line3: string | null;
|
|
1676
|
+
originator_to_beneficiary_information_line4: string | null;
|
|
1412
1677
|
/**
|
|
1413
|
-
*
|
|
1414
|
-
* account currency.
|
|
1678
|
+
* Why the wire transfer was declined.
|
|
1415
1679
|
*/
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1680
|
+
reason:
|
|
1681
|
+
| 'account_number_canceled'
|
|
1682
|
+
| 'account_number_disabled'
|
|
1683
|
+
| 'entity_not_active'
|
|
1684
|
+
| 'group_locked'
|
|
1685
|
+
| 'no_account_number'
|
|
1686
|
+
| 'transaction_not_allowed';
|
|
1423
1687
|
}
|
|
1424
1688
|
}
|
|
1425
1689
|
}
|
|
@@ -1481,8 +1745,57 @@ export interface ACHTransferReturnParams {
|
|
|
1481
1745
|
| 'file_record_edit_criteria'
|
|
1482
1746
|
| 'enr_invalid_individual_name'
|
|
1483
1747
|
| 'returned_per_odfi_request'
|
|
1484
|
-
| 'addenda_error'
|
|
1485
1748
|
| 'limited_participation_dfi'
|
|
1486
1749
|
| 'incorrectly_coded_outbound_international_payment'
|
|
1487
|
-
| 'other'
|
|
1750
|
+
| 'other'
|
|
1751
|
+
| 'account_sold_to_another_dfi'
|
|
1752
|
+
| 'addenda_error'
|
|
1753
|
+
| 'beneficiary_or_account_holder_deceased'
|
|
1754
|
+
| 'customer_advised_not_within_authorization_terms'
|
|
1755
|
+
| 'corrected_return'
|
|
1756
|
+
| 'duplicate_entry'
|
|
1757
|
+
| 'duplicate_return'
|
|
1758
|
+
| 'enr_duplicate_enrollment'
|
|
1759
|
+
| 'enr_invalid_dfi_account_number'
|
|
1760
|
+
| 'enr_invalid_individual_id_number'
|
|
1761
|
+
| 'enr_invalid_representative_payee_indicator'
|
|
1762
|
+
| 'enr_invalid_transaction_code'
|
|
1763
|
+
| 'enr_return_of_enr_entry'
|
|
1764
|
+
| 'enr_routing_number_check_digit_error'
|
|
1765
|
+
| 'entry_not_processed_by_gateway'
|
|
1766
|
+
| 'field_error'
|
|
1767
|
+
| 'foreign_receiving_dfi_unable_to_settle'
|
|
1768
|
+
| 'iat_entry_coding_error'
|
|
1769
|
+
| 'improper_effective_entry_date'
|
|
1770
|
+
| 'improper_source_document_source_document_presented'
|
|
1771
|
+
| 'invalid_company_id'
|
|
1772
|
+
| 'invalid_foreign_receiving_dfi_identification'
|
|
1773
|
+
| 'invalid_individual_id_number'
|
|
1774
|
+
| 'item_and_rck_entry_presented_for_payment'
|
|
1775
|
+
| 'item_related_to_rck_entry_is_ineligible'
|
|
1776
|
+
| 'mandatory_field_error'
|
|
1777
|
+
| 'misrouted_dishonored_return'
|
|
1778
|
+
| 'misrouted_return'
|
|
1779
|
+
| 'no_errors_found'
|
|
1780
|
+
| 'non_acceptance_of_r62_dishonored_return'
|
|
1781
|
+
| 'non_participant_in_iat_program'
|
|
1782
|
+
| 'permissible_return_entry'
|
|
1783
|
+
| 'permissible_return_entry_not_accepted'
|
|
1784
|
+
| 'rdfi_non_settlement'
|
|
1785
|
+
| 'rdfi_participant_in_check_truncation_program'
|
|
1786
|
+
| 'representative_payee_deceased_or_unable_to_continue_in_that_capacity'
|
|
1787
|
+
| 'return_not_a_duplicate'
|
|
1788
|
+
| 'return_of_erroneous_or_reversing_debit'
|
|
1789
|
+
| 'return_of_improper_credit_entry'
|
|
1790
|
+
| 'return_of_improper_debit_entry'
|
|
1791
|
+
| 'return_of_xck_entry'
|
|
1792
|
+
| 'source_document_presented_for_payment'
|
|
1793
|
+
| 'state_law_affecting_rck_acceptance'
|
|
1794
|
+
| 'stop_payment_on_item_related_to_rck_entry'
|
|
1795
|
+
| 'stop_payment_on_source_document'
|
|
1796
|
+
| 'timely_original_return'
|
|
1797
|
+
| 'trace_number_error'
|
|
1798
|
+
| 'untimely_dishonored_return'
|
|
1799
|
+
| 'untimely_return';
|
|
1488
1800
|
}
|
|
1801
|
+
//# sourceMappingURL=ach-transfers.d.ts.map
|