increase 0.3.0 → 0.5.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/CHANGELOG.md +87 -0
- package/README.md +22 -8
- package/_shims/agent.node.ts +20 -0
- package/_shims/agent.ts +12 -0
- package/_shims/fetch.node.ts +11 -0
- package/_shims/fetch.ts +32 -0
- package/_shims/fileFromPath.node.ts +30 -0
- package/_shims/fileFromPath.ts +30 -0
- package/_shims/formdata.node.ts +9 -0
- package/_shims/formdata.ts +22 -0
- package/_shims/getMultipartRequestOptions.node.ts +24 -0
- package/_shims/getMultipartRequestOptions.ts +13 -0
- package/_shims/newFileArgs.ts +94 -0
- package/_shims/toFile.node.ts +25 -0
- package/_shims/toFile.ts +26 -0
- package/_shims/uploadable.node.ts +21 -0
- package/_shims/uploadable.ts +82 -0
- package/core.ts +38 -227
- package/dist/cjs/_shims/agent.d.ts +9 -0
- package/dist/cjs/_shims/agent.d.ts.map +1 -0
- package/dist/cjs/_shims/agent.js +14 -0
- package/dist/cjs/_shims/agent.js.map +1 -0
- package/dist/cjs/_shims/agent.node.d.ts +6 -0
- package/dist/cjs/_shims/agent.node.d.ts.map +1 -0
- package/dist/cjs/_shims/agent.node.js +28 -0
- package/dist/cjs/_shims/agent.node.js.map +1 -0
- package/dist/cjs/_shims/fetch.d.ts +19 -0
- package/dist/cjs/_shims/fetch.d.ts.map +1 -0
- package/dist/cjs/_shims/fetch.js +24 -0
- package/dist/cjs/_shims/fetch.js.map +1 -0
- package/dist/cjs/_shims/fetch.node.d.ts +9 -0
- package/dist/cjs/_shims/fetch.node.d.ts.map +1 -0
- package/dist/cjs/_shims/fetch.node.js +68 -0
- package/dist/cjs/_shims/fetch.node.js.map +1 -0
- package/dist/cjs/_shims/fileFromPath.d.ts +23 -0
- package/dist/cjs/_shims/fileFromPath.d.ts.map +1 -0
- package/dist/cjs/{tests/api-resources/simulations/documents.test.js → _shims/fileFromPath.js} +16 -19
- package/dist/cjs/_shims/fileFromPath.js.map +1 -0
- package/dist/cjs/_shims/fileFromPath.node.d.ts +18 -0
- package/dist/cjs/_shims/fileFromPath.node.d.ts.map +1 -0
- package/dist/cjs/{tests/form.test.js → _shims/fileFromPath.node.js} +16 -27
- package/dist/cjs/_shims/fileFromPath.node.js.map +1 -0
- package/dist/cjs/_shims/formdata.d.ts +13 -0
- package/dist/cjs/_shims/formdata.d.ts.map +1 -0
- package/dist/cjs/_shims/formdata.js +20 -0
- package/dist/cjs/_shims/formdata.js.map +1 -0
- package/dist/cjs/_shims/formdata.node.d.ts +7 -0
- package/dist/cjs/_shims/formdata.node.d.ts.map +1 -0
- package/dist/cjs/_shims/formdata.node.js +27 -0
- package/dist/cjs/_shims/formdata.node.js.map +1 -0
- package/dist/cjs/_shims/getMultipartRequestOptions.d.ts +10 -0
- package/dist/cjs/_shims/getMultipartRequestOptions.d.ts.map +1 -0
- package/dist/cjs/{tests/api-resources/simulations/card-refunds.test.js → _shims/getMultipartRequestOptions.js} +11 -19
- package/dist/cjs/_shims/getMultipartRequestOptions.js.map +1 -0
- package/dist/cjs/_shims/getMultipartRequestOptions.node.d.ts +10 -0
- package/dist/cjs/_shims/getMultipartRequestOptions.node.d.ts.map +1 -0
- package/dist/cjs/{tests/api-resources/simulations/account-statements.test.js → _shims/getMultipartRequestOptions.node.js} +19 -19
- package/dist/cjs/_shims/getMultipartRequestOptions.node.js.map +1 -0
- package/dist/cjs/_shims/newFileArgs.d.ts +19 -0
- package/dist/cjs/_shims/newFileArgs.d.ts.map +1 -0
- package/dist/cjs/_shims/newFileArgs.js +169 -0
- package/dist/cjs/_shims/newFileArgs.js.map +1 -0
- package/dist/cjs/_shims/toFile.d.ts +21 -0
- package/dist/cjs/_shims/toFile.d.ts.map +1 -0
- package/dist/cjs/_shims/toFile.js +56 -0
- package/dist/cjs/_shims/toFile.js.map +1 -0
- package/dist/cjs/_shims/toFile.node.d.ts +20 -0
- package/dist/cjs/_shims/toFile.node.d.ts.map +1 -0
- package/dist/cjs/_shims/toFile.node.js +56 -0
- package/dist/cjs/_shims/toFile.node.js.map +1 -0
- package/dist/cjs/_shims/uploadable.d.ts +56 -0
- package/dist/cjs/_shims/uploadable.d.ts.map +1 -0
- package/dist/cjs/_shims/uploadable.js +37 -0
- package/dist/cjs/_shims/uploadable.js.map +1 -0
- package/dist/cjs/_shims/uploadable.node.d.ts +7 -0
- package/dist/cjs/_shims/uploadable.node.d.ts.map +1 -0
- package/dist/cjs/_shims/uploadable.node.js +23 -0
- package/dist/cjs/_shims/uploadable.node.js.map +1 -0
- package/dist/cjs/core.d.ts +9 -70
- package/dist/cjs/core.d.ts.map +1 -1
- package/dist/cjs/core.js +57 -253
- package/dist/cjs/core.js.map +1 -1
- package/dist/cjs/error.d.ts +72 -27
- package/dist/cjs/error.d.ts.map +1 -1
- package/dist/cjs/error.js +203 -81
- package/dist/cjs/error.js.map +1 -1
- package/dist/cjs/index.d.ts +68 -31
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/index.js +77 -80
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/pagination.d.ts +3 -1
- package/dist/cjs/pagination.d.ts.map +1 -1
- package/dist/cjs/pagination.js.map +1 -1
- package/dist/cjs/resources/account-numbers.d.ts +13 -24
- package/dist/cjs/resources/account-numbers.d.ts.map +1 -1
- package/dist/cjs/resources/account-numbers.js +44 -0
- package/dist/cjs/resources/account-numbers.js.map +1 -1
- package/dist/cjs/resources/account-statements.d.ts +11 -24
- package/dist/cjs/resources/account-statements.d.ts.map +1 -1
- package/dist/cjs/resources/account-statements.js +44 -0
- package/dist/cjs/resources/account-statements.js.map +1 -1
- package/dist/cjs/resources/account-transfers.d.ts +12 -24
- package/dist/cjs/resources/account-transfers.d.ts.map +1 -1
- package/dist/cjs/resources/account-transfers.js +44 -0
- package/dist/cjs/resources/account-transfers.js.map +1 -1
- package/dist/cjs/resources/accounts.d.ts +29 -29
- package/dist/cjs/resources/accounts.d.ts.map +1 -1
- package/dist/cjs/resources/accounts.js +44 -0
- package/dist/cjs/resources/accounts.js.map +1 -1
- package/dist/cjs/resources/ach-prenotifications.d.ts +17 -29
- package/dist/cjs/resources/ach-prenotifications.d.ts.map +1 -1
- package/dist/cjs/resources/ach-prenotifications.js +44 -0
- package/dist/cjs/resources/ach-prenotifications.js.map +1 -1
- package/dist/cjs/resources/ach-transfers.d.ts +80 -41
- package/dist/cjs/resources/ach-transfers.d.ts.map +1 -1
- package/dist/cjs/resources/ach-transfers.js +44 -0
- package/dist/cjs/resources/ach-transfers.js.map +1 -1
- package/dist/cjs/resources/balance-lookups.d.ts +5 -0
- package/dist/cjs/resources/balance-lookups.d.ts.map +1 -1
- package/dist/cjs/resources/balance-lookups.js +1 -0
- package/dist/cjs/resources/balance-lookups.js.map +1 -1
- package/dist/cjs/resources/bookkeeping-accounts.d.ts +15 -8
- package/dist/cjs/resources/bookkeeping-accounts.d.ts.map +1 -1
- package/dist/cjs/resources/bookkeeping-accounts.js +44 -0
- package/dist/cjs/resources/bookkeeping-accounts.js.map +1 -1
- package/dist/cjs/resources/bookkeeping-entries.d.ts +10 -4
- package/dist/cjs/resources/bookkeeping-entries.d.ts.map +1 -1
- package/dist/cjs/resources/bookkeeping-entries.js +44 -0
- package/dist/cjs/resources/bookkeeping-entries.js.map +1 -1
- package/dist/cjs/resources/bookkeeping-entry-sets.d.ts +20 -27
- package/dist/cjs/resources/bookkeeping-entry-sets.d.ts.map +1 -1
- package/dist/cjs/resources/bookkeeping-entry-sets.js +3 -0
- package/dist/cjs/resources/bookkeeping-entry-sets.js.map +1 -1
- package/dist/cjs/resources/card-disputes.d.ts +13 -30
- package/dist/cjs/resources/card-disputes.d.ts.map +1 -1
- package/dist/cjs/resources/card-disputes.js +44 -0
- package/dist/cjs/resources/card-disputes.js.map +1 -1
- package/dist/cjs/resources/card-profiles.d.ts +12 -67
- package/dist/cjs/resources/card-profiles.d.ts.map +1 -1
- package/dist/cjs/resources/card-profiles.js +44 -0
- package/dist/cjs/resources/card-profiles.js.map +1 -1
- package/dist/cjs/resources/cards.d.ts +16 -122
- package/dist/cjs/resources/cards.d.ts.map +1 -1
- package/dist/cjs/resources/cards.js +44 -0
- package/dist/cjs/resources/cards.js.map +1 -1
- package/dist/cjs/resources/check-deposits.d.ts +14 -25
- package/dist/cjs/resources/check-deposits.d.ts.map +1 -1
- package/dist/cjs/resources/check-deposits.js +44 -0
- package/dist/cjs/resources/check-deposits.js.map +1 -1
- package/dist/cjs/resources/check-transfers.d.ts +92 -132
- package/dist/cjs/resources/check-transfers.d.ts.map +1 -1
- package/dist/cjs/resources/check-transfers.js +44 -0
- package/dist/cjs/resources/check-transfers.js.map +1 -1
- package/dist/cjs/resources/declined-transactions.d.ts +12 -52
- package/dist/cjs/resources/declined-transactions.d.ts.map +1 -1
- package/dist/cjs/resources/declined-transactions.js +44 -0
- package/dist/cjs/resources/declined-transactions.js.map +1 -1
- package/dist/cjs/resources/digital-wallet-tokens.d.ts +11 -24
- package/dist/cjs/resources/digital-wallet-tokens.d.ts.map +1 -1
- package/dist/cjs/resources/digital-wallet-tokens.js +44 -0
- package/dist/cjs/resources/digital-wallet-tokens.js.map +1 -1
- package/dist/cjs/resources/documents.d.ts +14 -181
- package/dist/cjs/resources/documents.d.ts.map +1 -1
- package/dist/cjs/resources/documents.js +44 -0
- package/dist/cjs/resources/documents.js.map +1 -1
- package/dist/cjs/resources/entities/entities.d.ts +297 -1225
- package/dist/cjs/resources/entities/entities.d.ts.map +1 -1
- package/dist/cjs/resources/entities/entities.js +46 -0
- package/dist/cjs/resources/entities/entities.js.map +1 -1
- package/dist/cjs/resources/entities/index.d.ts +8 -2
- package/dist/cjs/resources/entities/index.d.ts.map +1 -1
- package/dist/cjs/resources/entities/index.js +24 -1
- package/dist/cjs/resources/entities/index.js.map +1 -1
- package/dist/cjs/resources/entities/supplemental-documents.d.ts +42 -0
- package/dist/cjs/resources/entities/supplemental-documents.d.ts.map +1 -1
- package/dist/cjs/resources/entities/supplemental-documents.js +58 -1
- package/dist/cjs/resources/entities/supplemental-documents.js.map +1 -1
- package/dist/cjs/resources/event-subscriptions.d.ts +16 -8
- package/dist/cjs/resources/event-subscriptions.d.ts.map +1 -1
- package/dist/cjs/resources/event-subscriptions.js +44 -0
- package/dist/cjs/resources/event-subscriptions.js.map +1 -1
- package/dist/cjs/resources/events.d.ts +34 -103
- package/dist/cjs/resources/events.d.ts.map +1 -1
- package/dist/cjs/resources/events.js +44 -0
- package/dist/cjs/resources/events.js.map +1 -1
- package/dist/cjs/resources/exports.d.ts +15 -90
- package/dist/cjs/resources/exports.d.ts.map +1 -1
- package/dist/cjs/resources/exports.js +44 -0
- package/dist/cjs/resources/exports.js.map +1 -1
- package/dist/cjs/resources/external-accounts.d.ts +17 -14
- package/dist/cjs/resources/external-accounts.d.ts.map +1 -1
- package/dist/cjs/resources/external-accounts.js +44 -0
- package/dist/cjs/resources/external-accounts.js.map +1 -1
- package/dist/cjs/resources/files.d.ts +25 -49
- package/dist/cjs/resources/files.d.ts.map +1 -1
- package/dist/cjs/resources/files.js +82 -2
- package/dist/cjs/resources/files.js.map +1 -1
- package/dist/cjs/resources/groups.d.ts +8 -4
- package/dist/cjs/resources/groups.d.ts.map +1 -1
- package/dist/cjs/resources/groups.js +1 -0
- package/dist/cjs/resources/groups.js.map +1 -1
- package/dist/cjs/resources/inbound-ach-transfer-returns.d.ts +7 -0
- package/dist/cjs/resources/inbound-ach-transfer-returns.d.ts.map +1 -1
- package/dist/cjs/resources/inbound-ach-transfer-returns.js +46 -0
- package/dist/cjs/resources/inbound-ach-transfer-returns.js.map +1 -1
- package/dist/cjs/resources/inbound-wire-drawdown-requests.d.ts +10 -4
- package/dist/cjs/resources/inbound-wire-drawdown-requests.d.ts.map +1 -1
- package/dist/cjs/resources/inbound-wire-drawdown-requests.js +47 -0
- package/dist/cjs/resources/inbound-wire-drawdown-requests.js.map +1 -1
- package/dist/cjs/resources/limits.d.ts +12 -4
- package/dist/cjs/resources/limits.d.ts.map +1 -1
- package/dist/cjs/resources/limits.js +44 -0
- package/dist/cjs/resources/limits.js.map +1 -1
- package/dist/cjs/resources/oauth-connections.d.ts +10 -4
- package/dist/cjs/resources/oauth-connections.d.ts.map +1 -1
- package/dist/cjs/resources/oauth-connections.js +44 -0
- package/dist/cjs/resources/oauth-connections.js.map +1 -1
- package/dist/cjs/resources/pending-transactions.d.ts +25 -94
- package/dist/cjs/resources/pending-transactions.d.ts.map +1 -1
- package/dist/cjs/resources/pending-transactions.js +44 -0
- package/dist/cjs/resources/pending-transactions.js.map +1 -1
- package/dist/cjs/resources/programs.d.ts +10 -4
- package/dist/cjs/resources/programs.d.ts.map +1 -1
- package/dist/cjs/resources/programs.js +44 -0
- package/dist/cjs/resources/programs.js.map +1 -1
- package/dist/cjs/resources/real-time-decisions.d.ts +33 -97
- package/dist/cjs/resources/real-time-decisions.d.ts.map +1 -1
- package/dist/cjs/resources/real-time-decisions.js +3 -0
- package/dist/cjs/resources/real-time-decisions.js.map +1 -1
- package/dist/cjs/resources/real-time-payments-transfers.d.ts +35 -47
- package/dist/cjs/resources/real-time-payments-transfers.d.ts.map +1 -1
- package/dist/cjs/resources/real-time-payments-transfers.js +46 -0
- package/dist/cjs/resources/real-time-payments-transfers.js.map +1 -1
- package/dist/cjs/resources/routing-numbers.d.ts +6 -0
- package/dist/cjs/resources/routing-numbers.d.ts.map +1 -1
- package/dist/cjs/resources/routing-numbers.js +44 -0
- package/dist/cjs/resources/routing-numbers.js.map +1 -1
- package/dist/cjs/resources/simulations/account-statements.d.ts +4 -0
- package/dist/cjs/resources/simulations/account-statements.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/account-statements.js +3 -0
- package/dist/cjs/resources/simulations/account-statements.js.map +1 -1
- package/dist/cjs/resources/simulations/ach-transfers.d.ts +1264 -1335
- package/dist/cjs/resources/simulations/ach-transfers.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/ach-transfers.js +1 -0
- package/dist/cjs/resources/simulations/ach-transfers.js.map +1 -1
- package/dist/cjs/resources/simulations/card-disputes.d.ts +8 -4
- package/dist/cjs/resources/simulations/card-disputes.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/card-disputes.js +1 -0
- package/dist/cjs/resources/simulations/card-disputes.js.map +1 -1
- package/dist/cjs/resources/simulations/card-refunds.d.ts +4 -0
- package/dist/cjs/resources/simulations/card-refunds.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/card-refunds.js +1 -0
- package/dist/cjs/resources/simulations/card-refunds.js.map +1 -1
- package/dist/cjs/resources/simulations/cards.d.ts +449 -520
- package/dist/cjs/resources/simulations/cards.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/cards.js +1 -0
- package/dist/cjs/resources/simulations/cards.js.map +1 -1
- package/dist/cjs/resources/simulations/check-transfers.d.ts +4 -0
- package/dist/cjs/resources/simulations/check-transfers.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/check-transfers.js +1 -0
- package/dist/cjs/resources/simulations/check-transfers.js.map +1 -1
- package/dist/cjs/resources/simulations/digital-wallet-token-requests.d.ts +5 -0
- package/dist/cjs/resources/simulations/digital-wallet-token-requests.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/digital-wallet-token-requests.js +4 -0
- package/dist/cjs/resources/simulations/digital-wallet-token-requests.js.map +1 -1
- package/dist/cjs/resources/simulations/documents.d.ts +4 -0
- package/dist/cjs/resources/simulations/documents.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/documents.js +1 -0
- package/dist/cjs/resources/simulations/documents.js.map +1 -1
- package/dist/cjs/resources/simulations/inbound-wire-drawdown-requests.d.ts +29 -25
- package/dist/cjs/resources/simulations/inbound-wire-drawdown-requests.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/inbound-wire-drawdown-requests.js +4 -0
- package/dist/cjs/resources/simulations/inbound-wire-drawdown-requests.js.map +1 -1
- package/dist/cjs/resources/simulations/index.d.ts +23 -9
- package/dist/cjs/resources/simulations/index.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/index.js +129 -0
- package/dist/cjs/resources/simulations/index.js.map +1 -1
- package/dist/cjs/resources/simulations/interest-payments.d.ts +173 -265
- package/dist/cjs/resources/simulations/interest-payments.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/interest-payments.js +3 -0
- package/dist/cjs/resources/simulations/interest-payments.js.map +1 -1
- package/dist/cjs/resources/simulations/programs.d.ts +25 -0
- package/dist/cjs/resources/simulations/programs.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/programs.js +18 -0
- package/dist/cjs/resources/simulations/programs.js.map +1 -0
- package/dist/cjs/resources/simulations/real-time-payments-transfers.d.ts +1225 -1373
- package/dist/cjs/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/real-time-payments-transfers.js +3 -0
- package/dist/cjs/resources/simulations/real-time-payments-transfers.js.map +1 -1
- package/dist/cjs/resources/simulations/simulations.d.ts +42 -0
- package/dist/cjs/resources/simulations/simulations.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/simulations.js +60 -0
- package/dist/cjs/resources/simulations/simulations.js.map +1 -1
- package/dist/cjs/resources/simulations/wire-transfers.d.ts +173 -265
- package/dist/cjs/resources/simulations/wire-transfers.d.ts.map +1 -1
- package/dist/cjs/resources/simulations/wire-transfers.js +1 -0
- package/dist/cjs/resources/simulations/wire-transfers.js.map +1 -1
- package/dist/cjs/resources/transactions.d.ts +202 -365
- package/dist/cjs/resources/transactions.d.ts.map +1 -1
- package/dist/cjs/resources/transactions.js +44 -0
- package/dist/cjs/resources/transactions.js.map +1 -1
- package/dist/cjs/resources/wire-drawdown-requests.d.ts +19 -12
- package/dist/cjs/resources/wire-drawdown-requests.d.ts.map +1 -1
- package/dist/cjs/resources/wire-drawdown-requests.js +44 -0
- package/dist/cjs/resources/wire-drawdown-requests.js.map +1 -1
- package/dist/cjs/resources/wire-transfers.d.ts +24 -36
- package/dist/cjs/resources/wire-transfers.d.ts.map +1 -1
- package/dist/cjs/resources/wire-transfers.js +44 -0
- package/dist/cjs/resources/wire-transfers.js.map +1 -1
- package/dist/cjs/streaming.d.ts +12 -0
- package/dist/cjs/streaming.d.ts.map +1 -0
- package/dist/cjs/streaming.js +284 -0
- package/dist/cjs/streaming.js.map +1 -0
- package/dist/cjs/uploads.d.ts +24 -0
- package/dist/cjs/uploads.d.ts.map +1 -0
- package/dist/cjs/uploads.js +121 -0
- package/dist/cjs/uploads.js.map +1 -0
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/_shims/agent.d.ts +9 -0
- package/dist/esm/_shims/agent.d.ts.map +1 -0
- package/dist/esm/_shims/agent.js +10 -0
- package/dist/esm/_shims/agent.js.map +1 -0
- package/dist/esm/_shims/agent.node.d.ts +6 -0
- package/dist/esm/_shims/agent.node.d.ts.map +1 -0
- package/dist/esm/_shims/agent.node.js +16 -0
- package/dist/esm/_shims/agent.node.js.map +1 -0
- package/dist/esm/_shims/fetch.d.ts +19 -0
- package/dist/esm/_shims/fetch.d.ts.map +1 -0
- package/dist/esm/_shims/fetch.js +18 -0
- package/dist/esm/_shims/fetch.js.map +1 -0
- package/dist/esm/_shims/fetch.node.d.ts +9 -0
- package/dist/esm/_shims/fetch.node.d.ts.map +1 -0
- package/dist/esm/_shims/fetch.node.js +7 -0
- package/dist/esm/_shims/fetch.node.js.map +1 -0
- package/dist/esm/_shims/fileFromPath.d.ts +23 -0
- package/dist/esm/_shims/fileFromPath.d.ts.map +1 -0
- package/dist/esm/_shims/fileFromPath.js +12 -0
- package/dist/esm/_shims/fileFromPath.js.map +1 -0
- package/dist/esm/_shims/fileFromPath.node.d.ts +18 -0
- package/dist/esm/_shims/fileFromPath.node.d.ts.map +1 -0
- package/dist/esm/_shims/fileFromPath.node.js +13 -0
- package/dist/esm/_shims/fileFromPath.node.js.map +1 -0
- package/dist/esm/_shims/formdata.d.ts +13 -0
- package/dist/esm/_shims/formdata.d.ts.map +1 -0
- package/dist/esm/_shims/formdata.js +15 -0
- package/dist/esm/_shims/formdata.js.map +1 -0
- package/dist/esm/_shims/formdata.node.d.ts +7 -0
- package/dist/esm/_shims/formdata.node.d.ts.map +1 -0
- package/dist/esm/_shims/formdata.node.js +7 -0
- package/dist/esm/_shims/formdata.node.js.map +1 -0
- package/dist/esm/_shims/getMultipartRequestOptions.d.ts +10 -0
- package/dist/esm/_shims/getMultipartRequestOptions.d.ts.map +1 -0
- package/dist/esm/_shims/getMultipartRequestOptions.js +7 -0
- package/dist/esm/_shims/getMultipartRequestOptions.js.map +1 -0
- package/dist/esm/_shims/getMultipartRequestOptions.node.d.ts +10 -0
- package/dist/esm/_shims/getMultipartRequestOptions.node.d.ts.map +1 -0
- package/dist/esm/_shims/getMultipartRequestOptions.node.js +17 -0
- package/dist/esm/_shims/getMultipartRequestOptions.node.js.map +1 -0
- package/dist/esm/_shims/newFileArgs.d.ts +19 -0
- package/dist/esm/_shims/newFileArgs.d.ts.map +1 -0
- package/dist/esm/_shims/newFileArgs.js +66 -0
- package/dist/esm/_shims/newFileArgs.js.map +1 -0
- package/dist/esm/_shims/toFile.d.ts +21 -0
- package/dist/esm/_shims/toFile.d.ts.map +1 -0
- package/dist/esm/_shims/toFile.js +19 -0
- package/dist/esm/_shims/toFile.js.map +1 -0
- package/dist/esm/_shims/toFile.node.d.ts +20 -0
- package/dist/esm/_shims/toFile.node.d.ts.map +1 -0
- package/dist/esm/_shims/toFile.node.js +19 -0
- package/dist/esm/_shims/toFile.node.js.map +1 -0
- package/dist/esm/_shims/uploadable.d.ts +56 -0
- package/dist/esm/_shims/uploadable.d.ts.map +1 -0
- package/dist/esm/_shims/uploadable.js +30 -0
- package/dist/esm/_shims/uploadable.js.map +1 -0
- package/dist/esm/_shims/uploadable.node.d.ts +7 -0
- package/dist/esm/_shims/uploadable.node.d.ts.map +1 -0
- package/dist/esm/_shims/uploadable.node.js +10 -0
- package/dist/esm/_shims/uploadable.node.js.map +1 -0
- package/dist/esm/check-version.d.ts +2 -0
- package/dist/esm/check-version.d.ts.map +1 -0
- package/dist/esm/check-version.js +16 -0
- package/dist/esm/check-version.js.map +1 -0
- package/dist/esm/core.d.ts +221 -0
- package/dist/esm/core.d.ts.map +1 -0
- package/dist/esm/core.js +556 -0
- package/dist/esm/core.js.map +1 -0
- package/dist/esm/error.d.ts +208 -0
- package/dist/esm/error.d.ts.map +1 -0
- package/dist/esm/error.js +275 -0
- package/dist/esm/error.js.map +1 -0
- package/dist/esm/index.d.ts +301 -0
- package/dist/esm/index.d.ts.map +1 -0
- package/dist/esm/index.js +213 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/package.json +3 -0
- package/dist/esm/pagination.d.ts +34 -0
- package/dist/esm/pagination.d.ts.map +1 -0
- package/dist/esm/pagination.js +26 -0
- package/dist/esm/pagination.js.map +1 -0
- package/dist/esm/resource.d.ts +12 -0
- package/dist/esm/resource.d.ts.map +1 -0
- package/dist/esm/resource.js +13 -0
- package/dist/esm/resource.js.map +1 -0
- package/dist/esm/resources/account-numbers.d.ts +137 -0
- package/dist/esm/resources/account-numbers.d.ts.map +1 -0
- package/dist/esm/resources/account-numbers.js +36 -0
- package/dist/esm/resources/account-numbers.js.map +1 -0
- package/dist/esm/resources/account-statements.d.ts +106 -0
- package/dist/esm/resources/account-statements.d.ts.map +1 -0
- package/dist/esm/resources/account-statements.js +24 -0
- package/dist/esm/resources/account-statements.js.map +1 -0
- package/dist/esm/resources/account-transfers.d.ts +205 -0
- package/dist/esm/resources/account-transfers.d.ts.map +1 -0
- package/dist/esm/resources/account-transfers.js +42 -0
- package/dist/esm/resources/account-transfers.js.map +1 -0
- package/dist/esm/resources/accounts.d.ts +163 -0
- package/dist/esm/resources/accounts.d.ts.map +1 -0
- package/dist/esm/resources/accounts.js +42 -0
- package/dist/esm/resources/accounts.js.map +1 -0
- package/dist/esm/resources/ach-prenotifications.d.ts +199 -0
- package/dist/esm/resources/ach-prenotifications.d.ts.map +1 -0
- package/dist/esm/resources/ach-prenotifications.js +30 -0
- package/dist/esm/resources/ach-prenotifications.js.map +1 -0
- package/dist/esm/resources/ach-transfers.d.ts +461 -0
- package/dist/esm/resources/ach-transfers.d.ts.map +1 -0
- package/dist/esm/resources/ach-transfers.js +42 -0
- package/dist/esm/resources/ach-transfers.js.map +1 -0
- package/dist/esm/resources/balance-lookups.d.ts +52 -0
- package/dist/esm/resources/balance-lookups.d.ts.map +1 -0
- package/dist/esm/resources/balance-lookups.js +12 -0
- package/dist/esm/resources/balance-lookups.js.map +1 -0
- package/dist/esm/resources/bookkeeping-accounts.d.ts +78 -0
- package/dist/esm/resources/bookkeeping-accounts.d.ts.map +1 -0
- package/dist/esm/resources/bookkeeping-accounts.js +24 -0
- package/dist/esm/resources/bookkeeping-accounts.js.map +1 -0
- package/dist/esm/resources/bookkeeping-entries.d.ts +49 -0
- package/dist/esm/resources/bookkeeping-entries.d.ts.map +1 -0
- package/dist/esm/resources/bookkeeping-entries.js +18 -0
- package/dist/esm/resources/bookkeeping-entries.js.map +1 -0
- package/dist/esm/resources/bookkeeping-entry-sets.d.ts +88 -0
- package/dist/esm/resources/bookkeeping-entry-sets.d.ts.map +1 -0
- package/dist/esm/resources/bookkeeping-entry-sets.js +12 -0
- package/dist/esm/resources/bookkeeping-entry-sets.js.map +1 -0
- package/dist/esm/resources/card-disputes.d.ts +160 -0
- package/dist/esm/resources/card-disputes.d.ts.map +1 -0
- package/dist/esm/resources/card-disputes.js +30 -0
- package/dist/esm/resources/card-disputes.js.map +1 -0
- package/dist/esm/resources/card-profiles.d.ts +206 -0
- package/dist/esm/resources/card-profiles.d.ts.map +1 -0
- package/dist/esm/resources/card-profiles.js +30 -0
- package/dist/esm/resources/card-profiles.js.map +1 -0
- package/dist/esm/resources/cards.d.ts +354 -0
- package/dist/esm/resources/cards.d.ts.map +1 -0
- package/dist/esm/resources/cards.js +42 -0
- package/dist/esm/resources/cards.js.map +1 -0
- package/dist/esm/resources/check-deposits.d.ts +263 -0
- package/dist/esm/resources/check-deposits.d.ts.map +1 -0
- package/dist/esm/resources/check-deposits.js +30 -0
- package/dist/esm/resources/check-deposits.js.map +1 -0
- package/dist/esm/resources/check-transfers.d.ts +438 -0
- package/dist/esm/resources/check-transfers.d.ts.map +1 -0
- package/dist/esm/resources/check-transfers.js +48 -0
- package/dist/esm/resources/check-transfers.js.map +1 -0
- package/dist/esm/resources/declined-transactions.d.ts +492 -0
- package/dist/esm/resources/declined-transactions.d.ts.map +1 -0
- package/dist/esm/resources/declined-transactions.js +24 -0
- package/dist/esm/resources/declined-transactions.js.map +1 -0
- package/dist/esm/resources/digital-wallet-tokens.d.ts +92 -0
- package/dist/esm/resources/digital-wallet-tokens.d.ts.map +1 -0
- package/dist/esm/resources/digital-wallet-tokens.js +24 -0
- package/dist/esm/resources/digital-wallet-tokens.js.map +1 -0
- package/dist/esm/resources/documents.d.ts +95 -0
- package/dist/esm/resources/documents.d.ts.map +1 -0
- package/dist/esm/resources/documents.js +24 -0
- package/dist/esm/resources/documents.js.map +1 -0
- package/dist/esm/resources/entities/entities.d.ts +1622 -0
- package/dist/esm/resources/entities/entities.d.ts.map +1 -0
- package/dist/esm/resources/entities/entities.js +37 -0
- package/dist/esm/resources/entities/entities.js.map +1 -0
- package/dist/esm/resources/entities/index.d.ts +9 -0
- package/dist/esm/resources/entities/index.d.ts.map +1 -0
- package/dist/esm/resources/entities/index.js +4 -0
- package/dist/esm/resources/entities/index.js.map +1 -0
- package/dist/esm/resources/entities/supplemental-documents.d.ts +62 -0
- package/dist/esm/resources/entities/supplemental-documents.d.ts.map +1 -0
- package/dist/esm/resources/entities/supplemental-documents.js +26 -0
- package/dist/esm/resources/entities/supplemental-documents.js.map +1 -0
- package/dist/esm/resources/event-subscriptions.d.ts +209 -0
- package/dist/esm/resources/event-subscriptions.d.ts.map +1 -0
- package/dist/esm/resources/event-subscriptions.js +36 -0
- package/dist/esm/resources/event-subscriptions.js.map +1 -0
- package/dist/esm/resources/events.d.ts +195 -0
- package/dist/esm/resources/events.d.ts.map +1 -0
- package/dist/esm/resources/events.js +24 -0
- package/dist/esm/resources/events.js.map +1 -0
- package/dist/esm/resources/exports.d.ts +169 -0
- package/dist/esm/resources/exports.d.ts.map +1 -0
- package/dist/esm/resources/exports.js +30 -0
- package/dist/esm/resources/exports.js.map +1 -0
- package/dist/esm/resources/external-accounts.d.ts +131 -0
- package/dist/esm/resources/external-accounts.d.ts.map +1 -0
- package/dist/esm/resources/external-accounts.js +36 -0
- package/dist/esm/resources/external-accounts.js.map +1 -0
- package/dist/esm/resources/files.d.ts +167 -0
- package/dist/esm/resources/files.d.ts.map +1 -0
- package/dist/esm/resources/files.js +33 -0
- package/dist/esm/resources/files.js.map +1 -0
- package/dist/esm/resources/groups.d.ts +42 -0
- package/dist/esm/resources/groups.d.ts.map +1 -0
- package/dist/esm/resources/groups.js +12 -0
- package/dist/esm/resources/groups.js.map +1 -0
- package/dist/esm/resources/inbound-ach-transfer-returns.d.ts +117 -0
- package/dist/esm/resources/inbound-ach-transfer-returns.d.ts.map +1 -0
- package/dist/esm/resources/inbound-ach-transfer-returns.js +33 -0
- package/dist/esm/resources/inbound-ach-transfer-returns.js.map +1 -0
- package/dist/esm/resources/inbound-wire-drawdown-requests.d.ts +131 -0
- package/dist/esm/resources/inbound-wire-drawdown-requests.d.ts.map +1 -0
- package/dist/esm/resources/inbound-wire-drawdown-requests.js +27 -0
- package/dist/esm/resources/inbound-wire-drawdown-requests.js.map +1 -0
- package/dist/esm/resources/index.d.ts +199 -0
- package/dist/esm/resources/index.d.ts.map +1 -0
- package/dist/esm/resources/index.js +44 -0
- package/dist/esm/resources/index.js.map +1 -0
- package/dist/esm/resources/limits.d.ts +114 -0
- package/dist/esm/resources/limits.d.ts.map +1 -0
- package/dist/esm/resources/limits.js +36 -0
- package/dist/esm/resources/limits.js.map +1 -0
- package/dist/esm/resources/oauth-connections.d.ts +57 -0
- package/dist/esm/resources/oauth-connections.d.ts.map +1 -0
- package/dist/esm/resources/oauth-connections.js +24 -0
- package/dist/esm/resources/oauth-connections.js.map +1 -0
- package/dist/esm/resources/pending-transactions.d.ts +482 -0
- package/dist/esm/resources/pending-transactions.d.ts.map +1 -0
- package/dist/esm/resources/pending-transactions.js +24 -0
- package/dist/esm/resources/pending-transactions.js.map +1 -0
- package/dist/esm/resources/programs.d.ts +54 -0
- package/dist/esm/resources/programs.d.ts.map +1 -0
- package/dist/esm/resources/programs.js +24 -0
- package/dist/esm/resources/programs.js.map +1 -0
- package/dist/esm/resources/real-time-decisions.d.ts +330 -0
- package/dist/esm/resources/real-time-decisions.d.ts.map +1 -0
- package/dist/esm/resources/real-time-decisions.js +18 -0
- package/dist/esm/resources/real-time-decisions.js.map +1 -0
- package/dist/esm/resources/real-time-payments-transfers.d.ts +294 -0
- package/dist/esm/resources/real-time-payments-transfers.d.ts.map +1 -0
- package/dist/esm/resources/real-time-payments-transfers.js +33 -0
- package/dist/esm/resources/real-time-payments-transfers.js.map +1 -0
- package/dist/esm/resources/routing-numbers.d.ts +56 -0
- package/dist/esm/resources/routing-numbers.d.ts.map +1 -0
- package/dist/esm/resources/routing-numbers.js +20 -0
- package/dist/esm/resources/routing-numbers.js.map +1 -0
- package/dist/esm/resources/shared.d.ts +16 -0
- package/dist/esm/resources/shared.d.ts.map +1 -0
- package/dist/esm/resources/shared.js +3 -0
- package/dist/esm/resources/shared.js.map +1 -0
- package/dist/esm/resources/simulations/account-statements.d.ts +24 -0
- package/dist/esm/resources/simulations/account-statements.d.ts.map +1 -0
- package/dist/esm/resources/simulations/account-statements.js +13 -0
- package/dist/esm/resources/simulations/account-statements.js.map +1 -0
- package/dist/esm/resources/simulations/account-transfers.d.ts +16 -0
- package/dist/esm/resources/simulations/account-transfers.d.ts.map +1 -0
- package/dist/esm/resources/simulations/account-transfers.js +14 -0
- package/dist/esm/resources/simulations/account-transfers.js.map +1 -0
- package/dist/esm/resources/simulations/ach-transfers.d.ts +1836 -0
- package/dist/esm/resources/simulations/ach-transfers.d.ts.map +1 -0
- package/dist/esm/resources/simulations/ach-transfers.js +36 -0
- package/dist/esm/resources/simulations/ach-transfers.js.map +1 -0
- package/dist/esm/resources/simulations/card-disputes.d.ts +31 -0
- package/dist/esm/resources/simulations/card-disputes.d.ts.map +1 -0
- package/dist/esm/resources/simulations/card-disputes.js +15 -0
- package/dist/esm/resources/simulations/card-disputes.js.map +1 -0
- package/dist/esm/resources/simulations/card-refunds.d.ts +25 -0
- package/dist/esm/resources/simulations/card-refunds.d.ts.map +1 -0
- package/dist/esm/resources/simulations/card-refunds.js +13 -0
- package/dist/esm/resources/simulations/card-refunds.js.map +1 -0
- package/dist/esm/resources/simulations/cards.d.ts +931 -0
- package/dist/esm/resources/simulations/cards.d.ts.map +1 -0
- package/dist/esm/resources/simulations/cards.js +28 -0
- package/dist/esm/resources/simulations/cards.js.map +1 -0
- package/dist/esm/resources/simulations/check-deposits.d.ts +31 -0
- package/dist/esm/resources/simulations/check-deposits.d.ts.map +1 -0
- package/dist/esm/resources/simulations/check-deposits.js +27 -0
- package/dist/esm/resources/simulations/check-deposits.js.map +1 -0
- package/dist/esm/resources/simulations/check-transfers.d.ts +42 -0
- package/dist/esm/resources/simulations/check-transfers.d.ts.map +1 -0
- package/dist/esm/resources/simulations/check-transfers.js +28 -0
- package/dist/esm/resources/simulations/check-transfers.js.map +1 -0
- package/dist/esm/resources/simulations/digital-wallet-token-requests.d.ts +49 -0
- package/dist/esm/resources/simulations/digital-wallet-token-requests.d.ts.map +1 -0
- package/dist/esm/resources/simulations/digital-wallet-token-requests.js +13 -0
- package/dist/esm/resources/simulations/digital-wallet-token-requests.js.map +1 -0
- package/dist/esm/resources/simulations/documents.d.ts +23 -0
- package/dist/esm/resources/simulations/documents.d.ts.map +1 -0
- package/dist/esm/resources/simulations/documents.js +12 -0
- package/dist/esm/resources/simulations/documents.js.map +1 -0
- package/dist/esm/resources/simulations/inbound-wire-drawdown-requests.d.ts +106 -0
- package/dist/esm/resources/simulations/inbound-wire-drawdown-requests.d.ts.map +1 -0
- package/dist/esm/resources/simulations/inbound-wire-drawdown-requests.js +15 -0
- package/dist/esm/resources/simulations/inbound-wire-drawdown-requests.js.map +1 -0
- package/dist/esm/resources/simulations/index.d.ts +38 -0
- package/dist/esm/resources/simulations/index.d.ts.map +1 -0
- package/dist/esm/resources/simulations/index.js +18 -0
- package/dist/esm/resources/simulations/index.js.map +1 -0
- package/dist/esm/resources/simulations/interest-payments.d.ts +1272 -0
- package/dist/esm/resources/simulations/interest-payments.d.ts.map +1 -0
- package/dist/esm/resources/simulations/interest-payments.js +13 -0
- package/dist/esm/resources/simulations/interest-payments.js.map +1 -0
- package/dist/esm/resources/simulations/programs.d.ts +25 -0
- package/dist/esm/resources/simulations/programs.d.ts.map +1 -0
- package/dist/esm/resources/simulations/programs.js +14 -0
- package/dist/esm/resources/simulations/programs.js.map +1 -0
- package/dist/esm/resources/simulations/real-time-payments-transfers.d.ts +1782 -0
- package/dist/esm/resources/simulations/real-time-payments-transfers.d.ts.map +1 -0
- package/dist/esm/resources/simulations/real-time-payments-transfers.js +24 -0
- package/dist/esm/resources/simulations/real-time-payments-transfers.js.map +1 -0
- package/dist/esm/resources/simulations/simulations.d.ts +74 -0
- package/dist/esm/resources/simulations/simulations.d.ts.map +1 -0
- package/dist/esm/resources/simulations/simulations.js +56 -0
- package/dist/esm/resources/simulations/simulations.js.map +1 -0
- package/dist/esm/resources/simulations/wire-transfers.d.ts +1338 -0
- package/dist/esm/resources/simulations/wire-transfers.d.ts.map +1 -0
- package/dist/esm/resources/simulations/wire-transfers.js +12 -0
- package/dist/esm/resources/simulations/wire-transfers.js.map +1 -0
- package/dist/esm/resources/transactions.d.ts +1326 -0
- package/dist/esm/resources/transactions.d.ts.map +1 -0
- package/dist/esm/resources/transactions.js +24 -0
- package/dist/esm/resources/transactions.js.map +1 -0
- package/dist/esm/resources/wire-drawdown-requests.d.ts +160 -0
- package/dist/esm/resources/wire-drawdown-requests.d.ts.map +1 -0
- package/dist/esm/resources/wire-drawdown-requests.js +30 -0
- package/dist/esm/resources/wire-drawdown-requests.js.map +1 -0
- package/dist/esm/resources/wire-transfers.d.ts +352 -0
- package/dist/esm/resources/wire-transfers.d.ts.map +1 -0
- package/dist/esm/resources/wire-transfers.js +59 -0
- package/dist/esm/resources/wire-transfers.js.map +1 -0
- package/dist/esm/streaming.d.ts +12 -0
- package/dist/esm/streaming.d.ts.map +1 -0
- package/dist/esm/streaming.js +150 -0
- package/dist/esm/streaming.js.map +1 -0
- package/dist/esm/uploads.d.ts +24 -0
- package/dist/esm/uploads.d.ts.map +1 -0
- package/dist/esm/uploads.js +61 -0
- package/dist/esm/uploads.js.map +1 -0
- package/dist/esm/version.d.ts +2 -0
- package/dist/esm/version.d.ts.map +1 -0
- package/dist/esm/version.js +2 -0
- package/dist/esm/version.js.map +1 -0
- package/error.ts +222 -54
- package/index.ts +71 -100
- package/package.json +85 -5
- package/pagination.ts +4 -1
- package/resources/account-numbers.ts +15 -28
- package/resources/account-statements.ts +13 -28
- package/resources/account-transfers.ts +14 -28
- package/resources/accounts.ts +33 -33
- package/resources/ach-prenotifications.ts +20 -34
- package/resources/ach-transfers.ts +85 -47
- package/resources/balance-lookups.ts +6 -0
- package/resources/bookkeeping-accounts.ts +18 -10
- package/resources/bookkeeping-entries.ts +12 -5
- package/resources/bookkeeping-entry-sets.ts +23 -31
- package/resources/card-disputes.ts +15 -34
- package/resources/card-profiles.ts +14 -79
- package/resources/cards.ts +18 -142
- package/resources/check-deposits.ts +16 -29
- package/resources/check-transfers.ts +101 -149
- package/resources/declined-transactions.ts +14 -65
- package/resources/digital-wallet-tokens.ts +13 -28
- package/resources/documents.ts +16 -185
- package/resources/entities/entities.ts +393 -1477
- package/resources/entities/index.ts +8 -2
- package/resources/entities/supplemental-documents.ts +54 -0
- package/resources/event-subscriptions.ts +18 -9
- package/resources/events.ts +40 -111
- package/resources/exports.ts +18 -104
- package/resources/external-accounts.ts +20 -16
- package/resources/files.ts +29 -56
- package/resources/groups.ts +10 -5
- package/resources/inbound-ach-transfer-returns.ts +8 -0
- package/resources/inbound-wire-drawdown-requests.ts +12 -5
- package/resources/limits.ts +14 -5
- package/resources/oauth-connections.ts +12 -5
- package/resources/pending-transactions.ts +29 -114
- package/resources/programs.ts +12 -5
- package/resources/real-time-decisions.ts +39 -110
- package/resources/real-time-payments-transfers.ts +41 -55
- package/resources/routing-numbers.ts +7 -0
- package/resources/simulations/account-statements.ts +5 -0
- package/resources/simulations/ach-transfers.ts +1398 -1511
- package/resources/simulations/card-disputes.ts +9 -4
- package/resources/simulations/card-refunds.ts +5 -0
- package/resources/simulations/cards.ts +542 -635
- package/resources/simulations/check-transfers.ts +5 -0
- package/resources/simulations/digital-wallet-token-requests.ts +6 -0
- package/resources/simulations/documents.ts +5 -0
- package/resources/simulations/inbound-wire-drawdown-requests.ts +32 -27
- package/resources/simulations/index.ts +23 -9
- package/resources/simulations/interest-payments.ts +202 -327
- package/resources/simulations/programs.ts +31 -0
- package/resources/simulations/real-time-payments-transfers.ts +1400 -1591
- package/resources/simulations/simulations.ts +57 -0
- package/resources/simulations/wire-transfers.ts +202 -327
- package/resources/transactions.ts +235 -434
- package/resources/wire-drawdown-requests.ts +23 -15
- package/resources/wire-transfers.ts +28 -42
- package/streaming.ts +201 -0
- package/uploads.ts +81 -0
- package/version.ts +1 -1
- package/.eslintrc.js +0 -10
- package/.github/workflows/publish-npm.yml +0 -28
- package/.github/workflows/release-doctor.yml +0 -20
- package/.github/workflows/release.yml +0 -38
- package/.prettierignore +0 -1
- package/.prettierrc +0 -6
- package/.release-please-manifest.json +0 -3
- package/.stats.yml +0 -1
- package/api.md +0 -565
- package/bin/check-release-environment +0 -25
- package/bin/check-test-server +0 -50
- package/bin/publish-npm +0 -6
- package/build +0 -12
- package/dist/cjs/examples/api-error.d.ts +0 -3
- package/dist/cjs/examples/api-error.d.ts.map +0 -1
- package/dist/cjs/examples/api-error.js +0 -92
- package/dist/cjs/examples/api-error.js.map +0 -1
- package/dist/cjs/fetch-polyfill.d.ts +0 -6
- package/dist/cjs/fetch-polyfill.d.ts.map +0 -1
- package/dist/cjs/fetch-polyfill.js +0 -57
- package/dist/cjs/fetch-polyfill.js.map +0 -1
- package/dist/cjs/tests/api-resources/account-numbers.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/account-numbers.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/account-numbers.test.js +0 -102
- package/dist/cjs/tests/api-resources/account-numbers.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/account-statements.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/account-statements.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/account-statements.test.js +0 -86
- package/dist/cjs/tests/api-resources/account-statements.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/account-transfers.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/account-transfers.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/account-transfers.test.js +0 -132
- package/dist/cjs/tests/api-resources/account-transfers.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/accounts.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/accounts.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/accounts.test.js +0 -120
- package/dist/cjs/tests/api-resources/accounts.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/ach-prenotifications.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/ach-prenotifications.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/ach-prenotifications.test.js +0 -121
- package/dist/cjs/tests/api-resources/ach-prenotifications.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/ach-transfers.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/ach-transfers.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/ach-transfers.test.js +0 -157
- package/dist/cjs/tests/api-resources/ach-transfers.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/balance-lookups.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/balance-lookups.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/balance-lookups.test.js +0 -58
- package/dist/cjs/tests/api-resources/balance-lookups.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/bookkeeping-accounts.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/bookkeeping-accounts.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/bookkeeping-accounts.test.js +0 -83
- package/dist/cjs/tests/api-resources/bookkeeping-accounts.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/bookkeeping-entries.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/bookkeeping-entries.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/bookkeeping-entries.test.js +0 -65
- package/dist/cjs/tests/api-resources/bookkeeping-entries.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/bookkeeping-entry-sets.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/bookkeeping-entry-sets.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/bookkeeping-entry-sets.test.js +0 -68
- package/dist/cjs/tests/api-resources/bookkeeping-entry-sets.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/card-disputes.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/card-disputes.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/card-disputes.test.js +0 -100
- package/dist/cjs/tests/api-resources/card-disputes.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/card-profiles.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/card-profiles.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/card-profiles.test.js +0 -106
- package/dist/cjs/tests/api-resources/card-profiles.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/cards.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/cards.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/cards.test.js +0 -124
- package/dist/cjs/tests/api-resources/cards.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/check-deposits.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/check-deposits.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/check-deposits.test.js +0 -108
- package/dist/cjs/tests/api-resources/check-deposits.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/check-transfers.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/check-transfers.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/check-transfers.test.js +0 -161
- package/dist/cjs/tests/api-resources/check-transfers.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/declined-transactions.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/declined-transactions.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/declined-transactions.test.js +0 -89
- package/dist/cjs/tests/api-resources/declined-transactions.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.js +0 -88
- package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/documents.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/documents.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/documents.test.js +0 -89
- package/dist/cjs/tests/api-resources/documents.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/entities/entities.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/entities/entities.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/entities/entities.test.js +0 -357
- package/dist/cjs/tests/api-resources/entities/entities.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.js +0 -56
- package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/event-subscriptions.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/event-subscriptions.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/event-subscriptions.test.js +0 -103
- package/dist/cjs/tests/api-resources/event-subscriptions.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/events.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/events.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/events.test.js +0 -85
- package/dist/cjs/tests/api-resources/events.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/exports.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/exports.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/exports.test.js +0 -105
- package/dist/cjs/tests/api-resources/exports.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/external-accounts.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/external-accounts.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/external-accounts.test.js +0 -103
- package/dist/cjs/tests/api-resources/external-accounts.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/files.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/files.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/files.test.js +0 -103
- package/dist/cjs/tests/api-resources/files.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/groups.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/groups.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/groups.test.js +0 -55
- package/dist/cjs/tests/api-resources/groups.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.js +0 -94
- package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.js +0 -80
- package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/limits.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/limits.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/limits.test.js +0 -102
- package/dist/cjs/tests/api-resources/limits.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/oauth-connections.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/oauth-connections.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/oauth-connections.test.js +0 -75
- package/dist/cjs/tests/api-resources/oauth-connections.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/pending-transactions.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/pending-transactions.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/pending-transactions.test.js +0 -91
- package/dist/cjs/tests/api-resources/pending-transactions.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/programs.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/programs.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/programs.test.js +0 -73
- package/dist/cjs/tests/api-resources/programs.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/real-time-decisions.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/real-time-decisions.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/real-time-decisions.test.js +0 -65
- package/dist/cjs/tests/api-resources/real-time-decisions.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/real-time-payments-transfers.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/real-time-payments-transfers.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/real-time-payments-transfers.test.js +0 -115
- package/dist/cjs/tests/api-resources/real-time-payments-transfers.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/routing-numbers.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/routing-numbers.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/routing-numbers.test.js +0 -60
- package/dist/cjs/tests/api-resources/routing-numbers.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/account-statements.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/account-statements.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/account-statements.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/account-transfers.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/account-transfers.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/account-transfers.test.js +0 -61
- package/dist/cjs/tests/api-resources/simulations/account-transfers.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.js +0 -90
- package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/card-disputes.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/card-disputes.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/card-disputes.test.js +0 -58
- package/dist/cjs/tests/api-resources/simulations/card-disputes.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/card-refunds.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/card-refunds.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/card-refunds.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/cards.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/cards.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/cards.test.js +0 -78
- package/dist/cjs/tests/api-resources/simulations/cards.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/check-deposits.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/check-deposits.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/check-deposits.test.js +0 -87
- package/dist/cjs/tests/api-resources/simulations/check-deposits.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/check-transfers.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/check-transfers.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/check-transfers.test.js +0 -92
- package/dist/cjs/tests/api-resources/simulations/check-transfers.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.js +0 -52
- package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/documents.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/documents.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/documents.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.js +0 -94
- package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/interest-payments.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/interest-payments.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/interest-payments.test.js +0 -58
- package/dist/cjs/tests/api-resources/simulations/interest-payments.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.js +0 -75
- package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.js +0 -84
- package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/transactions.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/transactions.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/transactions.test.js +0 -92
- package/dist/cjs/tests/api-resources/transactions.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.js +0 -110
- package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.js.map +0 -1
- package/dist/cjs/tests/api-resources/wire-transfers.test.d.ts +0 -2
- package/dist/cjs/tests/api-resources/wire-transfers.test.d.ts.map +0 -1
- package/dist/cjs/tests/api-resources/wire-transfers.test.js +0 -175
- package/dist/cjs/tests/api-resources/wire-transfers.test.js.map +0 -1
- package/dist/cjs/tests/form.test.d.ts +0 -2
- package/dist/cjs/tests/form.test.d.ts.map +0 -1
- package/dist/cjs/tests/form.test.js.map +0 -1
- package/dist/cjs/tests/index.test.d.ts +0 -2
- package/dist/cjs/tests/index.test.d.ts.map +0 -1
- package/dist/cjs/tests/index.test.js +0 -108
- package/dist/cjs/tests/index.test.js.map +0 -1
- package/dist/cjs/tests/responses.test.d.ts +0 -2
- package/dist/cjs/tests/responses.test.d.ts.map +0 -1
- package/dist/cjs/tests/responses.test.js +0 -60
- package/dist/cjs/tests/responses.test.js.map +0 -1
- package/examples/api-error.ts +0 -21
- package/fetch-polyfill.ts +0 -69
- package/jest.config.js +0 -8
- package/release-please-config.json +0 -64
- package/tests/api-resources/account-numbers.test.ts +0 -65
- package/tests/api-resources/account-statements.test.ts +0 -49
- package/tests/api-resources/account-transfers.test.ts +0 -95
- package/tests/api-resources/accounts.test.ts +0 -83
- package/tests/api-resources/ach-prenotifications.test.ts +0 -82
- package/tests/api-resources/ach-transfers.test.ts +0 -118
- package/tests/api-resources/balance-lookups.test.ts +0 -21
- package/tests/api-resources/bookkeeping-accounts.test.ts +0 -43
- package/tests/api-resources/bookkeeping-entries.test.ts +0 -25
- package/tests/api-resources/bookkeeping-entry-sets.test.ts +0 -31
- package/tests/api-resources/card-disputes.test.ts +0 -63
- package/tests/api-resources/card-profiles.test.ts +0 -69
- package/tests/api-resources/cards.test.ts +0 -87
- package/tests/api-resources/check-deposits.test.ts +0 -69
- package/tests/api-resources/check-transfers.test.ts +0 -124
- package/tests/api-resources/declined-transactions.test.ts +0 -52
- package/tests/api-resources/digital-wallet-tokens.test.ts +0 -49
- package/tests/api-resources/documents.test.ts +0 -52
- package/tests/api-resources/entities/entities.test.ts +0 -320
- package/tests/api-resources/entities/supplemental-documents.test.ts +0 -19
- package/tests/api-resources/event-subscriptions.test.ts +0 -63
- package/tests/api-resources/events.test.ts +0 -48
- package/tests/api-resources/exports.test.ts +0 -68
- package/tests/api-resources/external-accounts.test.ts +0 -66
- package/tests/api-resources/files.test.ts +0 -66
- package/tests/api-resources/groups.test.ts +0 -18
- package/tests/api-resources/inbound-ach-transfer-returns.test.ts +0 -57
- package/tests/api-resources/inbound-wire-drawdown-requests.test.ts +0 -43
- package/tests/api-resources/limits.test.ts +0 -65
- package/tests/api-resources/oauth-connections.test.ts +0 -38
- package/tests/api-resources/pending-transactions.test.ts +0 -52
- package/tests/api-resources/programs.test.ts +0 -36
- package/tests/api-resources/real-time-decisions.test.ts +0 -28
- package/tests/api-resources/real-time-payments-transfers.test.ts +0 -78
- package/tests/api-resources/routing-numbers.test.ts +0 -23
- package/tests/api-resources/simulations/account-statements.test.ts +0 -15
- package/tests/api-resources/simulations/account-transfers.test.ts +0 -24
- package/tests/api-resources/simulations/ach-transfers.test.ts +0 -53
- package/tests/api-resources/simulations/card-disputes.test.ts +0 -21
- package/tests/api-resources/simulations/card-refunds.test.ts +0 -15
- package/tests/api-resources/simulations/cards.test.ts +0 -41
- package/tests/api-resources/simulations/check-deposits.test.ts +0 -50
- package/tests/api-resources/simulations/check-transfers.test.ts +0 -47
- package/tests/api-resources/simulations/digital-wallet-token-requests.test.ts +0 -15
- package/tests/api-resources/simulations/documents.test.ts +0 -15
- package/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.ts +0 -57
- package/tests/api-resources/simulations/interest-payments.test.ts +0 -15
- package/tests/api-resources/simulations/real-time-payments-transfers.test.ts +0 -38
- package/tests/api-resources/simulations/wire-transfers.test.ts +0 -47
- package/tests/api-resources/transactions.test.ts +0 -53
- package/tests/api-resources/wire-drawdown-requests.test.ts +0 -73
- package/tests/api-resources/wire-transfers.test.ts +0 -138
- package/tests/form.test.ts +0 -27
- package/tests/index.test.ts +0 -78
- package/tests/responses.test.ts +0 -25
- package/tsconfig.cjs.json +0 -8
- package/tsconfig.json +0 -39
- package/typings/digest-fetch/index.d.ts +0 -33
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import * as Core from '~/core';
|
|
4
4
|
import { APIResource } from '~/resource';
|
|
5
|
+
import * as API from './';
|
|
5
6
|
|
|
6
7
|
export class WireTransfers extends APIResource {
|
|
7
8
|
/**
|
|
@@ -40,6 +41,11 @@ export namespace WireTransferSimulation {
|
|
|
40
41
|
* `category: inbound_wire_transfer`.
|
|
41
42
|
*/
|
|
42
43
|
export interface Transaction {
|
|
44
|
+
/**
|
|
45
|
+
* The Transaction identifier.
|
|
46
|
+
*/
|
|
47
|
+
id: string;
|
|
48
|
+
|
|
43
49
|
/**
|
|
44
50
|
* The identifier for the Account the Transaction belongs to.
|
|
45
51
|
*/
|
|
@@ -71,11 +77,6 @@ export namespace WireTransferSimulation {
|
|
|
71
77
|
*/
|
|
72
78
|
description: string;
|
|
73
79
|
|
|
74
|
-
/**
|
|
75
|
-
* The Transaction identifier.
|
|
76
|
-
*/
|
|
77
|
-
id: string;
|
|
78
|
-
|
|
79
80
|
/**
|
|
80
81
|
* The identifier for the route this Transaction came through. Routes are things
|
|
81
82
|
* like cards and ACH details.
|
|
@@ -116,18 +117,6 @@ export namespace WireTransferSimulation {
|
|
|
116
117
|
*/
|
|
117
118
|
account_transfer_intention: Source.AccountTransferIntention | null;
|
|
118
119
|
|
|
119
|
-
/**
|
|
120
|
-
* A ACH Check Conversion object. This field will be present in the JSON response
|
|
121
|
-
* if and only if `category` is equal to `ach_check_conversion`.
|
|
122
|
-
*/
|
|
123
|
-
ach_check_conversion: Source.ACHCheckConversion | null;
|
|
124
|
-
|
|
125
|
-
/**
|
|
126
|
-
* A ACH Check Conversion Return object. This field will be present in the JSON
|
|
127
|
-
* response if and only if `category` is equal to `ach_check_conversion_return`.
|
|
128
|
-
*/
|
|
129
|
-
ach_check_conversion_return: Source.ACHCheckConversionReturn | null;
|
|
130
|
-
|
|
131
120
|
/**
|
|
132
121
|
* A ACH Transfer Intention object. This field will be present in the JSON response
|
|
133
122
|
* if and only if `category` is equal to `ach_transfer_intention`.
|
|
@@ -164,18 +153,6 @@ export namespace WireTransferSimulation {
|
|
|
164
153
|
*/
|
|
165
154
|
card_revenue_payment: Source.CardRevenuePayment | null;
|
|
166
155
|
|
|
167
|
-
/**
|
|
168
|
-
* A Deprecated Card Refund object. This field will be present in the JSON response
|
|
169
|
-
* if and only if `category` is equal to `card_route_refund`.
|
|
170
|
-
*/
|
|
171
|
-
card_route_refund: Source.CardRouteRefund | null;
|
|
172
|
-
|
|
173
|
-
/**
|
|
174
|
-
* A Deprecated Card Settlement object. This field will be present in the JSON
|
|
175
|
-
* response if and only if `category` is equal to `card_route_settlement`.
|
|
176
|
-
*/
|
|
177
|
-
card_route_settlement: Source.CardRouteSettlement | null;
|
|
178
|
-
|
|
179
156
|
/**
|
|
180
157
|
* A Card Settlement object. This field will be present in the JSON response if and
|
|
181
158
|
* only if `category` is equal to `card_settlement`.
|
|
@@ -189,42 +166,34 @@ export namespace WireTransferSimulation {
|
|
|
189
166
|
*/
|
|
190
167
|
category:
|
|
191
168
|
| 'account_transfer_intention'
|
|
192
|
-
| 'ach_check_conversion_return'
|
|
193
|
-
| 'ach_check_conversion'
|
|
194
169
|
| 'ach_transfer_intention'
|
|
195
170
|
| 'ach_transfer_rejection'
|
|
196
171
|
| 'ach_transfer_return'
|
|
197
172
|
| 'card_dispute_acceptance'
|
|
198
173
|
| 'card_refund'
|
|
199
|
-
| 'card_settlement'
|
|
200
174
|
| 'card_revenue_payment'
|
|
175
|
+
| 'card_settlement'
|
|
201
176
|
| 'check_deposit_acceptance'
|
|
202
177
|
| 'check_deposit_return'
|
|
178
|
+
| 'check_transfer_deposit'
|
|
203
179
|
| 'check_transfer_intention'
|
|
204
|
-
| 'check_transfer_return'
|
|
205
180
|
| 'check_transfer_rejection'
|
|
181
|
+
| 'check_transfer_return'
|
|
206
182
|
| 'check_transfer_stop_payment_request'
|
|
207
|
-
| 'dispute_resolution'
|
|
208
|
-
| 'empyreal_cash_deposit'
|
|
209
183
|
| 'fee_payment'
|
|
210
184
|
| 'inbound_ach_transfer'
|
|
211
185
|
| 'inbound_ach_transfer_return_intention'
|
|
212
186
|
| 'inbound_check'
|
|
213
187
|
| 'inbound_international_ach_transfer'
|
|
214
188
|
| 'inbound_real_time_payments_transfer_confirmation'
|
|
215
|
-
| 'inbound_wire_drawdown_payment_reversal'
|
|
216
189
|
| 'inbound_wire_drawdown_payment'
|
|
190
|
+
| 'inbound_wire_drawdown_payment_reversal'
|
|
217
191
|
| 'inbound_wire_reversal'
|
|
218
192
|
| 'inbound_wire_transfer'
|
|
219
193
|
| 'interest_payment'
|
|
220
|
-
| 'internal_general_ledger_transaction'
|
|
221
194
|
| 'internal_source'
|
|
222
|
-
| 'card_route_refund'
|
|
223
|
-
| 'card_route_settlement'
|
|
224
195
|
| 'real_time_payments_transfer_acknowledgement'
|
|
225
196
|
| 'sample_funds'
|
|
226
|
-
| 'wire_drawdown_payment_intention'
|
|
227
|
-
| 'wire_drawdown_payment_rejection'
|
|
228
197
|
| 'wire_transfer_intention'
|
|
229
198
|
| 'wire_transfer_rejection'
|
|
230
199
|
| 'other';
|
|
@@ -241,6 +210,12 @@ export namespace WireTransferSimulation {
|
|
|
241
210
|
*/
|
|
242
211
|
check_deposit_return: Source.CheckDepositReturn | null;
|
|
243
212
|
|
|
213
|
+
/**
|
|
214
|
+
* A Check Transfer Deposit object. This field will be present in the JSON response
|
|
215
|
+
* if and only if `category` is equal to `check_transfer_deposit`.
|
|
216
|
+
*/
|
|
217
|
+
check_transfer_deposit: Source.CheckTransferDeposit | null;
|
|
218
|
+
|
|
244
219
|
/**
|
|
245
220
|
* A Check Transfer Intention object. This field will be present in the JSON
|
|
246
221
|
* response if and only if `category` is equal to `check_transfer_intention`.
|
|
@@ -266,18 +241,6 @@ export namespace WireTransferSimulation {
|
|
|
266
241
|
*/
|
|
267
242
|
check_transfer_stop_payment_request: Source.CheckTransferStopPaymentRequest | null;
|
|
268
243
|
|
|
269
|
-
/**
|
|
270
|
-
* A Dispute Resolution object. This field will be present in the JSON response if
|
|
271
|
-
* and only if `category` is equal to `dispute_resolution`.
|
|
272
|
-
*/
|
|
273
|
-
dispute_resolution: Source.DisputeResolution | null;
|
|
274
|
-
|
|
275
|
-
/**
|
|
276
|
-
* A Empyreal Cash Deposit object. This field will be present in the JSON response
|
|
277
|
-
* if and only if `category` is equal to `empyreal_cash_deposit`.
|
|
278
|
-
*/
|
|
279
|
-
empyreal_cash_deposit: Source.EmpyrealCashDeposit | null;
|
|
280
|
-
|
|
281
244
|
/**
|
|
282
245
|
* A Fee Payment object. This field will be present in the JSON response if and
|
|
283
246
|
* only if `category` is equal to `fee_payment`.
|
|
@@ -360,20 +323,6 @@ export namespace WireTransferSimulation {
|
|
|
360
323
|
*/
|
|
361
324
|
sample_funds: Source.SampleFunds | null;
|
|
362
325
|
|
|
363
|
-
/**
|
|
364
|
-
* A Wire Drawdown Payment Intention object. This field will be present in the JSON
|
|
365
|
-
* response if and only if `category` is equal to
|
|
366
|
-
* `wire_drawdown_payment_intention`.
|
|
367
|
-
*/
|
|
368
|
-
wire_drawdown_payment_intention: Source.WireDrawdownPaymentIntention | null;
|
|
369
|
-
|
|
370
|
-
/**
|
|
371
|
-
* A Wire Drawdown Payment Rejection object. This field will be present in the JSON
|
|
372
|
-
* response if and only if `category` is equal to
|
|
373
|
-
* `wire_drawdown_payment_rejection`.
|
|
374
|
-
*/
|
|
375
|
-
wire_drawdown_payment_rejection: Source.WireDrawdownPaymentRejection | null;
|
|
376
|
-
|
|
377
326
|
/**
|
|
378
327
|
* A Wire Transfer Intention object. This field will be present in the JSON
|
|
379
328
|
* response if and only if `category` is equal to `wire_transfer_intention`.
|
|
@@ -426,40 +375,6 @@ export namespace WireTransferSimulation {
|
|
|
426
375
|
transfer_id: string;
|
|
427
376
|
}
|
|
428
377
|
|
|
429
|
-
/**
|
|
430
|
-
* A ACH Check Conversion Return object. This field will be present in the JSON
|
|
431
|
-
* response if and only if `category` is equal to `ach_check_conversion_return`.
|
|
432
|
-
*/
|
|
433
|
-
export interface ACHCheckConversionReturn {
|
|
434
|
-
/**
|
|
435
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
436
|
-
* example, this is cents.
|
|
437
|
-
*/
|
|
438
|
-
amount: number;
|
|
439
|
-
|
|
440
|
-
/**
|
|
441
|
-
* Why the transfer was returned.
|
|
442
|
-
*/
|
|
443
|
-
return_reason_code: string;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
/**
|
|
447
|
-
* A ACH Check Conversion object. This field will be present in the JSON response
|
|
448
|
-
* if and only if `category` is equal to `ach_check_conversion`.
|
|
449
|
-
*/
|
|
450
|
-
export interface ACHCheckConversion {
|
|
451
|
-
/**
|
|
452
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
453
|
-
* example, this is cents.
|
|
454
|
-
*/
|
|
455
|
-
amount: number;
|
|
456
|
-
|
|
457
|
-
/**
|
|
458
|
-
* The identifier of the File containing an image of the returned check.
|
|
459
|
-
*/
|
|
460
|
-
file_id: string;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
378
|
/**
|
|
464
379
|
* A ACH Transfer Intention object. This field will be present in the JSON response
|
|
465
380
|
* if and only if `category` is equal to `ach_transfer_intention`.
|
|
@@ -505,6 +420,11 @@ export namespace WireTransferSimulation {
|
|
|
505
420
|
*/
|
|
506
421
|
created_at: string;
|
|
507
422
|
|
|
423
|
+
/**
|
|
424
|
+
* The three character ACH return code, in the range R01 to R85.
|
|
425
|
+
*/
|
|
426
|
+
raw_return_reason_code: string;
|
|
427
|
+
|
|
508
428
|
/**
|
|
509
429
|
* Why the ACH Transfer was returned.
|
|
510
430
|
*/
|
|
@@ -528,10 +448,57 @@ export namespace WireTransferSimulation {
|
|
|
528
448
|
| 'file_record_edit_criteria'
|
|
529
449
|
| 'enr_invalid_individual_name'
|
|
530
450
|
| 'returned_per_odfi_request'
|
|
531
|
-
| 'addenda_error'
|
|
532
451
|
| 'limited_participation_dfi'
|
|
533
452
|
| 'incorrectly_coded_outbound_international_payment'
|
|
534
|
-
| '
|
|
453
|
+
| 'account_sold_to_another_dfi'
|
|
454
|
+
| 'addenda_error'
|
|
455
|
+
| 'beneficiary_or_account_holder_deceased'
|
|
456
|
+
| 'customer_advised_not_within_authorization_terms'
|
|
457
|
+
| 'corrected_return'
|
|
458
|
+
| 'duplicate_entry'
|
|
459
|
+
| 'duplicate_return'
|
|
460
|
+
| 'enr_duplicate_enrollment'
|
|
461
|
+
| 'enr_invalid_dfi_account_number'
|
|
462
|
+
| 'enr_invalid_individual_id_number'
|
|
463
|
+
| 'enr_invalid_representative_payee_indicator'
|
|
464
|
+
| 'enr_invalid_transaction_code'
|
|
465
|
+
| 'enr_return_of_enr_entry'
|
|
466
|
+
| 'enr_routing_number_check_digit_error'
|
|
467
|
+
| 'entry_not_processed_by_gateway'
|
|
468
|
+
| 'field_error'
|
|
469
|
+
| 'foreign_receiving_dfi_unable_to_settle'
|
|
470
|
+
| 'iat_entry_coding_error'
|
|
471
|
+
| 'improper_effective_entry_date'
|
|
472
|
+
| 'improper_source_document_source_document_presented'
|
|
473
|
+
| 'invalid_company_id'
|
|
474
|
+
| 'invalid_foreign_receiving_dfi_identification'
|
|
475
|
+
| 'invalid_individual_id_number'
|
|
476
|
+
| 'item_and_rck_entry_presented_for_payment'
|
|
477
|
+
| 'item_related_to_rck_entry_is_ineligible'
|
|
478
|
+
| 'mandatory_field_error'
|
|
479
|
+
| 'misrouted_dishonored_return'
|
|
480
|
+
| 'misrouted_return'
|
|
481
|
+
| 'no_errors_found'
|
|
482
|
+
| 'non_acceptance_of_r62_dishonored_return'
|
|
483
|
+
| 'non_participant_in_iat_program'
|
|
484
|
+
| 'permissible_return_entry'
|
|
485
|
+
| 'permissible_return_entry_not_accepted'
|
|
486
|
+
| 'rdfi_non_settlement'
|
|
487
|
+
| 'rdfi_participant_in_check_truncation_program'
|
|
488
|
+
| 'representative_payee_deceased_or_unable_to_continue_in_that_capacity'
|
|
489
|
+
| 'return_not_a_duplicate'
|
|
490
|
+
| 'return_of_erroneous_or_reversing_debit'
|
|
491
|
+
| 'return_of_improper_credit_entry'
|
|
492
|
+
| 'return_of_improper_debit_entry'
|
|
493
|
+
| 'return_of_xck_entry'
|
|
494
|
+
| 'source_document_presented_for_payment'
|
|
495
|
+
| 'state_law_affecting_rck_acceptance'
|
|
496
|
+
| 'stop_payment_on_item_related_to_rck_entry'
|
|
497
|
+
| 'stop_payment_on_source_document'
|
|
498
|
+
| 'timely_original_return'
|
|
499
|
+
| 'trace_number_error'
|
|
500
|
+
| 'untimely_dishonored_return'
|
|
501
|
+
| 'untimely_return';
|
|
535
502
|
|
|
536
503
|
/**
|
|
537
504
|
* The identifier of the Tranasaction associated with this return.
|
|
@@ -572,6 +539,11 @@ export namespace WireTransferSimulation {
|
|
|
572
539
|
* only if `category` is equal to `card_refund`.
|
|
573
540
|
*/
|
|
574
541
|
export interface CardRefund {
|
|
542
|
+
/**
|
|
543
|
+
* The Card Refund identifier.
|
|
544
|
+
*/
|
|
545
|
+
id: string;
|
|
546
|
+
|
|
575
547
|
/**
|
|
576
548
|
* The pending amount in the minor unit of the transaction's currency. For dollars,
|
|
577
549
|
* for example, this is cents.
|
|
@@ -584,11 +556,6 @@ export namespace WireTransferSimulation {
|
|
|
584
556
|
*/
|
|
585
557
|
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
586
558
|
|
|
587
|
-
/**
|
|
588
|
-
* The Card Refund identifier.
|
|
589
|
-
*/
|
|
590
|
-
id: string;
|
|
591
|
-
|
|
592
559
|
/**
|
|
593
560
|
* The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
594
561
|
* is transacting with.
|
|
@@ -627,11 +594,49 @@ export namespace WireTransferSimulation {
|
|
|
627
594
|
type: 'card_refund';
|
|
628
595
|
}
|
|
629
596
|
|
|
597
|
+
/**
|
|
598
|
+
* A Card Revenue Payment object. This field will be present in the JSON response
|
|
599
|
+
* if and only if `category` is equal to `card_revenue_payment`.
|
|
600
|
+
*/
|
|
601
|
+
export interface CardRevenuePayment {
|
|
602
|
+
/**
|
|
603
|
+
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
604
|
+
* example, this is cents.
|
|
605
|
+
*/
|
|
606
|
+
amount: number;
|
|
607
|
+
|
|
608
|
+
/**
|
|
609
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
|
|
610
|
+
* currency.
|
|
611
|
+
*/
|
|
612
|
+
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* The end of the period for which this transaction paid interest.
|
|
616
|
+
*/
|
|
617
|
+
period_end: string;
|
|
618
|
+
|
|
619
|
+
/**
|
|
620
|
+
* The start of the period for which this transaction paid interest.
|
|
621
|
+
*/
|
|
622
|
+
period_start: string;
|
|
623
|
+
|
|
624
|
+
/**
|
|
625
|
+
* The account the card belonged to.
|
|
626
|
+
*/
|
|
627
|
+
transacted_on_account_id: string | null;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
630
|
/**
|
|
631
631
|
* A Card Settlement object. This field will be present in the JSON response if and
|
|
632
632
|
* only if `category` is equal to `card_settlement`.
|
|
633
633
|
*/
|
|
634
634
|
export interface CardSettlement {
|
|
635
|
+
/**
|
|
636
|
+
* The Card Settlement identifier.
|
|
637
|
+
*/
|
|
638
|
+
id: string;
|
|
639
|
+
|
|
635
640
|
/**
|
|
636
641
|
* The amount in the minor unit of the transaction's settlement currency. For
|
|
637
642
|
* dollars, for example, this is cents.
|
|
@@ -650,11 +655,6 @@ export namespace WireTransferSimulation {
|
|
|
650
655
|
*/
|
|
651
656
|
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
652
657
|
|
|
653
|
-
/**
|
|
654
|
-
* The Card Settlement identifier.
|
|
655
|
-
*/
|
|
656
|
-
id: string;
|
|
657
|
-
|
|
658
658
|
/**
|
|
659
659
|
* The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
660
660
|
* is transacting with.
|
|
@@ -709,39 +709,6 @@ export namespace WireTransferSimulation {
|
|
|
709
709
|
type: 'card_settlement';
|
|
710
710
|
}
|
|
711
711
|
|
|
712
|
-
/**
|
|
713
|
-
* A Card Revenue Payment object. This field will be present in the JSON response
|
|
714
|
-
* if and only if `category` is equal to `card_revenue_payment`.
|
|
715
|
-
*/
|
|
716
|
-
export interface CardRevenuePayment {
|
|
717
|
-
/**
|
|
718
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
719
|
-
* example, this is cents.
|
|
720
|
-
*/
|
|
721
|
-
amount: number;
|
|
722
|
-
|
|
723
|
-
/**
|
|
724
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
|
|
725
|
-
* currency.
|
|
726
|
-
*/
|
|
727
|
-
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
728
|
-
|
|
729
|
-
/**
|
|
730
|
-
* The end of the period for which this transaction paid interest.
|
|
731
|
-
*/
|
|
732
|
-
period_end: string;
|
|
733
|
-
|
|
734
|
-
/**
|
|
735
|
-
* The start of the period for which this transaction paid interest.
|
|
736
|
-
*/
|
|
737
|
-
period_start: string;
|
|
738
|
-
|
|
739
|
-
/**
|
|
740
|
-
* The account the card belonged to.
|
|
741
|
-
*/
|
|
742
|
-
transacted_on_account_id: string | null;
|
|
743
|
-
}
|
|
744
|
-
|
|
745
712
|
/**
|
|
746
713
|
* A Check Deposit Acceptance object. This field will be present in the JSON
|
|
747
714
|
* response if and only if `category` is equal to `check_deposit_acceptance`.
|
|
@@ -820,7 +787,8 @@ export namespace WireTransferSimulation {
|
|
|
820
787
|
| 'stop_payment'
|
|
821
788
|
| 'unknown_reason'
|
|
822
789
|
| 'unmatched_details'
|
|
823
|
-
| 'unreadable_image'
|
|
790
|
+
| 'unreadable_image'
|
|
791
|
+
| 'endorsement_irregular';
|
|
824
792
|
|
|
825
793
|
/**
|
|
826
794
|
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
@@ -835,6 +803,35 @@ export namespace WireTransferSimulation {
|
|
|
835
803
|
transaction_id: string;
|
|
836
804
|
}
|
|
837
805
|
|
|
806
|
+
/**
|
|
807
|
+
* A Check Transfer Deposit object. This field will be present in the JSON response
|
|
808
|
+
* if and only if `category` is equal to `check_transfer_deposit`.
|
|
809
|
+
*/
|
|
810
|
+
export interface CheckTransferDeposit {
|
|
811
|
+
/**
|
|
812
|
+
* The identifier of the API File object containing an image of the back of the
|
|
813
|
+
* deposited check.
|
|
814
|
+
*/
|
|
815
|
+
back_image_file_id: string | null;
|
|
816
|
+
|
|
817
|
+
/**
|
|
818
|
+
* When the check was deposited.
|
|
819
|
+
*/
|
|
820
|
+
deposited_at: string;
|
|
821
|
+
|
|
822
|
+
/**
|
|
823
|
+
* The identifier of the API File object containing an image of the front of the
|
|
824
|
+
* deposited check.
|
|
825
|
+
*/
|
|
826
|
+
front_image_file_id: string | null;
|
|
827
|
+
|
|
828
|
+
/**
|
|
829
|
+
* A constant representing the object's type. For this resource it will always be
|
|
830
|
+
* `check_transfer_deposit`.
|
|
831
|
+
*/
|
|
832
|
+
type: 'check_transfer_deposit';
|
|
833
|
+
}
|
|
834
|
+
|
|
838
835
|
/**
|
|
839
836
|
* A Check Transfer Intention object. This field will be present in the JSON
|
|
840
837
|
* response if and only if `category` is equal to `check_transfer_intention`.
|
|
@@ -843,12 +840,12 @@ export namespace WireTransferSimulation {
|
|
|
843
840
|
/**
|
|
844
841
|
* The city of the check's destination.
|
|
845
842
|
*/
|
|
846
|
-
address_city: string;
|
|
843
|
+
address_city: string | null;
|
|
847
844
|
|
|
848
845
|
/**
|
|
849
846
|
* The street address of the check's destination.
|
|
850
847
|
*/
|
|
851
|
-
address_line1: string;
|
|
848
|
+
address_line1: string | null;
|
|
852
849
|
|
|
853
850
|
/**
|
|
854
851
|
* The second line of the address of the check's destination.
|
|
@@ -858,12 +855,12 @@ export namespace WireTransferSimulation {
|
|
|
858
855
|
/**
|
|
859
856
|
* The state of the check's destination.
|
|
860
857
|
*/
|
|
861
|
-
address_state: string;
|
|
858
|
+
address_state: string | null;
|
|
862
859
|
|
|
863
860
|
/**
|
|
864
861
|
* The postal code of the check's destination.
|
|
865
862
|
*/
|
|
866
|
-
address_zip: string;
|
|
863
|
+
address_zip: string | null;
|
|
867
864
|
|
|
868
865
|
/**
|
|
869
866
|
* The transfer amount in USD cents.
|
|
@@ -879,7 +876,7 @@ export namespace WireTransferSimulation {
|
|
|
879
876
|
/**
|
|
880
877
|
* The name that will be printed on the check.
|
|
881
878
|
*/
|
|
882
|
-
recipient_name: string;
|
|
879
|
+
recipient_name: string | null;
|
|
883
880
|
|
|
884
881
|
/**
|
|
885
882
|
* The identifier of the Check Transfer with which this is associated.
|
|
@@ -887,6 +884,17 @@ export namespace WireTransferSimulation {
|
|
|
887
884
|
transfer_id: string;
|
|
888
885
|
}
|
|
889
886
|
|
|
887
|
+
/**
|
|
888
|
+
* A Check Transfer Rejection object. This field will be present in the JSON
|
|
889
|
+
* response if and only if `category` is equal to `check_transfer_rejection`.
|
|
890
|
+
*/
|
|
891
|
+
export interface CheckTransferRejection {
|
|
892
|
+
/**
|
|
893
|
+
* The identifier of the Check Transfer that led to this Transaction.
|
|
894
|
+
*/
|
|
895
|
+
transfer_id: string;
|
|
896
|
+
}
|
|
897
|
+
|
|
890
898
|
/**
|
|
891
899
|
* A Check Transfer Return object. This field will be present in the JSON response
|
|
892
900
|
* if and only if `category` is equal to `check_transfer_return`.
|
|
@@ -920,17 +928,6 @@ export namespace WireTransferSimulation {
|
|
|
920
928
|
transfer_id: string;
|
|
921
929
|
}
|
|
922
930
|
|
|
923
|
-
/**
|
|
924
|
-
* A Check Transfer Rejection object. This field will be present in the JSON
|
|
925
|
-
* response if and only if `category` is equal to `check_transfer_rejection`.
|
|
926
|
-
*/
|
|
927
|
-
export interface CheckTransferRejection {
|
|
928
|
-
/**
|
|
929
|
-
* The identifier of the Check Transfer that led to this Transaction.
|
|
930
|
-
*/
|
|
931
|
-
transfer_id: string;
|
|
932
|
-
}
|
|
933
|
-
|
|
934
931
|
/**
|
|
935
932
|
* A Check Transfer Stop Payment Request object. This field will be present in the
|
|
936
933
|
* JSON response if and only if `category` is equal to
|
|
@@ -959,45 +956,6 @@ export namespace WireTransferSimulation {
|
|
|
959
956
|
type: 'check_transfer_stop_payment_request';
|
|
960
957
|
}
|
|
961
958
|
|
|
962
|
-
/**
|
|
963
|
-
* A Dispute Resolution object. This field will be present in the JSON response if
|
|
964
|
-
* and only if `category` is equal to `dispute_resolution`.
|
|
965
|
-
*/
|
|
966
|
-
export interface DisputeResolution {
|
|
967
|
-
/**
|
|
968
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
969
|
-
* example, this is cents.
|
|
970
|
-
*/
|
|
971
|
-
amount: number;
|
|
972
|
-
|
|
973
|
-
/**
|
|
974
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
975
|
-
* transaction's currency.
|
|
976
|
-
*/
|
|
977
|
-
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
978
|
-
|
|
979
|
-
/**
|
|
980
|
-
* The identifier of the Transaction that was disputed.
|
|
981
|
-
*/
|
|
982
|
-
disputed_transaction_id: string;
|
|
983
|
-
}
|
|
984
|
-
|
|
985
|
-
/**
|
|
986
|
-
* A Empyreal Cash Deposit object. This field will be present in the JSON response
|
|
987
|
-
* if and only if `category` is equal to `empyreal_cash_deposit`.
|
|
988
|
-
*/
|
|
989
|
-
export interface EmpyrealCashDeposit {
|
|
990
|
-
/**
|
|
991
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
992
|
-
* example, this is cents.
|
|
993
|
-
*/
|
|
994
|
-
amount: number;
|
|
995
|
-
|
|
996
|
-
bag_id: string;
|
|
997
|
-
|
|
998
|
-
deposit_date: string;
|
|
999
|
-
}
|
|
1000
|
-
|
|
1001
959
|
/**
|
|
1002
960
|
* A Fee Payment object. This field will be present in the JSON response if and
|
|
1003
961
|
* only if `category` is equal to `fee_payment`.
|
|
@@ -1200,6 +1158,42 @@ export namespace WireTransferSimulation {
|
|
|
1200
1158
|
transaction_identification: string;
|
|
1201
1159
|
}
|
|
1202
1160
|
|
|
1161
|
+
/**
|
|
1162
|
+
* A Inbound Wire Drawdown Payment object. This field will be present in the JSON
|
|
1163
|
+
* response if and only if `category` is equal to `inbound_wire_drawdown_payment`.
|
|
1164
|
+
*/
|
|
1165
|
+
export interface InboundWireDrawdownPayment {
|
|
1166
|
+
/**
|
|
1167
|
+
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
1168
|
+
* example, this is cents.
|
|
1169
|
+
*/
|
|
1170
|
+
amount: number;
|
|
1171
|
+
|
|
1172
|
+
beneficiary_address_line1: string | null;
|
|
1173
|
+
|
|
1174
|
+
beneficiary_address_line2: string | null;
|
|
1175
|
+
|
|
1176
|
+
beneficiary_address_line3: string | null;
|
|
1177
|
+
|
|
1178
|
+
beneficiary_name: string | null;
|
|
1179
|
+
|
|
1180
|
+
beneficiary_reference: string | null;
|
|
1181
|
+
|
|
1182
|
+
description: string;
|
|
1183
|
+
|
|
1184
|
+
input_message_accountability_data: string | null;
|
|
1185
|
+
|
|
1186
|
+
originator_address_line1: string | null;
|
|
1187
|
+
|
|
1188
|
+
originator_address_line2: string | null;
|
|
1189
|
+
|
|
1190
|
+
originator_address_line3: string | null;
|
|
1191
|
+
|
|
1192
|
+
originator_name: string | null;
|
|
1193
|
+
|
|
1194
|
+
originator_to_beneficiary_information: string | null;
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1203
1197
|
/**
|
|
1204
1198
|
* A Inbound Wire Drawdown Payment Reversal object. This field will be present in
|
|
1205
1199
|
* the JSON response if and only if `category` is equal to
|
|
@@ -1257,42 +1251,6 @@ export namespace WireTransferSimulation {
|
|
|
1257
1251
|
previous_message_input_source: string;
|
|
1258
1252
|
}
|
|
1259
1253
|
|
|
1260
|
-
/**
|
|
1261
|
-
* A Inbound Wire Drawdown Payment object. This field will be present in the JSON
|
|
1262
|
-
* response if and only if `category` is equal to `inbound_wire_drawdown_payment`.
|
|
1263
|
-
*/
|
|
1264
|
-
export interface InboundWireDrawdownPayment {
|
|
1265
|
-
/**
|
|
1266
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
1267
|
-
* example, this is cents.
|
|
1268
|
-
*/
|
|
1269
|
-
amount: number;
|
|
1270
|
-
|
|
1271
|
-
beneficiary_address_line1: string | null;
|
|
1272
|
-
|
|
1273
|
-
beneficiary_address_line2: string | null;
|
|
1274
|
-
|
|
1275
|
-
beneficiary_address_line3: string | null;
|
|
1276
|
-
|
|
1277
|
-
beneficiary_name: string | null;
|
|
1278
|
-
|
|
1279
|
-
beneficiary_reference: string | null;
|
|
1280
|
-
|
|
1281
|
-
description: string;
|
|
1282
|
-
|
|
1283
|
-
input_message_accountability_data: string | null;
|
|
1284
|
-
|
|
1285
|
-
originator_address_line1: string | null;
|
|
1286
|
-
|
|
1287
|
-
originator_address_line2: string | null;
|
|
1288
|
-
|
|
1289
|
-
originator_address_line3: string | null;
|
|
1290
|
-
|
|
1291
|
-
originator_name: string | null;
|
|
1292
|
-
|
|
1293
|
-
originator_to_beneficiary_information: string | null;
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
1254
|
/**
|
|
1297
1255
|
* A Inbound Wire Reversal object. This field will be present in the JSON response
|
|
1298
1256
|
* if and only if `category` is equal to `inbound_wire_reversal`.
|
|
@@ -1471,6 +1429,7 @@ export namespace WireTransferSimulation {
|
|
|
1471
1429
|
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
1472
1430
|
|
|
1473
1431
|
reason:
|
|
1432
|
+
| 'account_closure'
|
|
1474
1433
|
| 'bank_migration'
|
|
1475
1434
|
| 'cashback'
|
|
1476
1435
|
| 'collection_receivable'
|
|
@@ -1484,66 +1443,6 @@ export namespace WireTransferSimulation {
|
|
|
1484
1443
|
| 'sample_funds_return';
|
|
1485
1444
|
}
|
|
1486
1445
|
|
|
1487
|
-
/**
|
|
1488
|
-
* A Deprecated Card Refund object. This field will be present in the JSON response
|
|
1489
|
-
* if and only if `category` is equal to `card_route_refund`.
|
|
1490
|
-
*/
|
|
1491
|
-
export interface CardRouteRefund {
|
|
1492
|
-
/**
|
|
1493
|
-
* The refunded amount in the minor unit of the refunded currency. For dollars, for
|
|
1494
|
-
* example, this is cents.
|
|
1495
|
-
*/
|
|
1496
|
-
amount: number;
|
|
1497
|
-
|
|
1498
|
-
/**
|
|
1499
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the refund
|
|
1500
|
-
* currency.
|
|
1501
|
-
*/
|
|
1502
|
-
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
1503
|
-
|
|
1504
|
-
merchant_acceptor_id: string;
|
|
1505
|
-
|
|
1506
|
-
merchant_category_code: string | null;
|
|
1507
|
-
|
|
1508
|
-
merchant_city: string | null;
|
|
1509
|
-
|
|
1510
|
-
merchant_country: string;
|
|
1511
|
-
|
|
1512
|
-
merchant_descriptor: string;
|
|
1513
|
-
|
|
1514
|
-
merchant_state: string | null;
|
|
1515
|
-
}
|
|
1516
|
-
|
|
1517
|
-
/**
|
|
1518
|
-
* A Deprecated Card Settlement object. This field will be present in the JSON
|
|
1519
|
-
* response if and only if `category` is equal to `card_route_settlement`.
|
|
1520
|
-
*/
|
|
1521
|
-
export interface CardRouteSettlement {
|
|
1522
|
-
/**
|
|
1523
|
-
* The settled amount in the minor unit of the settlement currency. For dollars,
|
|
1524
|
-
* for example, this is cents.
|
|
1525
|
-
*/
|
|
1526
|
-
amount: number;
|
|
1527
|
-
|
|
1528
|
-
/**
|
|
1529
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the settlement
|
|
1530
|
-
* currency.
|
|
1531
|
-
*/
|
|
1532
|
-
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
1533
|
-
|
|
1534
|
-
merchant_acceptor_id: string;
|
|
1535
|
-
|
|
1536
|
-
merchant_category_code: string | null;
|
|
1537
|
-
|
|
1538
|
-
merchant_city: string | null;
|
|
1539
|
-
|
|
1540
|
-
merchant_country: string | null;
|
|
1541
|
-
|
|
1542
|
-
merchant_descriptor: string;
|
|
1543
|
-
|
|
1544
|
-
merchant_state: string | null;
|
|
1545
|
-
}
|
|
1546
|
-
|
|
1547
1446
|
/**
|
|
1548
1447
|
* A Real Time Payments Transfer Acknowledgement object. This field will be present
|
|
1549
1448
|
* in the JSON response if and only if `category` is equal to
|
|
@@ -1587,35 +1486,6 @@ export namespace WireTransferSimulation {
|
|
|
1587
1486
|
originator: string;
|
|
1588
1487
|
}
|
|
1589
1488
|
|
|
1590
|
-
/**
|
|
1591
|
-
* A Wire Drawdown Payment Intention object. This field will be present in the JSON
|
|
1592
|
-
* response if and only if `category` is equal to
|
|
1593
|
-
* `wire_drawdown_payment_intention`.
|
|
1594
|
-
*/
|
|
1595
|
-
export interface WireDrawdownPaymentIntention {
|
|
1596
|
-
account_number: string;
|
|
1597
|
-
|
|
1598
|
-
/**
|
|
1599
|
-
* The transfer amount in USD cents.
|
|
1600
|
-
*/
|
|
1601
|
-
amount: number;
|
|
1602
|
-
|
|
1603
|
-
message_to_recipient: string;
|
|
1604
|
-
|
|
1605
|
-
routing_number: string;
|
|
1606
|
-
|
|
1607
|
-
transfer_id: string;
|
|
1608
|
-
}
|
|
1609
|
-
|
|
1610
|
-
/**
|
|
1611
|
-
* A Wire Drawdown Payment Rejection object. This field will be present in the JSON
|
|
1612
|
-
* response if and only if `category` is equal to
|
|
1613
|
-
* `wire_drawdown_payment_rejection`.
|
|
1614
|
-
*/
|
|
1615
|
-
export interface WireDrawdownPaymentRejection {
|
|
1616
|
-
transfer_id: string;
|
|
1617
|
-
}
|
|
1618
|
-
|
|
1619
1489
|
/**
|
|
1620
1490
|
* A Wire Transfer Intention object. This field will be present in the JSON
|
|
1621
1491
|
* response if and only if `category` is equal to `wire_transfer_intention`.
|
|
@@ -1744,3 +1614,8 @@ export interface WireTransferCreateInboundParams {
|
|
|
1744
1614
|
*/
|
|
1745
1615
|
originator_to_beneficiary_information_line4?: string;
|
|
1746
1616
|
}
|
|
1617
|
+
|
|
1618
|
+
export namespace WireTransfers {
|
|
1619
|
+
export import WireTransferSimulation = API.WireTransferSimulation;
|
|
1620
|
+
export import WireTransferCreateInboundParams = API.WireTransferCreateInboundParams;
|
|
1621
|
+
}
|