increase 0.2.0 → 0.3.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/.github/workflows/publish-npm.yml +28 -0
- package/.github/workflows/release-doctor.yml +20 -0
- package/.github/workflows/release.yml +38 -0
- package/.prettierignore +1 -0
- package/.release-please-manifest.json +3 -0
- package/.stats.yml +1 -1
- package/CHANGELOG.md +84 -0
- package/README.md +16 -1
- package/api.md +88 -0
- package/bin/check-release-environment +25 -0
- package/bin/publish-npm +6 -0
- package/check-version.ts +4 -1
- package/core.ts +56 -14
- package/dist/cjs/check-version.d.ts +1 -0
- package/dist/cjs/check-version.d.ts.map +1 -0
- package/dist/cjs/check-version.js +3 -1
- package/dist/cjs/check-version.js.map +1 -1
- package/dist/cjs/core.d.ts +22 -2
- package/dist/cjs/core.d.ts.map +1 -0
- package/dist/cjs/core.js +58 -16
- package/dist/cjs/core.js.map +1 -1
- package/dist/cjs/error.d.ts +163 -0
- package/dist/cjs/error.d.ts.map +1 -0
- package/dist/cjs/error.js +204 -0
- package/dist/cjs/error.js.map +1 -0
- package/dist/cjs/examples/api-error.d.ts +3 -0
- package/dist/cjs/examples/api-error.d.ts.map +1 -0
- package/dist/cjs/examples/api-error.js +92 -0
- package/dist/cjs/examples/api-error.js.map +1 -0
- package/dist/cjs/fetch-polyfill.d.ts +1 -0
- package/dist/cjs/fetch-polyfill.d.ts.map +1 -0
- package/dist/cjs/fetch-polyfill.js +2 -2
- package/dist/cjs/fetch-polyfill.js.map +1 -1
- package/dist/cjs/index.d.ts +65 -3
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +104 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/pagination.d.ts +4 -0
- package/dist/cjs/pagination.d.ts.map +1 -0
- package/dist/cjs/pagination.js.map +1 -1
- package/dist/cjs/resource.d.ts +1 -0
- package/dist/cjs/resource.d.ts.map +1 -0
- package/dist/cjs/resources/account-numbers.d.ts +45 -0
- package/dist/cjs/resources/account-numbers.d.ts.map +1 -0
- package/dist/cjs/resources/account-numbers.js.map +1 -1
- package/dist/cjs/resources/account-statements.d.ts +21 -1
- package/dist/cjs/resources/account-statements.d.ts.map +1 -0
- package/dist/cjs/resources/account-statements.js.map +1 -1
- package/dist/cjs/resources/account-transfers.d.ts +40 -12
- package/dist/cjs/resources/account-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/account-transfers.js.map +1 -1
- package/dist/cjs/resources/accounts.d.ts +53 -23
- package/dist/cjs/resources/accounts.d.ts.map +1 -0
- package/dist/cjs/resources/accounts.js.map +1 -1
- package/dist/cjs/resources/ach-prenotifications.d.ts +29 -6
- package/dist/cjs/resources/ach-prenotifications.d.ts.map +1 -0
- package/dist/cjs/resources/ach-prenotifications.js.map +1 -1
- package/dist/cjs/resources/ach-transfers.d.ts +70 -23
- package/dist/cjs/resources/ach-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/ach-transfers.js.map +1 -1
- package/dist/cjs/resources/balance-lookups.d.ts +47 -0
- package/dist/cjs/resources/balance-lookups.d.ts.map +1 -0
- package/dist/cjs/resources/balance-lookups.js +15 -0
- package/dist/cjs/resources/balance-lookups.js.map +1 -0
- package/dist/cjs/resources/bookkeeping-accounts.d.ts +71 -0
- package/dist/cjs/resources/bookkeeping-accounts.d.ts.map +1 -0
- package/dist/cjs/resources/bookkeeping-accounts.js +29 -0
- package/dist/cjs/resources/bookkeeping-accounts.js.map +1 -0
- package/dist/cjs/resources/bookkeeping-entries.d.ts +43 -0
- package/dist/cjs/resources/bookkeeping-entries.d.ts.map +1 -0
- package/dist/cjs/resources/bookkeeping-entries.js +19 -0
- package/dist/cjs/resources/bookkeeping-entries.js.map +1 -0
- package/dist/cjs/resources/bookkeeping-entry-sets.d.ts +95 -0
- package/dist/cjs/resources/bookkeeping-entry-sets.d.ts.map +1 -0
- package/dist/cjs/resources/bookkeeping-entry-sets.js +15 -0
- package/dist/cjs/resources/bookkeeping-entry-sets.js.map +1 -0
- package/dist/cjs/resources/card-disputes.d.ts +39 -5
- package/dist/cjs/resources/card-disputes.d.ts.map +1 -0
- package/dist/cjs/resources/card-disputes.js.map +1 -1
- package/dist/cjs/resources/card-profiles.d.ts +81 -3
- package/dist/cjs/resources/card-profiles.d.ts.map +1 -0
- package/dist/cjs/resources/card-profiles.js.map +1 -1
- package/dist/cjs/resources/cards.d.ts +147 -3
- package/dist/cjs/resources/cards.d.ts.map +1 -0
- package/dist/cjs/resources/cards.js.map +1 -1
- package/dist/cjs/resources/check-deposits.d.ts +34 -1
- package/dist/cjs/resources/check-deposits.d.ts.map +1 -0
- package/dist/cjs/resources/check-deposits.js.map +1 -1
- package/dist/cjs/resources/check-transfers.d.ts +161 -14
- package/dist/cjs/resources/check-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/check-transfers.js.map +1 -1
- package/dist/cjs/resources/declined-transactions.d.ts +116 -8
- package/dist/cjs/resources/declined-transactions.d.ts.map +1 -0
- package/dist/cjs/resources/declined-transactions.js.map +1 -1
- package/dist/cjs/resources/digital-wallet-tokens.d.ts +21 -1
- package/dist/cjs/resources/digital-wallet-tokens.d.ts.map +1 -0
- package/dist/cjs/resources/digital-wallet-tokens.js.map +1 -1
- package/dist/cjs/resources/documents.d.ts +181 -6
- package/dist/cjs/resources/documents.d.ts.map +1 -0
- package/dist/cjs/resources/documents.js.map +1 -1
- package/dist/cjs/resources/entities/entities.d.ts +1177 -10
- package/dist/cjs/resources/entities/entities.d.ts.map +1 -0
- package/dist/cjs/resources/entities/entities.js +1 -1
- package/dist/cjs/resources/entities/entities.js.map +1 -1
- package/dist/cjs/resources/entities/index.d.ts +1 -0
- package/dist/cjs/resources/entities/index.d.ts.map +1 -0
- package/dist/cjs/resources/entities/supplemental-documents.d.ts +1 -0
- package/dist/cjs/resources/entities/supplemental-documents.d.ts.map +1 -0
- package/dist/cjs/resources/event-subscriptions.d.ts +9 -4
- package/dist/cjs/resources/event-subscriptions.d.ts.map +1 -0
- package/dist/cjs/resources/event-subscriptions.js.map +1 -1
- package/dist/cjs/resources/events.d.ts +85 -4
- package/dist/cjs/resources/events.d.ts.map +1 -0
- package/dist/cjs/resources/events.js.map +1 -1
- package/dist/cjs/resources/exports.d.ts +244 -0
- package/dist/cjs/resources/exports.d.ts.map +1 -0
- package/dist/cjs/resources/exports.js +31 -0
- package/dist/cjs/resources/exports.js.map +1 -0
- package/dist/cjs/resources/external-accounts.d.ts +14 -7
- package/dist/cjs/resources/external-accounts.d.ts.map +1 -0
- package/dist/cjs/resources/external-accounts.js.map +1 -1
- package/dist/cjs/resources/files.d.ts +53 -10
- package/dist/cjs/resources/files.d.ts.map +1 -0
- package/dist/cjs/resources/files.js.map +1 -1
- package/dist/cjs/resources/groups.d.ts +1 -0
- package/dist/cjs/resources/groups.d.ts.map +1 -0
- package/dist/cjs/resources/inbound-ach-transfer-returns.d.ts +4 -0
- package/dist/cjs/resources/inbound-ach-transfer-returns.d.ts.map +1 -0
- package/dist/cjs/resources/inbound-ach-transfer-returns.js.map +1 -1
- package/dist/cjs/resources/inbound-wire-drawdown-requests.d.ts +1 -0
- package/dist/cjs/resources/inbound-wire-drawdown-requests.d.ts.map +1 -0
- package/dist/cjs/resources/inbound-wire-drawdown-requests.js.map +1 -1
- package/dist/cjs/resources/index.d.ts +29 -0
- package/dist/cjs/resources/index.d.ts.map +1 -0
- package/dist/cjs/resources/index.js +100 -9
- package/dist/cjs/resources/index.js.map +1 -1
- package/dist/cjs/resources/limits.d.ts +5 -4
- package/dist/cjs/resources/limits.d.ts.map +1 -0
- package/dist/cjs/resources/limits.js.map +1 -1
- package/dist/cjs/resources/oauth-connections.d.ts +1 -0
- package/dist/cjs/resources/oauth-connections.d.ts.map +1 -0
- package/dist/cjs/resources/oauth-connections.js.map +1 -1
- package/dist/cjs/resources/pending-transactions.d.ts +160 -6
- package/dist/cjs/resources/pending-transactions.d.ts.map +1 -0
- package/dist/cjs/resources/pending-transactions.js.map +1 -1
- package/dist/cjs/resources/programs.d.ts +48 -0
- package/dist/cjs/resources/programs.d.ts.map +1 -0
- package/dist/cjs/resources/programs.js +25 -0
- package/dist/cjs/resources/programs.js.map +1 -0
- package/dist/cjs/resources/real-time-decisions.d.ts +106 -1
- package/dist/cjs/resources/real-time-decisions.d.ts.map +1 -0
- package/dist/cjs/resources/real-time-payments-transfers.d.ts +306 -0
- package/dist/cjs/resources/real-time-payments-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/real-time-payments-transfers.js +35 -0
- package/dist/cjs/resources/real-time-payments-transfers.js.map +1 -0
- package/dist/cjs/resources/routing-numbers.d.ts +1 -0
- package/dist/cjs/resources/routing-numbers.d.ts.map +1 -0
- package/dist/cjs/resources/shared.d.ts +1 -0
- package/dist/cjs/resources/shared.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/account-statements.d.ts +1 -0
- package/dist/cjs/resources/simulations/account-statements.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/account-transfers.d.ts +1 -0
- package/dist/cjs/resources/simulations/account-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/ach-transfers.d.ts +431 -12
- package/dist/cjs/resources/simulations/ach-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/card-disputes.d.ts +5 -4
- package/dist/cjs/resources/simulations/card-disputes.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/card-refunds.d.ts +1 -0
- package/dist/cjs/resources/simulations/card-refunds.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/cards.d.ts +222 -13
- package/dist/cjs/resources/simulations/cards.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/check-deposits.d.ts +1 -0
- package/dist/cjs/resources/simulations/check-deposits.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/check-transfers.d.ts +16 -0
- package/dist/cjs/resources/simulations/check-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/check-transfers.js +10 -0
- package/dist/cjs/resources/simulations/check-transfers.js.map +1 -1
- package/dist/cjs/resources/simulations/digital-wallet-token-requests.d.ts +1 -0
- package/dist/cjs/resources/simulations/digital-wallet-token-requests.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/documents.d.ts +1 -0
- package/dist/cjs/resources/simulations/documents.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/inbound-wire-drawdown-requests.d.ts +26 -25
- package/dist/cjs/resources/simulations/inbound-wire-drawdown-requests.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/index.d.ts +4 -0
- package/dist/cjs/resources/simulations/index.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/interest-payments.d.ts +1364 -0
- package/dist/cjs/resources/simulations/interest-payments.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/interest-payments.js +16 -0
- package/dist/cjs/resources/simulations/interest-payments.js.map +1 -0
- package/dist/cjs/resources/simulations/real-time-payments-transfers.d.ts +511 -12
- package/dist/cjs/resources/simulations/real-time-payments-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/real-time-payments-transfers.js +11 -0
- package/dist/cjs/resources/simulations/real-time-payments-transfers.js.map +1 -1
- package/dist/cjs/resources/simulations/simulations.d.ts +3 -0
- package/dist/cjs/resources/simulations/simulations.d.ts.map +1 -0
- package/dist/cjs/resources/simulations/simulations.js +2 -0
- package/dist/cjs/resources/simulations/simulations.js.map +1 -1
- package/dist/cjs/resources/simulations/wire-transfers.d.ts +332 -6
- package/dist/cjs/resources/simulations/wire-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/transactions.d.ts +397 -9
- package/dist/cjs/resources/transactions.d.ts.map +1 -0
- package/dist/cjs/resources/transactions.js.map +1 -1
- package/dist/cjs/resources/wire-drawdown-requests.d.ts +13 -8
- package/dist/cjs/resources/wire-drawdown-requests.d.ts.map +1 -0
- package/dist/cjs/resources/wire-drawdown-requests.js.map +1 -1
- package/dist/cjs/resources/wire-transfers.d.ts +71 -17
- package/dist/cjs/resources/wire-transfers.d.ts.map +1 -0
- package/dist/cjs/resources/wire-transfers.js.map +1 -1
- package/dist/cjs/tests/api-resources/account-numbers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/account-numbers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/account-numbers.test.js +24 -26
- package/dist/cjs/tests/api-resources/account-numbers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/account-statements.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/account-statements.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/account-statements.test.js +11 -26
- package/dist/cjs/tests/api-resources/account-statements.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/account-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/account-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/account-transfers.test.js +20 -34
- package/dist/cjs/tests/api-resources/account-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/accounts.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/accounts.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/accounts.test.js +25 -24
- package/dist/cjs/tests/api-resources/accounts.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/ach-prenotifications.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/ach-prenotifications.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/ach-prenotifications.test.js +24 -28
- package/dist/cjs/tests/api-resources/ach-prenotifications.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/ach-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/ach-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/ach-transfers.test.js +34 -36
- package/dist/cjs/tests/api-resources/ach-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/balance-lookups.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/balance-lookups.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/balance-lookups.test.js +58 -0
- package/dist/cjs/tests/api-resources/balance-lookups.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/bookkeeping-accounts.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/bookkeeping-accounts.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/bookkeeping-accounts.test.js +83 -0
- package/dist/cjs/tests/api-resources/bookkeeping-accounts.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entries.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entries.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entries.test.js +65 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entries.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entry-sets.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entry-sets.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entry-sets.test.js +68 -0
- package/dist/cjs/tests/api-resources/bookkeeping-entry-sets.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/card-disputes.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/card-disputes.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/card-disputes.test.js +21 -29
- package/dist/cjs/tests/api-resources/card-disputes.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/card-profiles.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/card-profiles.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/card-profiles.test.js +29 -20
- package/dist/cjs/tests/api-resources/card-profiles.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/cards.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/cards.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/cards.test.js +24 -38
- package/dist/cjs/tests/api-resources/cards.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/check-deposits.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/check-deposits.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/check-deposits.test.js +27 -32
- package/dist/cjs/tests/api-resources/check-deposits.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/check-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/check-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/check-transfers.test.js +34 -45
- package/dist/cjs/tests/api-resources/check-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/declined-transactions.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/declined-transactions.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/declined-transactions.test.js +11 -27
- package/dist/cjs/tests/api-resources/declined-transactions.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.js +11 -26
- package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/documents.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/documents.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/documents.test.js +15 -27
- package/dist/cjs/tests/api-resources/documents.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/entities/entities.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/entities/entities.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/entities/entities.test.js +109 -32
- package/dist/cjs/tests/api-resources/entities/entities.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.js +13 -6
- package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/event-subscriptions.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/event-subscriptions.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/event-subscriptions.test.js +14 -20
- package/dist/cjs/tests/api-resources/event-subscriptions.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/events.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/events.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/events.test.js +11 -27
- package/dist/cjs/tests/api-resources/events.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/exports.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/exports.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/exports.test.js +105 -0
- package/dist/cjs/tests/api-resources/exports.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/external-accounts.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/external-accounts.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/external-accounts.test.js +16 -26
- package/dist/cjs/tests/api-resources/external-accounts.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/files.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/files.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/files.test.js +12 -26
- package/dist/cjs/tests/api-resources/files.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/groups.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/groups.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/groups.test.js +6 -5
- package/dist/cjs/tests/api-resources/groups.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.js +16 -12
- package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.js +6 -9
- package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/limits.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/limits.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/limits.test.js +17 -15
- package/dist/cjs/tests/api-resources/limits.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/oauth-connections.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/oauth-connections.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/oauth-connections.test.js +6 -9
- package/dist/cjs/tests/api-resources/oauth-connections.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/pending-transactions.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/pending-transactions.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/pending-transactions.test.js +12 -18
- package/dist/cjs/tests/api-resources/pending-transactions.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/programs.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/programs.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/programs.test.js +73 -0
- package/dist/cjs/tests/api-resources/programs.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/real-time-decisions.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/real-time-decisions.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/real-time-decisions.test.js +7 -13
- package/dist/cjs/tests/api-resources/real-time-decisions.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/real-time-payments-transfers.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/real-time-payments-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/real-time-payments-transfers.test.js +115 -0
- package/dist/cjs/tests/api-resources/real-time-payments-transfers.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/routing-numbers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/routing-numbers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/routing-numbers.test.js +10 -5
- package/dist/cjs/tests/api-resources/routing-numbers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/account-statements.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/account-statements.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/account-statements.test.js +11 -8
- package/dist/cjs/tests/api-resources/simulations/account-statements.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/account-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/account-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/account-transfers.test.js +5 -4
- package/dist/cjs/tests/api-resources/simulations/account-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.js +18 -20
- package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/card-disputes.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/card-disputes.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/card-disputes.test.js +9 -7
- package/dist/cjs/tests/api-resources/simulations/card-disputes.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/card-refunds.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/card-refunds.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/card-refunds.test.js +11 -8
- package/dist/cjs/tests/api-resources/simulations/card-refunds.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/cards.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/cards.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/cards.test.js +18 -10
- package/dist/cjs/tests/api-resources/simulations/cards.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/check-deposits.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/check-deposits.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/check-deposits.test.js +5 -4
- package/dist/cjs/tests/api-resources/simulations/check-deposits.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/check-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/check-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/check-transfers.test.js +23 -4
- package/dist/cjs/tests/api-resources/simulations/check-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.js +11 -8
- package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/documents.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/documents.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/documents.test.js +10 -7
- package/dist/cjs/tests/api-resources/simulations/documents.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.js +41 -28
- package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/interest-payments.test.d.ts +2 -0
- package/dist/cjs/tests/api-resources/simulations/interest-payments.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/interest-payments.test.js +58 -0
- package/dist/cjs/tests/api-resources/simulations/interest-payments.test.js.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.js +25 -12
- package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.js +24 -10
- package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/transactions.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/transactions.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/transactions.test.js +15 -32
- package/dist/cjs/tests/api-resources/transactions.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.js +23 -23
- package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.js.map +1 -1
- package/dist/cjs/tests/api-resources/wire-transfers.test.d.ts +1 -0
- package/dist/cjs/tests/api-resources/wire-transfers.test.d.ts.map +1 -0
- package/dist/cjs/tests/api-resources/wire-transfers.test.js +32 -41
- package/dist/cjs/tests/api-resources/wire-transfers.test.js.map +1 -1
- package/dist/cjs/tests/form.test.d.ts +1 -0
- package/dist/cjs/tests/form.test.d.ts.map +1 -0
- package/dist/cjs/tests/form.test.js +4 -3
- package/dist/cjs/tests/index.test.d.ts +1 -0
- package/dist/cjs/tests/index.test.d.ts.map +1 -0
- package/dist/cjs/tests/index.test.js +31 -4
- package/dist/cjs/tests/index.test.js.map +1 -1
- package/dist/cjs/tests/responses.test.d.ts +1 -0
- package/dist/cjs/tests/responses.test.d.ts.map +1 -0
- package/dist/cjs/tests/responses.test.js +4 -3
- package/dist/cjs/version.d.ts +2 -1
- package/dist/cjs/version.d.ts.map +1 -0
- package/dist/cjs/version.js +1 -1
- package/dist/cjs/version.js.map +1 -1
- package/error.ts +337 -0
- package/examples/api-error.ts +21 -0
- package/fetch-polyfill.ts +2 -2
- package/index.ts +140 -2
- package/package.json +2 -2
- package/pagination.ts +3 -0
- package/release-please-config.json +64 -0
- package/resources/account-numbers.ts +52 -1
- package/resources/account-statements.ts +23 -2
- package/resources/account-transfers.ts +44 -14
- package/resources/accounts.ts +62 -28
- package/resources/ach-prenotifications.ts +32 -8
- package/resources/ach-transfers.ts +77 -27
- package/resources/balance-lookups.ts +57 -0
- package/resources/bookkeeping-accounts.ts +98 -0
- package/resources/bookkeeping-entries.ts +62 -0
- package/resources/bookkeeping-entry-sets.ts +114 -0
- package/resources/card-disputes.ts +41 -6
- package/resources/card-profiles.ts +91 -4
- package/resources/cards.ts +165 -4
- package/resources/check-deposits.ts +36 -2
- package/resources/check-transfers.ts +184 -17
- package/resources/declined-transactions.ts +136 -9
- package/resources/digital-wallet-tokens.ts +23 -2
- package/resources/documents.ts +183 -7
- package/resources/entities/entities.ts +1343 -14
- package/resources/event-subscriptions.ts +9 -6
- package/resources/events.ts +87 -5
- package/resources/exports.ts +298 -0
- package/resources/external-accounts.ts +14 -9
- package/resources/files.ts +55 -11
- package/resources/inbound-ach-transfer-returns.ts +3 -1
- package/resources/inbound-wire-drawdown-requests.ts +0 -1
- package/resources/index.ts +28 -0
- package/resources/limits.ts +5 -6
- package/resources/oauth-connections.ts +0 -1
- package/resources/pending-transactions.ts +177 -7
- package/resources/programs.ts +70 -0
- package/resources/real-time-decisions.ts +113 -1
- package/resources/real-time-payments-transfers.ts +373 -0
- package/resources/simulations/ach-transfers.ts +479 -13
- package/resources/simulations/card-disputes.ts +4 -4
- package/resources/simulations/cards.ts +251 -14
- package/resources/simulations/check-transfers.ts +19 -0
- package/resources/simulations/inbound-wire-drawdown-requests.ts +28 -28
- package/resources/simulations/index.ts +3 -0
- package/resources/simulations/interest-payments.ts +1667 -0
- package/resources/simulations/real-time-payments-transfers.ts +568 -13
- package/resources/simulations/simulations.ts +2 -0
- package/resources/simulations/wire-transfers.ts +362 -7
- package/resources/transactions.ts +430 -11
- package/resources/wire-drawdown-requests.ts +14 -11
- package/resources/wire-transfers.ts +80 -21
- package/tests/api-resources/account-numbers.test.ts +21 -23
- package/tests/api-resources/account-statements.test.ts +8 -23
- package/tests/api-resources/account-transfers.test.ts +17 -31
- package/tests/api-resources/accounts.test.ts +22 -21
- package/tests/api-resources/ach-prenotifications.test.ts +21 -25
- package/tests/api-resources/ach-transfers.test.ts +31 -33
- package/tests/api-resources/balance-lookups.test.ts +21 -0
- package/tests/api-resources/bookkeeping-accounts.test.ts +43 -0
- package/tests/api-resources/bookkeeping-entries.test.ts +25 -0
- package/tests/api-resources/bookkeeping-entry-sets.test.ts +31 -0
- package/tests/api-resources/card-disputes.test.ts +18 -26
- package/tests/api-resources/card-profiles.test.ts +26 -17
- package/tests/api-resources/cards.test.ts +21 -35
- package/tests/api-resources/check-deposits.test.ts +24 -29
- package/tests/api-resources/check-transfers.test.ts +31 -42
- package/tests/api-resources/declined-transactions.test.ts +8 -24
- package/tests/api-resources/digital-wallet-tokens.test.ts +8 -23
- package/tests/api-resources/documents.test.ts +12 -24
- package/tests/api-resources/entities/entities.test.ts +106 -29
- package/tests/api-resources/entities/supplemental-documents.test.ts +10 -3
- package/tests/api-resources/event-subscriptions.test.ts +11 -17
- package/tests/api-resources/events.test.ts +8 -24
- package/tests/api-resources/exports.test.ts +68 -0
- package/tests/api-resources/external-accounts.test.ts +13 -23
- package/tests/api-resources/files.test.ts +9 -24
- package/tests/api-resources/groups.test.ts +3 -2
- package/tests/api-resources/inbound-ach-transfer-returns.test.ts +13 -9
- package/tests/api-resources/inbound-wire-drawdown-requests.test.ts +3 -6
- package/tests/api-resources/limits.test.ts +14 -12
- package/tests/api-resources/oauth-connections.test.ts +3 -6
- package/tests/api-resources/pending-transactions.test.ts +9 -15
- package/tests/api-resources/programs.test.ts +36 -0
- package/tests/api-resources/real-time-decisions.test.ts +4 -10
- package/tests/api-resources/real-time-payments-transfers.test.ts +78 -0
- package/tests/api-resources/routing-numbers.test.ts +7 -2
- package/tests/api-resources/simulations/account-statements.test.ts +8 -5
- package/tests/api-resources/simulations/account-transfers.test.ts +2 -1
- package/tests/api-resources/simulations/ach-transfers.test.ts +15 -14
- package/tests/api-resources/simulations/card-disputes.test.ts +6 -4
- package/tests/api-resources/simulations/card-refunds.test.ts +8 -5
- package/tests/api-resources/simulations/cards.test.ts +15 -7
- package/tests/api-resources/simulations/check-deposits.test.ts +2 -1
- package/tests/api-resources/simulations/check-transfers.test.ts +14 -1
- package/tests/api-resources/simulations/digital-wallet-token-requests.test.ts +8 -5
- package/tests/api-resources/simulations/documents.test.ts +7 -4
- package/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.ts +38 -25
- package/tests/api-resources/simulations/interest-payments.test.ts +15 -0
- package/tests/api-resources/simulations/real-time-payments-transfers.test.ts +22 -9
- package/tests/api-resources/simulations/wire-transfers.test.ts +21 -7
- package/tests/api-resources/transactions.test.ts +12 -29
- package/tests/api-resources/wire-drawdown-requests.test.ts +20 -20
- package/tests/api-resources/wire-transfers.test.ts +29 -38
- package/tests/index.test.ts +25 -1
- package/tsconfig.json +2 -0
- package/version.ts +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as Core from '../core';
|
|
2
2
|
import { APIResource } from '../resource';
|
|
3
|
-
import { Page, PageParams } from '../pagination';
|
|
4
3
|
import * as Shared from '../resources/shared';
|
|
4
|
+
import { Page, PageParams } from '../pagination';
|
|
5
5
|
export declare class PendingTransactions extends APIResource {
|
|
6
6
|
/**
|
|
7
7
|
* Retrieve a Pending Transaction
|
|
@@ -34,6 +34,11 @@ export interface PendingTransaction {
|
|
|
34
34
|
* for example, this is cents.
|
|
35
35
|
*/
|
|
36
36
|
amount: number;
|
|
37
|
+
/**
|
|
38
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which the Pending
|
|
39
|
+
* Transaction was completed.
|
|
40
|
+
*/
|
|
41
|
+
completed_at: string | null;
|
|
37
42
|
/**
|
|
38
43
|
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which the Pending
|
|
39
44
|
* Transaction occured.
|
|
@@ -63,7 +68,7 @@ export interface PendingTransaction {
|
|
|
63
68
|
/**
|
|
64
69
|
* The type of the route this Pending Transaction came through.
|
|
65
70
|
*/
|
|
66
|
-
route_type:
|
|
71
|
+
route_type: 'account_number' | 'card' | null;
|
|
67
72
|
/**
|
|
68
73
|
* This is an object giving more details on the network-level event that caused the
|
|
69
74
|
* Pending Transaction. For example, for a card transaction this lists the
|
|
@@ -82,6 +87,11 @@ export interface PendingTransaction {
|
|
|
82
87
|
type: 'pending_transaction';
|
|
83
88
|
}
|
|
84
89
|
export declare namespace PendingTransaction {
|
|
90
|
+
/**
|
|
91
|
+
* This is an object giving more details on the network-level event that caused the
|
|
92
|
+
* Pending Transaction. For example, for a card transaction this lists the
|
|
93
|
+
* merchant's industry and location.
|
|
94
|
+
*/
|
|
85
95
|
interface Source {
|
|
86
96
|
/**
|
|
87
97
|
* A Account Transfer Instruction object. This field will be present in the JSON
|
|
@@ -135,6 +145,12 @@ export declare namespace PendingTransaction {
|
|
|
135
145
|
* and only if `category` is equal to `inbound_funds_hold`.
|
|
136
146
|
*/
|
|
137
147
|
inbound_funds_hold: Source.InboundFundsHold | null;
|
|
148
|
+
/**
|
|
149
|
+
* A Real Time Payments Transfer Instruction object. This field will be present in
|
|
150
|
+
* the JSON response if and only if `category` is equal to
|
|
151
|
+
* `real_time_payments_transfer_instruction`.
|
|
152
|
+
*/
|
|
153
|
+
real_time_payments_transfer_instruction: Source.RealTimePaymentsTransferInstruction | null;
|
|
138
154
|
/**
|
|
139
155
|
* A Wire Drawdown Payment Instruction object. This field will be present in the
|
|
140
156
|
* JSON response if and only if `category` is equal to
|
|
@@ -148,6 +164,10 @@ export declare namespace PendingTransaction {
|
|
|
148
164
|
wire_transfer_instruction: Source.WireTransferInstruction | null;
|
|
149
165
|
}
|
|
150
166
|
namespace Source {
|
|
167
|
+
/**
|
|
168
|
+
* A Account Transfer Instruction object. This field will be present in the JSON
|
|
169
|
+
* response if and only if `category` is equal to `account_transfer_instruction`.
|
|
170
|
+
*/
|
|
151
171
|
interface AccountTransferInstruction {
|
|
152
172
|
/**
|
|
153
173
|
* The pending amount in the minor unit of the transaction's currency. For dollars,
|
|
@@ -164,6 +184,10 @@ export declare namespace PendingTransaction {
|
|
|
164
184
|
*/
|
|
165
185
|
transfer_id: string;
|
|
166
186
|
}
|
|
187
|
+
/**
|
|
188
|
+
* A ACH Transfer Instruction object. This field will be present in the JSON
|
|
189
|
+
* response if and only if `category` is equal to `ach_transfer_instruction`.
|
|
190
|
+
*/
|
|
167
191
|
interface ACHTransferInstruction {
|
|
168
192
|
/**
|
|
169
193
|
* The pending amount in the minor unit of the transaction's currency. For dollars,
|
|
@@ -175,6 +199,10 @@ export declare namespace PendingTransaction {
|
|
|
175
199
|
*/
|
|
176
200
|
transfer_id: string;
|
|
177
201
|
}
|
|
202
|
+
/**
|
|
203
|
+
* A Card Authorization object. This field will be present in the JSON response if
|
|
204
|
+
* and only if `category` is equal to `card_authorization`.
|
|
205
|
+
*/
|
|
178
206
|
interface CardAuthorization {
|
|
179
207
|
/**
|
|
180
208
|
* The pending amount in the minor unit of the transaction's currency. For dollars,
|
|
@@ -191,6 +219,15 @@ export declare namespace PendingTransaction {
|
|
|
191
219
|
* purchase), the identifier of the token that was used.
|
|
192
220
|
*/
|
|
193
221
|
digital_wallet_token_id: string | null;
|
|
222
|
+
/**
|
|
223
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) when this authorization
|
|
224
|
+
* will expire and the pending transaction will be released.
|
|
225
|
+
*/
|
|
226
|
+
expires_at: string;
|
|
227
|
+
/**
|
|
228
|
+
* The Card Authorization identifier.
|
|
229
|
+
*/
|
|
230
|
+
id: string;
|
|
194
231
|
/**
|
|
195
232
|
* The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
196
233
|
* is transacting with.
|
|
@@ -221,13 +258,25 @@ export declare namespace PendingTransaction {
|
|
|
221
258
|
* Fields specific to the `network`
|
|
222
259
|
*/
|
|
223
260
|
network_details: CardAuthorization.NetworkDetails;
|
|
261
|
+
/**
|
|
262
|
+
* The identifier of the Pending Transaction associated with this Transaction.
|
|
263
|
+
*/
|
|
264
|
+
pending_transaction_id: string | null;
|
|
224
265
|
/**
|
|
225
266
|
* The identifier of the Real-Time Decision sent to approve or decline this
|
|
226
267
|
* transaction.
|
|
227
268
|
*/
|
|
228
269
|
real_time_decision_id: string | null;
|
|
270
|
+
/**
|
|
271
|
+
* A constant representing the object's type. For this resource it will always be
|
|
272
|
+
* `card_authorization`.
|
|
273
|
+
*/
|
|
274
|
+
type: 'card_authorization';
|
|
229
275
|
}
|
|
230
276
|
namespace CardAuthorization {
|
|
277
|
+
/**
|
|
278
|
+
* Fields specific to the `network`
|
|
279
|
+
*/
|
|
231
280
|
interface NetworkDetails {
|
|
232
281
|
/**
|
|
233
282
|
* Fields specific to the `visa` network
|
|
@@ -235,6 +284,9 @@ export declare namespace PendingTransaction {
|
|
|
235
284
|
visa: NetworkDetails.Visa;
|
|
236
285
|
}
|
|
237
286
|
namespace NetworkDetails {
|
|
287
|
+
/**
|
|
288
|
+
* Fields specific to the `visa` network
|
|
289
|
+
*/
|
|
238
290
|
interface Visa {
|
|
239
291
|
/**
|
|
240
292
|
* For electronic commerce transactions, this identifies the level of security used
|
|
@@ -255,10 +307,14 @@ export declare namespace PendingTransaction {
|
|
|
255
307
|
* The method used to enter the cardholder's primary account number and card
|
|
256
308
|
* expiration date
|
|
257
309
|
*/
|
|
258
|
-
point_of_service_entry_mode: Shared.PointOfServiceEntryMode;
|
|
310
|
+
point_of_service_entry_mode: Shared.PointOfServiceEntryMode | null;
|
|
259
311
|
}
|
|
260
312
|
}
|
|
261
313
|
}
|
|
314
|
+
/**
|
|
315
|
+
* A Check Deposit Instruction object. This field will be present in the JSON
|
|
316
|
+
* response if and only if `category` is equal to `check_deposit_instruction`.
|
|
317
|
+
*/
|
|
262
318
|
interface CheckDepositInstruction {
|
|
263
319
|
/**
|
|
264
320
|
* The pending amount in the minor unit of the transaction's currency. For dollars,
|
|
@@ -285,6 +341,10 @@ export declare namespace PendingTransaction {
|
|
|
285
341
|
*/
|
|
286
342
|
front_image_file_id: string;
|
|
287
343
|
}
|
|
344
|
+
/**
|
|
345
|
+
* A Check Transfer Instruction object. This field will be present in the JSON
|
|
346
|
+
* response if and only if `category` is equal to `check_transfer_instruction`.
|
|
347
|
+
*/
|
|
288
348
|
interface CheckTransferInstruction {
|
|
289
349
|
/**
|
|
290
350
|
* The pending amount in the minor unit of the transaction's currency. For dollars,
|
|
@@ -301,6 +361,10 @@ export declare namespace PendingTransaction {
|
|
|
301
361
|
*/
|
|
302
362
|
transfer_id: string;
|
|
303
363
|
}
|
|
364
|
+
/**
|
|
365
|
+
* A Inbound Funds Hold object. This field will be present in the JSON response if
|
|
366
|
+
* and only if `category` is equal to `inbound_funds_hold`.
|
|
367
|
+
*/
|
|
304
368
|
interface InboundFundsHold {
|
|
305
369
|
/**
|
|
306
370
|
* The held amount in the minor unit of the account's currency. For dollars, for
|
|
@@ -312,6 +376,11 @@ export declare namespace PendingTransaction {
|
|
|
312
376
|
* be released before this time.
|
|
313
377
|
*/
|
|
314
378
|
automatically_releases_at: string;
|
|
379
|
+
/**
|
|
380
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the hold
|
|
381
|
+
* was created.
|
|
382
|
+
*/
|
|
383
|
+
created_at: string;
|
|
315
384
|
/**
|
|
316
385
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the hold's
|
|
317
386
|
* currency.
|
|
@@ -321,6 +390,10 @@ export declare namespace PendingTransaction {
|
|
|
321
390
|
* The ID of the Transaction for which funds were held.
|
|
322
391
|
*/
|
|
323
392
|
held_transaction_id: string | null;
|
|
393
|
+
/**
|
|
394
|
+
* The ID of the Pending Transaction representing the held funds.
|
|
395
|
+
*/
|
|
396
|
+
pending_transaction_id: string | null;
|
|
324
397
|
/**
|
|
325
398
|
* When the hold was released (if it has been released).
|
|
326
399
|
*/
|
|
@@ -330,6 +403,10 @@ export declare namespace PendingTransaction {
|
|
|
330
403
|
*/
|
|
331
404
|
status: 'held' | 'complete';
|
|
332
405
|
}
|
|
406
|
+
/**
|
|
407
|
+
* A Deprecated Card Authorization object. This field will be present in the JSON
|
|
408
|
+
* response if and only if `category` is equal to `card_route_authorization`.
|
|
409
|
+
*/
|
|
333
410
|
interface CardRouteAuthorization {
|
|
334
411
|
/**
|
|
335
412
|
* The pending amount in the minor unit of the transaction's currency. For dollars,
|
|
@@ -348,6 +425,28 @@ export declare namespace PendingTransaction {
|
|
|
348
425
|
merchant_descriptor: string;
|
|
349
426
|
merchant_state: string | null;
|
|
350
427
|
}
|
|
428
|
+
/**
|
|
429
|
+
* A Real Time Payments Transfer Instruction object. This field will be present in
|
|
430
|
+
* the JSON response if and only if `category` is equal to
|
|
431
|
+
* `real_time_payments_transfer_instruction`.
|
|
432
|
+
*/
|
|
433
|
+
interface RealTimePaymentsTransferInstruction {
|
|
434
|
+
/**
|
|
435
|
+
* The pending amount in the minor unit of the transaction's currency. For dollars,
|
|
436
|
+
* for example, this is cents.
|
|
437
|
+
*/
|
|
438
|
+
amount: number;
|
|
439
|
+
/**
|
|
440
|
+
* The identifier of the Real Time Payments Transfer that led to this Pending
|
|
441
|
+
* Transaction.
|
|
442
|
+
*/
|
|
443
|
+
transfer_id: string;
|
|
444
|
+
}
|
|
445
|
+
/**
|
|
446
|
+
* A Wire Drawdown Payment Instruction object. This field will be present in the
|
|
447
|
+
* JSON response if and only if `category` is equal to
|
|
448
|
+
* `wire_drawdown_payment_instruction`.
|
|
449
|
+
*/
|
|
351
450
|
interface WireDrawdownPaymentInstruction {
|
|
352
451
|
account_number: string;
|
|
353
452
|
/**
|
|
@@ -358,6 +457,10 @@ export declare namespace PendingTransaction {
|
|
|
358
457
|
message_to_recipient: string;
|
|
359
458
|
routing_number: string;
|
|
360
459
|
}
|
|
460
|
+
/**
|
|
461
|
+
* A Wire Transfer Instruction object. This field will be present in the JSON
|
|
462
|
+
* response if and only if `category` is equal to `wire_transfer_instruction`.
|
|
463
|
+
*/
|
|
361
464
|
interface WireTransferInstruction {
|
|
362
465
|
account_number: string;
|
|
363
466
|
/**
|
|
@@ -376,6 +479,26 @@ export interface PendingTransactionListParams extends PageParams {
|
|
|
376
479
|
* Filter pending transactions to those belonging to the specified Account.
|
|
377
480
|
*/
|
|
378
481
|
account_id?: string;
|
|
482
|
+
/**
|
|
483
|
+
* Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
484
|
+
* timestamp.
|
|
485
|
+
*/
|
|
486
|
+
'created_at.after'?: string;
|
|
487
|
+
/**
|
|
488
|
+
* Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
489
|
+
* timestamp.
|
|
490
|
+
*/
|
|
491
|
+
'created_at.before'?: string;
|
|
492
|
+
/**
|
|
493
|
+
* Return results on or after this
|
|
494
|
+
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
495
|
+
*/
|
|
496
|
+
'created_at.on_or_after'?: string;
|
|
497
|
+
/**
|
|
498
|
+
* Return results on or before this
|
|
499
|
+
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
500
|
+
*/
|
|
501
|
+
'created_at.on_or_before'?: string;
|
|
379
502
|
/**
|
|
380
503
|
* Filter pending transactions to those belonging to the specified Route.
|
|
381
504
|
*/
|
|
@@ -384,14 +507,45 @@ export interface PendingTransactionListParams extends PageParams {
|
|
|
384
507
|
* Filter pending transactions to those caused by the specified source.
|
|
385
508
|
*/
|
|
386
509
|
source_id?: string;
|
|
387
|
-
|
|
510
|
+
/**
|
|
511
|
+
* Filter Pending Transactions for those with the specified status. By default only
|
|
512
|
+
* Pending Transactions in with status `pending` will be returned. For GET
|
|
513
|
+
* requests, this should be encoded as a comma-delimited string, such as
|
|
514
|
+
* `?in=one,two,three`.
|
|
515
|
+
*/
|
|
516
|
+
'status.in'?: Array<'pending' | 'complete'>;
|
|
388
517
|
}
|
|
389
518
|
export declare namespace PendingTransactionListParams {
|
|
390
519
|
interface Status {
|
|
391
520
|
/**
|
|
392
|
-
*
|
|
393
|
-
*
|
|
521
|
+
* Filter Pending Transactions for those with the specified status. By default only
|
|
522
|
+
* Pending Transactions in with status `pending` will be returned. For GET
|
|
523
|
+
* requests, this should be encoded as a comma-delimited string, such as
|
|
524
|
+
* `?in=one,two,three`.
|
|
394
525
|
*/
|
|
395
526
|
in?: Array<'pending' | 'complete'>;
|
|
396
527
|
}
|
|
528
|
+
interface CreatedAt {
|
|
529
|
+
/**
|
|
530
|
+
* Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
531
|
+
* timestamp.
|
|
532
|
+
*/
|
|
533
|
+
after?: string;
|
|
534
|
+
/**
|
|
535
|
+
* Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
536
|
+
* timestamp.
|
|
537
|
+
*/
|
|
538
|
+
before?: string;
|
|
539
|
+
/**
|
|
540
|
+
* Return results on or after this
|
|
541
|
+
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
542
|
+
*/
|
|
543
|
+
on_or_after?: string;
|
|
544
|
+
/**
|
|
545
|
+
* Return results on or before this
|
|
546
|
+
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
547
|
+
*/
|
|
548
|
+
on_or_before?: string;
|
|
549
|
+
}
|
|
397
550
|
}
|
|
551
|
+
//# sourceMappingURL=pending-transactions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pending-transactions.d.ts","sourceRoot":"","sources":["../../../resources/pending-transactions.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pending-transactions.js","sourceRoot":"","sources":["../../../resources/pending-transactions.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAGrD,yCAAyC;AACzC,iCAA0C;
|
|
1
|
+
{"version":3,"file":"pending-transactions.js","sourceRoot":"","sources":["../../../resources/pending-transactions.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAGrD,yCAAyC;AACzC,iCAA0C;AAE1C,6CAAgD;AAEhD,MAAa,mBAAoB,SAAQ,sBAAW;IAClD;;OAEG;IACH,QAAQ,CACN,oBAA4B,EAC5B,OAA6B;QAE7B,OAAO,IAAI,CAAC,GAAG,CAAC,yBAAyB,oBAAoB,EAAE,EAAE,OAAO,CAAC,CAAC;IAC5E,CAAC;IAUD,IAAI,CACF,QAA4D,EAAE,EAC9D,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,UAAU,CAAC,uBAAuB,EAAE,uBAAuB,kBAAI,KAAK,IAAK,OAAO,EAAG,CAAC;IAClG,CAAC;CACF;AA5BD,kDA4BC;AAED,MAAa,uBAAwB,SAAQ,iBAAwB;CAAG;AAAxE,0DAAwE"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import * as Core from '../core';
|
|
2
|
+
import { APIResource } from '../resource';
|
|
3
|
+
import { Page, PageParams } from '../pagination';
|
|
4
|
+
export declare class Programs extends APIResource {
|
|
5
|
+
/**
|
|
6
|
+
* Retrieve a Program
|
|
7
|
+
*/
|
|
8
|
+
retrieve(programId: string, options?: Core.RequestOptions): Promise<Core.APIResponse<Program>>;
|
|
9
|
+
/**
|
|
10
|
+
* List Programs
|
|
11
|
+
*/
|
|
12
|
+
list(query?: ProgramListParams, options?: Core.RequestOptions): Core.PagePromise<ProgramsPage>;
|
|
13
|
+
list(options?: Core.RequestOptions): Core.PagePromise<ProgramsPage>;
|
|
14
|
+
}
|
|
15
|
+
export declare class ProgramsPage extends Page<Program> {}
|
|
16
|
+
/**
|
|
17
|
+
* Programs determine the compliance and commercial terms of Accounts. By default,
|
|
18
|
+
* you have a Commercial Banking program for managing your own funds. If you are
|
|
19
|
+
* lending or managing funds on behalf of your customers, or otherwise engaged in
|
|
20
|
+
* regulated activity, we will work together to create additional Programs for you.
|
|
21
|
+
*/
|
|
22
|
+
export interface Program {
|
|
23
|
+
/**
|
|
24
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Program
|
|
25
|
+
* was created.
|
|
26
|
+
*/
|
|
27
|
+
created_at: string;
|
|
28
|
+
/**
|
|
29
|
+
* The Program identifier.
|
|
30
|
+
*/
|
|
31
|
+
id: string;
|
|
32
|
+
/**
|
|
33
|
+
* The name of the Program.
|
|
34
|
+
*/
|
|
35
|
+
name: string;
|
|
36
|
+
/**
|
|
37
|
+
* A constant representing the object's type. For this resource it will always be
|
|
38
|
+
* `program`.
|
|
39
|
+
*/
|
|
40
|
+
type: 'program';
|
|
41
|
+
/**
|
|
42
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Program
|
|
43
|
+
* was last updated.
|
|
44
|
+
*/
|
|
45
|
+
updated_at: string;
|
|
46
|
+
}
|
|
47
|
+
export interface ProgramListParams extends PageParams {}
|
|
48
|
+
//# sourceMappingURL=programs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"programs.d.ts","sourceRoot":"","sources":["../../../resources/programs.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAC/B,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAEzC,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAEhD,qBAAa,QAAS,SAAQ,WAAW;IACvC;;OAEG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;IAI9F;;OAEG;IACH,IAAI,CAAC,KAAK,CAAC,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,WAAW,CAAC,YAAY,CAAC;IAC9F,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,WAAW,CAAC,YAAY,CAAC;CAUpE;AAED,qBAAa,YAAa,SAAQ,IAAI,CAAC,OAAO,CAAC;CAAG;AAElD;;;;;GAKG;AACH,MAAM,WAAW,OAAO;IACtB;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;;OAGG;IACH,IAAI,EAAE,SAAS,CAAC;IAEhB;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,iBAAkB,SAAQ,UAAU;CAAG"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
// File generated from our OpenAPI spec by Stainless.
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
exports.ProgramsPage = exports.Programs = void 0;
|
|
5
|
+
const resource_1 = require('../resource');
|
|
6
|
+
const core_1 = require('../core');
|
|
7
|
+
const pagination_1 = require('../pagination');
|
|
8
|
+
class Programs extends resource_1.APIResource {
|
|
9
|
+
/**
|
|
10
|
+
* Retrieve a Program
|
|
11
|
+
*/
|
|
12
|
+
retrieve(programId, options) {
|
|
13
|
+
return this.get(`/programs/${programId}`, options);
|
|
14
|
+
}
|
|
15
|
+
list(query = {}, options) {
|
|
16
|
+
if ((0, core_1.isRequestOptions)(query)) {
|
|
17
|
+
return this.list({}, query);
|
|
18
|
+
}
|
|
19
|
+
return this.getAPIList('/programs', ProgramsPage, Object.assign({ query }, options));
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.Programs = Programs;
|
|
23
|
+
class ProgramsPage extends pagination_1.Page {}
|
|
24
|
+
exports.ProgramsPage = ProgramsPage;
|
|
25
|
+
//# sourceMappingURL=programs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"programs.js","sourceRoot":"","sources":["../../../resources/programs.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAGrD,yCAAyC;AACzC,iCAA0C;AAC1C,6CAAgD;AAEhD,MAAa,QAAS,SAAQ,sBAAW;IACvC;;OAEG;IACH,QAAQ,CAAC,SAAiB,EAAE,OAA6B;QACvD,OAAO,IAAI,CAAC,GAAG,CAAC,aAAa,SAAS,EAAE,EAAE,OAAO,CAAC,CAAC;IACrD,CAAC;IAOD,IAAI,CACF,QAAiD,EAAE,EACnD,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,UAAU,CAAC,WAAW,EAAE,YAAY,kBAAI,KAAK,IAAK,OAAO,EAAG,CAAC;IAC3E,CAAC;CACF;AAtBD,4BAsBC;AAED,MAAa,YAAa,SAAQ,iBAAa;CAAG;AAAlD,oCAAkD"}
|
|
@@ -69,6 +69,9 @@ export interface RealTimeDecision {
|
|
|
69
69
|
type: 'real_time_decision';
|
|
70
70
|
}
|
|
71
71
|
export declare namespace RealTimeDecision {
|
|
72
|
+
/**
|
|
73
|
+
* Fields related to a card authorization.
|
|
74
|
+
*/
|
|
72
75
|
interface CardAuthorization {
|
|
73
76
|
/**
|
|
74
77
|
* The identifier of the Account the authorization will debit.
|
|
@@ -135,6 +138,9 @@ export declare namespace RealTimeDecision {
|
|
|
135
138
|
settlement_currency: string;
|
|
136
139
|
}
|
|
137
140
|
namespace CardAuthorization {
|
|
141
|
+
/**
|
|
142
|
+
* Fields specific to the `network`
|
|
143
|
+
*/
|
|
138
144
|
interface NetworkDetails {
|
|
139
145
|
/**
|
|
140
146
|
* Fields specific to the `visa` network
|
|
@@ -142,6 +148,9 @@ export declare namespace RealTimeDecision {
|
|
|
142
148
|
visa: NetworkDetails.Visa;
|
|
143
149
|
}
|
|
144
150
|
namespace NetworkDetails {
|
|
151
|
+
/**
|
|
152
|
+
* Fields specific to the `visa` network
|
|
153
|
+
*/
|
|
145
154
|
interface Visa {
|
|
146
155
|
/**
|
|
147
156
|
* For electronic commerce transactions, this identifies the level of security used
|
|
@@ -162,10 +171,13 @@ export declare namespace RealTimeDecision {
|
|
|
162
171
|
* The method used to enter the cardholder's primary account number and card
|
|
163
172
|
* expiration date
|
|
164
173
|
*/
|
|
165
|
-
point_of_service_entry_mode: Shared.PointOfServiceEntryMode;
|
|
174
|
+
point_of_service_entry_mode: Shared.PointOfServiceEntryMode | null;
|
|
166
175
|
}
|
|
167
176
|
}
|
|
168
177
|
}
|
|
178
|
+
/**
|
|
179
|
+
* Fields related to a digital wallet token provisioning attempt.
|
|
180
|
+
*/
|
|
169
181
|
interface DigitalWalletToken {
|
|
170
182
|
/**
|
|
171
183
|
* The identifier of the Card that is being tokenized.
|
|
@@ -187,6 +199,9 @@ export declare namespace RealTimeDecision {
|
|
|
187
199
|
*/
|
|
188
200
|
digital_wallet: 'apple_pay' | 'google_pay';
|
|
189
201
|
}
|
|
202
|
+
/**
|
|
203
|
+
* Fields related to a digital wallet authentication attempt.
|
|
204
|
+
*/
|
|
190
205
|
interface DigitalWalletAuthentication {
|
|
191
206
|
/**
|
|
192
207
|
* The identifier of the Card that is being tokenized.
|
|
@@ -237,12 +252,20 @@ export interface RealTimeDecisionActionParams {
|
|
|
237
252
|
digital_wallet_token?: RealTimeDecisionActionParams.DigitalWalletToken;
|
|
238
253
|
}
|
|
239
254
|
export declare namespace RealTimeDecisionActionParams {
|
|
255
|
+
/**
|
|
256
|
+
* If the Real-Time Decision relates to a card authorization attempt, this object
|
|
257
|
+
* contains your response to the authorization.
|
|
258
|
+
*/
|
|
240
259
|
interface CardAuthorization {
|
|
241
260
|
/**
|
|
242
261
|
* Whether the card authorization should be approved or declined.
|
|
243
262
|
*/
|
|
244
263
|
decision: 'approve' | 'decline';
|
|
245
264
|
}
|
|
265
|
+
/**
|
|
266
|
+
* If the Real-Time Decision relates to a digital wallet token provisioning
|
|
267
|
+
* attempt, this object contains your response to the attempt.
|
|
268
|
+
*/
|
|
246
269
|
interface DigitalWalletToken {
|
|
247
270
|
/**
|
|
248
271
|
* If your application approves the provisioning attempt, this contains metadata
|
|
@@ -256,6 +279,10 @@ export declare namespace RealTimeDecisionActionParams {
|
|
|
256
279
|
decline?: DigitalWalletToken.Decline;
|
|
257
280
|
}
|
|
258
281
|
namespace DigitalWalletToken {
|
|
282
|
+
/**
|
|
283
|
+
* If your application approves the provisioning attempt, this contains metadata
|
|
284
|
+
* about the digital wallet token that will be generated.
|
|
285
|
+
*/
|
|
259
286
|
interface Approval {
|
|
260
287
|
/**
|
|
261
288
|
* The identifier of the Card Profile to assign to the Digital Wallet token.
|
|
@@ -272,6 +299,10 @@ export declare namespace RealTimeDecisionActionParams {
|
|
|
272
299
|
*/
|
|
273
300
|
phone?: string;
|
|
274
301
|
}
|
|
302
|
+
/**
|
|
303
|
+
* If your application declines the provisioning attempt, this contains details
|
|
304
|
+
* about the decline.
|
|
305
|
+
*/
|
|
275
306
|
interface Decline {
|
|
276
307
|
/**
|
|
277
308
|
* Why the tokenization attempt was declined. This is for logging purposes only and
|
|
@@ -280,10 +311,84 @@ export declare namespace RealTimeDecisionActionParams {
|
|
|
280
311
|
reason?: string;
|
|
281
312
|
}
|
|
282
313
|
}
|
|
314
|
+
/**
|
|
315
|
+
* If the Real-Time Decision relates to a digital wallet authentication attempt,
|
|
316
|
+
* this object contains your response to the authentication.
|
|
317
|
+
*/
|
|
318
|
+
interface DigitalWalletAuthentication {
|
|
319
|
+
/**
|
|
320
|
+
* Whether your application was able to deliver the one-time passcode.
|
|
321
|
+
*/
|
|
322
|
+
result: 'success' | 'failure';
|
|
323
|
+
}
|
|
324
|
+
/**
|
|
325
|
+
* If the Real-Time Decision relates to a card authorization attempt, this object
|
|
326
|
+
* contains your response to the authorization.
|
|
327
|
+
*/
|
|
328
|
+
interface CardAuthorization {
|
|
329
|
+
/**
|
|
330
|
+
* Whether the card authorization should be approved or declined.
|
|
331
|
+
*/
|
|
332
|
+
decision: 'approve' | 'decline';
|
|
333
|
+
}
|
|
334
|
+
/**
|
|
335
|
+
* If the Real-Time Decision relates to a digital wallet authentication attempt,
|
|
336
|
+
* this object contains your response to the authentication.
|
|
337
|
+
*/
|
|
283
338
|
interface DigitalWalletAuthentication {
|
|
284
339
|
/**
|
|
285
340
|
* Whether your application was able to deliver the one-time passcode.
|
|
286
341
|
*/
|
|
287
342
|
result: 'success' | 'failure';
|
|
288
343
|
}
|
|
344
|
+
/**
|
|
345
|
+
* If the Real-Time Decision relates to a digital wallet token provisioning
|
|
346
|
+
* attempt, this object contains your response to the attempt.
|
|
347
|
+
*/
|
|
348
|
+
interface DigitalWalletToken {
|
|
349
|
+
/**
|
|
350
|
+
* If your application approves the provisioning attempt, this contains metadata
|
|
351
|
+
* about the digital wallet token that will be generated.
|
|
352
|
+
*/
|
|
353
|
+
approval?: DigitalWalletToken.Approval;
|
|
354
|
+
/**
|
|
355
|
+
* If your application declines the provisioning attempt, this contains details
|
|
356
|
+
* about the decline.
|
|
357
|
+
*/
|
|
358
|
+
decline?: DigitalWalletToken.Decline;
|
|
359
|
+
}
|
|
360
|
+
namespace DigitalWalletToken {
|
|
361
|
+
/**
|
|
362
|
+
* If your application approves the provisioning attempt, this contains metadata
|
|
363
|
+
* about the digital wallet token that will be generated.
|
|
364
|
+
*/
|
|
365
|
+
interface Approval {
|
|
366
|
+
/**
|
|
367
|
+
* The identifier of the Card Profile to assign to the Digital Wallet token.
|
|
368
|
+
*/
|
|
369
|
+
card_profile_id: string;
|
|
370
|
+
/**
|
|
371
|
+
* An email address that can be used to verify the cardholder via one-time
|
|
372
|
+
* passcode.
|
|
373
|
+
*/
|
|
374
|
+
email?: string;
|
|
375
|
+
/**
|
|
376
|
+
* A phone number that can be used to verify the cardholder via one-time passcode
|
|
377
|
+
* over SMS.
|
|
378
|
+
*/
|
|
379
|
+
phone?: string;
|
|
380
|
+
}
|
|
381
|
+
/**
|
|
382
|
+
* If your application declines the provisioning attempt, this contains details
|
|
383
|
+
* about the decline.
|
|
384
|
+
*/
|
|
385
|
+
interface Decline {
|
|
386
|
+
/**
|
|
387
|
+
* Why the tokenization attempt was declined. This is for logging purposes only and
|
|
388
|
+
* is not displayed to the end-user.
|
|
389
|
+
*/
|
|
390
|
+
reason?: string;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
289
393
|
}
|
|
394
|
+
//# sourceMappingURL=real-time-decisions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"real-time-decisions.d.ts","sourceRoot":"","sources":["../../../resources/real-time-decisions.ts"],"names":[],"mappings":"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"}
|