modern-treasury-mcp 2.40.0 → 2.42.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/README.md +1 -5
- package/compat.d.mts.map +1 -1
- package/compat.d.ts.map +1 -1
- package/compat.js +5 -2
- package/compat.js.map +1 -1
- package/compat.mjs +5 -2
- package/compat.mjs.map +1 -1
- package/filtering.d.mts +2 -0
- package/filtering.d.mts.map +1 -0
- package/filtering.d.ts +2 -0
- package/filtering.d.ts.map +1 -0
- package/filtering.js +21 -0
- package/filtering.js.map +1 -0
- package/filtering.mjs +14 -0
- package/filtering.mjs.map +1 -0
- package/package.json +3 -2
- package/server.d.mts.map +1 -1
- package/server.d.ts.map +1 -1
- package/server.js +3 -7
- package/server.js.map +1 -1
- package/server.mjs +3 -7
- package/server.mjs.map +1 -1
- package/src/compat.ts +5 -2
- package/src/filtering.ts +15 -0
- package/src/server.ts +3 -7
- package/src/tools/account-collection-flows/create-account-collection-flows.ts +14 -5
- package/src/tools/account-collection-flows/list-account-collection-flows.ts +17 -5
- package/src/tools/account-collection-flows/retrieve-account-collection-flows.ts +16 -5
- package/src/tools/account-collection-flows/update-account-collection-flows.ts +16 -5
- package/src/tools/account-details/create-account-details.ts +16 -5
- package/src/tools/account-details/delete-account-details.ts +5 -2
- package/src/tools/account-details/list-account-details.ts +17 -5
- package/src/tools/account-details/retrieve-account-details.ts +18 -5
- package/src/tools/bulk-requests/create-bulk-requests.ts +243 -638
- package/src/tools/bulk-requests/list-bulk-requests.ts +17 -5
- package/src/tools/bulk-requests/retrieve-bulk-requests.ts +16 -5
- package/src/tools/bulk-results/list-bulk-results.ts +7 -3
- package/src/tools/bulk-results/retrieve-bulk-results.ts +5 -2
- package/src/tools/connection-legal-entities/create-connection-legal-entities.ts +650 -503
- package/src/tools/connection-legal-entities/list-connection-legal-entities.ts +17 -5
- package/src/tools/connection-legal-entities/retrieve-connection-legal-entities.ts +16 -5
- package/src/tools/connection-legal-entities/update-connection-legal-entities.ts +16 -5
- package/src/tools/connections/list-connections.ts +17 -5
- package/src/tools/counterparties/collect-account-counterparties.ts +16 -5
- package/src/tools/counterparties/create-counterparties.ts +754 -592
- package/src/tools/counterparties/delete-counterparties.ts +5 -2
- package/src/tools/counterparties/list-counterparties.ts +11 -3
- package/src/tools/counterparties/retrieve-counterparties.ts +5 -2
- package/src/tools/counterparties/update-counterparties.ts +3 -2
- package/src/tools/documents/create-documents.ts +14 -7
- package/src/tools/documents/list-documents.ts +18 -8
- package/src/tools/documents/retrieve-documents.ts +16 -5
- package/src/tools/events/list-events.ts +17 -5
- package/src/tools/events/retrieve-events.ts +16 -5
- package/src/tools/expected-payments/create-expected-payments.ts +111 -109
- package/src/tools/expected-payments/delete-expected-payments.ts +5 -2
- package/src/tools/expected-payments/list-expected-payments.ts +10 -3
- package/src/tools/expected-payments/retrieve-expected-payments.ts +5 -2
- package/src/tools/expected-payments/update-expected-payments.ts +7 -2
- package/src/tools/external-accounts/complete-verification-external-accounts.ts +3 -2
- package/src/tools/external-accounts/create-external-accounts.ts +106 -93
- package/src/tools/external-accounts/delete-external-accounts.ts +5 -2
- package/src/tools/external-accounts/list-external-accounts.ts +11 -3
- package/src/tools/external-accounts/retrieve-external-accounts.ts +5 -2
- package/src/tools/external-accounts/update-external-accounts.ts +31 -28
- package/src/tools/external-accounts/verify-external-accounts.ts +3 -2
- package/src/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.ts +3 -2
- package/src/tools/foreign-exchange-quotes/list-foreign-exchange-quotes.ts +17 -5
- package/src/tools/foreign-exchange-quotes/retrieve-foreign-exchange-quotes.ts +16 -5
- package/src/tools/incoming-payment-details/create-async-incoming-payment-details.ts +16 -5
- package/src/tools/incoming-payment-details/list-incoming-payment-details.ts +7 -3
- package/src/tools/incoming-payment-details/retrieve-incoming-payment-details.ts +5 -2
- package/src/tools/incoming-payment-details/update-incoming-payment-details.ts +3 -2
- package/src/tools/index.ts +2 -4
- package/src/tools/internal-accounts/balance-reports/create-internal-accounts-balance-reports.ts +3 -2
- package/src/tools/internal-accounts/balance-reports/delete-internal-accounts-balance-reports.ts +5 -2
- package/src/tools/internal-accounts/balance-reports/list-internal-accounts-balance-reports.ts +17 -5
- package/src/tools/internal-accounts/balance-reports/retrieve-internal-accounts-balance-reports.ts +21 -5
- package/src/tools/internal-accounts/create-internal-accounts.ts +3 -2
- package/src/tools/internal-accounts/list-internal-accounts.ts +7 -3
- package/src/tools/internal-accounts/retrieve-internal-accounts.ts +5 -2
- package/src/tools/internal-accounts/update-account-capability-internal-accounts.ts +58 -0
- package/src/tools/internal-accounts/update-internal-accounts.ts +3 -2
- package/src/tools/invoices/add-payment-order-invoices.ts +5 -2
- package/src/tools/invoices/create-invoices.ts +49 -45
- package/src/tools/invoices/line-items/create-invoices-line-items.ts +16 -5
- package/src/tools/invoices/line-items/delete-invoices-line-items.ts +18 -5
- package/src/tools/invoices/line-items/list-invoices-line-items.ts +17 -5
- package/src/tools/invoices/line-items/retrieve-invoices-line-items.ts +18 -5
- package/src/tools/invoices/line-items/update-invoices-line-items.ts +16 -5
- package/src/tools/invoices/list-invoices.ts +7 -3
- package/src/tools/invoices/retrieve-invoices.ts +5 -2
- package/src/tools/invoices/update-invoices.ts +49 -45
- package/src/tools/ledger-account-balance-monitors/create-ledger-account-balance-monitors.ts +16 -5
- package/src/tools/ledger-account-balance-monitors/delete-ledger-account-balance-monitors.ts +16 -5
- package/src/tools/ledger-account-balance-monitors/list-ledger-account-balance-monitors.ts +17 -5
- package/src/tools/ledger-account-balance-monitors/retrieve-ledger-account-balance-monitors.ts +18 -5
- package/src/tools/ledger-account-balance-monitors/update-ledger-account-balance-monitors.ts +16 -5
- package/src/tools/ledger-account-categories/add-ledger-account-ledger-account-categories.ts +5 -2
- package/src/tools/ledger-account-categories/add-nested-category-ledger-account-categories.ts +5 -2
- package/src/tools/ledger-account-categories/create-ledger-account-categories.ts +14 -5
- package/src/tools/ledger-account-categories/delete-ledger-account-categories.ts +16 -5
- package/src/tools/ledger-account-categories/list-ledger-account-categories.ts +24 -8
- package/src/tools/ledger-account-categories/remove-ledger-account-ledger-account-categories.ts +5 -2
- package/src/tools/ledger-account-categories/remove-nested-category-ledger-account-categories.ts +5 -2
- package/src/tools/ledger-account-categories/retrieve-ledger-account-categories.ts +19 -7
- package/src/tools/ledger-account-categories/update-ledger-account-categories.ts +16 -5
- package/src/tools/ledger-account-settlements/account-entries/delete-ledger-account-settlements-account-entries.ts +5 -2
- package/src/tools/ledger-account-settlements/account-entries/update-ledger-account-settlements-account-entries.ts +3 -2
- package/src/tools/ledger-account-settlements/create-ledger-account-settlements.ts +16 -5
- package/src/tools/ledger-account-settlements/list-ledger-account-settlements.ts +17 -5
- package/src/tools/ledger-account-settlements/retrieve-ledger-account-settlements.ts +18 -5
- package/src/tools/ledger-account-settlements/update-ledger-account-settlements.ts +16 -5
- package/src/tools/ledger-account-statements/create-ledger-account-statements.ts +14 -5
- package/src/tools/ledger-account-statements/retrieve-ledger-account-statements.ts +16 -5
- package/src/tools/ledger-accounts/create-ledger-accounts.ts +14 -5
- package/src/tools/ledger-accounts/delete-ledger-accounts.ts +16 -5
- package/src/tools/ledger-accounts/list-ledger-accounts.ts +17 -9
- package/src/tools/ledger-accounts/retrieve-ledger-accounts.ts +16 -6
- package/src/tools/ledger-accounts/update-ledger-accounts.ts +14 -5
- package/src/tools/ledger-entries/list-ledger-entries.ts +31 -9
- package/src/tools/ledger-entries/retrieve-ledger-entries.ts +16 -5
- package/src/tools/ledger-entries/update-ledger-entries.ts +14 -5
- package/src/tools/ledger-transactions/create-ledger-transactions.ts +54 -57
- package/src/tools/ledger-transactions/create-partial-post-ledger-transactions.ts +3 -2
- package/src/tools/ledger-transactions/create-reversal-ledger-transactions.ts +4 -10
- package/src/tools/ledger-transactions/list-ledger-transactions.ts +21 -14
- package/src/tools/ledger-transactions/retrieve-ledger-transactions.ts +16 -5
- package/src/tools/ledger-transactions/update-ledger-transactions.ts +54 -57
- package/src/tools/ledger-transactions/versions/list-ledger-transactions-versions.ts +7 -3
- package/src/tools/ledgers/create-ledgers.ts +14 -5
- package/src/tools/ledgers/delete-ledgers.ts +16 -5
- package/src/tools/ledgers/list-ledgers.ts +17 -5
- package/src/tools/ledgers/retrieve-ledgers.ts +16 -5
- package/src/tools/ledgers/update-ledgers.ts +14 -5
- package/src/tools/legal-entities/create-legal-entities.ts +663 -508
- package/src/tools/legal-entities/list-legal-entities.ts +7 -3
- package/src/tools/legal-entities/retrieve-legal-entities.ts +5 -2
- package/src/tools/legal-entities/update-legal-entities.ts +290 -291
- package/src/tools/legal-entity-associations/create-legal-entity-associations.ts +336 -336
- package/src/tools/line-items/list-line-items.ts +17 -5
- package/src/tools/line-items/retrieve-line-items.ts +18 -5
- package/src/tools/line-items/update-line-items.ts +16 -5
- package/src/tools/payment-actions/create-payment-actions.ts +14 -5
- package/src/tools/payment-actions/list-payment-actions.ts +18 -7
- package/src/tools/payment-actions/retrieve-payment-actions.ts +16 -5
- package/src/tools/payment-actions/update-payment-actions.ts +14 -5
- package/src/tools/payment-flows/create-payment-flows.ts +14 -5
- package/src/tools/payment-flows/list-payment-flows.ts +17 -5
- package/src/tools/payment-flows/retrieve-payment-flows.ts +16 -5
- package/src/tools/payment-flows/update-payment-flows.ts +14 -5
- package/src/tools/payment-orders/create-async-payment-orders.ts +222 -215
- package/src/tools/payment-orders/create-payment-orders.ts +222 -217
- package/src/tools/payment-orders/list-payment-orders.ts +7 -3
- package/src/tools/payment-orders/retrieve-payment-orders.ts +5 -2
- package/src/tools/payment-orders/reversals/create-payment-orders-reversals.ts +74 -66
- package/src/tools/payment-orders/reversals/list-payment-orders-reversals.ts +17 -5
- package/src/tools/payment-orders/reversals/retrieve-payment-orders-reversals.ts +21 -5
- package/src/tools/payment-orders/update-payment-orders.ts +118 -108
- package/src/tools/payment-references/list-payment-references.ts +17 -5
- package/src/tools/payment-references/retireve-payment-references.ts +16 -5
- package/src/tools/payment-references/retrieve-payment-references.ts +16 -5
- package/src/tools/returns/create-returns.ts +3 -3
- package/src/tools/returns/list-returns.ts +9 -5
- package/src/tools/returns/retrieve-returns.ts +5 -2
- package/src/tools/routing-details/create-routing-details.ts +16 -5
- package/src/tools/routing-details/delete-routing-details.ts +5 -2
- package/src/tools/routing-details/list-routing-details.ts +17 -5
- package/src/tools/routing-details/retrieve-routing-details.ts +18 -5
- package/src/tools/top-level/ping-client.ts +18 -5
- package/src/tools/transactions/create-transactions.ts +3 -2
- package/src/tools/transactions/delete-transactions.ts +5 -2
- package/src/tools/transactions/line-items/create-transactions-line-items.ts +14 -5
- package/src/tools/transactions/line-items/delete-transactions-line-items.ts +5 -2
- package/src/tools/transactions/line-items/list-transactions-line-items.ts +17 -5
- package/src/tools/transactions/line-items/retrieve-transactions-line-items.ts +16 -5
- package/src/tools/transactions/list-transactions.ts +7 -3
- package/src/tools/transactions/retrieve-transactions.ts +5 -2
- package/src/tools/transactions/update-transactions.ts +3 -2
- package/src/tools/types.ts +1 -1
- package/src/tools/validations/validate-routing-number-validations.ts +18 -5
- package/src/tools/virtual-accounts/create-virtual-accounts.ts +57 -55
- package/src/tools/virtual-accounts/delete-virtual-accounts.ts +16 -5
- package/src/tools/virtual-accounts/list-virtual-accounts.ts +7 -3
- package/src/tools/virtual-accounts/retrieve-virtual-accounts.ts +16 -5
- package/src/tools/virtual-accounts/update-virtual-accounts.ts +14 -5
- package/tools/account-collection-flows/create-account-collection-flows.d.mts +1 -1
- package/tools/account-collection-flows/create-account-collection-flows.d.mts.map +1 -1
- package/tools/account-collection-flows/create-account-collection-flows.d.ts +1 -1
- package/tools/account-collection-flows/create-account-collection-flows.d.ts.map +1 -1
- package/tools/account-collection-flows/create-account-collection-flows.js +11 -3
- package/tools/account-collection-flows/create-account-collection-flows.js.map +1 -1
- package/tools/account-collection-flows/create-account-collection-flows.mjs +11 -3
- package/tools/account-collection-flows/create-account-collection-flows.mjs.map +1 -1
- package/tools/account-collection-flows/list-account-collection-flows.d.mts +1 -1
- package/tools/account-collection-flows/list-account-collection-flows.d.mts.map +1 -1
- package/tools/account-collection-flows/list-account-collection-flows.d.ts +1 -1
- package/tools/account-collection-flows/list-account-collection-flows.d.ts.map +1 -1
- package/tools/account-collection-flows/list-account-collection-flows.js +14 -3
- package/tools/account-collection-flows/list-account-collection-flows.js.map +1 -1
- package/tools/account-collection-flows/list-account-collection-flows.mjs +14 -3
- package/tools/account-collection-flows/list-account-collection-flows.mjs.map +1 -1
- package/tools/account-collection-flows/retrieve-account-collection-flows.d.mts +1 -1
- package/tools/account-collection-flows/retrieve-account-collection-flows.d.mts.map +1 -1
- package/tools/account-collection-flows/retrieve-account-collection-flows.d.ts +1 -1
- package/tools/account-collection-flows/retrieve-account-collection-flows.d.ts.map +1 -1
- package/tools/account-collection-flows/retrieve-account-collection-flows.js +13 -3
- package/tools/account-collection-flows/retrieve-account-collection-flows.js.map +1 -1
- package/tools/account-collection-flows/retrieve-account-collection-flows.mjs +13 -3
- package/tools/account-collection-flows/retrieve-account-collection-flows.mjs.map +1 -1
- package/tools/account-collection-flows/update-account-collection-flows.d.mts +1 -1
- package/tools/account-collection-flows/update-account-collection-flows.d.mts.map +1 -1
- package/tools/account-collection-flows/update-account-collection-flows.d.ts +1 -1
- package/tools/account-collection-flows/update-account-collection-flows.d.ts.map +1 -1
- package/tools/account-collection-flows/update-account-collection-flows.js +11 -3
- package/tools/account-collection-flows/update-account-collection-flows.js.map +1 -1
- package/tools/account-collection-flows/update-account-collection-flows.mjs +11 -3
- package/tools/account-collection-flows/update-account-collection-flows.mjs.map +1 -1
- package/tools/account-details/create-account-details.d.mts +1 -1
- package/tools/account-details/create-account-details.d.mts.map +1 -1
- package/tools/account-details/create-account-details.d.ts +1 -1
- package/tools/account-details/create-account-details.d.ts.map +1 -1
- package/tools/account-details/create-account-details.js +11 -3
- package/tools/account-details/create-account-details.js.map +1 -1
- package/tools/account-details/create-account-details.mjs +11 -3
- package/tools/account-details/create-account-details.mjs.map +1 -1
- package/tools/account-details/delete-account-details.d.mts +1 -1
- package/tools/account-details/delete-account-details.d.mts.map +1 -1
- package/tools/account-details/delete-account-details.d.ts +1 -1
- package/tools/account-details/delete-account-details.d.ts.map +1 -1
- package/tools/account-details/delete-account-details.js +4 -0
- package/tools/account-details/delete-account-details.js.map +1 -1
- package/tools/account-details/delete-account-details.mjs +4 -0
- package/tools/account-details/delete-account-details.mjs.map +1 -1
- package/tools/account-details/list-account-details.d.mts +1 -1
- package/tools/account-details/list-account-details.d.mts.map +1 -1
- package/tools/account-details/list-account-details.d.ts +1 -1
- package/tools/account-details/list-account-details.d.ts.map +1 -1
- package/tools/account-details/list-account-details.js +14 -3
- package/tools/account-details/list-account-details.js.map +1 -1
- package/tools/account-details/list-account-details.mjs +14 -3
- package/tools/account-details/list-account-details.mjs.map +1 -1
- package/tools/account-details/retrieve-account-details.d.mts +1 -1
- package/tools/account-details/retrieve-account-details.d.mts.map +1 -1
- package/tools/account-details/retrieve-account-details.d.ts +1 -1
- package/tools/account-details/retrieve-account-details.d.ts.map +1 -1
- package/tools/account-details/retrieve-account-details.js +13 -3
- package/tools/account-details/retrieve-account-details.js.map +1 -1
- package/tools/account-details/retrieve-account-details.mjs +13 -3
- package/tools/account-details/retrieve-account-details.mjs.map +1 -1
- package/tools/bulk-requests/create-bulk-requests.d.mts +1 -1
- package/tools/bulk-requests/create-bulk-requests.d.mts.map +1 -1
- package/tools/bulk-requests/create-bulk-requests.d.ts +1 -1
- package/tools/bulk-requests/create-bulk-requests.d.ts.map +1 -1
- package/tools/bulk-requests/create-bulk-requests.js +223 -570
- package/tools/bulk-requests/create-bulk-requests.js.map +1 -1
- package/tools/bulk-requests/create-bulk-requests.mjs +223 -570
- package/tools/bulk-requests/create-bulk-requests.mjs.map +1 -1
- package/tools/bulk-requests/list-bulk-requests.d.mts +1 -1
- package/tools/bulk-requests/list-bulk-requests.d.mts.map +1 -1
- package/tools/bulk-requests/list-bulk-requests.d.ts +1 -1
- package/tools/bulk-requests/list-bulk-requests.d.ts.map +1 -1
- package/tools/bulk-requests/list-bulk-requests.js +14 -3
- package/tools/bulk-requests/list-bulk-requests.js.map +1 -1
- package/tools/bulk-requests/list-bulk-requests.mjs +14 -3
- package/tools/bulk-requests/list-bulk-requests.mjs.map +1 -1
- package/tools/bulk-requests/retrieve-bulk-requests.d.mts +1 -1
- package/tools/bulk-requests/retrieve-bulk-requests.d.mts.map +1 -1
- package/tools/bulk-requests/retrieve-bulk-requests.d.ts +1 -1
- package/tools/bulk-requests/retrieve-bulk-requests.d.ts.map +1 -1
- package/tools/bulk-requests/retrieve-bulk-requests.js +13 -3
- package/tools/bulk-requests/retrieve-bulk-requests.js.map +1 -1
- package/tools/bulk-requests/retrieve-bulk-requests.mjs +13 -3
- package/tools/bulk-requests/retrieve-bulk-requests.mjs.map +1 -1
- package/tools/bulk-results/list-bulk-results.d.mts +1 -1
- package/tools/bulk-results/list-bulk-results.d.mts.map +1 -1
- package/tools/bulk-results/list-bulk-results.d.ts +1 -1
- package/tools/bulk-results/list-bulk-results.d.ts.map +1 -1
- package/tools/bulk-results/list-bulk-results.js +6 -1
- package/tools/bulk-results/list-bulk-results.js.map +1 -1
- package/tools/bulk-results/list-bulk-results.mjs +6 -1
- package/tools/bulk-results/list-bulk-results.mjs.map +1 -1
- package/tools/bulk-results/retrieve-bulk-results.d.mts +1 -1
- package/tools/bulk-results/retrieve-bulk-results.d.mts.map +1 -1
- package/tools/bulk-results/retrieve-bulk-results.d.ts +1 -1
- package/tools/bulk-results/retrieve-bulk-results.d.ts.map +1 -1
- package/tools/bulk-results/retrieve-bulk-results.js +4 -0
- package/tools/bulk-results/retrieve-bulk-results.js.map +1 -1
- package/tools/bulk-results/retrieve-bulk-results.mjs +4 -0
- package/tools/bulk-results/retrieve-bulk-results.mjs.map +1 -1
- package/tools/connection-legal-entities/create-connection-legal-entities.d.mts +1 -1
- package/tools/connection-legal-entities/create-connection-legal-entities.d.mts.map +1 -1
- package/tools/connection-legal-entities/create-connection-legal-entities.d.ts +1 -1
- package/tools/connection-legal-entities/create-connection-legal-entities.d.ts.map +1 -1
- package/tools/connection-legal-entities/create-connection-legal-entities.js +638 -491
- package/tools/connection-legal-entities/create-connection-legal-entities.js.map +1 -1
- package/tools/connection-legal-entities/create-connection-legal-entities.mjs +638 -491
- package/tools/connection-legal-entities/create-connection-legal-entities.mjs.map +1 -1
- package/tools/connection-legal-entities/list-connection-legal-entities.d.mts +1 -1
- package/tools/connection-legal-entities/list-connection-legal-entities.d.mts.map +1 -1
- package/tools/connection-legal-entities/list-connection-legal-entities.d.ts +1 -1
- package/tools/connection-legal-entities/list-connection-legal-entities.d.ts.map +1 -1
- package/tools/connection-legal-entities/list-connection-legal-entities.js +14 -3
- package/tools/connection-legal-entities/list-connection-legal-entities.js.map +1 -1
- package/tools/connection-legal-entities/list-connection-legal-entities.mjs +14 -3
- package/tools/connection-legal-entities/list-connection-legal-entities.mjs.map +1 -1
- package/tools/connection-legal-entities/retrieve-connection-legal-entities.d.mts +1 -1
- package/tools/connection-legal-entities/retrieve-connection-legal-entities.d.mts.map +1 -1
- package/tools/connection-legal-entities/retrieve-connection-legal-entities.d.ts +1 -1
- package/tools/connection-legal-entities/retrieve-connection-legal-entities.d.ts.map +1 -1
- package/tools/connection-legal-entities/retrieve-connection-legal-entities.js +13 -3
- package/tools/connection-legal-entities/retrieve-connection-legal-entities.js.map +1 -1
- package/tools/connection-legal-entities/retrieve-connection-legal-entities.mjs +13 -3
- package/tools/connection-legal-entities/retrieve-connection-legal-entities.mjs.map +1 -1
- package/tools/connection-legal-entities/update-connection-legal-entities.d.mts +1 -1
- package/tools/connection-legal-entities/update-connection-legal-entities.d.mts.map +1 -1
- package/tools/connection-legal-entities/update-connection-legal-entities.d.ts +1 -1
- package/tools/connection-legal-entities/update-connection-legal-entities.d.ts.map +1 -1
- package/tools/connection-legal-entities/update-connection-legal-entities.js +11 -3
- package/tools/connection-legal-entities/update-connection-legal-entities.js.map +1 -1
- package/tools/connection-legal-entities/update-connection-legal-entities.mjs +11 -3
- package/tools/connection-legal-entities/update-connection-legal-entities.mjs.map +1 -1
- package/tools/connections/list-connections.d.mts +1 -1
- package/tools/connections/list-connections.d.mts.map +1 -1
- package/tools/connections/list-connections.d.ts +1 -1
- package/tools/connections/list-connections.d.ts.map +1 -1
- package/tools/connections/list-connections.js +14 -3
- package/tools/connections/list-connections.js.map +1 -1
- package/tools/connections/list-connections.mjs +14 -3
- package/tools/connections/list-connections.mjs.map +1 -1
- package/tools/counterparties/collect-account-counterparties.d.mts +1 -1
- package/tools/counterparties/collect-account-counterparties.d.mts.map +1 -1
- package/tools/counterparties/collect-account-counterparties.d.ts +1 -1
- package/tools/counterparties/collect-account-counterparties.d.ts.map +1 -1
- package/tools/counterparties/collect-account-counterparties.js +11 -3
- package/tools/counterparties/collect-account-counterparties.js.map +1 -1
- package/tools/counterparties/collect-account-counterparties.mjs +11 -3
- package/tools/counterparties/collect-account-counterparties.mjs.map +1 -1
- package/tools/counterparties/create-counterparties.d.mts +1 -1
- package/tools/counterparties/create-counterparties.d.mts.map +1 -1
- package/tools/counterparties/create-counterparties.d.ts +1 -1
- package/tools/counterparties/create-counterparties.d.ts.map +1 -1
- package/tools/counterparties/create-counterparties.js +738 -575
- package/tools/counterparties/create-counterparties.js.map +1 -1
- package/tools/counterparties/create-counterparties.mjs +738 -575
- package/tools/counterparties/create-counterparties.mjs.map +1 -1
- package/tools/counterparties/delete-counterparties.d.mts +1 -1
- package/tools/counterparties/delete-counterparties.d.mts.map +1 -1
- package/tools/counterparties/delete-counterparties.d.ts +1 -1
- package/tools/counterparties/delete-counterparties.d.ts.map +1 -1
- package/tools/counterparties/delete-counterparties.js +4 -0
- package/tools/counterparties/delete-counterparties.js.map +1 -1
- package/tools/counterparties/delete-counterparties.mjs +4 -0
- package/tools/counterparties/delete-counterparties.mjs.map +1 -1
- package/tools/counterparties/list-counterparties.d.mts +1 -1
- package/tools/counterparties/list-counterparties.d.mts.map +1 -1
- package/tools/counterparties/list-counterparties.d.ts +1 -1
- package/tools/counterparties/list-counterparties.d.ts.map +1 -1
- package/tools/counterparties/list-counterparties.js +10 -1
- package/tools/counterparties/list-counterparties.js.map +1 -1
- package/tools/counterparties/list-counterparties.mjs +10 -1
- package/tools/counterparties/list-counterparties.mjs.map +1 -1
- package/tools/counterparties/retrieve-counterparties.d.mts +1 -1
- package/tools/counterparties/retrieve-counterparties.d.mts.map +1 -1
- package/tools/counterparties/retrieve-counterparties.d.ts +1 -1
- package/tools/counterparties/retrieve-counterparties.d.ts.map +1 -1
- package/tools/counterparties/retrieve-counterparties.js +4 -0
- package/tools/counterparties/retrieve-counterparties.js.map +1 -1
- package/tools/counterparties/retrieve-counterparties.mjs +4 -0
- package/tools/counterparties/retrieve-counterparties.mjs.map +1 -1
- package/tools/counterparties/update-counterparties.d.mts +1 -1
- package/tools/counterparties/update-counterparties.d.mts.map +1 -1
- package/tools/counterparties/update-counterparties.d.ts +1 -1
- package/tools/counterparties/update-counterparties.d.ts.map +1 -1
- package/tools/counterparties/update-counterparties.js +2 -0
- package/tools/counterparties/update-counterparties.js.map +1 -1
- package/tools/counterparties/update-counterparties.mjs +2 -0
- package/tools/counterparties/update-counterparties.mjs.map +1 -1
- package/tools/documents/create-documents.d.mts +1 -1
- package/tools/documents/create-documents.d.mts.map +1 -1
- package/tools/documents/create-documents.d.ts +1 -1
- package/tools/documents/create-documents.d.ts.map +1 -1
- package/tools/documents/create-documents.js +11 -5
- package/tools/documents/create-documents.js.map +1 -1
- package/tools/documents/create-documents.mjs +11 -5
- package/tools/documents/create-documents.mjs.map +1 -1
- package/tools/documents/list-documents.d.mts +1 -1
- package/tools/documents/list-documents.d.mts.map +1 -1
- package/tools/documents/list-documents.d.ts +1 -1
- package/tools/documents/list-documents.d.ts.map +1 -1
- package/tools/documents/list-documents.js +15 -6
- package/tools/documents/list-documents.js.map +1 -1
- package/tools/documents/list-documents.mjs +15 -6
- package/tools/documents/list-documents.mjs.map +1 -1
- package/tools/documents/retrieve-documents.d.mts +1 -1
- package/tools/documents/retrieve-documents.d.mts.map +1 -1
- package/tools/documents/retrieve-documents.d.ts +1 -1
- package/tools/documents/retrieve-documents.d.ts.map +1 -1
- package/tools/documents/retrieve-documents.js +13 -3
- package/tools/documents/retrieve-documents.js.map +1 -1
- package/tools/documents/retrieve-documents.mjs +13 -3
- package/tools/documents/retrieve-documents.mjs.map +1 -1
- package/tools/events/list-events.d.mts +1 -1
- package/tools/events/list-events.d.mts.map +1 -1
- package/tools/events/list-events.d.ts +1 -1
- package/tools/events/list-events.d.ts.map +1 -1
- package/tools/events/list-events.js +14 -3
- package/tools/events/list-events.js.map +1 -1
- package/tools/events/list-events.mjs +14 -3
- package/tools/events/list-events.mjs.map +1 -1
- package/tools/events/retrieve-events.d.mts +1 -1
- package/tools/events/retrieve-events.d.mts.map +1 -1
- package/tools/events/retrieve-events.d.ts +1 -1
- package/tools/events/retrieve-events.d.ts.map +1 -1
- package/tools/events/retrieve-events.js +13 -3
- package/tools/events/retrieve-events.js.map +1 -1
- package/tools/events/retrieve-events.mjs +13 -3
- package/tools/events/retrieve-events.mjs.map +1 -1
- package/tools/expected-payments/create-expected-payments.d.mts +1 -1
- package/tools/expected-payments/create-expected-payments.d.mts.map +1 -1
- package/tools/expected-payments/create-expected-payments.d.ts +1 -1
- package/tools/expected-payments/create-expected-payments.d.ts.map +1 -1
- package/tools/expected-payments/create-expected-payments.js +97 -93
- package/tools/expected-payments/create-expected-payments.js.map +1 -1
- package/tools/expected-payments/create-expected-payments.mjs +97 -93
- package/tools/expected-payments/create-expected-payments.mjs.map +1 -1
- package/tools/expected-payments/delete-expected-payments.d.mts +1 -1
- package/tools/expected-payments/delete-expected-payments.d.mts.map +1 -1
- package/tools/expected-payments/delete-expected-payments.d.ts +1 -1
- package/tools/expected-payments/delete-expected-payments.d.ts.map +1 -1
- package/tools/expected-payments/delete-expected-payments.js +4 -0
- package/tools/expected-payments/delete-expected-payments.js.map +1 -1
- package/tools/expected-payments/delete-expected-payments.mjs +4 -0
- package/tools/expected-payments/delete-expected-payments.mjs.map +1 -1
- package/tools/expected-payments/list-expected-payments.d.mts +1 -1
- package/tools/expected-payments/list-expected-payments.d.mts.map +1 -1
- package/tools/expected-payments/list-expected-payments.d.ts +1 -1
- package/tools/expected-payments/list-expected-payments.d.ts.map +1 -1
- package/tools/expected-payments/list-expected-payments.js +9 -1
- package/tools/expected-payments/list-expected-payments.js.map +1 -1
- package/tools/expected-payments/list-expected-payments.mjs +9 -1
- package/tools/expected-payments/list-expected-payments.mjs.map +1 -1
- package/tools/expected-payments/retrieve-expected-payments.d.mts +1 -1
- package/tools/expected-payments/retrieve-expected-payments.d.mts.map +1 -1
- package/tools/expected-payments/retrieve-expected-payments.d.ts +1 -1
- package/tools/expected-payments/retrieve-expected-payments.d.ts.map +1 -1
- package/tools/expected-payments/retrieve-expected-payments.js +4 -0
- package/tools/expected-payments/retrieve-expected-payments.js.map +1 -1
- package/tools/expected-payments/retrieve-expected-payments.mjs +4 -0
- package/tools/expected-payments/retrieve-expected-payments.mjs.map +1 -1
- package/tools/expected-payments/update-expected-payments.d.mts +1 -1
- package/tools/expected-payments/update-expected-payments.d.mts.map +1 -1
- package/tools/expected-payments/update-expected-payments.d.ts +1 -1
- package/tools/expected-payments/update-expected-payments.d.ts.map +1 -1
- package/tools/expected-payments/update-expected-payments.js +6 -0
- package/tools/expected-payments/update-expected-payments.js.map +1 -1
- package/tools/expected-payments/update-expected-payments.mjs +6 -0
- package/tools/expected-payments/update-expected-payments.mjs.map +1 -1
- package/tools/external-accounts/complete-verification-external-accounts.d.mts +1 -1
- package/tools/external-accounts/complete-verification-external-accounts.d.mts.map +1 -1
- package/tools/external-accounts/complete-verification-external-accounts.d.ts +1 -1
- package/tools/external-accounts/complete-verification-external-accounts.d.ts.map +1 -1
- package/tools/external-accounts/complete-verification-external-accounts.js +2 -0
- package/tools/external-accounts/complete-verification-external-accounts.js.map +1 -1
- package/tools/external-accounts/complete-verification-external-accounts.mjs +2 -0
- package/tools/external-accounts/complete-verification-external-accounts.mjs.map +1 -1
- package/tools/external-accounts/create-external-accounts.d.mts +1 -1
- package/tools/external-accounts/create-external-accounts.d.mts.map +1 -1
- package/tools/external-accounts/create-external-accounts.d.ts +1 -1
- package/tools/external-accounts/create-external-accounts.d.ts.map +1 -1
- package/tools/external-accounts/create-external-accounts.js +101 -86
- package/tools/external-accounts/create-external-accounts.js.map +1 -1
- package/tools/external-accounts/create-external-accounts.mjs +101 -86
- package/tools/external-accounts/create-external-accounts.mjs.map +1 -1
- package/tools/external-accounts/delete-external-accounts.d.mts +1 -1
- package/tools/external-accounts/delete-external-accounts.d.mts.map +1 -1
- package/tools/external-accounts/delete-external-accounts.d.ts +1 -1
- package/tools/external-accounts/delete-external-accounts.d.ts.map +1 -1
- package/tools/external-accounts/delete-external-accounts.js +4 -0
- package/tools/external-accounts/delete-external-accounts.js.map +1 -1
- package/tools/external-accounts/delete-external-accounts.mjs +4 -0
- package/tools/external-accounts/delete-external-accounts.mjs.map +1 -1
- package/tools/external-accounts/list-external-accounts.d.mts +1 -1
- package/tools/external-accounts/list-external-accounts.d.mts.map +1 -1
- package/tools/external-accounts/list-external-accounts.d.ts +1 -1
- package/tools/external-accounts/list-external-accounts.d.ts.map +1 -1
- package/tools/external-accounts/list-external-accounts.js +10 -1
- package/tools/external-accounts/list-external-accounts.js.map +1 -1
- package/tools/external-accounts/list-external-accounts.mjs +10 -1
- package/tools/external-accounts/list-external-accounts.mjs.map +1 -1
- package/tools/external-accounts/retrieve-external-accounts.d.mts +1 -1
- package/tools/external-accounts/retrieve-external-accounts.d.mts.map +1 -1
- package/tools/external-accounts/retrieve-external-accounts.d.ts +1 -1
- package/tools/external-accounts/retrieve-external-accounts.d.ts.map +1 -1
- package/tools/external-accounts/retrieve-external-accounts.js +4 -0
- package/tools/external-accounts/retrieve-external-accounts.js.map +1 -1
- package/tools/external-accounts/retrieve-external-accounts.mjs +4 -0
- package/tools/external-accounts/retrieve-external-accounts.mjs.map +1 -1
- package/tools/external-accounts/update-external-accounts.d.mts +1 -1
- package/tools/external-accounts/update-external-accounts.d.mts.map +1 -1
- package/tools/external-accounts/update-external-accounts.d.ts +1 -1
- package/tools/external-accounts/update-external-accounts.d.ts.map +1 -1
- package/tools/external-accounts/update-external-accounts.js +30 -26
- package/tools/external-accounts/update-external-accounts.js.map +1 -1
- package/tools/external-accounts/update-external-accounts.mjs +30 -26
- package/tools/external-accounts/update-external-accounts.mjs.map +1 -1
- package/tools/external-accounts/verify-external-accounts.d.mts +1 -1
- package/tools/external-accounts/verify-external-accounts.d.mts.map +1 -1
- package/tools/external-accounts/verify-external-accounts.d.ts +1 -1
- package/tools/external-accounts/verify-external-accounts.d.ts.map +1 -1
- package/tools/external-accounts/verify-external-accounts.js +2 -0
- package/tools/external-accounts/verify-external-accounts.js.map +1 -1
- package/tools/external-accounts/verify-external-accounts.mjs +2 -0
- package/tools/external-accounts/verify-external-accounts.mjs.map +1 -1
- package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.d.mts +1 -1
- package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.d.mts.map +1 -1
- package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.d.ts +1 -1
- package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.d.ts.map +1 -1
- package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.js +2 -0
- package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.js.map +1 -1
- package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.mjs +2 -0
- package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.mjs.map +1 -1
- package/tools/foreign-exchange-quotes/list-foreign-exchange-quotes.d.mts +1 -1
- package/tools/foreign-exchange-quotes/list-foreign-exchange-quotes.d.mts.map +1 -1
- package/tools/foreign-exchange-quotes/list-foreign-exchange-quotes.d.ts +1 -1
- package/tools/foreign-exchange-quotes/list-foreign-exchange-quotes.d.ts.map +1 -1
- package/tools/foreign-exchange-quotes/list-foreign-exchange-quotes.js +14 -3
- package/tools/foreign-exchange-quotes/list-foreign-exchange-quotes.js.map +1 -1
- package/tools/foreign-exchange-quotes/list-foreign-exchange-quotes.mjs +14 -3
- package/tools/foreign-exchange-quotes/list-foreign-exchange-quotes.mjs.map +1 -1
- package/tools/foreign-exchange-quotes/retrieve-foreign-exchange-quotes.d.mts +1 -1
- package/tools/foreign-exchange-quotes/retrieve-foreign-exchange-quotes.d.mts.map +1 -1
- package/tools/foreign-exchange-quotes/retrieve-foreign-exchange-quotes.d.ts +1 -1
- package/tools/foreign-exchange-quotes/retrieve-foreign-exchange-quotes.d.ts.map +1 -1
- package/tools/foreign-exchange-quotes/retrieve-foreign-exchange-quotes.js +13 -3
- package/tools/foreign-exchange-quotes/retrieve-foreign-exchange-quotes.js.map +1 -1
- package/tools/foreign-exchange-quotes/retrieve-foreign-exchange-quotes.mjs +13 -3
- package/tools/foreign-exchange-quotes/retrieve-foreign-exchange-quotes.mjs.map +1 -1
- package/tools/incoming-payment-details/create-async-incoming-payment-details.d.mts +1 -1
- package/tools/incoming-payment-details/create-async-incoming-payment-details.d.mts.map +1 -1
- package/tools/incoming-payment-details/create-async-incoming-payment-details.d.ts +1 -1
- package/tools/incoming-payment-details/create-async-incoming-payment-details.d.ts.map +1 -1
- package/tools/incoming-payment-details/create-async-incoming-payment-details.js +11 -3
- package/tools/incoming-payment-details/create-async-incoming-payment-details.js.map +1 -1
- package/tools/incoming-payment-details/create-async-incoming-payment-details.mjs +11 -3
- package/tools/incoming-payment-details/create-async-incoming-payment-details.mjs.map +1 -1
- package/tools/incoming-payment-details/list-incoming-payment-details.d.mts +1 -1
- package/tools/incoming-payment-details/list-incoming-payment-details.d.mts.map +1 -1
- package/tools/incoming-payment-details/list-incoming-payment-details.d.ts +1 -1
- package/tools/incoming-payment-details/list-incoming-payment-details.d.ts.map +1 -1
- package/tools/incoming-payment-details/list-incoming-payment-details.js +6 -1
- package/tools/incoming-payment-details/list-incoming-payment-details.js.map +1 -1
- package/tools/incoming-payment-details/list-incoming-payment-details.mjs +6 -1
- package/tools/incoming-payment-details/list-incoming-payment-details.mjs.map +1 -1
- package/tools/incoming-payment-details/retrieve-incoming-payment-details.d.mts +1 -1
- package/tools/incoming-payment-details/retrieve-incoming-payment-details.d.mts.map +1 -1
- package/tools/incoming-payment-details/retrieve-incoming-payment-details.d.ts +1 -1
- package/tools/incoming-payment-details/retrieve-incoming-payment-details.d.ts.map +1 -1
- package/tools/incoming-payment-details/retrieve-incoming-payment-details.js +4 -0
- package/tools/incoming-payment-details/retrieve-incoming-payment-details.js.map +1 -1
- package/tools/incoming-payment-details/retrieve-incoming-payment-details.mjs +4 -0
- package/tools/incoming-payment-details/retrieve-incoming-payment-details.mjs.map +1 -1
- package/tools/incoming-payment-details/update-incoming-payment-details.d.mts +1 -1
- package/tools/incoming-payment-details/update-incoming-payment-details.d.mts.map +1 -1
- package/tools/incoming-payment-details/update-incoming-payment-details.d.ts +1 -1
- package/tools/incoming-payment-details/update-incoming-payment-details.d.ts.map +1 -1
- package/tools/incoming-payment-details/update-incoming-payment-details.js +2 -0
- package/tools/incoming-payment-details/update-incoming-payment-details.js.map +1 -1
- package/tools/incoming-payment-details/update-incoming-payment-details.mjs +2 -0
- package/tools/incoming-payment-details/update-incoming-payment-details.mjs.map +1 -1
- package/tools/index.d.mts.map +1 -1
- package/tools/index.d.ts.map +1 -1
- package/tools/index.js +2 -4
- package/tools/index.js.map +1 -1
- package/tools/index.mjs +2 -4
- package/tools/index.mjs.map +1 -1
- package/tools/internal-accounts/balance-reports/create-internal-accounts-balance-reports.d.mts +1 -1
- package/tools/internal-accounts/balance-reports/create-internal-accounts-balance-reports.d.mts.map +1 -1
- package/tools/internal-accounts/balance-reports/create-internal-accounts-balance-reports.d.ts +1 -1
- package/tools/internal-accounts/balance-reports/create-internal-accounts-balance-reports.d.ts.map +1 -1
- package/tools/internal-accounts/balance-reports/create-internal-accounts-balance-reports.js +2 -0
- package/tools/internal-accounts/balance-reports/create-internal-accounts-balance-reports.js.map +1 -1
- package/tools/internal-accounts/balance-reports/create-internal-accounts-balance-reports.mjs +2 -0
- package/tools/internal-accounts/balance-reports/create-internal-accounts-balance-reports.mjs.map +1 -1
- package/tools/internal-accounts/balance-reports/delete-internal-accounts-balance-reports.d.mts +1 -1
- package/tools/internal-accounts/balance-reports/delete-internal-accounts-balance-reports.d.mts.map +1 -1
- package/tools/internal-accounts/balance-reports/delete-internal-accounts-balance-reports.d.ts +1 -1
- package/tools/internal-accounts/balance-reports/delete-internal-accounts-balance-reports.d.ts.map +1 -1
- package/tools/internal-accounts/balance-reports/delete-internal-accounts-balance-reports.js +4 -0
- package/tools/internal-accounts/balance-reports/delete-internal-accounts-balance-reports.js.map +1 -1
- package/tools/internal-accounts/balance-reports/delete-internal-accounts-balance-reports.mjs +4 -0
- package/tools/internal-accounts/balance-reports/delete-internal-accounts-balance-reports.mjs.map +1 -1
- package/tools/internal-accounts/balance-reports/list-internal-accounts-balance-reports.d.mts +1 -1
- package/tools/internal-accounts/balance-reports/list-internal-accounts-balance-reports.d.mts.map +1 -1
- package/tools/internal-accounts/balance-reports/list-internal-accounts-balance-reports.d.ts +1 -1
- package/tools/internal-accounts/balance-reports/list-internal-accounts-balance-reports.d.ts.map +1 -1
- package/tools/internal-accounts/balance-reports/list-internal-accounts-balance-reports.js +14 -3
- package/tools/internal-accounts/balance-reports/list-internal-accounts-balance-reports.js.map +1 -1
- package/tools/internal-accounts/balance-reports/list-internal-accounts-balance-reports.mjs +14 -3
- package/tools/internal-accounts/balance-reports/list-internal-accounts-balance-reports.mjs.map +1 -1
- package/tools/internal-accounts/balance-reports/retrieve-internal-accounts-balance-reports.d.mts +1 -1
- package/tools/internal-accounts/balance-reports/retrieve-internal-accounts-balance-reports.d.mts.map +1 -1
- package/tools/internal-accounts/balance-reports/retrieve-internal-accounts-balance-reports.d.ts +1 -1
- package/tools/internal-accounts/balance-reports/retrieve-internal-accounts-balance-reports.d.ts.map +1 -1
- package/tools/internal-accounts/balance-reports/retrieve-internal-accounts-balance-reports.js +13 -3
- package/tools/internal-accounts/balance-reports/retrieve-internal-accounts-balance-reports.js.map +1 -1
- package/tools/internal-accounts/balance-reports/retrieve-internal-accounts-balance-reports.mjs +13 -3
- package/tools/internal-accounts/balance-reports/retrieve-internal-accounts-balance-reports.mjs.map +1 -1
- package/tools/internal-accounts/create-internal-accounts.d.mts +1 -1
- package/tools/internal-accounts/create-internal-accounts.d.mts.map +1 -1
- package/tools/internal-accounts/create-internal-accounts.d.ts +1 -1
- package/tools/internal-accounts/create-internal-accounts.d.ts.map +1 -1
- package/tools/internal-accounts/create-internal-accounts.js +2 -0
- package/tools/internal-accounts/create-internal-accounts.js.map +1 -1
- package/tools/internal-accounts/create-internal-accounts.mjs +2 -0
- package/tools/internal-accounts/create-internal-accounts.mjs.map +1 -1
- package/tools/internal-accounts/list-internal-accounts.d.mts +1 -1
- package/tools/internal-accounts/list-internal-accounts.d.mts.map +1 -1
- package/tools/internal-accounts/list-internal-accounts.d.ts +1 -1
- package/tools/internal-accounts/list-internal-accounts.d.ts.map +1 -1
- package/tools/internal-accounts/list-internal-accounts.js +6 -1
- package/tools/internal-accounts/list-internal-accounts.js.map +1 -1
- package/tools/internal-accounts/list-internal-accounts.mjs +6 -1
- package/tools/internal-accounts/list-internal-accounts.mjs.map +1 -1
- package/tools/internal-accounts/retrieve-internal-accounts.d.mts +1 -1
- package/tools/internal-accounts/retrieve-internal-accounts.d.mts.map +1 -1
- package/tools/internal-accounts/retrieve-internal-accounts.d.ts +1 -1
- package/tools/internal-accounts/retrieve-internal-accounts.d.ts.map +1 -1
- package/tools/internal-accounts/retrieve-internal-accounts.js +4 -0
- package/tools/internal-accounts/retrieve-internal-accounts.js.map +1 -1
- package/tools/internal-accounts/retrieve-internal-accounts.mjs +4 -0
- package/tools/internal-accounts/retrieve-internal-accounts.mjs.map +1 -1
- package/tools/{paper-items/retrieve-paper-items.d.ts → internal-accounts/update-account-capability-internal-accounts.d.mts} +2 -2
- package/tools/internal-accounts/update-account-capability-internal-accounts.d.mts.map +1 -0
- package/tools/{paper-items/retrieve-paper-items.d.mts → internal-accounts/update-account-capability-internal-accounts.d.ts} +2 -2
- package/tools/internal-accounts/update-account-capability-internal-accounts.d.ts.map +1 -0
- package/tools/internal-accounts/update-account-capability-internal-accounts.js +47 -0
- package/tools/internal-accounts/update-account-capability-internal-accounts.js.map +1 -0
- package/tools/internal-accounts/update-account-capability-internal-accounts.mjs +43 -0
- package/tools/internal-accounts/update-account-capability-internal-accounts.mjs.map +1 -0
- package/tools/internal-accounts/update-internal-accounts.d.mts +1 -1
- package/tools/internal-accounts/update-internal-accounts.d.mts.map +1 -1
- package/tools/internal-accounts/update-internal-accounts.d.ts +1 -1
- package/tools/internal-accounts/update-internal-accounts.d.ts.map +1 -1
- package/tools/internal-accounts/update-internal-accounts.js +2 -0
- package/tools/internal-accounts/update-internal-accounts.js.map +1 -1
- package/tools/internal-accounts/update-internal-accounts.mjs +2 -0
- package/tools/internal-accounts/update-internal-accounts.mjs.map +1 -1
- package/tools/invoices/add-payment-order-invoices.d.mts +1 -1
- package/tools/invoices/add-payment-order-invoices.d.mts.map +1 -1
- package/tools/invoices/add-payment-order-invoices.d.ts +1 -1
- package/tools/invoices/add-payment-order-invoices.d.ts.map +1 -1
- package/tools/invoices/add-payment-order-invoices.js +4 -0
- package/tools/invoices/add-payment-order-invoices.js.map +1 -1
- package/tools/invoices/add-payment-order-invoices.mjs +4 -0
- package/tools/invoices/add-payment-order-invoices.mjs.map +1 -1
- package/tools/invoices/create-invoices.d.mts +1 -1
- package/tools/invoices/create-invoices.d.mts.map +1 -1
- package/tools/invoices/create-invoices.d.ts +1 -1
- package/tools/invoices/create-invoices.d.ts.map +1 -1
- package/tools/invoices/create-invoices.js +47 -42
- package/tools/invoices/create-invoices.js.map +1 -1
- package/tools/invoices/create-invoices.mjs +47 -42
- package/tools/invoices/create-invoices.mjs.map +1 -1
- package/tools/invoices/line-items/create-invoices-line-items.d.mts +1 -1
- package/tools/invoices/line-items/create-invoices-line-items.d.mts.map +1 -1
- package/tools/invoices/line-items/create-invoices-line-items.d.ts +1 -1
- package/tools/invoices/line-items/create-invoices-line-items.d.ts.map +1 -1
- package/tools/invoices/line-items/create-invoices-line-items.js +11 -3
- package/tools/invoices/line-items/create-invoices-line-items.js.map +1 -1
- package/tools/invoices/line-items/create-invoices-line-items.mjs +11 -3
- package/tools/invoices/line-items/create-invoices-line-items.mjs.map +1 -1
- package/tools/invoices/line-items/delete-invoices-line-items.d.mts +1 -1
- package/tools/invoices/line-items/delete-invoices-line-items.d.mts.map +1 -1
- package/tools/invoices/line-items/delete-invoices-line-items.d.ts +1 -1
- package/tools/invoices/line-items/delete-invoices-line-items.d.ts.map +1 -1
- package/tools/invoices/line-items/delete-invoices-line-items.js +13 -3
- package/tools/invoices/line-items/delete-invoices-line-items.js.map +1 -1
- package/tools/invoices/line-items/delete-invoices-line-items.mjs +13 -3
- package/tools/invoices/line-items/delete-invoices-line-items.mjs.map +1 -1
- package/tools/invoices/line-items/list-invoices-line-items.d.mts +1 -1
- package/tools/invoices/line-items/list-invoices-line-items.d.mts.map +1 -1
- package/tools/invoices/line-items/list-invoices-line-items.d.ts +1 -1
- package/tools/invoices/line-items/list-invoices-line-items.d.ts.map +1 -1
- package/tools/invoices/line-items/list-invoices-line-items.js +14 -3
- package/tools/invoices/line-items/list-invoices-line-items.js.map +1 -1
- package/tools/invoices/line-items/list-invoices-line-items.mjs +14 -3
- package/tools/invoices/line-items/list-invoices-line-items.mjs.map +1 -1
- package/tools/invoices/line-items/retrieve-invoices-line-items.d.mts +1 -1
- package/tools/invoices/line-items/retrieve-invoices-line-items.d.mts.map +1 -1
- package/tools/invoices/line-items/retrieve-invoices-line-items.d.ts +1 -1
- package/tools/invoices/line-items/retrieve-invoices-line-items.d.ts.map +1 -1
- package/tools/invoices/line-items/retrieve-invoices-line-items.js +13 -3
- package/tools/invoices/line-items/retrieve-invoices-line-items.js.map +1 -1
- package/tools/invoices/line-items/retrieve-invoices-line-items.mjs +13 -3
- package/tools/invoices/line-items/retrieve-invoices-line-items.mjs.map +1 -1
- package/tools/invoices/line-items/update-invoices-line-items.d.mts +1 -1
- package/tools/invoices/line-items/update-invoices-line-items.d.mts.map +1 -1
- package/tools/invoices/line-items/update-invoices-line-items.d.ts +1 -1
- package/tools/invoices/line-items/update-invoices-line-items.d.ts.map +1 -1
- package/tools/invoices/line-items/update-invoices-line-items.js +11 -3
- package/tools/invoices/line-items/update-invoices-line-items.js.map +1 -1
- package/tools/invoices/line-items/update-invoices-line-items.mjs +11 -3
- package/tools/invoices/line-items/update-invoices-line-items.mjs.map +1 -1
- package/tools/invoices/list-invoices.d.mts +1 -1
- package/tools/invoices/list-invoices.d.mts.map +1 -1
- package/tools/invoices/list-invoices.d.ts +1 -1
- package/tools/invoices/list-invoices.d.ts.map +1 -1
- package/tools/invoices/list-invoices.js +6 -1
- package/tools/invoices/list-invoices.js.map +1 -1
- package/tools/invoices/list-invoices.mjs +6 -1
- package/tools/invoices/list-invoices.mjs.map +1 -1
- package/tools/invoices/retrieve-invoices.d.mts +1 -1
- package/tools/invoices/retrieve-invoices.d.mts.map +1 -1
- package/tools/invoices/retrieve-invoices.d.ts +1 -1
- package/tools/invoices/retrieve-invoices.d.ts.map +1 -1
- package/tools/invoices/retrieve-invoices.js +4 -0
- package/tools/invoices/retrieve-invoices.js.map +1 -1
- package/tools/invoices/retrieve-invoices.mjs +4 -0
- package/tools/invoices/retrieve-invoices.mjs.map +1 -1
- package/tools/invoices/update-invoices.d.mts +1 -1
- package/tools/invoices/update-invoices.d.mts.map +1 -1
- package/tools/invoices/update-invoices.d.ts +1 -1
- package/tools/invoices/update-invoices.d.ts.map +1 -1
- package/tools/invoices/update-invoices.js +47 -42
- package/tools/invoices/update-invoices.js.map +1 -1
- package/tools/invoices/update-invoices.mjs +47 -42
- package/tools/invoices/update-invoices.mjs.map +1 -1
- package/tools/ledger-account-balance-monitors/create-ledger-account-balance-monitors.d.mts +1 -1
- package/tools/ledger-account-balance-monitors/create-ledger-account-balance-monitors.d.mts.map +1 -1
- package/tools/ledger-account-balance-monitors/create-ledger-account-balance-monitors.d.ts +1 -1
- package/tools/ledger-account-balance-monitors/create-ledger-account-balance-monitors.d.ts.map +1 -1
- package/tools/ledger-account-balance-monitors/create-ledger-account-balance-monitors.js +11 -3
- package/tools/ledger-account-balance-monitors/create-ledger-account-balance-monitors.js.map +1 -1
- package/tools/ledger-account-balance-monitors/create-ledger-account-balance-monitors.mjs +11 -3
- package/tools/ledger-account-balance-monitors/create-ledger-account-balance-monitors.mjs.map +1 -1
- package/tools/ledger-account-balance-monitors/delete-ledger-account-balance-monitors.d.mts +1 -1
- package/tools/ledger-account-balance-monitors/delete-ledger-account-balance-monitors.d.mts.map +1 -1
- package/tools/ledger-account-balance-monitors/delete-ledger-account-balance-monitors.d.ts +1 -1
- package/tools/ledger-account-balance-monitors/delete-ledger-account-balance-monitors.d.ts.map +1 -1
- package/tools/ledger-account-balance-monitors/delete-ledger-account-balance-monitors.js +13 -3
- package/tools/ledger-account-balance-monitors/delete-ledger-account-balance-monitors.js.map +1 -1
- package/tools/ledger-account-balance-monitors/delete-ledger-account-balance-monitors.mjs +13 -3
- package/tools/ledger-account-balance-monitors/delete-ledger-account-balance-monitors.mjs.map +1 -1
- package/tools/ledger-account-balance-monitors/list-ledger-account-balance-monitors.d.mts +1 -1
- package/tools/ledger-account-balance-monitors/list-ledger-account-balance-monitors.d.mts.map +1 -1
- package/tools/ledger-account-balance-monitors/list-ledger-account-balance-monitors.d.ts +1 -1
- package/tools/ledger-account-balance-monitors/list-ledger-account-balance-monitors.d.ts.map +1 -1
- package/tools/ledger-account-balance-monitors/list-ledger-account-balance-monitors.js +14 -3
- package/tools/ledger-account-balance-monitors/list-ledger-account-balance-monitors.js.map +1 -1
- package/tools/ledger-account-balance-monitors/list-ledger-account-balance-monitors.mjs +14 -3
- package/tools/ledger-account-balance-monitors/list-ledger-account-balance-monitors.mjs.map +1 -1
- package/tools/ledger-account-balance-monitors/retrieve-ledger-account-balance-monitors.d.mts +1 -1
- package/tools/ledger-account-balance-monitors/retrieve-ledger-account-balance-monitors.d.mts.map +1 -1
- package/tools/ledger-account-balance-monitors/retrieve-ledger-account-balance-monitors.d.ts +1 -1
- package/tools/ledger-account-balance-monitors/retrieve-ledger-account-balance-monitors.d.ts.map +1 -1
- package/tools/ledger-account-balance-monitors/retrieve-ledger-account-balance-monitors.js +13 -3
- package/tools/ledger-account-balance-monitors/retrieve-ledger-account-balance-monitors.js.map +1 -1
- package/tools/ledger-account-balance-monitors/retrieve-ledger-account-balance-monitors.mjs +13 -3
- package/tools/ledger-account-balance-monitors/retrieve-ledger-account-balance-monitors.mjs.map +1 -1
- package/tools/ledger-account-balance-monitors/update-ledger-account-balance-monitors.d.mts +1 -1
- package/tools/ledger-account-balance-monitors/update-ledger-account-balance-monitors.d.mts.map +1 -1
- package/tools/ledger-account-balance-monitors/update-ledger-account-balance-monitors.d.ts +1 -1
- package/tools/ledger-account-balance-monitors/update-ledger-account-balance-monitors.d.ts.map +1 -1
- package/tools/ledger-account-balance-monitors/update-ledger-account-balance-monitors.js +11 -3
- package/tools/ledger-account-balance-monitors/update-ledger-account-balance-monitors.js.map +1 -1
- package/tools/ledger-account-balance-monitors/update-ledger-account-balance-monitors.mjs +11 -3
- package/tools/ledger-account-balance-monitors/update-ledger-account-balance-monitors.mjs.map +1 -1
- package/tools/ledger-account-categories/add-ledger-account-ledger-account-categories.d.mts +1 -1
- package/tools/ledger-account-categories/add-ledger-account-ledger-account-categories.d.mts.map +1 -1
- package/tools/ledger-account-categories/add-ledger-account-ledger-account-categories.d.ts +1 -1
- package/tools/ledger-account-categories/add-ledger-account-ledger-account-categories.d.ts.map +1 -1
- package/tools/ledger-account-categories/add-ledger-account-ledger-account-categories.js +4 -0
- package/tools/ledger-account-categories/add-ledger-account-ledger-account-categories.js.map +1 -1
- package/tools/ledger-account-categories/add-ledger-account-ledger-account-categories.mjs +4 -0
- package/tools/ledger-account-categories/add-ledger-account-ledger-account-categories.mjs.map +1 -1
- package/tools/ledger-account-categories/add-nested-category-ledger-account-categories.d.mts +1 -1
- package/tools/ledger-account-categories/add-nested-category-ledger-account-categories.d.mts.map +1 -1
- package/tools/ledger-account-categories/add-nested-category-ledger-account-categories.d.ts +1 -1
- package/tools/ledger-account-categories/add-nested-category-ledger-account-categories.d.ts.map +1 -1
- package/tools/ledger-account-categories/add-nested-category-ledger-account-categories.js +4 -0
- package/tools/ledger-account-categories/add-nested-category-ledger-account-categories.js.map +1 -1
- package/tools/ledger-account-categories/add-nested-category-ledger-account-categories.mjs +4 -0
- package/tools/ledger-account-categories/add-nested-category-ledger-account-categories.mjs.map +1 -1
- package/tools/ledger-account-categories/create-ledger-account-categories.d.mts +1 -1
- package/tools/ledger-account-categories/create-ledger-account-categories.d.mts.map +1 -1
- package/tools/ledger-account-categories/create-ledger-account-categories.d.ts +1 -1
- package/tools/ledger-account-categories/create-ledger-account-categories.d.ts.map +1 -1
- package/tools/ledger-account-categories/create-ledger-account-categories.js +11 -3
- package/tools/ledger-account-categories/create-ledger-account-categories.js.map +1 -1
- package/tools/ledger-account-categories/create-ledger-account-categories.mjs +11 -3
- package/tools/ledger-account-categories/create-ledger-account-categories.mjs.map +1 -1
- package/tools/ledger-account-categories/delete-ledger-account-categories.d.mts +1 -1
- package/tools/ledger-account-categories/delete-ledger-account-categories.d.mts.map +1 -1
- package/tools/ledger-account-categories/delete-ledger-account-categories.d.ts +1 -1
- package/tools/ledger-account-categories/delete-ledger-account-categories.d.ts.map +1 -1
- package/tools/ledger-account-categories/delete-ledger-account-categories.js +13 -3
- package/tools/ledger-account-categories/delete-ledger-account-categories.js.map +1 -1
- package/tools/ledger-account-categories/delete-ledger-account-categories.mjs +13 -3
- package/tools/ledger-account-categories/delete-ledger-account-categories.mjs.map +1 -1
- package/tools/ledger-account-categories/list-ledger-account-categories.d.mts +1 -1
- package/tools/ledger-account-categories/list-ledger-account-categories.d.mts.map +1 -1
- package/tools/ledger-account-categories/list-ledger-account-categories.d.ts +1 -1
- package/tools/ledger-account-categories/list-ledger-account-categories.d.ts.map +1 -1
- package/tools/ledger-account-categories/list-ledger-account-categories.js +20 -6
- package/tools/ledger-account-categories/list-ledger-account-categories.js.map +1 -1
- package/tools/ledger-account-categories/list-ledger-account-categories.mjs +20 -6
- package/tools/ledger-account-categories/list-ledger-account-categories.mjs.map +1 -1
- package/tools/ledger-account-categories/remove-ledger-account-ledger-account-categories.d.mts +1 -1
- package/tools/ledger-account-categories/remove-ledger-account-ledger-account-categories.d.mts.map +1 -1
- package/tools/ledger-account-categories/remove-ledger-account-ledger-account-categories.d.ts +1 -1
- package/tools/ledger-account-categories/remove-ledger-account-ledger-account-categories.d.ts.map +1 -1
- package/tools/ledger-account-categories/remove-ledger-account-ledger-account-categories.js +4 -0
- package/tools/ledger-account-categories/remove-ledger-account-ledger-account-categories.js.map +1 -1
- package/tools/ledger-account-categories/remove-ledger-account-ledger-account-categories.mjs +4 -0
- package/tools/ledger-account-categories/remove-ledger-account-ledger-account-categories.mjs.map +1 -1
- package/tools/ledger-account-categories/remove-nested-category-ledger-account-categories.d.mts +1 -1
- package/tools/ledger-account-categories/remove-nested-category-ledger-account-categories.d.mts.map +1 -1
- package/tools/ledger-account-categories/remove-nested-category-ledger-account-categories.d.ts +1 -1
- package/tools/ledger-account-categories/remove-nested-category-ledger-account-categories.d.ts.map +1 -1
- package/tools/ledger-account-categories/remove-nested-category-ledger-account-categories.js +4 -0
- package/tools/ledger-account-categories/remove-nested-category-ledger-account-categories.js.map +1 -1
- package/tools/ledger-account-categories/remove-nested-category-ledger-account-categories.mjs +4 -0
- package/tools/ledger-account-categories/remove-nested-category-ledger-account-categories.mjs.map +1 -1
- package/tools/ledger-account-categories/retrieve-ledger-account-categories.d.mts +1 -1
- package/tools/ledger-account-categories/retrieve-ledger-account-categories.d.mts.map +1 -1
- package/tools/ledger-account-categories/retrieve-ledger-account-categories.d.ts +1 -1
- package/tools/ledger-account-categories/retrieve-ledger-account-categories.d.ts.map +1 -1
- package/tools/ledger-account-categories/retrieve-ledger-account-categories.js +14 -5
- package/tools/ledger-account-categories/retrieve-ledger-account-categories.js.map +1 -1
- package/tools/ledger-account-categories/retrieve-ledger-account-categories.mjs +14 -5
- package/tools/ledger-account-categories/retrieve-ledger-account-categories.mjs.map +1 -1
- package/tools/ledger-account-categories/update-ledger-account-categories.d.mts +1 -1
- package/tools/ledger-account-categories/update-ledger-account-categories.d.mts.map +1 -1
- package/tools/ledger-account-categories/update-ledger-account-categories.d.ts +1 -1
- package/tools/ledger-account-categories/update-ledger-account-categories.d.ts.map +1 -1
- package/tools/ledger-account-categories/update-ledger-account-categories.js +11 -3
- package/tools/ledger-account-categories/update-ledger-account-categories.js.map +1 -1
- package/tools/ledger-account-categories/update-ledger-account-categories.mjs +11 -3
- package/tools/ledger-account-categories/update-ledger-account-categories.mjs.map +1 -1
- package/tools/ledger-account-settlements/account-entries/delete-ledger-account-settlements-account-entries.d.mts +1 -1
- package/tools/ledger-account-settlements/account-entries/delete-ledger-account-settlements-account-entries.d.mts.map +1 -1
- package/tools/ledger-account-settlements/account-entries/delete-ledger-account-settlements-account-entries.d.ts +1 -1
- package/tools/ledger-account-settlements/account-entries/delete-ledger-account-settlements-account-entries.d.ts.map +1 -1
- package/tools/ledger-account-settlements/account-entries/delete-ledger-account-settlements-account-entries.js +4 -0
- package/tools/ledger-account-settlements/account-entries/delete-ledger-account-settlements-account-entries.js.map +1 -1
- package/tools/ledger-account-settlements/account-entries/delete-ledger-account-settlements-account-entries.mjs +4 -0
- package/tools/ledger-account-settlements/account-entries/delete-ledger-account-settlements-account-entries.mjs.map +1 -1
- package/tools/ledger-account-settlements/account-entries/update-ledger-account-settlements-account-entries.d.mts +1 -1
- package/tools/ledger-account-settlements/account-entries/update-ledger-account-settlements-account-entries.d.mts.map +1 -1
- package/tools/ledger-account-settlements/account-entries/update-ledger-account-settlements-account-entries.d.ts +1 -1
- package/tools/ledger-account-settlements/account-entries/update-ledger-account-settlements-account-entries.d.ts.map +1 -1
- package/tools/ledger-account-settlements/account-entries/update-ledger-account-settlements-account-entries.js +2 -0
- package/tools/ledger-account-settlements/account-entries/update-ledger-account-settlements-account-entries.js.map +1 -1
- package/tools/ledger-account-settlements/account-entries/update-ledger-account-settlements-account-entries.mjs +2 -0
- package/tools/ledger-account-settlements/account-entries/update-ledger-account-settlements-account-entries.mjs.map +1 -1
- package/tools/ledger-account-settlements/create-ledger-account-settlements.d.mts +1 -1
- package/tools/ledger-account-settlements/create-ledger-account-settlements.d.mts.map +1 -1
- package/tools/ledger-account-settlements/create-ledger-account-settlements.d.ts +1 -1
- package/tools/ledger-account-settlements/create-ledger-account-settlements.d.ts.map +1 -1
- package/tools/ledger-account-settlements/create-ledger-account-settlements.js +11 -3
- package/tools/ledger-account-settlements/create-ledger-account-settlements.js.map +1 -1
- package/tools/ledger-account-settlements/create-ledger-account-settlements.mjs +11 -3
- package/tools/ledger-account-settlements/create-ledger-account-settlements.mjs.map +1 -1
- package/tools/ledger-account-settlements/list-ledger-account-settlements.d.mts +1 -1
- package/tools/ledger-account-settlements/list-ledger-account-settlements.d.mts.map +1 -1
- package/tools/ledger-account-settlements/list-ledger-account-settlements.d.ts +1 -1
- package/tools/ledger-account-settlements/list-ledger-account-settlements.d.ts.map +1 -1
- package/tools/ledger-account-settlements/list-ledger-account-settlements.js +14 -3
- package/tools/ledger-account-settlements/list-ledger-account-settlements.js.map +1 -1
- package/tools/ledger-account-settlements/list-ledger-account-settlements.mjs +14 -3
- package/tools/ledger-account-settlements/list-ledger-account-settlements.mjs.map +1 -1
- package/tools/ledger-account-settlements/retrieve-ledger-account-settlements.d.mts +1 -1
- package/tools/ledger-account-settlements/retrieve-ledger-account-settlements.d.mts.map +1 -1
- package/tools/ledger-account-settlements/retrieve-ledger-account-settlements.d.ts +1 -1
- package/tools/ledger-account-settlements/retrieve-ledger-account-settlements.d.ts.map +1 -1
- package/tools/ledger-account-settlements/retrieve-ledger-account-settlements.js +13 -3
- package/tools/ledger-account-settlements/retrieve-ledger-account-settlements.js.map +1 -1
- package/tools/ledger-account-settlements/retrieve-ledger-account-settlements.mjs +13 -3
- package/tools/ledger-account-settlements/retrieve-ledger-account-settlements.mjs.map +1 -1
- package/tools/ledger-account-settlements/update-ledger-account-settlements.d.mts +1 -1
- package/tools/ledger-account-settlements/update-ledger-account-settlements.d.mts.map +1 -1
- package/tools/ledger-account-settlements/update-ledger-account-settlements.d.ts +1 -1
- package/tools/ledger-account-settlements/update-ledger-account-settlements.d.ts.map +1 -1
- package/tools/ledger-account-settlements/update-ledger-account-settlements.js +11 -3
- package/tools/ledger-account-settlements/update-ledger-account-settlements.js.map +1 -1
- package/tools/ledger-account-settlements/update-ledger-account-settlements.mjs +11 -3
- package/tools/ledger-account-settlements/update-ledger-account-settlements.mjs.map +1 -1
- package/tools/ledger-account-statements/create-ledger-account-statements.d.mts +1 -1
- package/tools/ledger-account-statements/create-ledger-account-statements.d.mts.map +1 -1
- package/tools/ledger-account-statements/create-ledger-account-statements.d.ts +1 -1
- package/tools/ledger-account-statements/create-ledger-account-statements.d.ts.map +1 -1
- package/tools/ledger-account-statements/create-ledger-account-statements.js +11 -3
- package/tools/ledger-account-statements/create-ledger-account-statements.js.map +1 -1
- package/tools/ledger-account-statements/create-ledger-account-statements.mjs +11 -3
- package/tools/ledger-account-statements/create-ledger-account-statements.mjs.map +1 -1
- package/tools/ledger-account-statements/retrieve-ledger-account-statements.d.mts +1 -1
- package/tools/ledger-account-statements/retrieve-ledger-account-statements.d.mts.map +1 -1
- package/tools/ledger-account-statements/retrieve-ledger-account-statements.d.ts +1 -1
- package/tools/ledger-account-statements/retrieve-ledger-account-statements.d.ts.map +1 -1
- package/tools/ledger-account-statements/retrieve-ledger-account-statements.js +13 -3
- package/tools/ledger-account-statements/retrieve-ledger-account-statements.js.map +1 -1
- package/tools/ledger-account-statements/retrieve-ledger-account-statements.mjs +13 -3
- package/tools/ledger-account-statements/retrieve-ledger-account-statements.mjs.map +1 -1
- package/tools/ledger-accounts/create-ledger-accounts.d.mts +1 -1
- package/tools/ledger-accounts/create-ledger-accounts.d.mts.map +1 -1
- package/tools/ledger-accounts/create-ledger-accounts.d.ts +1 -1
- package/tools/ledger-accounts/create-ledger-accounts.d.ts.map +1 -1
- package/tools/ledger-accounts/create-ledger-accounts.js +11 -3
- package/tools/ledger-accounts/create-ledger-accounts.js.map +1 -1
- package/tools/ledger-accounts/create-ledger-accounts.mjs +11 -3
- package/tools/ledger-accounts/create-ledger-accounts.mjs.map +1 -1
- package/tools/ledger-accounts/delete-ledger-accounts.d.mts +1 -1
- package/tools/ledger-accounts/delete-ledger-accounts.d.mts.map +1 -1
- package/tools/ledger-accounts/delete-ledger-accounts.d.ts +1 -1
- package/tools/ledger-accounts/delete-ledger-accounts.d.ts.map +1 -1
- package/tools/ledger-accounts/delete-ledger-accounts.js +13 -3
- package/tools/ledger-accounts/delete-ledger-accounts.js.map +1 -1
- package/tools/ledger-accounts/delete-ledger-accounts.mjs +13 -3
- package/tools/ledger-accounts/delete-ledger-accounts.mjs.map +1 -1
- package/tools/ledger-accounts/list-ledger-accounts.d.mts +1 -1
- package/tools/ledger-accounts/list-ledger-accounts.d.mts.map +1 -1
- package/tools/ledger-accounts/list-ledger-accounts.d.ts +1 -1
- package/tools/ledger-accounts/list-ledger-accounts.d.ts.map +1 -1
- package/tools/ledger-accounts/list-ledger-accounts.js +14 -7
- package/tools/ledger-accounts/list-ledger-accounts.js.map +1 -1
- package/tools/ledger-accounts/list-ledger-accounts.mjs +14 -7
- package/tools/ledger-accounts/list-ledger-accounts.mjs.map +1 -1
- package/tools/ledger-accounts/retrieve-ledger-accounts.d.mts +1 -1
- package/tools/ledger-accounts/retrieve-ledger-accounts.d.mts.map +1 -1
- package/tools/ledger-accounts/retrieve-ledger-accounts.d.ts +1 -1
- package/tools/ledger-accounts/retrieve-ledger-accounts.d.ts.map +1 -1
- package/tools/ledger-accounts/retrieve-ledger-accounts.js +13 -4
- package/tools/ledger-accounts/retrieve-ledger-accounts.js.map +1 -1
- package/tools/ledger-accounts/retrieve-ledger-accounts.mjs +13 -4
- package/tools/ledger-accounts/retrieve-ledger-accounts.mjs.map +1 -1
- package/tools/ledger-accounts/update-ledger-accounts.d.mts +1 -1
- package/tools/ledger-accounts/update-ledger-accounts.d.mts.map +1 -1
- package/tools/ledger-accounts/update-ledger-accounts.d.ts +1 -1
- package/tools/ledger-accounts/update-ledger-accounts.d.ts.map +1 -1
- package/tools/ledger-accounts/update-ledger-accounts.js +11 -3
- package/tools/ledger-accounts/update-ledger-accounts.js.map +1 -1
- package/tools/ledger-accounts/update-ledger-accounts.mjs +11 -3
- package/tools/ledger-accounts/update-ledger-accounts.mjs.map +1 -1
- package/tools/ledger-entries/list-ledger-entries.d.mts +1 -1
- package/tools/ledger-entries/list-ledger-entries.d.mts.map +1 -1
- package/tools/ledger-entries/list-ledger-entries.d.ts +1 -1
- package/tools/ledger-entries/list-ledger-entries.d.ts.map +1 -1
- package/tools/ledger-entries/list-ledger-entries.js +28 -7
- package/tools/ledger-entries/list-ledger-entries.js.map +1 -1
- package/tools/ledger-entries/list-ledger-entries.mjs +28 -7
- package/tools/ledger-entries/list-ledger-entries.mjs.map +1 -1
- package/tools/ledger-entries/retrieve-ledger-entries.d.mts +1 -1
- package/tools/ledger-entries/retrieve-ledger-entries.d.mts.map +1 -1
- package/tools/ledger-entries/retrieve-ledger-entries.d.ts +1 -1
- package/tools/ledger-entries/retrieve-ledger-entries.d.ts.map +1 -1
- package/tools/ledger-entries/retrieve-ledger-entries.js +13 -3
- package/tools/ledger-entries/retrieve-ledger-entries.js.map +1 -1
- package/tools/ledger-entries/retrieve-ledger-entries.mjs +13 -3
- package/tools/ledger-entries/retrieve-ledger-entries.mjs.map +1 -1
- package/tools/ledger-entries/update-ledger-entries.d.mts +1 -1
- package/tools/ledger-entries/update-ledger-entries.d.mts.map +1 -1
- package/tools/ledger-entries/update-ledger-entries.d.ts +1 -1
- package/tools/ledger-entries/update-ledger-entries.d.ts.map +1 -1
- package/tools/ledger-entries/update-ledger-entries.js +11 -3
- package/tools/ledger-entries/update-ledger-entries.js.map +1 -1
- package/tools/ledger-entries/update-ledger-entries.mjs +11 -3
- package/tools/ledger-entries/update-ledger-entries.mjs.map +1 -1
- package/tools/ledger-transactions/create-ledger-transactions.d.mts +1 -1
- package/tools/ledger-transactions/create-ledger-transactions.d.mts.map +1 -1
- package/tools/ledger-transactions/create-ledger-transactions.d.ts +1 -1
- package/tools/ledger-transactions/create-ledger-transactions.d.ts.map +1 -1
- package/tools/ledger-transactions/create-ledger-transactions.js +46 -48
- package/tools/ledger-transactions/create-ledger-transactions.js.map +1 -1
- package/tools/ledger-transactions/create-ledger-transactions.mjs +46 -48
- package/tools/ledger-transactions/create-ledger-transactions.mjs.map +1 -1
- package/tools/ledger-transactions/create-partial-post-ledger-transactions.d.mts +1 -1
- package/tools/ledger-transactions/create-partial-post-ledger-transactions.d.mts.map +1 -1
- package/tools/ledger-transactions/create-partial-post-ledger-transactions.d.ts +1 -1
- package/tools/ledger-transactions/create-partial-post-ledger-transactions.d.ts.map +1 -1
- package/tools/ledger-transactions/create-partial-post-ledger-transactions.js +2 -0
- package/tools/ledger-transactions/create-partial-post-ledger-transactions.js.map +1 -1
- package/tools/ledger-transactions/create-partial-post-ledger-transactions.mjs +2 -0
- package/tools/ledger-transactions/create-partial-post-ledger-transactions.mjs.map +1 -1
- package/tools/ledger-transactions/create-reversal-ledger-transactions.d.mts +1 -1
- package/tools/ledger-transactions/create-reversal-ledger-transactions.d.mts.map +1 -1
- package/tools/ledger-transactions/create-reversal-ledger-transactions.d.ts +1 -1
- package/tools/ledger-transactions/create-reversal-ledger-transactions.d.ts.map +1 -1
- package/tools/ledger-transactions/create-reversal-ledger-transactions.js +3 -8
- package/tools/ledger-transactions/create-reversal-ledger-transactions.js.map +1 -1
- package/tools/ledger-transactions/create-reversal-ledger-transactions.mjs +3 -8
- package/tools/ledger-transactions/create-reversal-ledger-transactions.mjs.map +1 -1
- package/tools/ledger-transactions/list-ledger-transactions.d.mts +1 -1
- package/tools/ledger-transactions/list-ledger-transactions.d.mts.map +1 -1
- package/tools/ledger-transactions/list-ledger-transactions.d.ts +1 -1
- package/tools/ledger-transactions/list-ledger-transactions.d.ts.map +1 -1
- package/tools/ledger-transactions/list-ledger-transactions.js +20 -12
- package/tools/ledger-transactions/list-ledger-transactions.js.map +1 -1
- package/tools/ledger-transactions/list-ledger-transactions.mjs +20 -12
- package/tools/ledger-transactions/list-ledger-transactions.mjs.map +1 -1
- package/tools/ledger-transactions/retrieve-ledger-transactions.d.mts +1 -1
- package/tools/ledger-transactions/retrieve-ledger-transactions.d.mts.map +1 -1
- package/tools/ledger-transactions/retrieve-ledger-transactions.d.ts +1 -1
- package/tools/ledger-transactions/retrieve-ledger-transactions.d.ts.map +1 -1
- package/tools/ledger-transactions/retrieve-ledger-transactions.js +13 -3
- package/tools/ledger-transactions/retrieve-ledger-transactions.js.map +1 -1
- package/tools/ledger-transactions/retrieve-ledger-transactions.mjs +13 -3
- package/tools/ledger-transactions/retrieve-ledger-transactions.mjs.map +1 -1
- package/tools/ledger-transactions/update-ledger-transactions.d.mts +1 -1
- package/tools/ledger-transactions/update-ledger-transactions.d.mts.map +1 -1
- package/tools/ledger-transactions/update-ledger-transactions.d.ts +1 -1
- package/tools/ledger-transactions/update-ledger-transactions.d.ts.map +1 -1
- package/tools/ledger-transactions/update-ledger-transactions.js +46 -48
- package/tools/ledger-transactions/update-ledger-transactions.js.map +1 -1
- package/tools/ledger-transactions/update-ledger-transactions.mjs +46 -48
- package/tools/ledger-transactions/update-ledger-transactions.mjs.map +1 -1
- package/tools/ledger-transactions/versions/list-ledger-transactions-versions.d.mts +1 -1
- package/tools/ledger-transactions/versions/list-ledger-transactions-versions.d.mts.map +1 -1
- package/tools/ledger-transactions/versions/list-ledger-transactions-versions.d.ts +1 -1
- package/tools/ledger-transactions/versions/list-ledger-transactions-versions.d.ts.map +1 -1
- package/tools/ledger-transactions/versions/list-ledger-transactions-versions.js +6 -1
- package/tools/ledger-transactions/versions/list-ledger-transactions-versions.js.map +1 -1
- package/tools/ledger-transactions/versions/list-ledger-transactions-versions.mjs +6 -1
- package/tools/ledger-transactions/versions/list-ledger-transactions-versions.mjs.map +1 -1
- package/tools/ledgers/create-ledgers.d.mts +1 -1
- package/tools/ledgers/create-ledgers.d.mts.map +1 -1
- package/tools/ledgers/create-ledgers.d.ts +1 -1
- package/tools/ledgers/create-ledgers.d.ts.map +1 -1
- package/tools/ledgers/create-ledgers.js +11 -3
- package/tools/ledgers/create-ledgers.js.map +1 -1
- package/tools/ledgers/create-ledgers.mjs +11 -3
- package/tools/ledgers/create-ledgers.mjs.map +1 -1
- package/tools/ledgers/delete-ledgers.d.mts +1 -1
- package/tools/ledgers/delete-ledgers.d.mts.map +1 -1
- package/tools/ledgers/delete-ledgers.d.ts +1 -1
- package/tools/ledgers/delete-ledgers.d.ts.map +1 -1
- package/tools/ledgers/delete-ledgers.js +13 -3
- package/tools/ledgers/delete-ledgers.js.map +1 -1
- package/tools/ledgers/delete-ledgers.mjs +13 -3
- package/tools/ledgers/delete-ledgers.mjs.map +1 -1
- package/tools/ledgers/list-ledgers.d.mts +1 -1
- package/tools/ledgers/list-ledgers.d.mts.map +1 -1
- package/tools/ledgers/list-ledgers.d.ts +1 -1
- package/tools/ledgers/list-ledgers.d.ts.map +1 -1
- package/tools/ledgers/list-ledgers.js +14 -3
- package/tools/ledgers/list-ledgers.js.map +1 -1
- package/tools/ledgers/list-ledgers.mjs +14 -3
- package/tools/ledgers/list-ledgers.mjs.map +1 -1
- package/tools/ledgers/retrieve-ledgers.d.mts +1 -1
- package/tools/ledgers/retrieve-ledgers.d.mts.map +1 -1
- package/tools/ledgers/retrieve-ledgers.d.ts +1 -1
- package/tools/ledgers/retrieve-ledgers.d.ts.map +1 -1
- package/tools/ledgers/retrieve-ledgers.js +13 -3
- package/tools/ledgers/retrieve-ledgers.js.map +1 -1
- package/tools/ledgers/retrieve-ledgers.mjs +13 -3
- package/tools/ledgers/retrieve-ledgers.mjs.map +1 -1
- package/tools/ledgers/update-ledgers.d.mts +1 -1
- package/tools/ledgers/update-ledgers.d.mts.map +1 -1
- package/tools/ledgers/update-ledgers.d.ts +1 -1
- package/tools/ledgers/update-ledgers.d.ts.map +1 -1
- package/tools/ledgers/update-ledgers.js +11 -3
- package/tools/ledgers/update-ledgers.js.map +1 -1
- package/tools/ledgers/update-ledgers.mjs +11 -3
- package/tools/ledgers/update-ledgers.mjs.map +1 -1
- package/tools/legal-entities/create-legal-entities.d.mts +1 -1
- package/tools/legal-entities/create-legal-entities.d.mts.map +1 -1
- package/tools/legal-entities/create-legal-entities.d.ts +1 -1
- package/tools/legal-entities/create-legal-entities.d.ts.map +1 -1
- package/tools/legal-entities/create-legal-entities.js +659 -504
- package/tools/legal-entities/create-legal-entities.js.map +1 -1
- package/tools/legal-entities/create-legal-entities.mjs +659 -504
- package/tools/legal-entities/create-legal-entities.mjs.map +1 -1
- package/tools/legal-entities/list-legal-entities.d.mts +1 -1
- package/tools/legal-entities/list-legal-entities.d.mts.map +1 -1
- package/tools/legal-entities/list-legal-entities.d.ts +1 -1
- package/tools/legal-entities/list-legal-entities.d.ts.map +1 -1
- package/tools/legal-entities/list-legal-entities.js +6 -1
- package/tools/legal-entities/list-legal-entities.js.map +1 -1
- package/tools/legal-entities/list-legal-entities.mjs +6 -1
- package/tools/legal-entities/list-legal-entities.mjs.map +1 -1
- package/tools/legal-entities/retrieve-legal-entities.d.mts +1 -1
- package/tools/legal-entities/retrieve-legal-entities.d.mts.map +1 -1
- package/tools/legal-entities/retrieve-legal-entities.d.ts +1 -1
- package/tools/legal-entities/retrieve-legal-entities.d.ts.map +1 -1
- package/tools/legal-entities/retrieve-legal-entities.js +4 -0
- package/tools/legal-entities/retrieve-legal-entities.js.map +1 -1
- package/tools/legal-entities/retrieve-legal-entities.mjs +4 -0
- package/tools/legal-entities/retrieve-legal-entities.mjs.map +1 -1
- package/tools/legal-entities/update-legal-entities.d.mts +1 -1
- package/tools/legal-entities/update-legal-entities.d.mts.map +1 -1
- package/tools/legal-entities/update-legal-entities.d.ts +1 -1
- package/tools/legal-entities/update-legal-entities.d.ts.map +1 -1
- package/tools/legal-entities/update-legal-entities.js +283 -282
- package/tools/legal-entities/update-legal-entities.js.map +1 -1
- package/tools/legal-entities/update-legal-entities.mjs +283 -282
- package/tools/legal-entities/update-legal-entities.mjs.map +1 -1
- package/tools/legal-entity-associations/create-legal-entity-associations.d.mts +1 -1
- package/tools/legal-entity-associations/create-legal-entity-associations.d.mts.map +1 -1
- package/tools/legal-entity-associations/create-legal-entity-associations.d.ts +1 -1
- package/tools/legal-entity-associations/create-legal-entity-associations.d.ts.map +1 -1
- package/tools/legal-entity-associations/create-legal-entity-associations.js +330 -328
- package/tools/legal-entity-associations/create-legal-entity-associations.js.map +1 -1
- package/tools/legal-entity-associations/create-legal-entity-associations.mjs +330 -328
- package/tools/legal-entity-associations/create-legal-entity-associations.mjs.map +1 -1
- package/tools/line-items/list-line-items.d.mts +1 -1
- package/tools/line-items/list-line-items.d.mts.map +1 -1
- package/tools/line-items/list-line-items.d.ts +1 -1
- package/tools/line-items/list-line-items.d.ts.map +1 -1
- package/tools/line-items/list-line-items.js +14 -3
- package/tools/line-items/list-line-items.js.map +1 -1
- package/tools/line-items/list-line-items.mjs +14 -3
- package/tools/line-items/list-line-items.mjs.map +1 -1
- package/tools/line-items/retrieve-line-items.d.mts +1 -1
- package/tools/line-items/retrieve-line-items.d.mts.map +1 -1
- package/tools/line-items/retrieve-line-items.d.ts +1 -1
- package/tools/line-items/retrieve-line-items.d.ts.map +1 -1
- package/tools/line-items/retrieve-line-items.js +13 -3
- package/tools/line-items/retrieve-line-items.js.map +1 -1
- package/tools/line-items/retrieve-line-items.mjs +13 -3
- package/tools/line-items/retrieve-line-items.mjs.map +1 -1
- package/tools/line-items/update-line-items.d.mts +1 -1
- package/tools/line-items/update-line-items.d.mts.map +1 -1
- package/tools/line-items/update-line-items.d.ts +1 -1
- package/tools/line-items/update-line-items.d.ts.map +1 -1
- package/tools/line-items/update-line-items.js +11 -3
- package/tools/line-items/update-line-items.js.map +1 -1
- package/tools/line-items/update-line-items.mjs +11 -3
- package/tools/line-items/update-line-items.mjs.map +1 -1
- package/tools/payment-actions/create-payment-actions.d.mts +1 -1
- package/tools/payment-actions/create-payment-actions.d.mts.map +1 -1
- package/tools/payment-actions/create-payment-actions.d.ts +1 -1
- package/tools/payment-actions/create-payment-actions.d.ts.map +1 -1
- package/tools/payment-actions/create-payment-actions.js +11 -3
- package/tools/payment-actions/create-payment-actions.js.map +1 -1
- package/tools/payment-actions/create-payment-actions.mjs +11 -3
- package/tools/payment-actions/create-payment-actions.mjs.map +1 -1
- package/tools/payment-actions/list-payment-actions.d.mts +1 -1
- package/tools/payment-actions/list-payment-actions.d.mts.map +1 -1
- package/tools/payment-actions/list-payment-actions.d.ts +1 -1
- package/tools/payment-actions/list-payment-actions.d.ts.map +1 -1
- package/tools/payment-actions/list-payment-actions.js +15 -5
- package/tools/payment-actions/list-payment-actions.js.map +1 -1
- package/tools/payment-actions/list-payment-actions.mjs +15 -5
- package/tools/payment-actions/list-payment-actions.mjs.map +1 -1
- package/tools/payment-actions/retrieve-payment-actions.d.mts +1 -1
- package/tools/payment-actions/retrieve-payment-actions.d.mts.map +1 -1
- package/tools/payment-actions/retrieve-payment-actions.d.ts +1 -1
- package/tools/payment-actions/retrieve-payment-actions.d.ts.map +1 -1
- package/tools/payment-actions/retrieve-payment-actions.js +13 -3
- package/tools/payment-actions/retrieve-payment-actions.js.map +1 -1
- package/tools/payment-actions/retrieve-payment-actions.mjs +13 -3
- package/tools/payment-actions/retrieve-payment-actions.mjs.map +1 -1
- package/tools/payment-actions/update-payment-actions.d.mts +1 -1
- package/tools/payment-actions/update-payment-actions.d.mts.map +1 -1
- package/tools/payment-actions/update-payment-actions.d.ts +1 -1
- package/tools/payment-actions/update-payment-actions.d.ts.map +1 -1
- package/tools/payment-actions/update-payment-actions.js +11 -3
- package/tools/payment-actions/update-payment-actions.js.map +1 -1
- package/tools/payment-actions/update-payment-actions.mjs +11 -3
- package/tools/payment-actions/update-payment-actions.mjs.map +1 -1
- package/tools/payment-flows/create-payment-flows.d.mts +1 -1
- package/tools/payment-flows/create-payment-flows.d.mts.map +1 -1
- package/tools/payment-flows/create-payment-flows.d.ts +1 -1
- package/tools/payment-flows/create-payment-flows.d.ts.map +1 -1
- package/tools/payment-flows/create-payment-flows.js +11 -3
- package/tools/payment-flows/create-payment-flows.js.map +1 -1
- package/tools/payment-flows/create-payment-flows.mjs +11 -3
- package/tools/payment-flows/create-payment-flows.mjs.map +1 -1
- package/tools/payment-flows/list-payment-flows.d.mts +1 -1
- package/tools/payment-flows/list-payment-flows.d.mts.map +1 -1
- package/tools/payment-flows/list-payment-flows.d.ts +1 -1
- package/tools/payment-flows/list-payment-flows.d.ts.map +1 -1
- package/tools/payment-flows/list-payment-flows.js +14 -3
- package/tools/payment-flows/list-payment-flows.js.map +1 -1
- package/tools/payment-flows/list-payment-flows.mjs +14 -3
- package/tools/payment-flows/list-payment-flows.mjs.map +1 -1
- package/tools/payment-flows/retrieve-payment-flows.d.mts +1 -1
- package/tools/payment-flows/retrieve-payment-flows.d.mts.map +1 -1
- package/tools/payment-flows/retrieve-payment-flows.d.ts +1 -1
- package/tools/payment-flows/retrieve-payment-flows.d.ts.map +1 -1
- package/tools/payment-flows/retrieve-payment-flows.js +13 -3
- package/tools/payment-flows/retrieve-payment-flows.js.map +1 -1
- package/tools/payment-flows/retrieve-payment-flows.mjs +13 -3
- package/tools/payment-flows/retrieve-payment-flows.mjs.map +1 -1
- package/tools/payment-flows/update-payment-flows.d.mts +1 -1
- package/tools/payment-flows/update-payment-flows.d.mts.map +1 -1
- package/tools/payment-flows/update-payment-flows.d.ts +1 -1
- package/tools/payment-flows/update-payment-flows.d.ts.map +1 -1
- package/tools/payment-flows/update-payment-flows.js +11 -3
- package/tools/payment-flows/update-payment-flows.js.map +1 -1
- package/tools/payment-flows/update-payment-flows.mjs +11 -3
- package/tools/payment-flows/update-payment-flows.mjs.map +1 -1
- package/tools/payment-orders/create-async-payment-orders.d.mts +1 -1
- package/tools/payment-orders/create-async-payment-orders.d.mts.map +1 -1
- package/tools/payment-orders/create-async-payment-orders.d.ts +1 -1
- package/tools/payment-orders/create-async-payment-orders.d.ts.map +1 -1
- package/tools/payment-orders/create-async-payment-orders.js +202 -192
- package/tools/payment-orders/create-async-payment-orders.js.map +1 -1
- package/tools/payment-orders/create-async-payment-orders.mjs +202 -192
- package/tools/payment-orders/create-async-payment-orders.mjs.map +1 -1
- package/tools/payment-orders/create-payment-orders.d.mts +1 -1
- package/tools/payment-orders/create-payment-orders.d.mts.map +1 -1
- package/tools/payment-orders/create-payment-orders.d.ts +1 -1
- package/tools/payment-orders/create-payment-orders.d.ts.map +1 -1
- package/tools/payment-orders/create-payment-orders.js +202 -194
- package/tools/payment-orders/create-payment-orders.js.map +1 -1
- package/tools/payment-orders/create-payment-orders.mjs +202 -194
- package/tools/payment-orders/create-payment-orders.mjs.map +1 -1
- package/tools/payment-orders/list-payment-orders.d.mts +1 -1
- package/tools/payment-orders/list-payment-orders.d.mts.map +1 -1
- package/tools/payment-orders/list-payment-orders.d.ts +1 -1
- package/tools/payment-orders/list-payment-orders.d.ts.map +1 -1
- package/tools/payment-orders/list-payment-orders.js +6 -1
- package/tools/payment-orders/list-payment-orders.js.map +1 -1
- package/tools/payment-orders/list-payment-orders.mjs +6 -1
- package/tools/payment-orders/list-payment-orders.mjs.map +1 -1
- package/tools/payment-orders/retrieve-payment-orders.d.mts +1 -1
- package/tools/payment-orders/retrieve-payment-orders.d.mts.map +1 -1
- package/tools/payment-orders/retrieve-payment-orders.d.ts +1 -1
- package/tools/payment-orders/retrieve-payment-orders.d.ts.map +1 -1
- package/tools/payment-orders/retrieve-payment-orders.js +4 -0
- package/tools/payment-orders/retrieve-payment-orders.js.map +1 -1
- package/tools/payment-orders/retrieve-payment-orders.mjs +4 -0
- package/tools/payment-orders/retrieve-payment-orders.mjs.map +1 -1
- package/tools/payment-orders/reversals/create-payment-orders-reversals.d.mts +1 -1
- package/tools/payment-orders/reversals/create-payment-orders-reversals.d.mts.map +1 -1
- package/tools/payment-orders/reversals/create-payment-orders-reversals.d.ts +1 -1
- package/tools/payment-orders/reversals/create-payment-orders-reversals.d.ts.map +1 -1
- package/tools/payment-orders/reversals/create-payment-orders-reversals.js +62 -56
- package/tools/payment-orders/reversals/create-payment-orders-reversals.js.map +1 -1
- package/tools/payment-orders/reversals/create-payment-orders-reversals.mjs +62 -56
- package/tools/payment-orders/reversals/create-payment-orders-reversals.mjs.map +1 -1
- package/tools/payment-orders/reversals/list-payment-orders-reversals.d.mts +1 -1
- package/tools/payment-orders/reversals/list-payment-orders-reversals.d.mts.map +1 -1
- package/tools/payment-orders/reversals/list-payment-orders-reversals.d.ts +1 -1
- package/tools/payment-orders/reversals/list-payment-orders-reversals.d.ts.map +1 -1
- package/tools/payment-orders/reversals/list-payment-orders-reversals.js +14 -3
- package/tools/payment-orders/reversals/list-payment-orders-reversals.js.map +1 -1
- package/tools/payment-orders/reversals/list-payment-orders-reversals.mjs +14 -3
- package/tools/payment-orders/reversals/list-payment-orders-reversals.mjs.map +1 -1
- package/tools/payment-orders/reversals/retrieve-payment-orders-reversals.d.mts +1 -1
- package/tools/payment-orders/reversals/retrieve-payment-orders-reversals.d.mts.map +1 -1
- package/tools/payment-orders/reversals/retrieve-payment-orders-reversals.d.ts +1 -1
- package/tools/payment-orders/reversals/retrieve-payment-orders-reversals.d.ts.map +1 -1
- package/tools/payment-orders/reversals/retrieve-payment-orders-reversals.js +13 -3
- package/tools/payment-orders/reversals/retrieve-payment-orders-reversals.js.map +1 -1
- package/tools/payment-orders/reversals/retrieve-payment-orders-reversals.mjs +13 -3
- package/tools/payment-orders/reversals/retrieve-payment-orders-reversals.mjs.map +1 -1
- package/tools/payment-orders/update-payment-orders.d.mts +1 -1
- package/tools/payment-orders/update-payment-orders.d.mts.map +1 -1
- package/tools/payment-orders/update-payment-orders.d.ts +1 -1
- package/tools/payment-orders/update-payment-orders.d.ts.map +1 -1
- package/tools/payment-orders/update-payment-orders.js +111 -99
- package/tools/payment-orders/update-payment-orders.js.map +1 -1
- package/tools/payment-orders/update-payment-orders.mjs +111 -99
- package/tools/payment-orders/update-payment-orders.mjs.map +1 -1
- package/tools/payment-references/list-payment-references.d.mts +1 -1
- package/tools/payment-references/list-payment-references.d.mts.map +1 -1
- package/tools/payment-references/list-payment-references.d.ts +1 -1
- package/tools/payment-references/list-payment-references.d.ts.map +1 -1
- package/tools/payment-references/list-payment-references.js +14 -3
- package/tools/payment-references/list-payment-references.js.map +1 -1
- package/tools/payment-references/list-payment-references.mjs +14 -3
- package/tools/payment-references/list-payment-references.mjs.map +1 -1
- package/tools/payment-references/retireve-payment-references.d.mts +1 -1
- package/tools/payment-references/retireve-payment-references.d.mts.map +1 -1
- package/tools/payment-references/retireve-payment-references.d.ts +1 -1
- package/tools/payment-references/retireve-payment-references.d.ts.map +1 -1
- package/tools/payment-references/retireve-payment-references.js +13 -3
- package/tools/payment-references/retireve-payment-references.js.map +1 -1
- package/tools/payment-references/retireve-payment-references.mjs +13 -3
- package/tools/payment-references/retireve-payment-references.mjs.map +1 -1
- package/tools/payment-references/retrieve-payment-references.d.mts +1 -1
- package/tools/payment-references/retrieve-payment-references.d.mts.map +1 -1
- package/tools/payment-references/retrieve-payment-references.d.ts +1 -1
- package/tools/payment-references/retrieve-payment-references.d.ts.map +1 -1
- package/tools/payment-references/retrieve-payment-references.js +13 -3
- package/tools/payment-references/retrieve-payment-references.js.map +1 -1
- package/tools/payment-references/retrieve-payment-references.mjs +13 -3
- package/tools/payment-references/retrieve-payment-references.mjs.map +1 -1
- package/tools/returns/create-returns.d.mts +1 -1
- package/tools/returns/create-returns.d.mts.map +1 -1
- package/tools/returns/create-returns.d.ts +1 -1
- package/tools/returns/create-returns.d.ts.map +1 -1
- package/tools/returns/create-returns.js +2 -1
- package/tools/returns/create-returns.js.map +1 -1
- package/tools/returns/create-returns.mjs +2 -1
- package/tools/returns/create-returns.mjs.map +1 -1
- package/tools/returns/list-returns.d.mts +1 -1
- package/tools/returns/list-returns.d.mts.map +1 -1
- package/tools/returns/list-returns.d.ts +1 -1
- package/tools/returns/list-returns.d.ts.map +1 -1
- package/tools/returns/list-returns.js +8 -3
- package/tools/returns/list-returns.js.map +1 -1
- package/tools/returns/list-returns.mjs +8 -3
- package/tools/returns/list-returns.mjs.map +1 -1
- package/tools/returns/retrieve-returns.d.mts +1 -1
- package/tools/returns/retrieve-returns.d.mts.map +1 -1
- package/tools/returns/retrieve-returns.d.ts +1 -1
- package/tools/returns/retrieve-returns.d.ts.map +1 -1
- package/tools/returns/retrieve-returns.js +4 -0
- package/tools/returns/retrieve-returns.js.map +1 -1
- package/tools/returns/retrieve-returns.mjs +4 -0
- package/tools/returns/retrieve-returns.mjs.map +1 -1
- package/tools/routing-details/create-routing-details.d.mts +1 -1
- package/tools/routing-details/create-routing-details.d.mts.map +1 -1
- package/tools/routing-details/create-routing-details.d.ts +1 -1
- package/tools/routing-details/create-routing-details.d.ts.map +1 -1
- package/tools/routing-details/create-routing-details.js +11 -3
- package/tools/routing-details/create-routing-details.js.map +1 -1
- package/tools/routing-details/create-routing-details.mjs +11 -3
- package/tools/routing-details/create-routing-details.mjs.map +1 -1
- package/tools/routing-details/delete-routing-details.d.mts +1 -1
- package/tools/routing-details/delete-routing-details.d.mts.map +1 -1
- package/tools/routing-details/delete-routing-details.d.ts +1 -1
- package/tools/routing-details/delete-routing-details.d.ts.map +1 -1
- package/tools/routing-details/delete-routing-details.js +4 -0
- package/tools/routing-details/delete-routing-details.js.map +1 -1
- package/tools/routing-details/delete-routing-details.mjs +4 -0
- package/tools/routing-details/delete-routing-details.mjs.map +1 -1
- package/tools/routing-details/list-routing-details.d.mts +1 -1
- package/tools/routing-details/list-routing-details.d.mts.map +1 -1
- package/tools/routing-details/list-routing-details.d.ts +1 -1
- package/tools/routing-details/list-routing-details.d.ts.map +1 -1
- package/tools/routing-details/list-routing-details.js +14 -3
- package/tools/routing-details/list-routing-details.js.map +1 -1
- package/tools/routing-details/list-routing-details.mjs +14 -3
- package/tools/routing-details/list-routing-details.mjs.map +1 -1
- package/tools/routing-details/retrieve-routing-details.d.mts +1 -1
- package/tools/routing-details/retrieve-routing-details.d.mts.map +1 -1
- package/tools/routing-details/retrieve-routing-details.d.ts +1 -1
- package/tools/routing-details/retrieve-routing-details.d.ts.map +1 -1
- package/tools/routing-details/retrieve-routing-details.js +13 -3
- package/tools/routing-details/retrieve-routing-details.js.map +1 -1
- package/tools/routing-details/retrieve-routing-details.mjs +13 -3
- package/tools/routing-details/retrieve-routing-details.mjs.map +1 -1
- package/tools/top-level/ping-client.d.mts +1 -1
- package/tools/top-level/ping-client.d.mts.map +1 -1
- package/tools/top-level/ping-client.d.ts +1 -1
- package/tools/top-level/ping-client.d.ts.map +1 -1
- package/tools/top-level/ping-client.js +15 -3
- package/tools/top-level/ping-client.js.map +1 -1
- package/tools/top-level/ping-client.mjs +15 -3
- package/tools/top-level/ping-client.mjs.map +1 -1
- package/tools/transactions/create-transactions.d.mts +1 -1
- package/tools/transactions/create-transactions.d.mts.map +1 -1
- package/tools/transactions/create-transactions.d.ts +1 -1
- package/tools/transactions/create-transactions.d.ts.map +1 -1
- package/tools/transactions/create-transactions.js +2 -0
- package/tools/transactions/create-transactions.js.map +1 -1
- package/tools/transactions/create-transactions.mjs +2 -0
- package/tools/transactions/create-transactions.mjs.map +1 -1
- package/tools/transactions/delete-transactions.d.mts +1 -1
- package/tools/transactions/delete-transactions.d.mts.map +1 -1
- package/tools/transactions/delete-transactions.d.ts +1 -1
- package/tools/transactions/delete-transactions.d.ts.map +1 -1
- package/tools/transactions/delete-transactions.js +4 -0
- package/tools/transactions/delete-transactions.js.map +1 -1
- package/tools/transactions/delete-transactions.mjs +4 -0
- package/tools/transactions/delete-transactions.mjs.map +1 -1
- package/tools/transactions/line-items/create-transactions-line-items.d.mts +1 -1
- package/tools/transactions/line-items/create-transactions-line-items.d.mts.map +1 -1
- package/tools/transactions/line-items/create-transactions-line-items.d.ts +1 -1
- package/tools/transactions/line-items/create-transactions-line-items.d.ts.map +1 -1
- package/tools/transactions/line-items/create-transactions-line-items.js +11 -3
- package/tools/transactions/line-items/create-transactions-line-items.js.map +1 -1
- package/tools/transactions/line-items/create-transactions-line-items.mjs +11 -3
- package/tools/transactions/line-items/create-transactions-line-items.mjs.map +1 -1
- package/tools/transactions/line-items/delete-transactions-line-items.d.mts +1 -1
- package/tools/transactions/line-items/delete-transactions-line-items.d.mts.map +1 -1
- package/tools/transactions/line-items/delete-transactions-line-items.d.ts +1 -1
- package/tools/transactions/line-items/delete-transactions-line-items.d.ts.map +1 -1
- package/tools/transactions/line-items/delete-transactions-line-items.js +4 -0
- package/tools/transactions/line-items/delete-transactions-line-items.js.map +1 -1
- package/tools/transactions/line-items/delete-transactions-line-items.mjs +4 -0
- package/tools/transactions/line-items/delete-transactions-line-items.mjs.map +1 -1
- package/tools/transactions/line-items/list-transactions-line-items.d.mts +1 -1
- package/tools/transactions/line-items/list-transactions-line-items.d.mts.map +1 -1
- package/tools/transactions/line-items/list-transactions-line-items.d.ts +1 -1
- package/tools/transactions/line-items/list-transactions-line-items.d.ts.map +1 -1
- package/tools/transactions/line-items/list-transactions-line-items.js +14 -3
- package/tools/transactions/line-items/list-transactions-line-items.js.map +1 -1
- package/tools/transactions/line-items/list-transactions-line-items.mjs +14 -3
- package/tools/transactions/line-items/list-transactions-line-items.mjs.map +1 -1
- package/tools/transactions/line-items/retrieve-transactions-line-items.d.mts +1 -1
- package/tools/transactions/line-items/retrieve-transactions-line-items.d.mts.map +1 -1
- package/tools/transactions/line-items/retrieve-transactions-line-items.d.ts +1 -1
- package/tools/transactions/line-items/retrieve-transactions-line-items.d.ts.map +1 -1
- package/tools/transactions/line-items/retrieve-transactions-line-items.js +13 -3
- package/tools/transactions/line-items/retrieve-transactions-line-items.js.map +1 -1
- package/tools/transactions/line-items/retrieve-transactions-line-items.mjs +13 -3
- package/tools/transactions/line-items/retrieve-transactions-line-items.mjs.map +1 -1
- package/tools/transactions/list-transactions.d.mts +1 -1
- package/tools/transactions/list-transactions.d.mts.map +1 -1
- package/tools/transactions/list-transactions.d.ts +1 -1
- package/tools/transactions/list-transactions.d.ts.map +1 -1
- package/tools/transactions/list-transactions.js +6 -1
- package/tools/transactions/list-transactions.js.map +1 -1
- package/tools/transactions/list-transactions.mjs +6 -1
- package/tools/transactions/list-transactions.mjs.map +1 -1
- package/tools/transactions/retrieve-transactions.d.mts +1 -1
- package/tools/transactions/retrieve-transactions.d.mts.map +1 -1
- package/tools/transactions/retrieve-transactions.d.ts +1 -1
- package/tools/transactions/retrieve-transactions.d.ts.map +1 -1
- package/tools/transactions/retrieve-transactions.js +4 -0
- package/tools/transactions/retrieve-transactions.js.map +1 -1
- package/tools/transactions/retrieve-transactions.mjs +4 -0
- package/tools/transactions/retrieve-transactions.mjs.map +1 -1
- package/tools/transactions/update-transactions.d.mts +1 -1
- package/tools/transactions/update-transactions.d.mts.map +1 -1
- package/tools/transactions/update-transactions.d.ts +1 -1
- package/tools/transactions/update-transactions.d.ts.map +1 -1
- package/tools/transactions/update-transactions.js +2 -0
- package/tools/transactions/update-transactions.js.map +1 -1
- package/tools/transactions/update-transactions.mjs +2 -0
- package/tools/transactions/update-transactions.mjs.map +1 -1
- package/tools/types.d.mts +1 -1
- package/tools/types.d.mts.map +1 -1
- package/tools/types.d.ts +1 -1
- package/tools/types.d.ts.map +1 -1
- package/tools/types.js.map +1 -1
- package/tools/types.mjs.map +1 -1
- package/tools/validations/validate-routing-number-validations.d.mts +1 -1
- package/tools/validations/validate-routing-number-validations.d.mts.map +1 -1
- package/tools/validations/validate-routing-number-validations.d.ts +1 -1
- package/tools/validations/validate-routing-number-validations.d.ts.map +1 -1
- package/tools/validations/validate-routing-number-validations.js +13 -3
- package/tools/validations/validate-routing-number-validations.js.map +1 -1
- package/tools/validations/validate-routing-number-validations.mjs +13 -3
- package/tools/validations/validate-routing-number-validations.mjs.map +1 -1
- package/tools/virtual-accounts/create-virtual-accounts.d.mts +1 -1
- package/tools/virtual-accounts/create-virtual-accounts.d.mts.map +1 -1
- package/tools/virtual-accounts/create-virtual-accounts.d.ts +1 -1
- package/tools/virtual-accounts/create-virtual-accounts.d.ts.map +1 -1
- package/tools/virtual-accounts/create-virtual-accounts.js +52 -48
- package/tools/virtual-accounts/create-virtual-accounts.js.map +1 -1
- package/tools/virtual-accounts/create-virtual-accounts.mjs +52 -48
- package/tools/virtual-accounts/create-virtual-accounts.mjs.map +1 -1
- package/tools/virtual-accounts/delete-virtual-accounts.d.mts +1 -1
- package/tools/virtual-accounts/delete-virtual-accounts.d.mts.map +1 -1
- package/tools/virtual-accounts/delete-virtual-accounts.d.ts +1 -1
- package/tools/virtual-accounts/delete-virtual-accounts.d.ts.map +1 -1
- package/tools/virtual-accounts/delete-virtual-accounts.js +13 -3
- package/tools/virtual-accounts/delete-virtual-accounts.js.map +1 -1
- package/tools/virtual-accounts/delete-virtual-accounts.mjs +13 -3
- package/tools/virtual-accounts/delete-virtual-accounts.mjs.map +1 -1
- package/tools/virtual-accounts/list-virtual-accounts.d.mts +1 -1
- package/tools/virtual-accounts/list-virtual-accounts.d.mts.map +1 -1
- package/tools/virtual-accounts/list-virtual-accounts.d.ts +1 -1
- package/tools/virtual-accounts/list-virtual-accounts.d.ts.map +1 -1
- package/tools/virtual-accounts/list-virtual-accounts.js +6 -1
- package/tools/virtual-accounts/list-virtual-accounts.js.map +1 -1
- package/tools/virtual-accounts/list-virtual-accounts.mjs +6 -1
- package/tools/virtual-accounts/list-virtual-accounts.mjs.map +1 -1
- package/tools/virtual-accounts/retrieve-virtual-accounts.d.mts +1 -1
- package/tools/virtual-accounts/retrieve-virtual-accounts.d.mts.map +1 -1
- package/tools/virtual-accounts/retrieve-virtual-accounts.d.ts +1 -1
- package/tools/virtual-accounts/retrieve-virtual-accounts.d.ts.map +1 -1
- package/tools/virtual-accounts/retrieve-virtual-accounts.js +13 -3
- package/tools/virtual-accounts/retrieve-virtual-accounts.js.map +1 -1
- package/tools/virtual-accounts/retrieve-virtual-accounts.mjs +13 -3
- package/tools/virtual-accounts/retrieve-virtual-accounts.mjs.map +1 -1
- package/tools/virtual-accounts/update-virtual-accounts.d.mts +1 -1
- package/tools/virtual-accounts/update-virtual-accounts.d.mts.map +1 -1
- package/tools/virtual-accounts/update-virtual-accounts.d.ts +1 -1
- package/tools/virtual-accounts/update-virtual-accounts.d.ts.map +1 -1
- package/tools/virtual-accounts/update-virtual-accounts.js +11 -3
- package/tools/virtual-accounts/update-virtual-accounts.js.map +1 -1
- package/tools/virtual-accounts/update-virtual-accounts.mjs +11 -3
- package/tools/virtual-accounts/update-virtual-accounts.mjs.map +1 -1
- package/src/tools/paper-items/list-paper-items.ts +0 -54
- package/src/tools/paper-items/retrieve-paper-items.ts +0 -36
- package/tools/paper-items/list-paper-items.d.mts +0 -45
- package/tools/paper-items/list-paper-items.d.mts.map +0 -1
- package/tools/paper-items/list-paper-items.d.ts +0 -45
- package/tools/paper-items/list-paper-items.d.ts.map +0 -1
- package/tools/paper-items/list-paper-items.js +0 -49
- package/tools/paper-items/list-paper-items.js.map +0 -1
- package/tools/paper-items/list-paper-items.mjs +0 -45
- package/tools/paper-items/list-paper-items.mjs.map +0 -1
- package/tools/paper-items/retrieve-paper-items.d.mts.map +0 -1
- package/tools/paper-items/retrieve-paper-items.d.ts.map +0 -1
- package/tools/paper-items/retrieve-paper-items.js +0 -32
- package/tools/paper-items/retrieve-paper-items.js.map +0 -1
- package/tools/paper-items/retrieve-paper-items.mjs +0 -28
- package/tools/paper-items/retrieve-paper-items.mjs.map +0 -1
package/README.md
CHANGED
|
@@ -263,6 +263,7 @@ The following tools are available in this MCP server.
|
|
|
263
263
|
- `retrieve_internal_accounts` (`read`): get internal account
|
|
264
264
|
- `update_internal_accounts` (`write`): update internal account
|
|
265
265
|
- `list_internal_accounts` (`read`): list internal accounts
|
|
266
|
+
- `update_account_capability_internal_accounts` (`write`): update account_capability
|
|
266
267
|
|
|
267
268
|
### Resource `internal_accounts.balance_reports`:
|
|
268
269
|
|
|
@@ -389,11 +390,6 @@ The following tools are available in this MCP server.
|
|
|
389
390
|
|
|
390
391
|
- `validate_routing_number_validations` (`read`): Validates the routing number information supplied without creating a routing detail
|
|
391
392
|
|
|
392
|
-
### Resource `paper_items`:
|
|
393
|
-
|
|
394
|
-
- `retrieve_paper_items` (`read`): Get details on a single paper item.
|
|
395
|
-
- `list_paper_items` (`read`): Get a list of all paper items.
|
|
396
|
-
|
|
397
393
|
### Resource `virtual_accounts`:
|
|
398
394
|
|
|
399
395
|
- `create_virtual_accounts` (`write`): create virtual_account
|
package/compat.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compat.d.mts","sourceRoot":"","sources":["src/compat.ts"],"names":[],"mappings":"OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,EAAE,QAAQ,EAAE;AAEnB,MAAM,WAAW,kBAAkB;IACjC,cAAc,EAAE,OAAO,CAAC;IACxB,SAAS,EAAE,OAAO,CAAC;IACnB,IAAI,EAAE,OAAO,CAAC;IACd,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,MAAM,GAAG,SAAS,CAAC;CACpC;AAED,eAAO,MAAM,yBAAyB,EAAE,kBAOvC,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,eAAe,GAAG,QAAQ,GAAG,aAAa,GAAG,QAAQ,CAAC;AAK/E,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,UAAU,EAAE,kBAAkB,CAiC/D,CAAC;AAEF;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"compat.d.mts","sourceRoot":"","sources":["src/compat.ts"],"names":[],"mappings":"OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,EAAE,QAAQ,EAAE;AAEnB,MAAM,WAAW,kBAAkB;IACjC,cAAc,EAAE,OAAO,CAAC;IACxB,SAAS,EAAE,OAAO,CAAC;IACnB,IAAI,EAAE,OAAO,CAAC;IACd,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,MAAM,GAAG,SAAS,CAAC;CACpC;AAED,eAAO,MAAM,yBAAyB,EAAE,kBAOvC,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,eAAe,GAAG,QAAQ,GAAG,aAAa,GAAG,QAAQ,CAAC;AAK/E,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,UAAU,EAAE,kBAAkB,CAiC/D,CAAC;AAEF;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,2BAwB/F;AAED,MAAM,MAAM,UAAU,GAAG;IACvB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IACxC,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,KAAK,CAAC,EAAE,UAAU,EAAE,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IACnC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB,CAAC;AAEF;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,SAAS,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAwCzF;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI,EAAE,CAyCvD;AAED,iBAAS,YAAY,CACnB,MAAM,EAAE,UAAU,EAClB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,EAChC,OAAO,GAAE,GAAG,CAAC,MAAM,CAAa,GAC/B,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CA6B5B;AAGD,OAAO,EAAE,YAAY,EAAE,CAAC;AAExB;;;GAGG;AACH,wBAAgB,UAAU,CAAC,MAAM,EAAE,UAAU,GAAG,UAAU,CAazD;AAoED;;GAEG;AACH,wBAAgB,WAAW,CAAC,MAAM,EAAE,UAAU,GAAG,UAAU,CA0C1D;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,UAAU,EAAE,iBAAiB,EAAE,OAAO,GAAG,UAAU,CAkCxF;AAED;;GAEG;AACH,wBAAgB,iCAAiC,CAC/C,SAAS,EAAE,QAAQ,EAAE,EACrB,YAAY,EAAE,kBAAkB,GAC/B,QAAQ,EAAE,CAiEZ"}
|
package/compat.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compat.d.ts","sourceRoot":"","sources":["src/compat.ts"],"names":[],"mappings":"OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,EAAE,QAAQ,EAAE;AAEnB,MAAM,WAAW,kBAAkB;IACjC,cAAc,EAAE,OAAO,CAAC;IACxB,SAAS,EAAE,OAAO,CAAC;IACnB,IAAI,EAAE,OAAO,CAAC;IACd,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,MAAM,GAAG,SAAS,CAAC;CACpC;AAED,eAAO,MAAM,yBAAyB,EAAE,kBAOvC,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,eAAe,GAAG,QAAQ,GAAG,aAAa,GAAG,QAAQ,CAAC;AAK/E,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,UAAU,EAAE,kBAAkB,CAiC/D,CAAC;AAEF;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"compat.d.ts","sourceRoot":"","sources":["src/compat.ts"],"names":[],"mappings":"OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,EAAE,QAAQ,EAAE;AAEnB,MAAM,WAAW,kBAAkB;IACjC,cAAc,EAAE,OAAO,CAAC;IACxB,SAAS,EAAE,OAAO,CAAC;IACnB,IAAI,EAAE,OAAO,CAAC;IACd,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,MAAM,GAAG,SAAS,CAAC;CACpC;AAED,eAAO,MAAM,yBAAyB,EAAE,kBAOvC,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,eAAe,GAAG,QAAQ,GAAG,aAAa,GAAG,QAAQ,CAAC;AAK/E,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,UAAU,EAAE,kBAAkB,CAiC/D,CAAC;AAEF;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,2BAwB/F;AAED,MAAM,MAAM,UAAU,GAAG;IACvB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IACxC,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,KAAK,CAAC,EAAE,UAAU,EAAE,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IACnC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB,CAAC;AAEF;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,SAAS,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAwCzF;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI,EAAE,CAyCvD;AAED,iBAAS,YAAY,CACnB,MAAM,EAAE,UAAU,EAClB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,EAChC,OAAO,GAAE,GAAG,CAAC,MAAM,CAAa,GAC/B,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CA6B5B;AAGD,OAAO,EAAE,YAAY,EAAE,CAAC;AAExB;;;GAGG;AACH,wBAAgB,UAAU,CAAC,MAAM,EAAE,UAAU,GAAG,UAAU,CAazD;AAoED;;GAEG;AACH,wBAAgB,WAAW,CAAC,MAAM,EAAE,UAAU,GAAG,UAAU,CA0C1D;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,UAAU,EAAE,iBAAiB,EAAE,OAAO,GAAG,UAAU,CAkCxF;AAED;;GAEG;AACH,wBAAgB,iCAAiC,CAC/C,SAAS,EAAE,QAAQ,EAAE,EACrB,YAAY,EAAE,kBAAkB,GAC/B,QAAQ,EAAE,CAiEZ"}
|
package/compat.js
CHANGED
|
@@ -64,8 +64,11 @@ function parseEmbeddedJSON(args, schema) {
|
|
|
64
64
|
if (typeof value === 'string') {
|
|
65
65
|
try {
|
|
66
66
|
const parsed = JSON.parse(value);
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
// Only parse if result is a plain object (not array, null, or primitive)
|
|
68
|
+
if (parsed && typeof parsed === 'object' && !Array.isArray(parsed)) {
|
|
69
|
+
newArgs[key] = parsed;
|
|
70
|
+
updated = true;
|
|
71
|
+
}
|
|
69
72
|
}
|
|
70
73
|
catch (e) {
|
|
71
74
|
// Not valid JSON, leave as is
|
package/compat.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compat.js","sourceRoot":"","sources":["src/compat.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"compat.js","sourceRoot":"","sources":["src/compat.ts"],"names":[],"mappings":"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"}
|
package/compat.mjs
CHANGED
|
@@ -53,8 +53,11 @@ export function parseEmbeddedJSON(args, schema) {
|
|
|
53
53
|
if (typeof value === 'string') {
|
|
54
54
|
try {
|
|
55
55
|
const parsed = JSON.parse(value);
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
// Only parse if result is a plain object (not array, null, or primitive)
|
|
57
|
+
if (parsed && typeof parsed === 'object' && !Array.isArray(parsed)) {
|
|
58
|
+
newArgs[key] = parsed;
|
|
59
|
+
updated = true;
|
|
60
|
+
}
|
|
58
61
|
}
|
|
59
62
|
catch (e) {
|
|
60
63
|
// Not valid JSON, leave as is
|
package/compat.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compat.mjs","sourceRoot":"","sources":["src/compat.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"compat.mjs","sourceRoot":"","sources":["src/compat.ts"],"names":[],"mappings":"AAYA,MAAM,CAAC,MAAM,yBAAyB,GAAuB;IAC3D,cAAc,EAAE,IAAI;IACpB,SAAS,EAAE,IAAI;IACf,IAAI,EAAE,IAAI;IACV,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,IAAI;IACb,cAAc,EAAE,SAAS;CAC1B,CAAC;AAIF,mCAAmC;AACnC,0EAA0E;AAC1E,iBAAiB;AACjB,MAAM,CAAC,MAAM,YAAY,GAA2C;IAClE,eAAe,EAAE;QACf,cAAc,EAAE,KAAK;QACrB,SAAS,EAAE,IAAI;QACf,IAAI,EAAE,IAAI;QACV,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,IAAI;QACb,cAAc,EAAE,SAAS;KAC1B;IACD,MAAM,EAAE;QACN,cAAc,EAAE,IAAI;QACpB,SAAS,EAAE,KAAK;QAChB,IAAI,EAAE,IAAI;QACV,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,IAAI;QACb,cAAc,EAAE,SAAS;KAC1B;IACD,aAAa,EAAE;QACb,cAAc,EAAE,KAAK;QACrB,SAAS,EAAE,IAAI;QACf,IAAI,EAAE,IAAI;QACV,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,IAAI;QACb,cAAc,EAAE,SAAS;KAC1B;IACD,MAAM,EAAE;QACN,cAAc,EAAE,KAAK;QACrB,SAAS,EAAE,IAAI;QACf,IAAI,EAAE,KAAK;QACX,MAAM,EAAE,KAAK;QACb,OAAO,EAAE,KAAK;QACd,cAAc,EAAE,EAAE;KACnB;CACF,CAAC;AAEF;;GAEG;AACH,MAAM,UAAU,iBAAiB,CAAC,IAA6B,EAAE,MAA+B;IAC9F,IAAI,OAAO,GAAG,KAAK,CAAC;IACpB,MAAM,OAAO,GAA4B,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;IAEjE,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC;QACnD,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;YAC9B,IAAI,CAAC;gBACH,MAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;gBACjC,yEAAyE;gBACzE,IAAI,MAAM,IAAI,OAAO,MAAM,KAAK,QAAQ,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC;oBACnE,OAAO,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC;oBACtB,OAAO,GAAG,IAAI,CAAC;gBACjB,CAAC;YACH,CAAC;YAAC,OAAO,CAAC,EAAE,CAAC;gBACX,8BAA8B;YAChC,CAAC;QACH,CAAC;IACH,CAAC;IAED,IAAI,OAAO,EAAE,CAAC;QACZ,OAAO,OAAO,CAAC;IACjB,CAAC;IAED,OAAO,IAAI,CAAC;AACd,CAAC;AAYD;;;GAGG;AACH,MAAM,UAAU,iBAAiB,CAAC,KAAe,EAAE,SAAiB;IAClE,IAAI,SAAS,IAAI,CAAC,EAAE,CAAC;QACnB,OAAO,IAAI,GAAG,EAAE,CAAC;IACnB,CAAC;IAED,MAAM,SAAS,GAAG,IAAI,GAAG,EAAkB,CAAC;IAC5C,MAAM,SAAS,GAAG,IAAI,GAAG,EAAU,CAAC;IAEpC,MAAM,UAAU,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAEnE,IAAI,UAAU,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QAC5B,OAAO,SAAS,CAAC;IACnB,CAAC;IAED,MAAM,WAAW,GACf,IAAI,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,GAAG,UAAU,CAAC,MAAM,CAAC;IAE3F,IAAI,CAAC,WAAW,EAAE,CAAC;QACjB,KAAK,MAAM,IAAI,IAAI,UAAU,EAAE,CAAC;YAC9B,MAAM,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;YAC/C,SAAS,CAAC,GAAG,CAAC,IAAI,EAAE,aAAa,CAAC,CAAC;QACrC,CAAC;IACH,CAAC;SAAM,CAAC;QACN,MAAM,UAAU,GAAG,SAAS,GAAG,CAAC,CAAC;QAEjC,KAAK,MAAM,IAAI,IAAI,UAAU,EAAE,CAAC;YAC9B,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC;YAC3C,IAAI,OAAO,GAAG,CAAC,CAAC;YAEhB,OAAO,SAAS,CAAC,GAAG,CAAC,QAAQ,GAAG,OAAO,CAAC,EAAE,CAAC;gBACzC,OAAO,EAAE,CAAC;YACZ,CAAC;YAED,MAAM,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAC;YACrC,SAAS,CAAC,GAAG,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;YAC/B,SAAS,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;QAC3B,CAAC;IACH,CAAC;IAED,OAAO,SAAS,CAAC;AACnB,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,oBAAoB,CAAC,IAAU;IAC7C,MAAM,WAAW,GAAG,IAAI,CAAC,WAAyB,CAAC;IACnD,MAAM,QAAQ,GAAG,WAAW,CAAC,KAAK,CAAC;IAEnC,IAAI,CAAC,QAAQ,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACnE,OAAO,CAAC,IAAI,CAAC,CAAC;IAChB,CAAC;IAED,MAAM,IAAI,GAAG,WAAW,CAAC,KAAK,IAAI,EAAE,CAAC;IAErC,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,KAAK,EAAE,EAAE;QACrC,MAAM,aAAa,GAAe;YAChC,GAAG,WAAW;YACd,GAAG,OAAO;YACV,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACV,GAAG,CAAC,WAAW,CAAC,UAAU,IAAI,EAAE,CAAC;gBACjC,GAAG,CAAC,OAAO,CAAC,UAAU,IAAI,EAAE,CAAC;aAC9B;SACF,CAAC;QAEF,OAAO,aAAa,CAAC,KAAK,CAAC;QAE3B,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,EAAE,CAAC;YAClC,aAAa,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC;QAClD,CAAC;QAED,MAAM,QAAQ,GAAG,YAAY,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QAC7C,IAAI,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACrC,aAAa,CAAC,KAAK,GAAG,QAAQ,CAAC;QACjC,CAAC;aAAM,CAAC;YACN,OAAO,aAAa,CAAC,KAAK,CAAC;QAC7B,CAAC;QAED,OAAO;YACL,GAAG,IAAI;YACP,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,IAAI,WAAW,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,UAAU,KAAK,GAAG,CAAC,EAAE,CAAC,EAAE;YAC9E,WAAW,EAAE,OAAO,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,WAAW;YACvD,WAAW,EAAE,aAAa;SACnB,CAAC;IACZ,CAAC,CAAC,CAAC;AACL,CAAC;AAED,SAAS,YAAY,CACnB,MAAkB,EAClB,IAAgC,EAChC,UAAuB,IAAI,GAAG,EAAE;IAEhC,MAAM,QAAQ,GAA+B,EAAE,CAAC;IAEhD,IAAI,OAAO,MAAM,KAAK,QAAQ,IAAI,MAAM,KAAK,IAAI,EAAE,CAAC;QAClD,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED,IAAI,MAAM,CAAC,IAAI,EAAE,CAAC;QAChB,MAAM,QAAQ,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QACxC,IAAI,QAAQ,CAAC,CAAC,CAAC,KAAK,GAAG,IAAI,QAAQ,CAAC,CAAC,CAAC,KAAK,OAAO,IAAI,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC;YAClE,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;YAC5B,MAAM,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC;YAC1B,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;gBACrC,QAAQ,CAAC,OAAO,CAAC,GAAG,GAAG,CAAC;gBACxB,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;gBACzB,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,YAAY,CAAC,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;gBAC1D,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;YAC9B,CAAC;QACH,CAAC;QACD,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED,KAAK,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;QACzB,IAAI,GAAG,KAAK,OAAO,IAAI,OAAO,MAAM,CAAC,GAAG,CAAC,KAAK,QAAQ,IAAI,MAAM,CAAC,GAAG,CAAC,KAAK,IAAI,EAAE,CAAC;YAC/E,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,CAAe,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;QAClF,CAAC;IACH,CAAC;IAED,OAAO,QAAQ,CAAC;AAClB,CAAC;AAED,qBAAqB;AACrB,OAAO,EAAE,YAAY,EAAE,CAAC;AAExB;;;GAGG;AACH,MAAM,UAAU,UAAU,CAAC,MAAkB;IAC3C,IAAI,CAAC,MAAM,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;QAC1C,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,MAAM,YAAY,GAAG,EAAE,GAAG,MAAM,EAAE,CAAC;IACnC,MAAM,IAAI,GAA+B,MAAM,CAAC,KAAK,IAAI,EAAE,CAAC;IAE5D,OAAO,YAAY,CAAC,KAAK,CAAC;IAE1B,MAAM,MAAM,GAAG,mBAAmB,CAAC,YAAY,EAAE,IAAI,EAAE,IAAI,GAAG,EAAU,CAAC,CAAC;IAC1E,kCAAkC;IAClC,OAAO,MAAM,KAAK,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC;AACvC,CAAC;AAED,SAAS,mBAAmB,CAC1B,MAAkB,EAClB,IAAgC,EAChC,OAAoB;IAEpB,IAAI,CAAC,MAAM,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;QAC1C,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC;QAC1B,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE;YACzB,MAAM,SAAS,GAAG,mBAAmB,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;YAC3D,OAAO,SAAS,KAAK,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;QAC7C,CAAC,CAAe,CAAC;IACnB,CAAC;IAED,MAAM,MAAM,GAAG,EAAE,GAAG,MAAM,EAAE,CAAC;IAE7B,IAAI,MAAM,IAAI,MAAM,IAAI,OAAO,MAAM,CAAC,IAAI,KAAK,QAAQ,EAAE,CAAC;QACxD,IAAI,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,EAAE,CAAC;YACvC,MAAM,OAAO,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,EAAY,CAAC;YACvD,MAAM,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC;YAE1B,2EAA2E;YAC3E,IAAI,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;gBAC7B,6DAA6D;gBAC7D,gDAAgD;gBAChD,OAAO,IAAI,CAAC;YACd,CAAC;YAED,IAAI,GAAG,EAAE,CAAC;gBACR,MAAM,UAAU,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC;gBACpC,UAAU,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;gBAE5B,MAAM,UAAU,GAAG,mBAAmB,CAAC,EAAE,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,UAAU,CAAC,CAAC;gBAErE,IAAI,UAAU,KAAK,IAAI,EAAE,CAAC;oBACxB,OAAO,EAAE,GAAG,MAAM,EAAE,CAAC;gBACvB,CAAC;gBAED,qEAAqE;gBACrE,6CAA6C;gBAC7C,MAAM,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;gBACjC,OAAO,EAAE,GAAG,UAAU,EAAE,GAAG,IAAI,EAAE,CAAC;YACpC,CAAC;QACH,CAAC;QAED,2BAA2B;QAC3B,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,KAAK,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;QACzB,IAAI,MAAM,CAAC,GAAG,CAAC,IAAI,OAAO,MAAM,CAAC,GAAG,CAAC,KAAK,QAAQ,EAAE,CAAC;YACnD,MAAM,SAAS,GAAG,mBAAmB,CAAC,MAAM,CAAC,GAAG,CAAe,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;YAChF,IAAI,SAAS,KAAK,IAAI,EAAE,CAAC;gBACvB,yDAAyD;gBACzD,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;YACrB,CAAC;iBAAM,CAAC;gBACN,MAAM,CAAC,GAAG,CAAC,GAAG,SAAS,CAAC;YAC1B,CAAC;QACH,CAAC;IACH,CAAC;IAED,OAAO,MAAM,CAAC;AAChB,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,WAAW,CAAC,MAAkB;IAC5C,IAAI,CAAC,MAAM,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;QAC1C,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC;QAC1B,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,CAAe,CAAC;IAC/D,CAAC;IAED,MAAM,MAAM,GAAG,EAAE,GAAG,MAAM,EAAE,CAAC;IAE7B,IAAI,OAAO,IAAI,MAAM,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QAChF,MAAM,YAAY,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QAErC,IAAI,YAAY,IAAI,OAAO,YAAY,KAAK,QAAQ,EAAE,CAAC;YACrD,uDAAuD;YACvD,IAAI,YAAY,CAAC,UAAU,IAAI,MAAM,CAAC,UAAU,EAAE,CAAC;gBACjD,MAAM,CAAC,UAAU,GAAG;oBAClB,GAAG,MAAM,CAAC,UAAU;oBACpB,GAAI,YAAY,CAAC,UAAyC;iBAC3D,CAAC;YACJ,CAAC;iBAAM,IAAI,YAAY,CAAC,UAAU,EAAE,CAAC;gBACnC,MAAM,CAAC,UAAU,GAAG,EAAE,GAAG,YAAY,CAAC,UAAU,EAAE,CAAC;YACrD,CAAC;YAED,KAAK,MAAM,GAAG,IAAI,YAAY,EAAE,CAAC;gBAC/B,IAAI,GAAG,KAAK,YAAY,EAAE,CAAC;oBACzB,MAAM,CAAC,GAAG,CAAC,GAAG,YAAY,CAAC,GAAG,CAAC,CAAC;gBAClC,CAAC;YACH,CAAC;QACH,CAAC;QAED,OAAO,MAAM,CAAC,KAAK,CAAC;IACtB,CAAC;IAED,KAAK,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;QACzB,IAAI,MAAM,CAAC,GAAG,CAAC,IAAI,OAAO,MAAM,CAAC,GAAG,CAAC,KAAK,QAAQ,EAAE,CAAC;YACnD,MAAM,CAAC,GAAG,CAAC,GAAG,WAAW,CAAC,MAAM,CAAC,GAAG,CAAe,CAAC,CAAC;QACvD,CAAC;IACH,CAAC;IAED,OAAO,MAAM,CAAC;AAChB,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,aAAa,CAAC,MAAkB,EAAE,iBAA0B;IAC1E,IAAI,iBAAiB,EAAE,CAAC;QACtB,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,IAAI,CAAC,MAAM,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;QAC1C,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC;QAC1B,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,aAAa,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAe,CAAC;IACpF,CAAC;IAED,MAAM,MAAM,GAAG,EAAE,GAAG,MAAM,EAAE,CAAC;IAE7B,IAAI,QAAQ,IAAI,MAAM,IAAI,OAAO,MAAM,CAAC,QAAQ,CAAC,KAAK,QAAQ,EAAE,CAAC;QAC/D,MAAM,SAAS,GAAG,aAAa,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC;QAEpD,IAAI,aAAa,IAAI,MAAM,IAAI,OAAO,MAAM,CAAC,aAAa,CAAC,KAAK,QAAQ,EAAE,CAAC;YACzE,MAAM,CAAC,aAAa,CAAC,GAAG,GAAG,MAAM,CAAC,aAAa,CAAC,IAAI,SAAS,EAAE,CAAC;QAClE,CAAC;aAAM,CAAC;YACN,MAAM,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC;QACpC,CAAC;QAED,OAAO,MAAM,CAAC,QAAQ,CAAC,CAAC;IAC1B,CAAC;IAED,KAAK,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;QACzB,IAAI,MAAM,CAAC,GAAG,CAAC,IAAI,OAAO,MAAM,CAAC,GAAG,CAAC,KAAK,QAAQ,EAAE,CAAC;YACnD,MAAM,CAAC,GAAG,CAAC,GAAG,aAAa,CAAC,MAAM,CAAC,GAAG,CAAe,EAAE,iBAAiB,CAAC,CAAC;QAC5E,CAAC;IACH,CAAC;IAED,OAAO,MAAM,CAAC;AAChB,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,iCAAiC,CAC/C,SAAqB,EACrB,YAAgC;IAEhC,IAAI,oBAAoB,GAAG,CAAC,GAAG,SAAS,CAAC,CAAC;IAE1C,2DAA2D;IAC3D,IAAI,CAAC,YAAY,CAAC,cAAc,EAAE,CAAC;QACjC,MAAM,YAAY,GAAe,EAAE,CAAC;QAEpC,KAAK,MAAM,QAAQ,IAAI,oBAAoB,EAAE,CAAC;YAC5C,MAAM,YAAY,GAAG,oBAAoB,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;YAEzD,IAAI,YAAY,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBAC9B,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;YAC9B,CAAC;iBAAM,CAAC;gBACN,KAAK,MAAM,WAAW,IAAI,YAAY,EAAE,CAAC;oBACvC,YAAY,CAAC,IAAI,CAAC;wBAChB,GAAG,QAAQ;wBACX,IAAI,EAAE,WAAW;qBAClB,CAAC,CAAC;gBACL,CAAC;YACH,CAAC;QACH,CAAC;QAED,oBAAoB,GAAG,YAAY,CAAC;IACtC,CAAC;IAED,IAAI,YAAY,CAAC,cAAc,EAAE,CAAC;QAChC,MAAM,SAAS,GAAG,oBAAoB,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC7E,MAAM,SAAS,GAAG,iBAAiB,CAAC,SAAS,EAAE,YAAY,CAAC,cAAc,CAAC,CAAC;QAE5E,oBAAoB,GAAG,oBAAoB,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;YAC7D,GAAG,QAAQ;YACX,IAAI,EAAE;gBACJ,GAAG,QAAQ,CAAC,IAAI;gBAChB,IAAI,EAAE,SAAS,CAAC,GAAG,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,QAAQ,CAAC,IAAI,CAAC,IAAI;aAC9D;SACF,CAAC,CAAC,CAAC;IACN,CAAC;IAED,IAAI,CAAC,YAAY,CAAC,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE,CAAC;QACxE,oBAAoB,GAAG,oBAAoB,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE;YAC3D,IAAI,MAAM,GAAG,QAAQ,CAAC,IAAI,CAAC,WAAyB,CAAC;YAErD,IAAI,CAAC,YAAY,CAAC,IAAI,EAAE,CAAC;gBACvB,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC;YAC9B,CAAC;YAED,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC;gBACzB,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;YAC/B,CAAC;YAED,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE,CAAC;gBAC1B,MAAM,GAAG,aAAa,CAAC,MAAM,EAAE,YAAY,CAAC,OAAO,CAAC,CAAC;YACvD,CAAC;YAED,OAAO;gBACL,GAAG,QAAQ;gBACX,IAAI,EAAE;oBACJ,GAAG,QAAQ,CAAC,IAAI;oBAChB,WAAW,EAAE,MAA0C;iBACxD;aACF,CAAC;QACJ,CAAC,CAAC,CAAC;IACL,CAAC;IAED,OAAO,oBAAoB,CAAC;AAC9B,CAAC;AAED,SAAS,WAAW,CAAC,GAAW;IAC9B,OAAO,GAAG;SACP,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC;SACpB,OAAO,CAAC,iBAAiB,EAAE,OAAO,CAAC;SACnC,WAAW,EAAE,CAAC;AACnB,CAAC"}
|
package/filtering.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filtering.d.mts","sourceRoot":"","sources":["src/filtering.ts"],"names":[],"mappings":"AAGA,wBAAsB,WAAW,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,EAAE,QAAQ,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC,CAOxG"}
|
package/filtering.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filtering.d.ts","sourceRoot":"","sources":["src/filtering.ts"],"names":[],"mappings":"AAGA,wBAAsB,WAAW,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,EAAE,QAAQ,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC,CAOxG"}
|
package/filtering.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.maybeFilter = maybeFilter;
|
|
7
|
+
// @ts-nocheck
|
|
8
|
+
const jq_web_1 = __importDefault(require("jq-web"));
|
|
9
|
+
async function maybeFilter(args, response) {
|
|
10
|
+
const jqFilter = args?.['jq_filter'];
|
|
11
|
+
if (jqFilter && typeof jqFilter === 'string') {
|
|
12
|
+
return await jq(response, jqFilter);
|
|
13
|
+
}
|
|
14
|
+
else {
|
|
15
|
+
return response;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
async function jq(json, jqFilter) {
|
|
19
|
+
return (await jq_web_1.default).json(json, jqFilter);
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=filtering.js.map
|
package/filtering.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filtering.js","sourceRoot":"","sources":["src/filtering.ts"],"names":[],"mappings":";;;;;AAGA,kCAOC;AAVD,cAAc;AACd,oDAA4B;AAErB,KAAK,UAAU,WAAW,CAAC,IAAyC,EAAE,QAAa;IACxF,MAAM,QAAQ,GAAG,IAAI,EAAE,CAAC,WAAW,CAAC,CAAC;IACrC,IAAI,QAAQ,IAAI,OAAO,QAAQ,KAAK,QAAQ,EAAE,CAAC;QAC7C,OAAO,MAAM,EAAE,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;IACtC,CAAC;SAAM,CAAC;QACN,OAAO,QAAQ,CAAC;IAClB,CAAC;AACH,CAAC;AAED,KAAK,UAAU,EAAE,CAAC,IAAS,EAAE,QAAgB;IAC3C,OAAO,CAAC,MAAM,gBAAM,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;AAC7C,CAAC"}
|
package/filtering.mjs
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import initJq from 'jq-web';
|
|
2
|
+
export async function maybeFilter(args, response) {
|
|
3
|
+
const jqFilter = args?.['jq_filter'];
|
|
4
|
+
if (jqFilter && typeof jqFilter === 'string') {
|
|
5
|
+
return await jq(response, jqFilter);
|
|
6
|
+
}
|
|
7
|
+
else {
|
|
8
|
+
return response;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
async function jq(json, jqFilter) {
|
|
12
|
+
return (await initJq).json(json, jqFilter);
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=filtering.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filtering.mjs","sourceRoot":"","sources":["src/filtering.ts"],"names":[],"mappings":"OACO,MAAM,MAAM,QAAQ;AAE3B,MAAM,CAAC,KAAK,UAAU,WAAW,CAAC,IAAyC,EAAE,QAAa;IACxF,MAAM,QAAQ,GAAG,IAAI,EAAE,CAAC,WAAW,CAAC,CAAC;IACrC,IAAI,QAAQ,IAAI,OAAO,QAAQ,KAAK,QAAQ,EAAE,CAAC;QAC7C,OAAO,MAAM,EAAE,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;IACtC,CAAC;SAAM,CAAC;QACN,OAAO,QAAQ,CAAC;IAClB,CAAC;AACH,CAAC;AAED,KAAK,UAAU,EAAE,CAAC,IAAS,EAAE,QAAgB;IAC3C,OAAO,CAAC,MAAM,MAAM,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;AAC7C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "modern-treasury-mcp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.42.0",
|
|
4
4
|
"description": "The official MCP Server for the Modern Treasury API",
|
|
5
5
|
"author": "Modern Treasury <sdk-feedback@moderntreasury.com>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -24,8 +24,9 @@
|
|
|
24
24
|
"fix": "eslint --fix --ext ts,js ."
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"modern-treasury": "^2.
|
|
27
|
+
"modern-treasury": "^2.42.0",
|
|
28
28
|
"@modelcontextprotocol/sdk": "^1.11.5",
|
|
29
|
+
"jq-web": "https://github.com/stainless-api/jq-web/releases/download/v0.8.2/jq-web.tar.gz",
|
|
29
30
|
"yargs": "^17.7.2",
|
|
30
31
|
"@cloudflare/cabidela": "^0.2.4",
|
|
31
32
|
"zod": "^3.25.20",
|
package/server.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.mts","sourceRoot":"","sources":["src/server.ts"],"names":[],"mappings":"OAEO,EAAE,MAAM,EAAE,MAAM,2CAA2C;OAC3D,EAAE,SAAS,EAAE,MAAM,yCAAyC;OAC5D,EAAE,QAAQ,EAAa,eAAe,EAAS;OAC/C,EAAiD,IAAI,EAAE,MAAM,oCAAoC;OACjG,EAAE,aAAa,EAAE,MAAM,iBAAiB;OACxC,cAAc,MAAM,iBAAiB;OACrC,EAEL,kBAAkB,EAInB;OAEM,EAAE,UAAU,EAAE;OAEd,EAAE,UAAU,EAAE;OACd,EAAE,UAAU,EAAE;OACd,EAAE,MAAM,EAAE;OACV,EAAE,aAAa,EAAE,MAAM,iBAAiB;OACxC,EAAE,SAAS,EAAE;AAGpB,eAAO,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"server.d.mts","sourceRoot":"","sources":["src/server.ts"],"names":[],"mappings":"OAEO,EAAE,MAAM,EAAE,MAAM,2CAA2C;OAC3D,EAAE,SAAS,EAAE,MAAM,yCAAyC;OAC5D,EAAE,QAAQ,EAAa,eAAe,EAAS;OAC/C,EAAiD,IAAI,EAAE,MAAM,oCAAoC;OACjG,EAAE,aAAa,EAAE,MAAM,iBAAiB;OACxC,cAAc,MAAM,iBAAiB;OACrC,EAEL,kBAAkB,EAInB;OAEM,EAAE,UAAU,EAAE;OAEd,EAAE,UAAU,EAAE;OACd,EAAE,UAAU,EAAE;OACd,EAAE,MAAM,EAAE;OACV,EAAE,aAAa,EAAE,MAAM,iBAAiB;OACxC,EAAE,SAAS,EAAE;AAGpB,eAAO,MAAM,MAAM,WAMlB,CAAC;AAEF;;;GAGG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE;IACpC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,aAAa,EAAE,aAAa,CAAC;IAC7B,UAAU,EAAE,UAAU,CAAC;IACvB,SAAS,CAAC,EAAE;QAAE,IAAI,EAAE,IAAI,CAAC;QAAC,OAAO,EAAE,eAAe,CAAA;KAAE,EAAE,CAAC;CACxD,QAQA;AAED,wBAAgB,IAAI,CAAC,MAAM,EAAE;IAC3B,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,SAAS,CAAC,EAAE;QAAE,IAAI,EAAE,IAAI,CAAC;QAAC,OAAO,EAAE,eAAe,CAAA;KAAE,EAAE,CAAC;IACvD,YAAY,CAAC,EAAE,OAAO,CAAC,kBAAkB,CAAC,CAAC;CAC5C,QAuBA;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,SAAS,EAAE,QAAQ,EAAE,EAAE,OAAO,EAAE,UAAU,cAqBrE;AAED;;GAEG;AACH,wBAAsB,cAAc,CAClC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,eAAe,EACxB,MAAM,EAAE,cAAc,EACtB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,EACzC,oBAAoB,CAAC,EAAE,OAAO,CAAC,kBAAkB,CAAC,mDAOnD;AAED,eAAO,MAAM,OAAO,GAAI,KAAK,MAAM,KAAG,MAAM,GAAG,SAO9C,CAAC;AAEF,eAAO,MAAM,cAAc,GAAI,KAAK,MAAM,KAAG,MAM5C,CAAC"}
|
package/server.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["src/server.ts"],"names":[],"mappings":"OAEO,EAAE,MAAM,EAAE,MAAM,2CAA2C;OAC3D,EAAE,SAAS,EAAE,MAAM,yCAAyC;OAC5D,EAAE,QAAQ,EAAa,eAAe,EAAS;OAC/C,EAAiD,IAAI,EAAE,MAAM,oCAAoC;OACjG,EAAE,aAAa,EAAE,MAAM,iBAAiB;OACxC,cAAc,MAAM,iBAAiB;OACrC,EAEL,kBAAkB,EAInB;OAEM,EAAE,UAAU,EAAE;OAEd,EAAE,UAAU,EAAE;OACd,EAAE,UAAU,EAAE;OACd,EAAE,MAAM,EAAE;OACV,EAAE,aAAa,EAAE,MAAM,iBAAiB;OACxC,EAAE,SAAS,EAAE;AAGpB,eAAO,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["src/server.ts"],"names":[],"mappings":"OAEO,EAAE,MAAM,EAAE,MAAM,2CAA2C;OAC3D,EAAE,SAAS,EAAE,MAAM,yCAAyC;OAC5D,EAAE,QAAQ,EAAa,eAAe,EAAS;OAC/C,EAAiD,IAAI,EAAE,MAAM,oCAAoC;OACjG,EAAE,aAAa,EAAE,MAAM,iBAAiB;OACxC,cAAc,MAAM,iBAAiB;OACrC,EAEL,kBAAkB,EAInB;OAEM,EAAE,UAAU,EAAE;OAEd,EAAE,UAAU,EAAE;OACd,EAAE,UAAU,EAAE;OACd,EAAE,MAAM,EAAE;OACV,EAAE,aAAa,EAAE,MAAM,iBAAiB;OACxC,EAAE,SAAS,EAAE;AAGpB,eAAO,MAAM,MAAM,WAMlB,CAAC;AAEF;;;GAGG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE;IACpC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,aAAa,EAAE,aAAa,CAAC;IAC7B,UAAU,EAAE,UAAU,CAAC;IACvB,SAAS,CAAC,EAAE;QAAE,IAAI,EAAE,IAAI,CAAC;QAAC,OAAO,EAAE,eAAe,CAAA;KAAE,EAAE,CAAC;CACxD,QAQA;AAED,wBAAgB,IAAI,CAAC,MAAM,EAAE;IAC3B,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,SAAS,CAAC,EAAE;QAAE,IAAI,EAAE,IAAI,CAAC;QAAC,OAAO,EAAE,eAAe,CAAA;KAAE,EAAE,CAAC;IACvD,YAAY,CAAC,EAAE,OAAO,CAAC,kBAAkB,CAAC,CAAC;CAC5C,QAuBA;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,SAAS,EAAE,QAAQ,EAAE,EAAE,OAAO,EAAE,UAAU,cAqBrE;AAED;;GAEG;AACH,wBAAsB,cAAc,CAClC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,eAAe,EACxB,MAAM,EAAE,cAAc,EACtB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,EACzC,oBAAoB,CAAC,EAAE,OAAO,CAAC,kBAAkB,CAAC,mDAOnD;AAED,eAAO,MAAM,OAAO,GAAI,KAAK,MAAM,KAAG,MAAM,GAAG,SAO9C,CAAC;AAEF,eAAO,MAAM,cAAc,GAAI,KAAK,MAAM,KAAG,MAM5C,CAAC"}
|
package/server.js
CHANGED
|
@@ -20,12 +20,8 @@ Object.defineProperty(exports, "endpoints", { enumerable: true, get: function ()
|
|
|
20
20
|
// Create server instance
|
|
21
21
|
exports.server = new mcp_js_1.McpServer({
|
|
22
22
|
name: 'modern_treasury_api',
|
|
23
|
-
version: '2.
|
|
24
|
-
}, {
|
|
25
|
-
capabilities: {
|
|
26
|
-
tools: {},
|
|
27
|
-
},
|
|
28
|
-
});
|
|
23
|
+
version: '2.42.0',
|
|
24
|
+
}, { capabilities: { tools: {}, logging: {} } });
|
|
29
25
|
/**
|
|
30
26
|
* Initializes the provided MCP Server with the given tools and handlers.
|
|
31
27
|
* If not provided, the default client, tools and handlers will be used.
|
|
@@ -88,7 +84,7 @@ function selectTools(endpoints, options) {
|
|
|
88
84
|
*/
|
|
89
85
|
async function executeHandler(tool, handler, client, args, compatibilityOptions) {
|
|
90
86
|
const options = { ...compat_1.defaultClientCapabilities, ...compatibilityOptions };
|
|
91
|
-
if (options.validJson && args) {
|
|
87
|
+
if (!options.validJson && args) {
|
|
92
88
|
args = (0, compat_1.parseEmbeddedJSON)(args, tool.inputSchema);
|
|
93
89
|
}
|
|
94
90
|
return await handler(client, args || {});
|
package/server.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.js","sourceRoot":"","sources":["src/server.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;;;
|
|
1
|
+
{"version":3,"file":"server.js","sourceRoot":"","sources":["src/server.ts"],"names":[],"mappings":"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"}
|
package/server.mjs
CHANGED
|
@@ -9,12 +9,8 @@ export { endpoints } from "./tools.mjs";
|
|
|
9
9
|
// Create server instance
|
|
10
10
|
export const server = new McpServer({
|
|
11
11
|
name: 'modern_treasury_api',
|
|
12
|
-
version: '2.
|
|
13
|
-
}, {
|
|
14
|
-
capabilities: {
|
|
15
|
-
tools: {},
|
|
16
|
-
},
|
|
17
|
-
});
|
|
12
|
+
version: '2.42.0',
|
|
13
|
+
}, { capabilities: { tools: {}, logging: {} } });
|
|
18
14
|
/**
|
|
19
15
|
* Initializes the provided MCP Server with the given tools and handlers.
|
|
20
16
|
* If not provided, the default client, tools and handlers will be used.
|
|
@@ -77,7 +73,7 @@ export function selectTools(endpoints, options) {
|
|
|
77
73
|
*/
|
|
78
74
|
export async function executeHandler(tool, handler, client, args, compatibilityOptions) {
|
|
79
75
|
const options = { ...defaultClientCapabilities, ...compatibilityOptions };
|
|
80
|
-
if (options.validJson && args) {
|
|
76
|
+
if (!options.validJson && args) {
|
|
81
77
|
args = parseEmbeddedJSON(args, tool.inputSchema);
|
|
82
78
|
}
|
|
83
79
|
return await handler(client, args || {});
|
package/server.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.mjs","sourceRoot":"","sources":["src/server.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAG/E,EAAE,SAAS,EAAE,MAAM,yCAAyC;OAC5D,EAAY,SAAS,EAAmB,KAAK,EAAE;OAC/C,EAAE,qBAAqB,EAAE,sBAAsB,EAAQ,MAAM,oCAAoC;OAEjG,cAAc,MAAM,iBAAiB;OACrC,EACL,iCAAiC,EAEjC,yBAAyB,EACzB,YAAY,EACZ,iBAAiB,GAClB;OACM,EAAE,YAAY,EAAE;OAOhB,EAAE,SAAS,EAAE;AAEpB,yBAAyB;AACzB,MAAM,CAAC,MAAM,MAAM,GAAG,IAAI,SAAS,CACjC;IACE,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,QAAQ;CAClB,EACD
|
|
1
|
+
{"version":3,"file":"server.mjs","sourceRoot":"","sources":["src/server.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAG/E,EAAE,SAAS,EAAE,MAAM,yCAAyC;OAC5D,EAAY,SAAS,EAAmB,KAAK,EAAE;OAC/C,EAAE,qBAAqB,EAAE,sBAAsB,EAAQ,MAAM,oCAAoC;OAEjG,cAAc,MAAM,iBAAiB;OACrC,EACL,iCAAiC,EAEjC,yBAAyB,EACzB,YAAY,EACZ,iBAAiB,GAClB;OACM,EAAE,YAAY,EAAE;OAOhB,EAAE,SAAS,EAAE;AAEpB,yBAAyB;AACzB,MAAM,CAAC,MAAM,MAAM,GAAG,IAAI,SAAS,CACjC;IACE,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,QAAQ;CAClB,EACD,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,CAC7C,CAAC;AAEF;;;GAGG;AACH,MAAM,UAAU,aAAa,CAAC,MAK7B;IACC,MAAM,oBAAoB,GAAG,WAAW,CAAC,SAAS,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC;IACvE,MAAM,MAAM,GAAG,IAAI,cAAc,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;IACxD,MAAM,YAAY,GAAG;QACnB,GAAG,yBAAyB;QAC5B,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,YAAY,CAAC;KACxG,CAAC;IACF,IAAI,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,oBAAoB,EAAE,YAAY,EAAE,CAAC,CAAC;AACzF,CAAC;AAED,MAAM,UAAU,IAAI,CAAC,MAKpB;IACC,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,YAAY,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC;IACzF,MAAM,iBAAiB,GAAG,MAAM,CAAC,SAAS,IAAI,SAAS,CAAC;IAExD,MAAM,WAAW,GAAG,MAAM,CAAC,WAAW,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC;IAE5G,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,IAAI,IAAI,cAAc,CAAC,EAAE,cAAc,EAAE,EAAE,iBAAiB,EAAE,MAAM,EAAE,EAAE,CAAC,CAAC;IAEtG,MAAM,CAAC,iBAAiB,CAAC,sBAAsB,EAAE,KAAK,IAAI,EAAE;QAC1D,OAAO;YACL,KAAK,EAAE,iBAAiB,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC;SAC1D,CAAC;IACJ,CAAC,CAAC,CAAC;IAEH,MAAM,CAAC,iBAAiB,CAAC,qBAAqB,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE;QAChE,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC;QACjD,MAAM,QAAQ,GAAG,WAAW,CAAC,IAAI,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,EAAE,CAAC;YACd,MAAM,IAAI,KAAK,CAAC,iBAAiB,IAAI,EAAE,CAAC,CAAC;QAC3C,CAAC;QAED,OAAO,cAAc,CAAC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,YAAY,CAAC,CAAC;IAC5F,CAAC,CAAC,CAAC;AACL,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,WAAW,CAAC,SAAqB,EAAE,OAAmB;IACpE,MAAM,iBAAiB,GAAG,KAAK,CAAC,OAAO,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;IAE5D,IAAI,aAAa,GAAG,iBAAiB,CAAC;IAEtC,IAAI,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QAC7B,IAAI,OAAO,CAAC,mBAAmB,EAAE,CAAC;YAChC,aAAa,GAAG,YAAY,CAAC,aAAa,CAAC,CAAC;QAC9C,CAAC;IACH,CAAC;SAAM,CAAC;QACN,IAAI,OAAO,CAAC,eAAe,EAAE,CAAC;YAC5B,aAAa,GAAG,SAAS,CAAC;QAC5B,CAAC;aAAM,IAAI,OAAO,CAAC,mBAAmB,EAAE,CAAC;YACvC,aAAa,GAAG,YAAY,CAAC,SAAS,CAAC,CAAC;QAC1C,CAAC;aAAM,CAAC;YACN,aAAa,GAAG,SAAS,CAAC;QAC5B,CAAC;IACH,CAAC;IAED,MAAM,YAAY,GAAG,EAAE,GAAG,yBAAyB,EAAE,GAAG,OAAO,CAAC,YAAY,EAAE,CAAC;IAC/E,OAAO,iCAAiC,CAAC,aAAa,EAAE,YAAY,CAAC,CAAC;AACxE,CAAC;AAED;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,cAAc,CAClC,IAAU,EACV,OAAwB,EACxB,MAAsB,EACtB,IAAyC,EACzC,oBAAkD;IAElD,MAAM,OAAO,GAAG,EAAE,GAAG,yBAAyB,EAAE,GAAG,oBAAoB,EAAE,CAAC;IAC1E,IAAI,CAAC,OAAO,CAAC,SAAS,IAAI,IAAI,EAAE,CAAC;QAC/B,IAAI,GAAG,iBAAiB,CAAC,IAAI,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC;IACnD,CAAC;IACD,OAAO,MAAM,OAAO,CAAC,MAAM,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;AAC3C,CAAC;AAED,MAAM,CAAC,MAAM,OAAO,GAAG,CAAC,GAAW,EAAsB,EAAE;IACzD,IAAI,OAAQ,UAAkB,CAAC,OAAO,KAAK,WAAW,EAAE,CAAC;QACvD,OAAQ,UAAkB,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,EAAE,IAAI,EAAE,CAAC;IACxD,CAAC;SAAM,IAAI,OAAQ,UAAkB,CAAC,IAAI,KAAK,WAAW,EAAE,CAAC;QAC3D,OAAQ,UAAkB,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,EAAE,IAAI,EAAE,CAAC;IAC1D,CAAC;IACD,OAAO;AACT,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,GAAW,EAAU,EAAE;IACpD,IAAI,QAAQ,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;IAC5B,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;QAC3B,MAAM,IAAI,KAAK,CAAC,wBAAwB,GAAG,aAAa,CAAC,CAAC;IAC5D,CAAC;IACD,OAAO,QAAQ,CAAC;AAClB,CAAC,CAAC"}
|
package/src/compat.ts
CHANGED
|
@@ -70,8 +70,11 @@ export function parseEmbeddedJSON(args: Record<string, unknown>, schema: Record<
|
|
|
70
70
|
if (typeof value === 'string') {
|
|
71
71
|
try {
|
|
72
72
|
const parsed = JSON.parse(value);
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
// Only parse if result is a plain object (not array, null, or primitive)
|
|
74
|
+
if (parsed && typeof parsed === 'object' && !Array.isArray(parsed)) {
|
|
75
|
+
newArgs[key] = parsed;
|
|
76
|
+
updated = true;
|
|
77
|
+
}
|
|
75
78
|
} catch (e) {
|
|
76
79
|
// Not valid JSON, leave as is
|
|
77
80
|
}
|
package/src/filtering.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
import initJq from 'jq-web';
|
|
3
|
+
|
|
4
|
+
export async function maybeFilter(args: Record<string, unknown> | undefined, response: any): Promise<any> {
|
|
5
|
+
const jqFilter = args?.['jq_filter'];
|
|
6
|
+
if (jqFilter && typeof jqFilter === 'string') {
|
|
7
|
+
return await jq(response, jqFilter);
|
|
8
|
+
} else {
|
|
9
|
+
return response;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
async function jq(json: any, jqFilter: string) {
|
|
14
|
+
return (await initJq).json(json, jqFilter);
|
|
15
|
+
}
|
package/src/server.ts
CHANGED
|
@@ -26,13 +26,9 @@ export { endpoints } from './tools';
|
|
|
26
26
|
export const server = new McpServer(
|
|
27
27
|
{
|
|
28
28
|
name: 'modern_treasury_api',
|
|
29
|
-
version: '2.
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
capabilities: {
|
|
33
|
-
tools: {},
|
|
34
|
-
},
|
|
29
|
+
version: '2.42.0',
|
|
35
30
|
},
|
|
31
|
+
{ capabilities: { tools: {}, logging: {} } },
|
|
36
32
|
);
|
|
37
33
|
|
|
38
34
|
/**
|
|
@@ -121,7 +117,7 @@ export async function executeHandler(
|
|
|
121
117
|
compatibilityOptions?: Partial<ClientCapabilities>,
|
|
122
118
|
) {
|
|
123
119
|
const options = { ...defaultClientCapabilities, ...compatibilityOptions };
|
|
124
|
-
if (options.validJson && args) {
|
|
120
|
+
if (!options.validJson && args) {
|
|
125
121
|
args = parseEmbeddedJSON(args, tool.inputSchema);
|
|
126
122
|
}
|
|
127
123
|
return await handler(client, args || {});
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { maybeFilter } from 'modern-treasury-mcp/filtering';
|
|
4
|
+
import { Metadata, asTextContentResult } from 'modern-treasury-mcp/tools/types';
|
|
4
5
|
|
|
5
6
|
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
6
|
-
import type { Metadata } from '../';
|
|
7
7
|
import ModernTreasury from 'modern-treasury';
|
|
8
8
|
|
|
9
9
|
export const metadata: Metadata = {
|
|
@@ -17,7 +17,8 @@ export const metadata: Metadata = {
|
|
|
17
17
|
|
|
18
18
|
export const tool: Tool = {
|
|
19
19
|
name: 'create_account_collection_flows',
|
|
20
|
-
description:
|
|
20
|
+
description:
|
|
21
|
+
"When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\ncreate account_collection_flow\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/account_collection_flow',\n $defs: {\n account_collection_flow: {\n type: 'object',\n properties: {\n counterparty_id: {\n type: 'string',\n description: 'The ID of a counterparty. An external account created with this flow will be associated with this counterparty.'\n },\n payment_types: {\n type: 'array',\n items: {\n type: 'string',\n description: 'An account created with this flow will support payments of one of these types.',\n enum: [ 'ach',\n 'wire'\n ]\n }\n },\n id: {\n type: 'string'\n },\n client_token: {\n type: 'string',\n description: 'The client token of the account collection flow. This token can be used to embed account collection in your client-side application.'\n },\n created_at: {\n type: 'string',\n format: 'date-time'\n },\n external_account_id: {\n type: 'string',\n description: 'If present, the ID of the external account created using this flow.'\n },\n live_mode: {\n type: 'boolean',\n description: 'This field will be true if this object exists in the live environment or false if it exists in the test environment.'\n },\n object: {\n type: 'string'\n },\n receiving_countries: {\n type: 'array',\n items: {\n type: 'string',\n description: 'An account created with this flow will support wires from the US to these countries.',\n enum: [ 'USA',\n 'AUS',\n 'BEL',\n 'CAN',\n 'CHL',\n 'CHN',\n 'COL',\n 'FRA',\n 'DEU',\n 'HKG',\n 'IND',\n 'IRL',\n 'ITA',\n 'MEX',\n 'NLD',\n 'PER',\n 'ESP',\n 'GBR'\n ]\n }\n },\n status: {\n type: 'string',\n description: 'The current status of the account collection flow. One of `pending`, `completed`, `expired`, or `cancelled`.',\n enum: [ 'cancelled',\n 'completed',\n 'expired',\n 'pending'\n ]\n },\n updated_at: {\n type: 'string',\n format: 'date-time'\n }\n },\n required: [ 'counterparty_id',\n 'payment_types'\n ]\n }\n }\n}\n```",
|
|
21
22
|
inputSchema: {
|
|
22
23
|
type: 'object',
|
|
23
24
|
properties: {
|
|
@@ -59,13 +60,21 @@ export const tool: Tool = {
|
|
|
59
60
|
],
|
|
60
61
|
},
|
|
61
62
|
},
|
|
63
|
+
jq_filter: {
|
|
64
|
+
type: 'string',
|
|
65
|
+
title: 'jq Filter',
|
|
66
|
+
description:
|
|
67
|
+
'A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available.\n\nFor example: to include only the `name` field in every object of a results array, you can provide ".results[].name".\n\nFor more information, see the [jq documentation](https://jqlang.org/manual/).',
|
|
68
|
+
},
|
|
62
69
|
},
|
|
70
|
+
required: ['counterparty_id', 'payment_types'],
|
|
63
71
|
},
|
|
72
|
+
annotations: {},
|
|
64
73
|
};
|
|
65
74
|
|
|
66
75
|
export const handler = async (client: ModernTreasury, args: Record<string, unknown> | undefined) => {
|
|
67
|
-
const body = args as any;
|
|
68
|
-
return asTextContentResult(await client.accountCollectionFlows.create(body));
|
|
76
|
+
const { jq_filter, ...body } = args as any;
|
|
77
|
+
return asTextContentResult(await maybeFilter(jq_filter, await client.accountCollectionFlows.create(body)));
|
|
69
78
|
};
|
|
70
79
|
|
|
71
80
|
export default { metadata, tool, handler };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { maybeFilter } from 'modern-treasury-mcp/filtering';
|
|
4
|
+
import { Metadata, asTextContentResult } from 'modern-treasury-mcp/tools/types';
|
|
4
5
|
|
|
5
6
|
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
6
|
-
import type { Metadata } from '../';
|
|
7
7
|
import ModernTreasury from 'modern-treasury';
|
|
8
8
|
|
|
9
9
|
export const metadata: Metadata = {
|
|
@@ -17,7 +17,8 @@ export const metadata: Metadata = {
|
|
|
17
17
|
|
|
18
18
|
export const tool: Tool = {
|
|
19
19
|
name: 'list_account_collection_flows',
|
|
20
|
-
description:
|
|
20
|
+
description:
|
|
21
|
+
"When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nlist account_collection_flows\n\n# Response Schema\n```json\n{\n type: 'array',\n items: {\n $ref: '#/$defs/account_collection_flow'\n },\n $defs: {\n account_collection_flow: {\n type: 'object',\n properties: {\n counterparty_id: {\n type: 'string',\n description: 'The ID of a counterparty. An external account created with this flow will be associated with this counterparty.'\n },\n payment_types: {\n type: 'array',\n items: {\n type: 'string',\n description: 'An account created with this flow will support payments of one of these types.',\n enum: [ 'ach',\n 'wire'\n ]\n }\n },\n id: {\n type: 'string'\n },\n client_token: {\n type: 'string',\n description: 'The client token of the account collection flow. This token can be used to embed account collection in your client-side application.'\n },\n created_at: {\n type: 'string',\n format: 'date-time'\n },\n external_account_id: {\n type: 'string',\n description: 'If present, the ID of the external account created using this flow.'\n },\n live_mode: {\n type: 'boolean',\n description: 'This field will be true if this object exists in the live environment or false if it exists in the test environment.'\n },\n object: {\n type: 'string'\n },\n receiving_countries: {\n type: 'array',\n items: {\n type: 'string',\n description: 'An account created with this flow will support wires from the US to these countries.',\n enum: [ 'USA',\n 'AUS',\n 'BEL',\n 'CAN',\n 'CHL',\n 'CHN',\n 'COL',\n 'FRA',\n 'DEU',\n 'HKG',\n 'IND',\n 'IRL',\n 'ITA',\n 'MEX',\n 'NLD',\n 'PER',\n 'ESP',\n 'GBR'\n ]\n }\n },\n status: {\n type: 'string',\n description: 'The current status of the account collection flow. One of `pending`, `completed`, `expired`, or `cancelled`.',\n enum: [ 'cancelled',\n 'completed',\n 'expired',\n 'pending'\n ]\n },\n updated_at: {\n type: 'string',\n format: 'date-time'\n }\n },\n required: [ 'counterparty_id',\n 'payment_types'\n ]\n }\n }\n}\n```",
|
|
21
22
|
inputSchema: {
|
|
22
23
|
type: 'object',
|
|
23
24
|
properties: {
|
|
@@ -39,13 +40,24 @@ export const tool: Tool = {
|
|
|
39
40
|
status: {
|
|
40
41
|
type: 'string',
|
|
41
42
|
},
|
|
43
|
+
jq_filter: {
|
|
44
|
+
type: 'string',
|
|
45
|
+
title: 'jq Filter',
|
|
46
|
+
description:
|
|
47
|
+
'A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available.\n\nFor example: to include only the `name` field in every object of a results array, you can provide ".results[].name".\n\nFor more information, see the [jq documentation](https://jqlang.org/manual/).',
|
|
48
|
+
},
|
|
42
49
|
},
|
|
50
|
+
required: [],
|
|
51
|
+
},
|
|
52
|
+
annotations: {
|
|
53
|
+
readOnlyHint: true,
|
|
43
54
|
},
|
|
44
55
|
};
|
|
45
56
|
|
|
46
57
|
export const handler = async (client: ModernTreasury, args: Record<string, unknown> | undefined) => {
|
|
47
|
-
const body = args as any;
|
|
48
|
-
|
|
58
|
+
const { jq_filter, ...body } = args as any;
|
|
59
|
+
const response = await client.accountCollectionFlows.list(body).asResponse();
|
|
60
|
+
return asTextContentResult(await maybeFilter(jq_filter, await response.json()));
|
|
49
61
|
};
|
|
50
62
|
|
|
51
63
|
export default { metadata, tool, handler };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { maybeFilter } from 'modern-treasury-mcp/filtering';
|
|
4
|
+
import { Metadata, asTextContentResult } from 'modern-treasury-mcp/tools/types';
|
|
4
5
|
|
|
5
6
|
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
6
|
-
import type { Metadata } from '../';
|
|
7
7
|
import ModernTreasury from 'modern-treasury';
|
|
8
8
|
|
|
9
9
|
export const metadata: Metadata = {
|
|
@@ -17,20 +17,31 @@ export const metadata: Metadata = {
|
|
|
17
17
|
|
|
18
18
|
export const tool: Tool = {
|
|
19
19
|
name: 'retrieve_account_collection_flows',
|
|
20
|
-
description:
|
|
20
|
+
description:
|
|
21
|
+
"When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nget account_collection_flow\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/account_collection_flow',\n $defs: {\n account_collection_flow: {\n type: 'object',\n properties: {\n counterparty_id: {\n type: 'string',\n description: 'The ID of a counterparty. An external account created with this flow will be associated with this counterparty.'\n },\n payment_types: {\n type: 'array',\n items: {\n type: 'string',\n description: 'An account created with this flow will support payments of one of these types.',\n enum: [ 'ach',\n 'wire'\n ]\n }\n },\n id: {\n type: 'string'\n },\n client_token: {\n type: 'string',\n description: 'The client token of the account collection flow. This token can be used to embed account collection in your client-side application.'\n },\n created_at: {\n type: 'string',\n format: 'date-time'\n },\n external_account_id: {\n type: 'string',\n description: 'If present, the ID of the external account created using this flow.'\n },\n live_mode: {\n type: 'boolean',\n description: 'This field will be true if this object exists in the live environment or false if it exists in the test environment.'\n },\n object: {\n type: 'string'\n },\n receiving_countries: {\n type: 'array',\n items: {\n type: 'string',\n description: 'An account created with this flow will support wires from the US to these countries.',\n enum: [ 'USA',\n 'AUS',\n 'BEL',\n 'CAN',\n 'CHL',\n 'CHN',\n 'COL',\n 'FRA',\n 'DEU',\n 'HKG',\n 'IND',\n 'IRL',\n 'ITA',\n 'MEX',\n 'NLD',\n 'PER',\n 'ESP',\n 'GBR'\n ]\n }\n },\n status: {\n type: 'string',\n description: 'The current status of the account collection flow. One of `pending`, `completed`, `expired`, or `cancelled`.',\n enum: [ 'cancelled',\n 'completed',\n 'expired',\n 'pending'\n ]\n },\n updated_at: {\n type: 'string',\n format: 'date-time'\n }\n },\n required: [ 'counterparty_id',\n 'payment_types'\n ]\n }\n }\n}\n```",
|
|
21
22
|
inputSchema: {
|
|
22
23
|
type: 'object',
|
|
23
24
|
properties: {
|
|
24
25
|
id: {
|
|
25
26
|
type: 'string',
|
|
26
27
|
},
|
|
28
|
+
jq_filter: {
|
|
29
|
+
type: 'string',
|
|
30
|
+
title: 'jq Filter',
|
|
31
|
+
description:
|
|
32
|
+
'A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available.\n\nFor example: to include only the `name` field in every object of a results array, you can provide ".results[].name".\n\nFor more information, see the [jq documentation](https://jqlang.org/manual/).',
|
|
33
|
+
},
|
|
27
34
|
},
|
|
35
|
+
required: ['id'],
|
|
36
|
+
},
|
|
37
|
+
annotations: {
|
|
38
|
+
readOnlyHint: true,
|
|
28
39
|
},
|
|
29
40
|
};
|
|
30
41
|
|
|
31
42
|
export const handler = async (client: ModernTreasury, args: Record<string, unknown> | undefined) => {
|
|
32
|
-
const { id, ...body } = args as any;
|
|
33
|
-
return asTextContentResult(await client.accountCollectionFlows.retrieve(id));
|
|
43
|
+
const { id, jq_filter, ...body } = args as any;
|
|
44
|
+
return asTextContentResult(await maybeFilter(jq_filter, await client.accountCollectionFlows.retrieve(id)));
|
|
34
45
|
};
|
|
35
46
|
|
|
36
47
|
export default { metadata, tool, handler };
|