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
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as Core from '../core';
|
|
2
2
|
import { APIResource } from '../resource';
|
|
3
|
+
import * as API from './';
|
|
3
4
|
import { Page, PageParams } from '../pagination';
|
|
4
5
|
export declare class Transactions extends APIResource {
|
|
5
6
|
/**
|
|
@@ -18,6 +19,10 @@ export declare class TransactionsPage extends Page<Transaction> {}
|
|
|
18
19
|
* account. They're the equivalent of line items on your bank statement.
|
|
19
20
|
*/
|
|
20
21
|
export interface Transaction {
|
|
22
|
+
/**
|
|
23
|
+
* The Transaction identifier.
|
|
24
|
+
*/
|
|
25
|
+
id: string;
|
|
21
26
|
/**
|
|
22
27
|
* The identifier for the Account the Transaction belongs to.
|
|
23
28
|
*/
|
|
@@ -44,10 +49,6 @@ export interface Transaction {
|
|
|
44
49
|
* provides.
|
|
45
50
|
*/
|
|
46
51
|
description: string;
|
|
47
|
-
/**
|
|
48
|
-
* The Transaction identifier.
|
|
49
|
-
*/
|
|
50
|
-
id: string;
|
|
51
52
|
/**
|
|
52
53
|
* The identifier for the route this Transaction came through. Routes are things
|
|
53
54
|
* like cards and ACH details.
|
|
@@ -83,16 +84,6 @@ export declare namespace Transaction {
|
|
|
83
84
|
* response if and only if `category` is equal to `account_transfer_intention`.
|
|
84
85
|
*/
|
|
85
86
|
account_transfer_intention: Source.AccountTransferIntention | null;
|
|
86
|
-
/**
|
|
87
|
-
* A ACH Check Conversion object. This field will be present in the JSON response
|
|
88
|
-
* if and only if `category` is equal to `ach_check_conversion`.
|
|
89
|
-
*/
|
|
90
|
-
ach_check_conversion: Source.ACHCheckConversion | null;
|
|
91
|
-
/**
|
|
92
|
-
* A ACH Check Conversion Return object. This field will be present in the JSON
|
|
93
|
-
* response if and only if `category` is equal to `ach_check_conversion_return`.
|
|
94
|
-
*/
|
|
95
|
-
ach_check_conversion_return: Source.ACHCheckConversionReturn | null;
|
|
96
87
|
/**
|
|
97
88
|
* A ACH Transfer Intention object. This field will be present in the JSON response
|
|
98
89
|
* if and only if `category` is equal to `ach_transfer_intention`.
|
|
@@ -123,16 +114,6 @@ export declare namespace Transaction {
|
|
|
123
114
|
* if and only if `category` is equal to `card_revenue_payment`.
|
|
124
115
|
*/
|
|
125
116
|
card_revenue_payment: Source.CardRevenuePayment | null;
|
|
126
|
-
/**
|
|
127
|
-
* A Deprecated Card Refund object. This field will be present in the JSON response
|
|
128
|
-
* if and only if `category` is equal to `card_route_refund`.
|
|
129
|
-
*/
|
|
130
|
-
card_route_refund: Source.CardRouteRefund | null;
|
|
131
|
-
/**
|
|
132
|
-
* A Deprecated Card Settlement object. This field will be present in the JSON
|
|
133
|
-
* response if and only if `category` is equal to `card_route_settlement`.
|
|
134
|
-
*/
|
|
135
|
-
card_route_settlement: Source.CardRouteSettlement | null;
|
|
136
117
|
/**
|
|
137
118
|
* A Card Settlement object. This field will be present in the JSON response if and
|
|
138
119
|
* only if `category` is equal to `card_settlement`.
|
|
@@ -145,42 +126,34 @@ export declare namespace Transaction {
|
|
|
145
126
|
*/
|
|
146
127
|
category:
|
|
147
128
|
| 'account_transfer_intention'
|
|
148
|
-
| 'ach_check_conversion_return'
|
|
149
|
-
| 'ach_check_conversion'
|
|
150
129
|
| 'ach_transfer_intention'
|
|
151
130
|
| 'ach_transfer_rejection'
|
|
152
131
|
| 'ach_transfer_return'
|
|
153
132
|
| 'card_dispute_acceptance'
|
|
154
133
|
| 'card_refund'
|
|
155
|
-
| 'card_settlement'
|
|
156
134
|
| 'card_revenue_payment'
|
|
135
|
+
| 'card_settlement'
|
|
157
136
|
| 'check_deposit_acceptance'
|
|
158
137
|
| 'check_deposit_return'
|
|
138
|
+
| 'check_transfer_deposit'
|
|
159
139
|
| 'check_transfer_intention'
|
|
160
|
-
| 'check_transfer_return'
|
|
161
140
|
| 'check_transfer_rejection'
|
|
141
|
+
| 'check_transfer_return'
|
|
162
142
|
| 'check_transfer_stop_payment_request'
|
|
163
|
-
| 'dispute_resolution'
|
|
164
|
-
| 'empyreal_cash_deposit'
|
|
165
143
|
| 'fee_payment'
|
|
166
144
|
| 'inbound_ach_transfer'
|
|
167
145
|
| 'inbound_ach_transfer_return_intention'
|
|
168
146
|
| 'inbound_check'
|
|
169
147
|
| 'inbound_international_ach_transfer'
|
|
170
148
|
| 'inbound_real_time_payments_transfer_confirmation'
|
|
171
|
-
| 'inbound_wire_drawdown_payment_reversal'
|
|
172
149
|
| 'inbound_wire_drawdown_payment'
|
|
150
|
+
| 'inbound_wire_drawdown_payment_reversal'
|
|
173
151
|
| 'inbound_wire_reversal'
|
|
174
152
|
| 'inbound_wire_transfer'
|
|
175
153
|
| 'interest_payment'
|
|
176
|
-
| 'internal_general_ledger_transaction'
|
|
177
154
|
| 'internal_source'
|
|
178
|
-
| 'card_route_refund'
|
|
179
|
-
| 'card_route_settlement'
|
|
180
155
|
| 'real_time_payments_transfer_acknowledgement'
|
|
181
156
|
| 'sample_funds'
|
|
182
|
-
| 'wire_drawdown_payment_intention'
|
|
183
|
-
| 'wire_drawdown_payment_rejection'
|
|
184
157
|
| 'wire_transfer_intention'
|
|
185
158
|
| 'wire_transfer_rejection'
|
|
186
159
|
| 'other';
|
|
@@ -194,6 +167,11 @@ export declare namespace Transaction {
|
|
|
194
167
|
* if and only if `category` is equal to `check_deposit_return`.
|
|
195
168
|
*/
|
|
196
169
|
check_deposit_return: Source.CheckDepositReturn | null;
|
|
170
|
+
/**
|
|
171
|
+
* A Check Transfer Deposit object. This field will be present in the JSON response
|
|
172
|
+
* if and only if `category` is equal to `check_transfer_deposit`.
|
|
173
|
+
*/
|
|
174
|
+
check_transfer_deposit: Source.CheckTransferDeposit | null;
|
|
197
175
|
/**
|
|
198
176
|
* A Check Transfer Intention object. This field will be present in the JSON
|
|
199
177
|
* response if and only if `category` is equal to `check_transfer_intention`.
|
|
@@ -215,16 +193,6 @@ export declare namespace Transaction {
|
|
|
215
193
|
* `check_transfer_stop_payment_request`.
|
|
216
194
|
*/
|
|
217
195
|
check_transfer_stop_payment_request: Source.CheckTransferStopPaymentRequest | null;
|
|
218
|
-
/**
|
|
219
|
-
* A Dispute Resolution object. This field will be present in the JSON response if
|
|
220
|
-
* and only if `category` is equal to `dispute_resolution`.
|
|
221
|
-
*/
|
|
222
|
-
dispute_resolution: Source.DisputeResolution | null;
|
|
223
|
-
/**
|
|
224
|
-
* A Empyreal Cash Deposit object. This field will be present in the JSON response
|
|
225
|
-
* if and only if `category` is equal to `empyreal_cash_deposit`.
|
|
226
|
-
*/
|
|
227
|
-
empyreal_cash_deposit: Source.EmpyrealCashDeposit | null;
|
|
228
196
|
/**
|
|
229
197
|
* A Fee Payment object. This field will be present in the JSON response if and
|
|
230
198
|
* only if `category` is equal to `fee_payment`.
|
|
@@ -294,18 +262,6 @@ export declare namespace Transaction {
|
|
|
294
262
|
* only if `category` is equal to `sample_funds`.
|
|
295
263
|
*/
|
|
296
264
|
sample_funds: Source.SampleFunds | null;
|
|
297
|
-
/**
|
|
298
|
-
* A Wire Drawdown Payment Intention object. This field will be present in the JSON
|
|
299
|
-
* response if and only if `category` is equal to
|
|
300
|
-
* `wire_drawdown_payment_intention`.
|
|
301
|
-
*/
|
|
302
|
-
wire_drawdown_payment_intention: Source.WireDrawdownPaymentIntention | null;
|
|
303
|
-
/**
|
|
304
|
-
* A Wire Drawdown Payment Rejection object. This field will be present in the JSON
|
|
305
|
-
* response if and only if `category` is equal to
|
|
306
|
-
* `wire_drawdown_payment_rejection`.
|
|
307
|
-
*/
|
|
308
|
-
wire_drawdown_payment_rejection: Source.WireDrawdownPaymentRejection | null;
|
|
309
265
|
/**
|
|
310
266
|
* A Wire Transfer Intention object. This field will be present in the JSON
|
|
311
267
|
* response if and only if `category` is equal to `wire_transfer_intention`.
|
|
@@ -350,36 +306,6 @@ export declare namespace Transaction {
|
|
|
350
306
|
*/
|
|
351
307
|
transfer_id: string;
|
|
352
308
|
}
|
|
353
|
-
/**
|
|
354
|
-
* A ACH Check Conversion Return object. This field will be present in the JSON
|
|
355
|
-
* response if and only if `category` is equal to `ach_check_conversion_return`.
|
|
356
|
-
*/
|
|
357
|
-
interface ACHCheckConversionReturn {
|
|
358
|
-
/**
|
|
359
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
360
|
-
* example, this is cents.
|
|
361
|
-
*/
|
|
362
|
-
amount: number;
|
|
363
|
-
/**
|
|
364
|
-
* Why the transfer was returned.
|
|
365
|
-
*/
|
|
366
|
-
return_reason_code: string;
|
|
367
|
-
}
|
|
368
|
-
/**
|
|
369
|
-
* A ACH Check Conversion object. This field will be present in the JSON response
|
|
370
|
-
* if and only if `category` is equal to `ach_check_conversion`.
|
|
371
|
-
*/
|
|
372
|
-
interface ACHCheckConversion {
|
|
373
|
-
/**
|
|
374
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
375
|
-
* example, this is cents.
|
|
376
|
-
*/
|
|
377
|
-
amount: number;
|
|
378
|
-
/**
|
|
379
|
-
* The identifier of the File containing an image of the returned check.
|
|
380
|
-
*/
|
|
381
|
-
file_id: string;
|
|
382
|
-
}
|
|
383
309
|
/**
|
|
384
310
|
* A ACH Transfer Intention object. This field will be present in the JSON response
|
|
385
311
|
* if and only if `category` is equal to `ach_transfer_intention`.
|
|
@@ -418,6 +344,10 @@ export declare namespace Transaction {
|
|
|
418
344
|
* the transfer was created.
|
|
419
345
|
*/
|
|
420
346
|
created_at: string;
|
|
347
|
+
/**
|
|
348
|
+
* The three character ACH return code, in the range R01 to R85.
|
|
349
|
+
*/
|
|
350
|
+
raw_return_reason_code: string;
|
|
421
351
|
/**
|
|
422
352
|
* Why the ACH Transfer was returned.
|
|
423
353
|
*/
|
|
@@ -441,10 +371,57 @@ export declare namespace Transaction {
|
|
|
441
371
|
| 'file_record_edit_criteria'
|
|
442
372
|
| 'enr_invalid_individual_name'
|
|
443
373
|
| 'returned_per_odfi_request'
|
|
444
|
-
| 'addenda_error'
|
|
445
374
|
| 'limited_participation_dfi'
|
|
446
375
|
| 'incorrectly_coded_outbound_international_payment'
|
|
447
|
-
| '
|
|
376
|
+
| 'account_sold_to_another_dfi'
|
|
377
|
+
| 'addenda_error'
|
|
378
|
+
| 'beneficiary_or_account_holder_deceased'
|
|
379
|
+
| 'customer_advised_not_within_authorization_terms'
|
|
380
|
+
| 'corrected_return'
|
|
381
|
+
| 'duplicate_entry'
|
|
382
|
+
| 'duplicate_return'
|
|
383
|
+
| 'enr_duplicate_enrollment'
|
|
384
|
+
| 'enr_invalid_dfi_account_number'
|
|
385
|
+
| 'enr_invalid_individual_id_number'
|
|
386
|
+
| 'enr_invalid_representative_payee_indicator'
|
|
387
|
+
| 'enr_invalid_transaction_code'
|
|
388
|
+
| 'enr_return_of_enr_entry'
|
|
389
|
+
| 'enr_routing_number_check_digit_error'
|
|
390
|
+
| 'entry_not_processed_by_gateway'
|
|
391
|
+
| 'field_error'
|
|
392
|
+
| 'foreign_receiving_dfi_unable_to_settle'
|
|
393
|
+
| 'iat_entry_coding_error'
|
|
394
|
+
| 'improper_effective_entry_date'
|
|
395
|
+
| 'improper_source_document_source_document_presented'
|
|
396
|
+
| 'invalid_company_id'
|
|
397
|
+
| 'invalid_foreign_receiving_dfi_identification'
|
|
398
|
+
| 'invalid_individual_id_number'
|
|
399
|
+
| 'item_and_rck_entry_presented_for_payment'
|
|
400
|
+
| 'item_related_to_rck_entry_is_ineligible'
|
|
401
|
+
| 'mandatory_field_error'
|
|
402
|
+
| 'misrouted_dishonored_return'
|
|
403
|
+
| 'misrouted_return'
|
|
404
|
+
| 'no_errors_found'
|
|
405
|
+
| 'non_acceptance_of_r62_dishonored_return'
|
|
406
|
+
| 'non_participant_in_iat_program'
|
|
407
|
+
| 'permissible_return_entry'
|
|
408
|
+
| 'permissible_return_entry_not_accepted'
|
|
409
|
+
| 'rdfi_non_settlement'
|
|
410
|
+
| 'rdfi_participant_in_check_truncation_program'
|
|
411
|
+
| 'representative_payee_deceased_or_unable_to_continue_in_that_capacity'
|
|
412
|
+
| 'return_not_a_duplicate'
|
|
413
|
+
| 'return_of_erroneous_or_reversing_debit'
|
|
414
|
+
| 'return_of_improper_credit_entry'
|
|
415
|
+
| 'return_of_improper_debit_entry'
|
|
416
|
+
| 'return_of_xck_entry'
|
|
417
|
+
| 'source_document_presented_for_payment'
|
|
418
|
+
| 'state_law_affecting_rck_acceptance'
|
|
419
|
+
| 'stop_payment_on_item_related_to_rck_entry'
|
|
420
|
+
| 'stop_payment_on_source_document'
|
|
421
|
+
| 'timely_original_return'
|
|
422
|
+
| 'trace_number_error'
|
|
423
|
+
| 'untimely_dishonored_return'
|
|
424
|
+
| 'untimely_return';
|
|
448
425
|
/**
|
|
449
426
|
* The identifier of the Tranasaction associated with this return.
|
|
450
427
|
*/
|
|
@@ -479,6 +456,10 @@ export declare namespace Transaction {
|
|
|
479
456
|
* only if `category` is equal to `card_refund`.
|
|
480
457
|
*/
|
|
481
458
|
interface CardRefund {
|
|
459
|
+
/**
|
|
460
|
+
* The Card Refund identifier.
|
|
461
|
+
*/
|
|
462
|
+
id: string;
|
|
482
463
|
/**
|
|
483
464
|
* The pending amount in the minor unit of the transaction's currency. For dollars,
|
|
484
465
|
* for example, this is cents.
|
|
@@ -489,10 +470,6 @@ export declare namespace Transaction {
|
|
|
489
470
|
* transaction's currency.
|
|
490
471
|
*/
|
|
491
472
|
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
492
|
-
/**
|
|
493
|
-
* The Card Refund identifier.
|
|
494
|
-
*/
|
|
495
|
-
id: string;
|
|
496
473
|
/**
|
|
497
474
|
* The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
498
475
|
* is transacting with.
|
|
@@ -524,11 +501,43 @@ export declare namespace Transaction {
|
|
|
524
501
|
*/
|
|
525
502
|
type: 'card_refund';
|
|
526
503
|
}
|
|
504
|
+
/**
|
|
505
|
+
* A Card Revenue Payment object. This field will be present in the JSON response
|
|
506
|
+
* if and only if `category` is equal to `card_revenue_payment`.
|
|
507
|
+
*/
|
|
508
|
+
interface CardRevenuePayment {
|
|
509
|
+
/**
|
|
510
|
+
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
511
|
+
* example, this is cents.
|
|
512
|
+
*/
|
|
513
|
+
amount: number;
|
|
514
|
+
/**
|
|
515
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
|
|
516
|
+
* currency.
|
|
517
|
+
*/
|
|
518
|
+
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
519
|
+
/**
|
|
520
|
+
* The end of the period for which this transaction paid interest.
|
|
521
|
+
*/
|
|
522
|
+
period_end: string;
|
|
523
|
+
/**
|
|
524
|
+
* The start of the period for which this transaction paid interest.
|
|
525
|
+
*/
|
|
526
|
+
period_start: string;
|
|
527
|
+
/**
|
|
528
|
+
* The account the card belonged to.
|
|
529
|
+
*/
|
|
530
|
+
transacted_on_account_id: string | null;
|
|
531
|
+
}
|
|
527
532
|
/**
|
|
528
533
|
* A Card Settlement object. This field will be present in the JSON response if and
|
|
529
534
|
* only if `category` is equal to `card_settlement`.
|
|
530
535
|
*/
|
|
531
536
|
interface CardSettlement {
|
|
537
|
+
/**
|
|
538
|
+
* The Card Settlement identifier.
|
|
539
|
+
*/
|
|
540
|
+
id: string;
|
|
532
541
|
/**
|
|
533
542
|
* The amount in the minor unit of the transaction's settlement currency. For
|
|
534
543
|
* dollars, for example, this is cents.
|
|
@@ -544,10 +553,6 @@ export declare namespace Transaction {
|
|
|
544
553
|
* transaction's settlement currency.
|
|
545
554
|
*/
|
|
546
555
|
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
547
|
-
/**
|
|
548
|
-
* The Card Settlement identifier.
|
|
549
|
-
*/
|
|
550
|
-
id: string;
|
|
551
556
|
/**
|
|
552
557
|
* The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
553
558
|
* is transacting with.
|
|
@@ -592,34 +597,6 @@ export declare namespace Transaction {
|
|
|
592
597
|
*/
|
|
593
598
|
type: 'card_settlement';
|
|
594
599
|
}
|
|
595
|
-
/**
|
|
596
|
-
* A Card Revenue Payment object. This field will be present in the JSON response
|
|
597
|
-
* if and only if `category` is equal to `card_revenue_payment`.
|
|
598
|
-
*/
|
|
599
|
-
interface CardRevenuePayment {
|
|
600
|
-
/**
|
|
601
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
602
|
-
* example, this is cents.
|
|
603
|
-
*/
|
|
604
|
-
amount: number;
|
|
605
|
-
/**
|
|
606
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
|
|
607
|
-
* currency.
|
|
608
|
-
*/
|
|
609
|
-
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
610
|
-
/**
|
|
611
|
-
* The end of the period for which this transaction paid interest.
|
|
612
|
-
*/
|
|
613
|
-
period_end: string;
|
|
614
|
-
/**
|
|
615
|
-
* The start of the period for which this transaction paid interest.
|
|
616
|
-
*/
|
|
617
|
-
period_start: string;
|
|
618
|
-
/**
|
|
619
|
-
* The account the card belonged to.
|
|
620
|
-
*/
|
|
621
|
-
transacted_on_account_id: string | null;
|
|
622
|
-
}
|
|
623
600
|
/**
|
|
624
601
|
* A Check Deposit Acceptance object. This field will be present in the JSON
|
|
625
602
|
* response if and only if `category` is equal to `check_deposit_acceptance`.
|
|
@@ -688,7 +665,8 @@ export declare namespace Transaction {
|
|
|
688
665
|
| 'stop_payment'
|
|
689
666
|
| 'unknown_reason'
|
|
690
667
|
| 'unmatched_details'
|
|
691
|
-
| 'unreadable_image'
|
|
668
|
+
| 'unreadable_image'
|
|
669
|
+
| 'endorsement_irregular';
|
|
692
670
|
/**
|
|
693
671
|
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
694
672
|
* the check deposit was returned.
|
|
@@ -700,6 +678,31 @@ export declare namespace Transaction {
|
|
|
700
678
|
*/
|
|
701
679
|
transaction_id: string;
|
|
702
680
|
}
|
|
681
|
+
/**
|
|
682
|
+
* A Check Transfer Deposit object. This field will be present in the JSON response
|
|
683
|
+
* if and only if `category` is equal to `check_transfer_deposit`.
|
|
684
|
+
*/
|
|
685
|
+
interface CheckTransferDeposit {
|
|
686
|
+
/**
|
|
687
|
+
* The identifier of the API File object containing an image of the back of the
|
|
688
|
+
* deposited check.
|
|
689
|
+
*/
|
|
690
|
+
back_image_file_id: string | null;
|
|
691
|
+
/**
|
|
692
|
+
* When the check was deposited.
|
|
693
|
+
*/
|
|
694
|
+
deposited_at: string;
|
|
695
|
+
/**
|
|
696
|
+
* The identifier of the API File object containing an image of the front of the
|
|
697
|
+
* deposited check.
|
|
698
|
+
*/
|
|
699
|
+
front_image_file_id: string | null;
|
|
700
|
+
/**
|
|
701
|
+
* A constant representing the object's type. For this resource it will always be
|
|
702
|
+
* `check_transfer_deposit`.
|
|
703
|
+
*/
|
|
704
|
+
type: 'check_transfer_deposit';
|
|
705
|
+
}
|
|
703
706
|
/**
|
|
704
707
|
* A Check Transfer Intention object. This field will be present in the JSON
|
|
705
708
|
* response if and only if `category` is equal to `check_transfer_intention`.
|
|
@@ -708,11 +711,11 @@ export declare namespace Transaction {
|
|
|
708
711
|
/**
|
|
709
712
|
* The city of the check's destination.
|
|
710
713
|
*/
|
|
711
|
-
address_city: string;
|
|
714
|
+
address_city: string | null;
|
|
712
715
|
/**
|
|
713
716
|
* The street address of the check's destination.
|
|
714
717
|
*/
|
|
715
|
-
address_line1: string;
|
|
718
|
+
address_line1: string | null;
|
|
716
719
|
/**
|
|
717
720
|
* The second line of the address of the check's destination.
|
|
718
721
|
*/
|
|
@@ -720,11 +723,11 @@ export declare namespace Transaction {
|
|
|
720
723
|
/**
|
|
721
724
|
* The state of the check's destination.
|
|
722
725
|
*/
|
|
723
|
-
address_state: string;
|
|
726
|
+
address_state: string | null;
|
|
724
727
|
/**
|
|
725
728
|
* The postal code of the check's destination.
|
|
726
729
|
*/
|
|
727
|
-
address_zip: string;
|
|
730
|
+
address_zip: string | null;
|
|
728
731
|
/**
|
|
729
732
|
* The transfer amount in USD cents.
|
|
730
733
|
*/
|
|
@@ -737,12 +740,22 @@ export declare namespace Transaction {
|
|
|
737
740
|
/**
|
|
738
741
|
* The name that will be printed on the check.
|
|
739
742
|
*/
|
|
740
|
-
recipient_name: string;
|
|
743
|
+
recipient_name: string | null;
|
|
741
744
|
/**
|
|
742
745
|
* The identifier of the Check Transfer with which this is associated.
|
|
743
746
|
*/
|
|
744
747
|
transfer_id: string;
|
|
745
748
|
}
|
|
749
|
+
/**
|
|
750
|
+
* A Check Transfer Rejection object. This field will be present in the JSON
|
|
751
|
+
* response if and only if `category` is equal to `check_transfer_rejection`.
|
|
752
|
+
*/
|
|
753
|
+
interface CheckTransferRejection {
|
|
754
|
+
/**
|
|
755
|
+
* The identifier of the Check Transfer that led to this Transaction.
|
|
756
|
+
*/
|
|
757
|
+
transfer_id: string;
|
|
758
|
+
}
|
|
746
759
|
/**
|
|
747
760
|
* A Check Transfer Return object. This field will be present in the JSON response
|
|
748
761
|
* if and only if `category` is equal to `check_transfer_return`.
|
|
@@ -771,16 +784,6 @@ export declare namespace Transaction {
|
|
|
771
784
|
*/
|
|
772
785
|
transfer_id: string;
|
|
773
786
|
}
|
|
774
|
-
/**
|
|
775
|
-
* A Check Transfer Rejection object. This field will be present in the JSON
|
|
776
|
-
* response if and only if `category` is equal to `check_transfer_rejection`.
|
|
777
|
-
*/
|
|
778
|
-
interface CheckTransferRejection {
|
|
779
|
-
/**
|
|
780
|
-
* The identifier of the Check Transfer that led to this Transaction.
|
|
781
|
-
*/
|
|
782
|
-
transfer_id: string;
|
|
783
|
-
}
|
|
784
787
|
/**
|
|
785
788
|
* A Check Transfer Stop Payment Request object. This field will be present in the
|
|
786
789
|
* JSON response if and only if `category` is equal to
|
|
@@ -805,39 +808,6 @@ export declare namespace Transaction {
|
|
|
805
808
|
*/
|
|
806
809
|
type: 'check_transfer_stop_payment_request';
|
|
807
810
|
}
|
|
808
|
-
/**
|
|
809
|
-
* A Dispute Resolution object. This field will be present in the JSON response if
|
|
810
|
-
* and only if `category` is equal to `dispute_resolution`.
|
|
811
|
-
*/
|
|
812
|
-
interface DisputeResolution {
|
|
813
|
-
/**
|
|
814
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
815
|
-
* example, this is cents.
|
|
816
|
-
*/
|
|
817
|
-
amount: number;
|
|
818
|
-
/**
|
|
819
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
820
|
-
* transaction's currency.
|
|
821
|
-
*/
|
|
822
|
-
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
823
|
-
/**
|
|
824
|
-
* The identifier of the Transaction that was disputed.
|
|
825
|
-
*/
|
|
826
|
-
disputed_transaction_id: string;
|
|
827
|
-
}
|
|
828
|
-
/**
|
|
829
|
-
* A Empyreal Cash Deposit object. This field will be present in the JSON response
|
|
830
|
-
* if and only if `category` is equal to `empyreal_cash_deposit`.
|
|
831
|
-
*/
|
|
832
|
-
interface EmpyrealCashDeposit {
|
|
833
|
-
/**
|
|
834
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
835
|
-
* example, this is cents.
|
|
836
|
-
*/
|
|
837
|
-
amount: number;
|
|
838
|
-
bag_id: string;
|
|
839
|
-
deposit_date: string;
|
|
840
|
-
}
|
|
841
811
|
/**
|
|
842
812
|
* A Fee Payment object. This field will be present in the JSON response if and
|
|
843
813
|
* only if `category` is equal to `fee_payment`.
|
|
@@ -980,6 +950,29 @@ export declare namespace Transaction {
|
|
|
980
950
|
*/
|
|
981
951
|
transaction_identification: string;
|
|
982
952
|
}
|
|
953
|
+
/**
|
|
954
|
+
* A Inbound Wire Drawdown Payment object. This field will be present in the JSON
|
|
955
|
+
* response if and only if `category` is equal to `inbound_wire_drawdown_payment`.
|
|
956
|
+
*/
|
|
957
|
+
interface InboundWireDrawdownPayment {
|
|
958
|
+
/**
|
|
959
|
+
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
960
|
+
* example, this is cents.
|
|
961
|
+
*/
|
|
962
|
+
amount: number;
|
|
963
|
+
beneficiary_address_line1: string | null;
|
|
964
|
+
beneficiary_address_line2: string | null;
|
|
965
|
+
beneficiary_address_line3: string | null;
|
|
966
|
+
beneficiary_name: string | null;
|
|
967
|
+
beneficiary_reference: string | null;
|
|
968
|
+
description: string;
|
|
969
|
+
input_message_accountability_data: string | null;
|
|
970
|
+
originator_address_line1: string | null;
|
|
971
|
+
originator_address_line2: string | null;
|
|
972
|
+
originator_address_line3: string | null;
|
|
973
|
+
originator_name: string | null;
|
|
974
|
+
originator_to_beneficiary_information: string | null;
|
|
975
|
+
}
|
|
983
976
|
/**
|
|
984
977
|
* A Inbound Wire Drawdown Payment Reversal object. This field will be present in
|
|
985
978
|
* the JSON response if and only if `category` is equal to
|
|
@@ -1027,29 +1020,6 @@ export declare namespace Transaction {
|
|
|
1027
1020
|
*/
|
|
1028
1021
|
previous_message_input_source: string;
|
|
1029
1022
|
}
|
|
1030
|
-
/**
|
|
1031
|
-
* A Inbound Wire Drawdown Payment object. This field will be present in the JSON
|
|
1032
|
-
* response if and only if `category` is equal to `inbound_wire_drawdown_payment`.
|
|
1033
|
-
*/
|
|
1034
|
-
interface InboundWireDrawdownPayment {
|
|
1035
|
-
/**
|
|
1036
|
-
* The amount in the minor unit of the transaction's currency. For dollars, for
|
|
1037
|
-
* example, this is cents.
|
|
1038
|
-
*/
|
|
1039
|
-
amount: number;
|
|
1040
|
-
beneficiary_address_line1: string | null;
|
|
1041
|
-
beneficiary_address_line2: string | null;
|
|
1042
|
-
beneficiary_address_line3: string | null;
|
|
1043
|
-
beneficiary_name: string | null;
|
|
1044
|
-
beneficiary_reference: string | null;
|
|
1045
|
-
description: string;
|
|
1046
|
-
input_message_accountability_data: string | null;
|
|
1047
|
-
originator_address_line1: string | null;
|
|
1048
|
-
originator_address_line2: string | null;
|
|
1049
|
-
originator_address_line3: string | null;
|
|
1050
|
-
originator_name: string | null;
|
|
1051
|
-
originator_to_beneficiary_information: string | null;
|
|
1052
|
-
}
|
|
1053
1023
|
/**
|
|
1054
1024
|
* A Inbound Wire Reversal object. This field will be present in the JSON response
|
|
1055
1025
|
* if and only if `category` is equal to `inbound_wire_reversal`.
|
|
@@ -1189,6 +1159,7 @@ export declare namespace Transaction {
|
|
|
1189
1159
|
*/
|
|
1190
1160
|
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
1191
1161
|
reason:
|
|
1162
|
+
| 'account_closure'
|
|
1192
1163
|
| 'bank_migration'
|
|
1193
1164
|
| 'cashback'
|
|
1194
1165
|
| 'collection_receivable'
|
|
@@ -1201,50 +1172,6 @@ export declare namespace Transaction {
|
|
|
1201
1172
|
| 'sample_funds'
|
|
1202
1173
|
| 'sample_funds_return';
|
|
1203
1174
|
}
|
|
1204
|
-
/**
|
|
1205
|
-
* A Deprecated Card Refund object. This field will be present in the JSON response
|
|
1206
|
-
* if and only if `category` is equal to `card_route_refund`.
|
|
1207
|
-
*/
|
|
1208
|
-
interface CardRouteRefund {
|
|
1209
|
-
/**
|
|
1210
|
-
* The refunded amount in the minor unit of the refunded currency. For dollars, for
|
|
1211
|
-
* example, this is cents.
|
|
1212
|
-
*/
|
|
1213
|
-
amount: number;
|
|
1214
|
-
/**
|
|
1215
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the refund
|
|
1216
|
-
* currency.
|
|
1217
|
-
*/
|
|
1218
|
-
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
1219
|
-
merchant_acceptor_id: string;
|
|
1220
|
-
merchant_category_code: string | null;
|
|
1221
|
-
merchant_city: string | null;
|
|
1222
|
-
merchant_country: string;
|
|
1223
|
-
merchant_descriptor: string;
|
|
1224
|
-
merchant_state: string | null;
|
|
1225
|
-
}
|
|
1226
|
-
/**
|
|
1227
|
-
* A Deprecated Card Settlement object. This field will be present in the JSON
|
|
1228
|
-
* response if and only if `category` is equal to `card_route_settlement`.
|
|
1229
|
-
*/
|
|
1230
|
-
interface CardRouteSettlement {
|
|
1231
|
-
/**
|
|
1232
|
-
* The settled amount in the minor unit of the settlement currency. For dollars,
|
|
1233
|
-
* for example, this is cents.
|
|
1234
|
-
*/
|
|
1235
|
-
amount: number;
|
|
1236
|
-
/**
|
|
1237
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the settlement
|
|
1238
|
-
* currency.
|
|
1239
|
-
*/
|
|
1240
|
-
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
1241
|
-
merchant_acceptor_id: string;
|
|
1242
|
-
merchant_category_code: string | null;
|
|
1243
|
-
merchant_city: string | null;
|
|
1244
|
-
merchant_country: string | null;
|
|
1245
|
-
merchant_descriptor: string;
|
|
1246
|
-
merchant_state: string | null;
|
|
1247
|
-
}
|
|
1248
1175
|
/**
|
|
1249
1176
|
* A Real Time Payments Transfer Acknowledgement object. This field will be present
|
|
1250
1177
|
* in the JSON response if and only if `category` is equal to
|
|
@@ -1282,29 +1209,6 @@ export declare namespace Transaction {
|
|
|
1282
1209
|
*/
|
|
1283
1210
|
originator: string;
|
|
1284
1211
|
}
|
|
1285
|
-
/**
|
|
1286
|
-
* A Wire Drawdown Payment Intention object. This field will be present in the JSON
|
|
1287
|
-
* response if and only if `category` is equal to
|
|
1288
|
-
* `wire_drawdown_payment_intention`.
|
|
1289
|
-
*/
|
|
1290
|
-
interface WireDrawdownPaymentIntention {
|
|
1291
|
-
account_number: string;
|
|
1292
|
-
/**
|
|
1293
|
-
* The transfer amount in USD cents.
|
|
1294
|
-
*/
|
|
1295
|
-
amount: number;
|
|
1296
|
-
message_to_recipient: string;
|
|
1297
|
-
routing_number: string;
|
|
1298
|
-
transfer_id: string;
|
|
1299
|
-
}
|
|
1300
|
-
/**
|
|
1301
|
-
* A Wire Drawdown Payment Rejection object. This field will be present in the JSON
|
|
1302
|
-
* response if and only if `category` is equal to
|
|
1303
|
-
* `wire_drawdown_payment_rejection`.
|
|
1304
|
-
*/
|
|
1305
|
-
interface WireDrawdownPaymentRejection {
|
|
1306
|
-
transfer_id: string;
|
|
1307
|
-
}
|
|
1308
1212
|
/**
|
|
1309
1213
|
* A Wire Transfer Intention object. This field will be present in the JSON
|
|
1310
1214
|
* response if and only if `category` is equal to `wire_transfer_intention`.
|
|
@@ -1342,72 +1246,8 @@ export interface TransactionListParams extends PageParams {
|
|
|
1342
1246
|
* Filter Transactions for those belonging to the specified Account.
|
|
1343
1247
|
*/
|
|
1344
1248
|
account_id?: string;
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
* should be encoded as a comma-delimited string, such as `?in=one,two,three`.
|
|
1348
|
-
*/
|
|
1349
|
-
'category.in'?: Array<
|
|
1350
|
-
| 'account_transfer_intention'
|
|
1351
|
-
| 'ach_check_conversion_return'
|
|
1352
|
-
| 'ach_check_conversion'
|
|
1353
|
-
| 'ach_transfer_intention'
|
|
1354
|
-
| 'ach_transfer_rejection'
|
|
1355
|
-
| 'ach_transfer_return'
|
|
1356
|
-
| 'card_dispute_acceptance'
|
|
1357
|
-
| 'card_refund'
|
|
1358
|
-
| 'card_settlement'
|
|
1359
|
-
| 'card_revenue_payment'
|
|
1360
|
-
| 'check_deposit_acceptance'
|
|
1361
|
-
| 'check_deposit_return'
|
|
1362
|
-
| 'check_transfer_intention'
|
|
1363
|
-
| 'check_transfer_return'
|
|
1364
|
-
| 'check_transfer_rejection'
|
|
1365
|
-
| 'check_transfer_stop_payment_request'
|
|
1366
|
-
| 'dispute_resolution'
|
|
1367
|
-
| 'empyreal_cash_deposit'
|
|
1368
|
-
| 'fee_payment'
|
|
1369
|
-
| 'inbound_ach_transfer'
|
|
1370
|
-
| 'inbound_ach_transfer_return_intention'
|
|
1371
|
-
| 'inbound_check'
|
|
1372
|
-
| 'inbound_international_ach_transfer'
|
|
1373
|
-
| 'inbound_real_time_payments_transfer_confirmation'
|
|
1374
|
-
| 'inbound_wire_drawdown_payment_reversal'
|
|
1375
|
-
| 'inbound_wire_drawdown_payment'
|
|
1376
|
-
| 'inbound_wire_reversal'
|
|
1377
|
-
| 'inbound_wire_transfer'
|
|
1378
|
-
| 'interest_payment'
|
|
1379
|
-
| 'internal_general_ledger_transaction'
|
|
1380
|
-
| 'internal_source'
|
|
1381
|
-
| 'card_route_refund'
|
|
1382
|
-
| 'card_route_settlement'
|
|
1383
|
-
| 'real_time_payments_transfer_acknowledgement'
|
|
1384
|
-
| 'sample_funds'
|
|
1385
|
-
| 'wire_drawdown_payment_intention'
|
|
1386
|
-
| 'wire_drawdown_payment_rejection'
|
|
1387
|
-
| 'wire_transfer_intention'
|
|
1388
|
-
| 'wire_transfer_rejection'
|
|
1389
|
-
| 'other'
|
|
1390
|
-
>;
|
|
1391
|
-
/**
|
|
1392
|
-
* Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
1393
|
-
* timestamp.
|
|
1394
|
-
*/
|
|
1395
|
-
'created_at.after'?: string;
|
|
1396
|
-
/**
|
|
1397
|
-
* Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
1398
|
-
* timestamp.
|
|
1399
|
-
*/
|
|
1400
|
-
'created_at.before'?: string;
|
|
1401
|
-
/**
|
|
1402
|
-
* Return results on or after this
|
|
1403
|
-
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
1404
|
-
*/
|
|
1405
|
-
'created_at.on_or_after'?: string;
|
|
1406
|
-
/**
|
|
1407
|
-
* Return results on or before this
|
|
1408
|
-
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
1409
|
-
*/
|
|
1410
|
-
'created_at.on_or_before'?: string;
|
|
1249
|
+
category?: TransactionListParams.Category;
|
|
1250
|
+
created_at?: TransactionListParams.CreatedAt;
|
|
1411
1251
|
/**
|
|
1412
1252
|
* Filter Transactions for those belonging to the specified route. This could be a
|
|
1413
1253
|
* Card ID or an Account Number ID.
|
|
@@ -1415,28 +1255,6 @@ export interface TransactionListParams extends PageParams {
|
|
|
1415
1255
|
route_id?: string;
|
|
1416
1256
|
}
|
|
1417
1257
|
export declare namespace TransactionListParams {
|
|
1418
|
-
interface CreatedAt {
|
|
1419
|
-
/**
|
|
1420
|
-
* Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
1421
|
-
* timestamp.
|
|
1422
|
-
*/
|
|
1423
|
-
after?: string;
|
|
1424
|
-
/**
|
|
1425
|
-
* Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
1426
|
-
* timestamp.
|
|
1427
|
-
*/
|
|
1428
|
-
before?: string;
|
|
1429
|
-
/**
|
|
1430
|
-
* Return results on or after this
|
|
1431
|
-
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
1432
|
-
*/
|
|
1433
|
-
on_or_after?: string;
|
|
1434
|
-
/**
|
|
1435
|
-
* Return results on or before this
|
|
1436
|
-
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
1437
|
-
*/
|
|
1438
|
-
on_or_before?: string;
|
|
1439
|
-
}
|
|
1440
1258
|
interface Category {
|
|
1441
1259
|
/**
|
|
1442
1260
|
* Return results whose value is in the provided list. For GET requests, this
|
|
@@ -1444,46 +1262,65 @@ export declare namespace TransactionListParams {
|
|
|
1444
1262
|
*/
|
|
1445
1263
|
in?: Array<
|
|
1446
1264
|
| 'account_transfer_intention'
|
|
1447
|
-
| 'ach_check_conversion_return'
|
|
1448
|
-
| 'ach_check_conversion'
|
|
1449
1265
|
| 'ach_transfer_intention'
|
|
1450
1266
|
| 'ach_transfer_rejection'
|
|
1451
1267
|
| 'ach_transfer_return'
|
|
1452
1268
|
| 'card_dispute_acceptance'
|
|
1453
1269
|
| 'card_refund'
|
|
1454
|
-
| 'card_settlement'
|
|
1455
1270
|
| 'card_revenue_payment'
|
|
1271
|
+
| 'card_settlement'
|
|
1456
1272
|
| 'check_deposit_acceptance'
|
|
1457
1273
|
| 'check_deposit_return'
|
|
1274
|
+
| 'check_transfer_deposit'
|
|
1458
1275
|
| 'check_transfer_intention'
|
|
1459
|
-
| 'check_transfer_return'
|
|
1460
1276
|
| 'check_transfer_rejection'
|
|
1277
|
+
| 'check_transfer_return'
|
|
1461
1278
|
| 'check_transfer_stop_payment_request'
|
|
1462
|
-
| 'dispute_resolution'
|
|
1463
|
-
| 'empyreal_cash_deposit'
|
|
1464
1279
|
| 'fee_payment'
|
|
1465
1280
|
| 'inbound_ach_transfer'
|
|
1466
1281
|
| 'inbound_ach_transfer_return_intention'
|
|
1467
1282
|
| 'inbound_check'
|
|
1468
1283
|
| 'inbound_international_ach_transfer'
|
|
1469
1284
|
| 'inbound_real_time_payments_transfer_confirmation'
|
|
1470
|
-
| 'inbound_wire_drawdown_payment_reversal'
|
|
1471
1285
|
| 'inbound_wire_drawdown_payment'
|
|
1286
|
+
| 'inbound_wire_drawdown_payment_reversal'
|
|
1472
1287
|
| 'inbound_wire_reversal'
|
|
1473
1288
|
| 'inbound_wire_transfer'
|
|
1474
1289
|
| 'interest_payment'
|
|
1475
|
-
| 'internal_general_ledger_transaction'
|
|
1476
1290
|
| 'internal_source'
|
|
1477
|
-
| 'card_route_refund'
|
|
1478
|
-
| 'card_route_settlement'
|
|
1479
1291
|
| 'real_time_payments_transfer_acknowledgement'
|
|
1480
1292
|
| 'sample_funds'
|
|
1481
|
-
| 'wire_drawdown_payment_intention'
|
|
1482
|
-
| 'wire_drawdown_payment_rejection'
|
|
1483
1293
|
| 'wire_transfer_intention'
|
|
1484
1294
|
| 'wire_transfer_rejection'
|
|
1485
1295
|
| 'other'
|
|
1486
1296
|
>;
|
|
1487
1297
|
}
|
|
1298
|
+
interface CreatedAt {
|
|
1299
|
+
/**
|
|
1300
|
+
* Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
1301
|
+
* timestamp.
|
|
1302
|
+
*/
|
|
1303
|
+
after?: string;
|
|
1304
|
+
/**
|
|
1305
|
+
* Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
1306
|
+
* timestamp.
|
|
1307
|
+
*/
|
|
1308
|
+
before?: string;
|
|
1309
|
+
/**
|
|
1310
|
+
* Return results on or after this
|
|
1311
|
+
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
1312
|
+
*/
|
|
1313
|
+
on_or_after?: string;
|
|
1314
|
+
/**
|
|
1315
|
+
* Return results on or before this
|
|
1316
|
+
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
1317
|
+
*/
|
|
1318
|
+
on_or_before?: string;
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
export declare namespace Transactions {
|
|
1322
|
+
export import Transaction = API.Transaction;
|
|
1323
|
+
export import TransactionsPage = API.TransactionsPage;
|
|
1324
|
+
export import TransactionListParams = API.TransactionListParams;
|
|
1488
1325
|
}
|
|
1489
1326
|
//# sourceMappingURL=transactions.d.ts.map
|