@nirvana-labs/nirvana-mcp 1.17.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/LICENSE +201 -0
- package/README.md +462 -0
- package/code-tool-paths.cjs +6 -0
- package/code-tool-paths.cjs.map +1 -0
- package/code-tool-paths.d.cts +2 -0
- package/code-tool-paths.d.cts.map +1 -0
- package/code-tool-types.d.mts +14 -0
- package/code-tool-types.d.mts.map +1 -0
- package/code-tool-types.d.ts +14 -0
- package/code-tool-types.d.ts.map +1 -0
- package/code-tool-types.js +4 -0
- package/code-tool-types.js.map +1 -0
- package/code-tool-types.mjs +3 -0
- package/code-tool-types.mjs.map +1 -0
- package/code-tool-worker.d.mts +5 -0
- package/code-tool-worker.d.mts.map +1 -0
- package/code-tool-worker.d.ts +5 -0
- package/code-tool-worker.d.ts.map +1 -0
- package/code-tool-worker.js +45 -0
- package/code-tool-worker.js.map +1 -0
- package/code-tool-worker.mjs +40 -0
- package/code-tool-worker.mjs.map +1 -0
- package/code-tool.d.mts +12 -0
- package/code-tool.d.mts.map +1 -0
- package/code-tool.d.ts +12 -0
- package/code-tool.d.ts.map +1 -0
- package/code-tool.js +157 -0
- package/code-tool.js.map +1 -0
- package/code-tool.mjs +121 -0
- package/code-tool.mjs.map +1 -0
- package/compat.d.mts +58 -0
- package/compat.d.mts.map +1 -0
- package/compat.d.ts +58 -0
- package/compat.d.ts.map +1 -0
- package/compat.js +387 -0
- package/compat.js.map +1 -0
- package/compat.mjs +378 -0
- package/compat.mjs.map +1 -0
- package/dynamic-tools.d.mts +12 -0
- package/dynamic-tools.d.mts.map +1 -0
- package/dynamic-tools.d.ts +12 -0
- package/dynamic-tools.d.ts.map +1 -0
- package/dynamic-tools.js +135 -0
- package/dynamic-tools.js.map +1 -0
- package/dynamic-tools.mjs +132 -0
- package/dynamic-tools.mjs.map +1 -0
- 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 +20 -0
- package/filtering.js.map +1 -0
- package/filtering.mjs +13 -0
- package/filtering.mjs.map +1 -0
- package/headers.d.mts +4 -0
- package/headers.d.mts.map +1 -0
- package/headers.d.ts +4 -0
- package/headers.d.ts.map +1 -0
- package/headers.js +22 -0
- package/headers.js.map +1 -0
- package/headers.mjs +18 -0
- package/headers.mjs.map +1 -0
- package/http.d.mts +9 -0
- package/http.d.mts.map +1 -0
- package/http.d.ts +9 -0
- package/http.d.ts.map +1 -0
- package/http.js +108 -0
- package/http.js.map +1 -0
- package/http.mjs +100 -0
- package/http.mjs.map +1 -0
- package/index.d.mts +3 -0
- package/index.d.mts.map +1 -0
- package/index.d.ts +3 -0
- package/index.d.ts.map +1 -0
- package/index.js +91 -0
- package/index.js.map +1 -0
- package/index.mjs +89 -0
- package/index.mjs.map +1 -0
- package/options.d.mts +19 -0
- package/options.d.mts.map +1 -0
- package/options.d.ts +19 -0
- package/options.d.ts.map +1 -0
- package/options.js +417 -0
- package/options.js.map +1 -0
- package/options.mjs +410 -0
- package/options.mjs.map +1 -0
- package/package.json +206 -0
- package/server.d.mts +35 -0
- package/server.d.mts.map +1 -0
- package/server.d.ts +35 -0
- package/server.d.ts.map +1 -0
- package/server.js +170 -0
- package/server.js.map +1 -0
- package/server.mjs +156 -0
- package/server.mjs.map +1 -0
- package/src/code-tool-paths.cts +3 -0
- package/src/code-tool-types.ts +14 -0
- package/src/code-tool-worker.ts +46 -0
- package/src/code-tool.ts +146 -0
- package/src/compat.ts +483 -0
- package/src/dynamic-tools.ts +159 -0
- package/src/filtering.ts +14 -0
- package/src/headers.ts +23 -0
- package/src/http.ts +127 -0
- package/src/index.ts +108 -0
- package/src/options.ts +456 -0
- package/src/server.ts +204 -0
- package/src/stdio.ts +13 -0
- package/src/tools/api-keys/create-api-keys.ts +56 -0
- package/src/tools/api-keys/delete-api-keys.ts +40 -0
- package/src/tools/api-keys/get-api-keys.ts +47 -0
- package/src/tools/api-keys/list-api-keys.ts +44 -0
- package/src/tools/api-keys/update-api-keys.ts +49 -0
- package/src/tools/compute/vms/availability/create-vms-compute-availability.ts +161 -0
- package/src/tools/compute/vms/availability/update-vms-compute-availability.ts +85 -0
- package/src/tools/compute/vms/create-compute-vms.ts +159 -0
- package/src/tools/compute/vms/delete-compute-vms.ts +47 -0
- package/src/tools/compute/vms/get-compute-vms.ts +47 -0
- package/src/tools/compute/vms/list-compute-vms.ts +44 -0
- package/src/tools/compute/vms/os-images/list-vms-compute-os-images.ts +44 -0
- package/src/tools/compute/vms/restart-compute-vms.ts +45 -0
- package/src/tools/compute/vms/update-compute-vms.ts +83 -0
- package/src/tools/compute/vms/volumes/list-vms-compute-volumes.ts +47 -0
- package/src/tools/compute/volumes/availability/create-volumes-compute-availability.ts +56 -0
- package/src/tools/compute/volumes/availability/update-volumes-compute-availability.ts +55 -0
- package/src/tools/compute/volumes/create-compute-volumes.ts +54 -0
- package/src/tools/compute/volumes/delete-compute-volumes.ts +47 -0
- package/src/tools/compute/volumes/get-compute-volumes.ts +47 -0
- package/src/tools/compute/volumes/list-compute-volumes.ts +44 -0
- package/src/tools/compute/volumes/update-compute-volumes.ts +55 -0
- package/src/tools/connect/flux/get-connect-flux.ts +47 -0
- package/src/tools/connect/flux/list-connect-flux.ts +44 -0
- package/src/tools/index.ts +257 -0
- package/src/tools/networking/firewall-rules/create-networking-firewall-rules.ts +71 -0
- package/src/tools/networking/firewall-rules/delete-networking-firewall-rules.ts +52 -0
- package/src/tools/networking/firewall-rules/get-networking-firewall-rules.ts +52 -0
- package/src/tools/networking/firewall-rules/list-networking-firewall-rules.ts +49 -0
- package/src/tools/networking/firewall-rules/update-networking-firewall-rules.ts +74 -0
- package/src/tools/networking/vpcs/availability/create-vpcs-networking-availability.ts +71 -0
- package/src/tools/networking/vpcs/availability/update-vpcs-networking-availability.ts +55 -0
- package/src/tools/networking/vpcs/create-networking-vpcs.ts +69 -0
- package/src/tools/networking/vpcs/delete-networking-vpcs.ts +47 -0
- package/src/tools/networking/vpcs/get-networking-vpcs.ts +47 -0
- package/src/tools/networking/vpcs/list-networking-vpcs.ts +44 -0
- package/src/tools/networking/vpcs/update-networking-vpcs.ts +53 -0
- package/src/tools/operations/get-operations.ts +47 -0
- package/src/tools/operations/list-operations.ts +44 -0
- package/src/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.ts +46 -0
- package/src/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.ts +47 -0
- package/src/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.ts +44 -0
- package/src/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.ts +44 -0
- package/src/tools/rpc-nodes/flex/get-rpc-nodes-flex.ts +47 -0
- package/src/tools/rpc-nodes/flex/list-rpc-nodes-flex.ts +44 -0
- package/src/tools/types.ts +103 -0
- package/src/tools/user/get-user.ts +44 -0
- package/src/tools/vektor/balances/list-historical-vektor-balances.ts +114 -0
- package/src/tools/vektor/balances/list-vektor-balances.ts +108 -0
- package/src/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.ts +105 -0
- package/src/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.ts +113 -0
- package/src/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.ts +81 -0
- package/src/tools/vektor/borrow/markets/list-borrow-vektor-markets.ts +141 -0
- package/src/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.ts +141 -0
- package/src/tools/vektor/borrow/positions/list-borrow-vektor-positions.ts +162 -0
- package/src/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.ts +162 -0
- package/src/tools/vektor/borrow/repay/create-borrow-vektor-repay.ts +73 -0
- package/src/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.ts +89 -0
- package/src/tools/vektor/buy/buy_/create-buy-vektor-buy.ts +89 -0
- package/src/tools/vektor/buy/quotes/list-buy-vektor-quotes.ts +89 -0
- package/src/tools/vektor/executions/get-vektor-executions.ts +39 -0
- package/src/tools/vektor/executions/list-vektor-executions.ts +34 -0
- package/src/tools/vektor/executions/steps/get-executions-vektor-steps.ts +42 -0
- package/src/tools/vektor/executions/steps/sign-executions-vektor-steps.ts +51 -0
- package/src/tools/vektor/incentivize/list-vektor-incentivize.ts +75 -0
- package/src/tools/vektor/lend/lend_/create-lend-vektor-lend.ts +81 -0
- package/src/tools/vektor/lend/markets/list-historical-lend-vektor-markets.ts +141 -0
- package/src/tools/vektor/lend/markets/list-lend-vektor-markets.ts +141 -0
- package/src/tools/vektor/lend/positions/list-historical-lend-vektor-positions.ts +162 -0
- package/src/tools/vektor/lend/positions/list-lend-vektor-positions.ts +162 -0
- package/src/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.ts +63 -0
- package/src/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.ts +73 -0
- package/src/tools/vektor/lock/markets/list-lock-vektor-markets.ts +78 -0
- package/src/tools/vektor/lock/positions/list-lock-vektor-positions.ts +91 -0
- package/src/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.ts +234 -0
- package/src/tools/vektor/lp/pools/list-historical-lp-vektor-pools.ts +138 -0
- package/src/tools/vektor/lp/pools/list-lp-vektor-pools.ts +138 -0
- package/src/tools/vektor/lp/positions/list-historical-lp-vektor-positions.ts +169 -0
- package/src/tools/vektor/lp/positions/list-lp-vektor-positions.ts +169 -0
- package/src/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.ts +188 -0
- package/src/tools/vektor/move/create-vektor-move.ts +71 -0
- package/src/tools/vektor/prices/list-historical-vektor-prices.ts +60 -0
- package/src/tools/vektor/prices/list-vektor-prices.ts +60 -0
- package/src/tools/vektor/registry/assets/list-registry-vektor-assets.ts +62 -0
- package/src/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.ts +54 -0
- package/src/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.ts +85 -0
- package/src/tools/vektor/registry/errors/list-registry-vektor-errors.ts +48 -0
- package/src/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.ts +85 -0
- package/src/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.ts +83 -0
- package/src/tools/vektor/registry/venues/list-registry-vektor-venues.ts +52 -0
- package/src/tools/vektor/sell/quotes/list-sell-vektor-quotes.ts +81 -0
- package/src/tools/vektor/sell/sell_/create-sell-vektor-sell.ts +89 -0
- package/src/tools/vektor/vote/markets/list-vote-vektor-markets.ts +75 -0
- package/src/tools/vektor/vote/rewards/list-vote-vektor-rewards.ts +88 -0
- package/src/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.ts +60 -0
- package/src/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.ts +60 -0
- package/src/tools.ts +1 -0
- package/src/tsconfig.json +11 -0
- package/stdio.d.mts +3 -0
- package/stdio.d.mts.map +1 -0
- package/stdio.d.ts +3 -0
- package/stdio.d.ts.map +1 -0
- package/stdio.js +14 -0
- package/stdio.js.map +1 -0
- package/stdio.mjs +10 -0
- package/stdio.mjs.map +1 -0
- package/tools/api-keys/create-api-keys.d.mts +45 -0
- package/tools/api-keys/create-api-keys.d.mts.map +1 -0
- package/tools/api-keys/create-api-keys.d.ts +45 -0
- package/tools/api-keys/create-api-keys.d.ts.map +1 -0
- package/tools/api-keys/create-api-keys.js +51 -0
- package/tools/api-keys/create-api-keys.js.map +1 -0
- package/tools/api-keys/create-api-keys.mjs +47 -0
- package/tools/api-keys/create-api-keys.mjs.map +1 -0
- package/tools/api-keys/delete-api-keys.d.mts +45 -0
- package/tools/api-keys/delete-api-keys.d.mts.map +1 -0
- package/tools/api-keys/delete-api-keys.d.ts +45 -0
- package/tools/api-keys/delete-api-keys.d.ts.map +1 -0
- package/tools/api-keys/delete-api-keys.js +37 -0
- package/tools/api-keys/delete-api-keys.js.map +1 -0
- package/tools/api-keys/delete-api-keys.mjs +33 -0
- package/tools/api-keys/delete-api-keys.mjs.map +1 -0
- package/tools/api-keys/get-api-keys.d.mts +45 -0
- package/tools/api-keys/get-api-keys.d.mts.map +1 -0
- package/tools/api-keys/get-api-keys.d.ts +45 -0
- package/tools/api-keys/get-api-keys.d.ts.map +1 -0
- package/tools/api-keys/get-api-keys.js +42 -0
- package/tools/api-keys/get-api-keys.js.map +1 -0
- package/tools/api-keys/get-api-keys.mjs +38 -0
- package/tools/api-keys/get-api-keys.mjs.map +1 -0
- package/tools/api-keys/list-api-keys.d.mts +45 -0
- package/tools/api-keys/list-api-keys.d.mts.map +1 -0
- package/tools/api-keys/list-api-keys.d.ts +45 -0
- package/tools/api-keys/list-api-keys.d.ts.map +1 -0
- package/tools/api-keys/list-api-keys.js +39 -0
- package/tools/api-keys/list-api-keys.js.map +1 -0
- package/tools/api-keys/list-api-keys.mjs +35 -0
- package/tools/api-keys/list-api-keys.mjs.map +1 -0
- package/tools/api-keys/update-api-keys.d.mts +45 -0
- package/tools/api-keys/update-api-keys.d.mts.map +1 -0
- package/tools/api-keys/update-api-keys.d.ts +45 -0
- package/tools/api-keys/update-api-keys.d.ts.map +1 -0
- package/tools/api-keys/update-api-keys.js +44 -0
- package/tools/api-keys/update-api-keys.js.map +1 -0
- package/tools/api-keys/update-api-keys.mjs +40 -0
- package/tools/api-keys/update-api-keys.mjs.map +1 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.d.mts +45 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.d.mts.map +1 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.d.ts +45 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.d.ts.map +1 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.js +154 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.js.map +1 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.mjs +150 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.mjs.map +1 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.d.mts +45 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.d.mts.map +1 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.d.ts +45 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.d.ts.map +1 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.js +78 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.js.map +1 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.mjs +74 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.mjs.map +1 -0
- package/tools/compute/vms/create-compute-vms.d.mts +45 -0
- package/tools/compute/vms/create-compute-vms.d.mts.map +1 -0
- package/tools/compute/vms/create-compute-vms.d.ts +45 -0
- package/tools/compute/vms/create-compute-vms.d.ts.map +1 -0
- package/tools/compute/vms/create-compute-vms.js +154 -0
- package/tools/compute/vms/create-compute-vms.js.map +1 -0
- package/tools/compute/vms/create-compute-vms.mjs +150 -0
- package/tools/compute/vms/create-compute-vms.mjs.map +1 -0
- package/tools/compute/vms/delete-compute-vms.d.mts +45 -0
- package/tools/compute/vms/delete-compute-vms.d.mts.map +1 -0
- package/tools/compute/vms/delete-compute-vms.d.ts +45 -0
- package/tools/compute/vms/delete-compute-vms.d.ts.map +1 -0
- package/tools/compute/vms/delete-compute-vms.js +42 -0
- package/tools/compute/vms/delete-compute-vms.js.map +1 -0
- package/tools/compute/vms/delete-compute-vms.mjs +38 -0
- package/tools/compute/vms/delete-compute-vms.mjs.map +1 -0
- package/tools/compute/vms/get-compute-vms.d.mts +45 -0
- package/tools/compute/vms/get-compute-vms.d.mts.map +1 -0
- package/tools/compute/vms/get-compute-vms.d.ts +45 -0
- package/tools/compute/vms/get-compute-vms.d.ts.map +1 -0
- package/tools/compute/vms/get-compute-vms.js +42 -0
- package/tools/compute/vms/get-compute-vms.js.map +1 -0
- package/tools/compute/vms/get-compute-vms.mjs +38 -0
- package/tools/compute/vms/get-compute-vms.mjs.map +1 -0
- package/tools/compute/vms/list-compute-vms.d.mts +45 -0
- package/tools/compute/vms/list-compute-vms.d.mts.map +1 -0
- package/tools/compute/vms/list-compute-vms.d.ts +45 -0
- package/tools/compute/vms/list-compute-vms.d.ts.map +1 -0
- package/tools/compute/vms/list-compute-vms.js +39 -0
- package/tools/compute/vms/list-compute-vms.js.map +1 -0
- package/tools/compute/vms/list-compute-vms.mjs +35 -0
- package/tools/compute/vms/list-compute-vms.mjs.map +1 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.d.mts +45 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.d.mts.map +1 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.d.ts +45 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.d.ts.map +1 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.js +39 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.js.map +1 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.mjs +35 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.mjs.map +1 -0
- package/tools/compute/vms/restart-compute-vms.d.mts +45 -0
- package/tools/compute/vms/restart-compute-vms.d.mts.map +1 -0
- package/tools/compute/vms/restart-compute-vms.d.ts +45 -0
- package/tools/compute/vms/restart-compute-vms.d.ts.map +1 -0
- package/tools/compute/vms/restart-compute-vms.js +40 -0
- package/tools/compute/vms/restart-compute-vms.js.map +1 -0
- package/tools/compute/vms/restart-compute-vms.mjs +36 -0
- package/tools/compute/vms/restart-compute-vms.mjs.map +1 -0
- package/tools/compute/vms/update-compute-vms.d.mts +45 -0
- package/tools/compute/vms/update-compute-vms.d.mts.map +1 -0
- package/tools/compute/vms/update-compute-vms.d.ts +45 -0
- package/tools/compute/vms/update-compute-vms.d.ts.map +1 -0
- package/tools/compute/vms/update-compute-vms.js +78 -0
- package/tools/compute/vms/update-compute-vms.js.map +1 -0
- package/tools/compute/vms/update-compute-vms.mjs +74 -0
- package/tools/compute/vms/update-compute-vms.mjs.map +1 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.d.mts +45 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.d.mts.map +1 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.d.ts +45 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.d.ts.map +1 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.js +42 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.js.map +1 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.mjs +38 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.mjs.map +1 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.d.mts +45 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.d.mts.map +1 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.d.ts +45 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.d.ts.map +1 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.js +49 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.js.map +1 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.mjs +45 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.mjs.map +1 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.d.mts +45 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.d.mts.map +1 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.d.ts +45 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.d.ts.map +1 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.js +48 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.js.map +1 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.mjs +44 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.mjs.map +1 -0
- package/tools/compute/volumes/create-compute-volumes.d.mts +45 -0
- package/tools/compute/volumes/create-compute-volumes.d.mts.map +1 -0
- package/tools/compute/volumes/create-compute-volumes.d.ts +45 -0
- package/tools/compute/volumes/create-compute-volumes.d.ts.map +1 -0
- package/tools/compute/volumes/create-compute-volumes.js +49 -0
- package/tools/compute/volumes/create-compute-volumes.js.map +1 -0
- package/tools/compute/volumes/create-compute-volumes.mjs +45 -0
- package/tools/compute/volumes/create-compute-volumes.mjs.map +1 -0
- package/tools/compute/volumes/delete-compute-volumes.d.mts +45 -0
- package/tools/compute/volumes/delete-compute-volumes.d.mts.map +1 -0
- package/tools/compute/volumes/delete-compute-volumes.d.ts +45 -0
- package/tools/compute/volumes/delete-compute-volumes.d.ts.map +1 -0
- package/tools/compute/volumes/delete-compute-volumes.js +42 -0
- package/tools/compute/volumes/delete-compute-volumes.js.map +1 -0
- package/tools/compute/volumes/delete-compute-volumes.mjs +38 -0
- package/tools/compute/volumes/delete-compute-volumes.mjs.map +1 -0
- package/tools/compute/volumes/get-compute-volumes.d.mts +45 -0
- package/tools/compute/volumes/get-compute-volumes.d.mts.map +1 -0
- package/tools/compute/volumes/get-compute-volumes.d.ts +45 -0
- package/tools/compute/volumes/get-compute-volumes.d.ts.map +1 -0
- package/tools/compute/volumes/get-compute-volumes.js +42 -0
- package/tools/compute/volumes/get-compute-volumes.js.map +1 -0
- package/tools/compute/volumes/get-compute-volumes.mjs +38 -0
- package/tools/compute/volumes/get-compute-volumes.mjs.map +1 -0
- package/tools/compute/volumes/list-compute-volumes.d.mts +45 -0
- package/tools/compute/volumes/list-compute-volumes.d.mts.map +1 -0
- package/tools/compute/volumes/list-compute-volumes.d.ts +45 -0
- package/tools/compute/volumes/list-compute-volumes.d.ts.map +1 -0
- package/tools/compute/volumes/list-compute-volumes.js +39 -0
- package/tools/compute/volumes/list-compute-volumes.js.map +1 -0
- package/tools/compute/volumes/list-compute-volumes.mjs +35 -0
- package/tools/compute/volumes/list-compute-volumes.mjs.map +1 -0
- package/tools/compute/volumes/update-compute-volumes.d.mts +45 -0
- package/tools/compute/volumes/update-compute-volumes.d.mts.map +1 -0
- package/tools/compute/volumes/update-compute-volumes.d.ts +45 -0
- package/tools/compute/volumes/update-compute-volumes.d.ts.map +1 -0
- package/tools/compute/volumes/update-compute-volumes.js +48 -0
- package/tools/compute/volumes/update-compute-volumes.js.map +1 -0
- package/tools/compute/volumes/update-compute-volumes.mjs +44 -0
- package/tools/compute/volumes/update-compute-volumes.mjs.map +1 -0
- package/tools/connect/flux/get-connect-flux.d.mts +45 -0
- package/tools/connect/flux/get-connect-flux.d.mts.map +1 -0
- package/tools/connect/flux/get-connect-flux.d.ts +45 -0
- package/tools/connect/flux/get-connect-flux.d.ts.map +1 -0
- package/tools/connect/flux/get-connect-flux.js +42 -0
- package/tools/connect/flux/get-connect-flux.js.map +1 -0
- package/tools/connect/flux/get-connect-flux.mjs +38 -0
- package/tools/connect/flux/get-connect-flux.mjs.map +1 -0
- package/tools/connect/flux/list-connect-flux.d.mts +45 -0
- package/tools/connect/flux/list-connect-flux.d.mts.map +1 -0
- package/tools/connect/flux/list-connect-flux.d.ts +45 -0
- package/tools/connect/flux/list-connect-flux.d.ts.map +1 -0
- package/tools/connect/flux/list-connect-flux.js +39 -0
- package/tools/connect/flux/list-connect-flux.js.map +1 -0
- package/tools/connect/flux/list-connect-flux.mjs +35 -0
- package/tools/connect/flux/list-connect-flux.mjs.map +1 -0
- package/tools/index.d.mts +10 -0
- package/tools/index.d.mts.map +1 -0
- package/tools/index.d.ts +10 -0
- package/tools/index.d.ts.map +1 -0
- package/tools/index.js +241 -0
- package/tools/index.js.map +1 -0
- package/tools/index.mjs +234 -0
- package/tools/index.mjs.map +1 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.d.mts +45 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.d.mts.map +1 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.d.ts +45 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.d.ts.map +1 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.js +64 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.js.map +1 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.mjs +60 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.mjs.map +1 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.d.mts +45 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.d.mts.map +1 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.d.ts +45 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.d.ts.map +1 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.js +45 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.js.map +1 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.mjs +41 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.mjs.map +1 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.d.mts +45 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.d.mts.map +1 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.d.ts +45 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.d.ts.map +1 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.js +45 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.js.map +1 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.mjs +41 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.mjs.map +1 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.d.mts +45 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.d.mts.map +1 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.d.ts +45 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.d.ts.map +1 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.js +42 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.js.map +1 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.mjs +38 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.mjs.map +1 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.d.mts +45 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.d.mts.map +1 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.d.ts +45 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.d.ts.map +1 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.js +67 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.js.map +1 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.mjs +63 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.mjs.map +1 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.mts +45 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.mts.map +1 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.ts +45 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.ts.map +1 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.js +64 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.js.map +1 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.mjs +60 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.mjs.map +1 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.mts +45 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.mts.map +1 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.ts +45 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.ts.map +1 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.js +48 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.js.map +1 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.mjs +44 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.mjs.map +1 -0
- package/tools/networking/vpcs/create-networking-vpcs.d.mts +45 -0
- package/tools/networking/vpcs/create-networking-vpcs.d.mts.map +1 -0
- package/tools/networking/vpcs/create-networking-vpcs.d.ts +45 -0
- package/tools/networking/vpcs/create-networking-vpcs.d.ts.map +1 -0
- package/tools/networking/vpcs/create-networking-vpcs.js +64 -0
- package/tools/networking/vpcs/create-networking-vpcs.js.map +1 -0
- package/tools/networking/vpcs/create-networking-vpcs.mjs +60 -0
- package/tools/networking/vpcs/create-networking-vpcs.mjs.map +1 -0
- package/tools/networking/vpcs/delete-networking-vpcs.d.mts +45 -0
- package/tools/networking/vpcs/delete-networking-vpcs.d.mts.map +1 -0
- package/tools/networking/vpcs/delete-networking-vpcs.d.ts +45 -0
- package/tools/networking/vpcs/delete-networking-vpcs.d.ts.map +1 -0
- package/tools/networking/vpcs/delete-networking-vpcs.js +42 -0
- package/tools/networking/vpcs/delete-networking-vpcs.js.map +1 -0
- package/tools/networking/vpcs/delete-networking-vpcs.mjs +38 -0
- package/tools/networking/vpcs/delete-networking-vpcs.mjs.map +1 -0
- package/tools/networking/vpcs/get-networking-vpcs.d.mts +45 -0
- package/tools/networking/vpcs/get-networking-vpcs.d.mts.map +1 -0
- package/tools/networking/vpcs/get-networking-vpcs.d.ts +45 -0
- package/tools/networking/vpcs/get-networking-vpcs.d.ts.map +1 -0
- package/tools/networking/vpcs/get-networking-vpcs.js +42 -0
- package/tools/networking/vpcs/get-networking-vpcs.js.map +1 -0
- package/tools/networking/vpcs/get-networking-vpcs.mjs +38 -0
- package/tools/networking/vpcs/get-networking-vpcs.mjs.map +1 -0
- package/tools/networking/vpcs/list-networking-vpcs.d.mts +45 -0
- package/tools/networking/vpcs/list-networking-vpcs.d.mts.map +1 -0
- package/tools/networking/vpcs/list-networking-vpcs.d.ts +45 -0
- package/tools/networking/vpcs/list-networking-vpcs.d.ts.map +1 -0
- package/tools/networking/vpcs/list-networking-vpcs.js +39 -0
- package/tools/networking/vpcs/list-networking-vpcs.js.map +1 -0
- package/tools/networking/vpcs/list-networking-vpcs.mjs +35 -0
- package/tools/networking/vpcs/list-networking-vpcs.mjs.map +1 -0
- package/tools/networking/vpcs/update-networking-vpcs.d.mts +45 -0
- package/tools/networking/vpcs/update-networking-vpcs.d.mts.map +1 -0
- package/tools/networking/vpcs/update-networking-vpcs.d.ts +45 -0
- package/tools/networking/vpcs/update-networking-vpcs.d.ts.map +1 -0
- package/tools/networking/vpcs/update-networking-vpcs.js +48 -0
- package/tools/networking/vpcs/update-networking-vpcs.js.map +1 -0
- package/tools/networking/vpcs/update-networking-vpcs.mjs +44 -0
- package/tools/networking/vpcs/update-networking-vpcs.mjs.map +1 -0
- package/tools/operations/get-operations.d.mts +45 -0
- package/tools/operations/get-operations.d.mts.map +1 -0
- package/tools/operations/get-operations.d.ts +45 -0
- package/tools/operations/get-operations.d.ts.map +1 -0
- package/tools/operations/get-operations.js +42 -0
- package/tools/operations/get-operations.js.map +1 -0
- package/tools/operations/get-operations.mjs +38 -0
- package/tools/operations/get-operations.mjs.map +1 -0
- package/tools/operations/list-operations.d.mts +45 -0
- package/tools/operations/list-operations.d.mts.map +1 -0
- package/tools/operations/list-operations.d.ts +45 -0
- package/tools/operations/list-operations.d.ts.map +1 -0
- package/tools/operations/list-operations.js +39 -0
- package/tools/operations/list-operations.js.map +1 -0
- package/tools/operations/list-operations.mjs +35 -0
- package/tools/operations/list-operations.mjs.map +1 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.d.mts +45 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.d.mts.map +1 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.d.ts +45 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.d.ts.map +1 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.js +39 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.js.map +1 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.mjs +35 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.mjs.map +1 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.d.mts +45 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.d.mts.map +1 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.d.ts +45 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.d.ts.map +1 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js +42 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js.map +1 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs +38 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs.map +1 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.d.mts +45 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.d.mts.map +1 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.d.ts +45 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.d.ts.map +1 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js +39 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js.map +1 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs +35 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs.map +1 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.d.mts +45 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.d.mts.map +1 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.d.ts +45 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.d.ts.map +1 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.js +39 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.js.map +1 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.mjs +35 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.mjs.map +1 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.d.mts +45 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.d.mts.map +1 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.d.ts +45 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.d.ts.map +1 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js +42 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js.map +1 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs +38 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs.map +1 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.d.mts +45 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.d.mts.map +1 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.d.ts +45 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.d.ts.map +1 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js +39 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js.map +1 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs +35 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs.map +1 -0
- package/tools/types.d.mts +51 -0
- package/tools/types.d.mts.map +1 -0
- package/tools/types.d.ts +51 -0
- package/tools/types.d.ts.map +1 -0
- package/tools/types.js +46 -0
- package/tools/types.js.map +1 -0
- package/tools/types.mjs +42 -0
- package/tools/types.mjs.map +1 -0
- package/tools/user/get-user.d.mts +45 -0
- package/tools/user/get-user.d.mts.map +1 -0
- package/tools/user/get-user.d.ts +45 -0
- package/tools/user/get-user.d.ts.map +1 -0
- package/tools/user/get-user.js +39 -0
- package/tools/user/get-user.js.map +1 -0
- package/tools/user/get-user.mjs +35 -0
- package/tools/user/get-user.mjs.map +1 -0
- package/tools/vektor/balances/list-historical-vektor-balances.d.mts +45 -0
- package/tools/vektor/balances/list-historical-vektor-balances.d.mts.map +1 -0
- package/tools/vektor/balances/list-historical-vektor-balances.d.ts +45 -0
- package/tools/vektor/balances/list-historical-vektor-balances.d.ts.map +1 -0
- package/tools/vektor/balances/list-historical-vektor-balances.js +109 -0
- package/tools/vektor/balances/list-historical-vektor-balances.js.map +1 -0
- package/tools/vektor/balances/list-historical-vektor-balances.mjs +105 -0
- package/tools/vektor/balances/list-historical-vektor-balances.mjs.map +1 -0
- package/tools/vektor/balances/list-vektor-balances.d.mts +45 -0
- package/tools/vektor/balances/list-vektor-balances.d.mts.map +1 -0
- package/tools/vektor/balances/list-vektor-balances.d.ts +45 -0
- package/tools/vektor/balances/list-vektor-balances.d.ts.map +1 -0
- package/tools/vektor/balances/list-vektor-balances.js +103 -0
- package/tools/vektor/balances/list-vektor-balances.js.map +1 -0
- package/tools/vektor/balances/list-vektor-balances.mjs +99 -0
- package/tools/vektor/balances/list-vektor-balances.mjs.map +1 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.d.mts +45 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.d.mts.map +1 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.d.ts +45 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.d.ts.map +1 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.js +100 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.js.map +1 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.mjs +96 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.mjs.map +1 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.d.mts +45 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.d.mts.map +1 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.d.ts +45 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.d.ts.map +1 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.js +106 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.js.map +1 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.mjs +102 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.mjs.map +1 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.d.mts +45 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.d.mts.map +1 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.d.ts +45 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.d.ts.map +1 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.js +78 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.js.map +1 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.mjs +74 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.mjs.map +1 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.d.mts +45 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.d.mts.map +1 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.d.ts +45 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.d.ts.map +1 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.js +138 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.js.map +1 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.mjs +134 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.mjs.map +1 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.d.mts +45 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.d.mts.map +1 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.d.ts +45 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.d.ts.map +1 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.js +138 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.js.map +1 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.mjs +134 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.mjs.map +1 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.d.mts +45 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.d.ts +45 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.js +159 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.js.map +1 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.mjs +155 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.mjs.map +1 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.d.mts +45 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.d.ts +45 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.js +159 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.js.map +1 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.mjs +155 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.mjs.map +1 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.d.mts +45 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.d.mts.map +1 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.d.ts +45 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.d.ts.map +1 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.js +70 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.js.map +1 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.mjs +66 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.mjs.map +1 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.d.mts +45 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.d.mts.map +1 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.d.ts +45 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.d.ts.map +1 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.js +84 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.js.map +1 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.mjs +80 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.mjs.map +1 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.d.mts +45 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.d.mts.map +1 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.d.ts +45 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.d.ts.map +1 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.js +86 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.js.map +1 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.mjs +82 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.mjs.map +1 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.d.mts +45 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.d.mts.map +1 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.d.ts +45 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.d.ts.map +1 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.js +84 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.js.map +1 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.mjs +80 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.mjs.map +1 -0
- package/tools/vektor/executions/get-vektor-executions.d.mts +45 -0
- package/tools/vektor/executions/get-vektor-executions.d.mts.map +1 -0
- package/tools/vektor/executions/get-vektor-executions.d.ts +45 -0
- package/tools/vektor/executions/get-vektor-executions.d.ts.map +1 -0
- package/tools/vektor/executions/get-vektor-executions.js +36 -0
- package/tools/vektor/executions/get-vektor-executions.js.map +1 -0
- package/tools/vektor/executions/get-vektor-executions.mjs +32 -0
- package/tools/vektor/executions/get-vektor-executions.mjs.map +1 -0
- package/tools/vektor/executions/list-vektor-executions.d.mts +45 -0
- package/tools/vektor/executions/list-vektor-executions.d.mts.map +1 -0
- package/tools/vektor/executions/list-vektor-executions.d.ts +45 -0
- package/tools/vektor/executions/list-vektor-executions.d.ts.map +1 -0
- package/tools/vektor/executions/list-vektor-executions.js +31 -0
- package/tools/vektor/executions/list-vektor-executions.js.map +1 -0
- package/tools/vektor/executions/list-vektor-executions.mjs +27 -0
- package/tools/vektor/executions/list-vektor-executions.mjs.map +1 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.d.mts +45 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.d.mts.map +1 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.d.ts +45 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.d.ts.map +1 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.js +39 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.js.map +1 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.mjs +35 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.mjs.map +1 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.d.mts +45 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.d.mts.map +1 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.d.ts +45 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.d.ts.map +1 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.js +48 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.js.map +1 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.mjs +44 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.mjs.map +1 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.d.mts +45 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.d.mts.map +1 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.d.ts +45 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.d.ts.map +1 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.js +72 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.js.map +1 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.mjs +68 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.mjs.map +1 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.d.mts +45 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.d.mts.map +1 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.d.ts +45 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.d.ts.map +1 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.js +78 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.js.map +1 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.mjs +74 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.mjs.map +1 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.d.mts +45 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.d.mts.map +1 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.d.ts +45 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.d.ts.map +1 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.js +138 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.js.map +1 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.mjs +134 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.mjs.map +1 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.d.mts +45 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.d.mts.map +1 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.d.ts +45 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.d.ts.map +1 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.js +138 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.js.map +1 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.mjs +134 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.mjs.map +1 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.d.mts +45 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.d.ts +45 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.js +159 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.js.map +1 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.mjs +155 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.mjs.map +1 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.d.mts +45 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.d.ts +45 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.js +159 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.js.map +1 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.mjs +155 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.mjs.map +1 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.d.mts +45 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.d.mts.map +1 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.d.ts +45 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.d.ts.map +1 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.js +60 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.js.map +1 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.mjs +56 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.mjs.map +1 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.d.mts +45 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.d.mts.map +1 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.d.ts +45 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.d.ts.map +1 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.js +70 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.js.map +1 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.mjs +66 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.mjs.map +1 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.d.mts +45 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.d.mts.map +1 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.d.ts +45 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.d.ts.map +1 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.js +73 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.js.map +1 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.mjs +69 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.mjs.map +1 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.d.mts +45 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.d.ts +45 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.js +86 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.js.map +1 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.mjs +82 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.mjs.map +1 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.d.mts +45 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.d.mts.map +1 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.d.ts +45 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.d.ts.map +1 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.js +229 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.js.map +1 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.mjs +225 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.mjs.map +1 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.d.mts +45 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.d.mts.map +1 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.d.ts +45 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.d.ts.map +1 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.js +135 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.js.map +1 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.mjs +131 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.mjs.map +1 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.d.mts +45 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.d.mts.map +1 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.d.ts +45 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.d.ts.map +1 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.js +135 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.js.map +1 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.mjs +131 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.mjs.map +1 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.d.mts +45 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.d.ts +45 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.js +166 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.js.map +1 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.mjs +162 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.mjs.map +1 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.d.mts +45 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.d.ts +45 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.js +166 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.js.map +1 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.mjs +162 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.mjs.map +1 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.d.mts +45 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.d.mts.map +1 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.d.ts +45 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.d.ts.map +1 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.js +185 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.js.map +1 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.mjs +181 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.mjs.map +1 -0
- package/tools/vektor/move/create-vektor-move.d.mts +45 -0
- package/tools/vektor/move/create-vektor-move.d.mts.map +1 -0
- package/tools/vektor/move/create-vektor-move.d.ts +45 -0
- package/tools/vektor/move/create-vektor-move.d.ts.map +1 -0
- package/tools/vektor/move/create-vektor-move.js +68 -0
- package/tools/vektor/move/create-vektor-move.js.map +1 -0
- package/tools/vektor/move/create-vektor-move.mjs +64 -0
- package/tools/vektor/move/create-vektor-move.mjs.map +1 -0
- package/tools/vektor/prices/list-historical-vektor-prices.d.mts +45 -0
- package/tools/vektor/prices/list-historical-vektor-prices.d.mts.map +1 -0
- package/tools/vektor/prices/list-historical-vektor-prices.d.ts +45 -0
- package/tools/vektor/prices/list-historical-vektor-prices.d.ts.map +1 -0
- package/tools/vektor/prices/list-historical-vektor-prices.js +55 -0
- package/tools/vektor/prices/list-historical-vektor-prices.js.map +1 -0
- package/tools/vektor/prices/list-historical-vektor-prices.mjs +51 -0
- package/tools/vektor/prices/list-historical-vektor-prices.mjs.map +1 -0
- package/tools/vektor/prices/list-vektor-prices.d.mts +45 -0
- package/tools/vektor/prices/list-vektor-prices.d.mts.map +1 -0
- package/tools/vektor/prices/list-vektor-prices.d.ts +45 -0
- package/tools/vektor/prices/list-vektor-prices.d.ts.map +1 -0
- package/tools/vektor/prices/list-vektor-prices.js +55 -0
- package/tools/vektor/prices/list-vektor-prices.js.map +1 -0
- package/tools/vektor/prices/list-vektor-prices.mjs +51 -0
- package/tools/vektor/prices/list-vektor-prices.mjs.map +1 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.d.mts +45 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.d.mts.map +1 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.d.ts +45 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.d.ts.map +1 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.js +57 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.js.map +1 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.mjs +53 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.mjs.map +1 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.d.mts +45 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.d.mts.map +1 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.d.ts +45 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.d.ts.map +1 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.js +47 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.js.map +1 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.mjs +43 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.mjs.map +1 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.d.mts +45 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.d.mts.map +1 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.d.ts +45 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.d.ts.map +1 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.js +78 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.js.map +1 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.mjs +74 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.mjs.map +1 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.d.mts +45 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.d.mts.map +1 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.d.ts +45 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.d.ts.map +1 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.js +43 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.js.map +1 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.mjs +39 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.mjs.map +1 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.d.mts +45 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.d.mts.map +1 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.d.ts +45 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.d.ts.map +1 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.js +78 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.js.map +1 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.mjs +74 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.mjs.map +1 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.d.mts +45 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.d.mts.map +1 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.d.ts +45 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.d.ts.map +1 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.js +78 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.js.map +1 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.mjs +74 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.mjs.map +1 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.d.mts +45 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.d.mts.map +1 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.d.ts +45 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.d.ts.map +1 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.js +47 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.js.map +1 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.mjs +43 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.mjs.map +1 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.d.mts +45 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.d.mts.map +1 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.d.ts +45 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.d.ts.map +1 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.js +78 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.js.map +1 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.mjs +74 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.mjs.map +1 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.d.mts +45 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.d.mts.map +1 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.d.ts +45 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.d.ts.map +1 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.js +86 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.js.map +1 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.mjs +82 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.mjs.map +1 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.d.mts +45 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.d.mts.map +1 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.d.ts +45 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.d.ts.map +1 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.js +72 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.js.map +1 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.mjs +68 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.mjs.map +1 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.d.mts +45 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.d.mts.map +1 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.d.ts +45 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.d.ts.map +1 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.js +85 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.js.map +1 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.mjs +81 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.mjs.map +1 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.d.mts +45 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.d.mts.map +1 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.d.ts +45 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.d.ts.map +1 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.js +57 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.js.map +1 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.mjs +53 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.mjs.map +1 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.d.mts +45 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.d.mts.map +1 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.d.ts +45 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.d.ts.map +1 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.js +57 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.js.map +1 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.mjs +53 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.mjs.map +1 -0
- package/tools.d.mts +2 -0
- package/tools.d.mts.map +1 -0
- package/tools.d.ts +2 -0
- package/tools.d.ts.map +1 -0
- package/tools.js +18 -0
- package/tools.js.map +1 -0
- package/tools.mjs +2 -0
- package/tools.mjs.map +1 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
import { Metadata, asTextContentResult } from '@nirvana-labs/nirvana-mcp/tools/types';
|
|
4
|
+
|
|
5
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
6
|
+
import NirvanaLabs from '@nirvana-labs/nirvana';
|
|
7
|
+
|
|
8
|
+
export const metadata: Metadata = {
|
|
9
|
+
resource: 'vektor.vote.markets',
|
|
10
|
+
operation: 'write',
|
|
11
|
+
tags: [],
|
|
12
|
+
httpMethod: 'post',
|
|
13
|
+
httpPath: '/v1/vektor/vote/markets',
|
|
14
|
+
operationId: 'vote_markets',
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export const tool: Tool = {
|
|
18
|
+
name: 'list_vote_vektor_markets',
|
|
19
|
+
description: 'Get the current LP voting markets',
|
|
20
|
+
inputSchema: {
|
|
21
|
+
type: 'object',
|
|
22
|
+
properties: {
|
|
23
|
+
assets: {
|
|
24
|
+
type: 'array',
|
|
25
|
+
title: 'AssetIDOrAddressEVMOrAssetSymbolList',
|
|
26
|
+
description: 'A list of asset IDs, EVM addresses or asset symbols',
|
|
27
|
+
items: {
|
|
28
|
+
$ref: '#/$defs/asset_id_or_address_evm_or_asset_symbol',
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
blockchain: {
|
|
32
|
+
$ref: '#/$defs/blockchain_id_or_blockchain_symbol',
|
|
33
|
+
},
|
|
34
|
+
venues: {
|
|
35
|
+
type: 'array',
|
|
36
|
+
title: 'VenueIDOrVenueSymbolList',
|
|
37
|
+
description: 'A list of venue IDs or venue symbols',
|
|
38
|
+
items: {
|
|
39
|
+
$ref: '#/$defs/venue_id_or_venue_symbol',
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
quote_asset_symbol: {
|
|
43
|
+
type: 'string',
|
|
44
|
+
title: 'AssetSymbol',
|
|
45
|
+
description: 'An asset symbol',
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
required: ['assets', 'blockchain', 'venues'],
|
|
49
|
+
$defs: {
|
|
50
|
+
asset_id_or_address_evm_or_asset_symbol: {
|
|
51
|
+
type: 'string',
|
|
52
|
+
title: 'AssetID',
|
|
53
|
+
description: 'An asset ID, represented as a TypeID with `asset` prefix',
|
|
54
|
+
},
|
|
55
|
+
blockchain_id_or_blockchain_symbol: {
|
|
56
|
+
type: 'string',
|
|
57
|
+
title: 'BlockchainID',
|
|
58
|
+
description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix',
|
|
59
|
+
},
|
|
60
|
+
venue_id_or_venue_symbol: {
|
|
61
|
+
type: 'string',
|
|
62
|
+
title: 'VenueID',
|
|
63
|
+
description: 'A venue ID, represented as a TypeID with `venue` prefix',
|
|
64
|
+
},
|
|
65
|
+
},
|
|
66
|
+
},
|
|
67
|
+
annotations: {},
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
export const handler = async (client: NirvanaLabs, args: Record<string, unknown> | undefined) => {
|
|
71
|
+
const body = args as any;
|
|
72
|
+
return asTextContentResult(await client.vektor.vote.markets.list(body));
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
export default { metadata, tool, handler };
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
import { Metadata, asTextContentResult } from '@nirvana-labs/nirvana-mcp/tools/types';
|
|
4
|
+
|
|
5
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
6
|
+
import NirvanaLabs from '@nirvana-labs/nirvana';
|
|
7
|
+
|
|
8
|
+
export const metadata: Metadata = {
|
|
9
|
+
resource: 'vektor.vote.rewards',
|
|
10
|
+
operation: 'write',
|
|
11
|
+
tags: [],
|
|
12
|
+
httpMethod: 'post',
|
|
13
|
+
httpPath: '/v1/vektor/vote/rewards',
|
|
14
|
+
operationId: 'vote_rewards',
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export const tool: Tool = {
|
|
18
|
+
name: 'list_vote_vektor_rewards',
|
|
19
|
+
description: 'Get the unclaimed rewards from LP voting markets',
|
|
20
|
+
inputSchema: {
|
|
21
|
+
type: 'object',
|
|
22
|
+
properties: {
|
|
23
|
+
accounts: {
|
|
24
|
+
type: 'array',
|
|
25
|
+
title: 'AccountList',
|
|
26
|
+
description: 'A list of accounts. Currently only EVM addresses are supported.',
|
|
27
|
+
items: {
|
|
28
|
+
$ref: '#/$defs/account',
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
assets: {
|
|
32
|
+
type: 'array',
|
|
33
|
+
title: 'AssetIDOrAddressEVMOrAssetSymbolList',
|
|
34
|
+
description: 'A list of asset IDs, EVM addresses or asset symbols',
|
|
35
|
+
items: {
|
|
36
|
+
$ref: '#/$defs/asset_id_or_address_evm_or_asset_symbol',
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
blockchain: {
|
|
40
|
+
$ref: '#/$defs/blockchain_id_or_blockchain_symbol',
|
|
41
|
+
},
|
|
42
|
+
venues: {
|
|
43
|
+
type: 'array',
|
|
44
|
+
title: 'VenueIDOrVenueSymbolList',
|
|
45
|
+
description: 'A list of venue IDs or venue symbols',
|
|
46
|
+
items: {
|
|
47
|
+
$ref: '#/$defs/venue_id_or_venue_symbol',
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
quote_asset_symbol: {
|
|
51
|
+
type: 'string',
|
|
52
|
+
title: 'AssetSymbol',
|
|
53
|
+
description: 'An asset symbol',
|
|
54
|
+
},
|
|
55
|
+
},
|
|
56
|
+
required: ['accounts', 'assets', 'blockchain', 'venues'],
|
|
57
|
+
$defs: {
|
|
58
|
+
account: {
|
|
59
|
+
type: 'string',
|
|
60
|
+
title: 'AddressEVM',
|
|
61
|
+
description: 'An EVM address',
|
|
62
|
+
},
|
|
63
|
+
asset_id_or_address_evm_or_asset_symbol: {
|
|
64
|
+
type: 'string',
|
|
65
|
+
title: 'AssetID',
|
|
66
|
+
description: 'An asset ID, represented as a TypeID with `asset` prefix',
|
|
67
|
+
},
|
|
68
|
+
blockchain_id_or_blockchain_symbol: {
|
|
69
|
+
type: 'string',
|
|
70
|
+
title: 'BlockchainID',
|
|
71
|
+
description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix',
|
|
72
|
+
},
|
|
73
|
+
venue_id_or_venue_symbol: {
|
|
74
|
+
type: 'string',
|
|
75
|
+
title: 'VenueID',
|
|
76
|
+
description: 'A venue ID, represented as a TypeID with `venue` prefix',
|
|
77
|
+
},
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
annotations: {},
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
export const handler = async (client: NirvanaLabs, args: Record<string, unknown> | undefined) => {
|
|
84
|
+
const body = args as any;
|
|
85
|
+
return asTextContentResult(await client.vektor.vote.rewards.list(body));
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export default { metadata, tool, handler };
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
import { Metadata, asTextContentResult } from '@nirvana-labs/nirvana-mcp/tools/types';
|
|
4
|
+
|
|
5
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
6
|
+
import NirvanaLabs from '@nirvana-labs/nirvana';
|
|
7
|
+
|
|
8
|
+
export const metadata: Metadata = {
|
|
9
|
+
resource: 'vektor.wrap.unwrap',
|
|
10
|
+
operation: 'write',
|
|
11
|
+
tags: [],
|
|
12
|
+
httpMethod: 'post',
|
|
13
|
+
httpPath: '/v1/vektor/wrap/unwrap',
|
|
14
|
+
operationId: 'unwrap',
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export const tool: Tool = {
|
|
18
|
+
name: 'create_wrap_vektor_unwrap',
|
|
19
|
+
description: 'Unwrap the wrapped native asset',
|
|
20
|
+
inputSchema: {
|
|
21
|
+
type: 'object',
|
|
22
|
+
properties: {
|
|
23
|
+
amount: {
|
|
24
|
+
$ref: '#/$defs/decimal',
|
|
25
|
+
},
|
|
26
|
+
blockchain: {
|
|
27
|
+
$ref: '#/$defs/blockchain_id_or_blockchain_symbol',
|
|
28
|
+
},
|
|
29
|
+
from: {
|
|
30
|
+
$ref: '#/$defs/account',
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
required: ['amount', 'blockchain', 'from'],
|
|
34
|
+
$defs: {
|
|
35
|
+
decimal: {
|
|
36
|
+
type: 'string',
|
|
37
|
+
title: 'Decimal',
|
|
38
|
+
description: 'An arbitrary precision decimal represented as a string',
|
|
39
|
+
},
|
|
40
|
+
blockchain_id_or_blockchain_symbol: {
|
|
41
|
+
type: 'string',
|
|
42
|
+
title: 'BlockchainID',
|
|
43
|
+
description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix',
|
|
44
|
+
},
|
|
45
|
+
account: {
|
|
46
|
+
type: 'string',
|
|
47
|
+
title: 'AddressEVM',
|
|
48
|
+
description: 'An EVM address',
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
annotations: {},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export const handler = async (client: NirvanaLabs, args: Record<string, unknown> | undefined) => {
|
|
56
|
+
const body = args as any;
|
|
57
|
+
return asTextContentResult(await client.vektor.wrap.unwrap.create(body));
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export default { metadata, tool, handler };
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
import { Metadata, asTextContentResult } from '@nirvana-labs/nirvana-mcp/tools/types';
|
|
4
|
+
|
|
5
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
6
|
+
import NirvanaLabs from '@nirvana-labs/nirvana';
|
|
7
|
+
|
|
8
|
+
export const metadata: Metadata = {
|
|
9
|
+
resource: 'vektor.wrap.wrap',
|
|
10
|
+
operation: 'write',
|
|
11
|
+
tags: [],
|
|
12
|
+
httpMethod: 'post',
|
|
13
|
+
httpPath: '/v1/vektor/wrap/wrap',
|
|
14
|
+
operationId: 'wrap',
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export const tool: Tool = {
|
|
18
|
+
name: 'create_wrap_vektor_wrap',
|
|
19
|
+
description: 'Wrap the native asset',
|
|
20
|
+
inputSchema: {
|
|
21
|
+
type: 'object',
|
|
22
|
+
properties: {
|
|
23
|
+
amount: {
|
|
24
|
+
$ref: '#/$defs/decimal',
|
|
25
|
+
},
|
|
26
|
+
blockchain: {
|
|
27
|
+
$ref: '#/$defs/blockchain_id_or_blockchain_symbol',
|
|
28
|
+
},
|
|
29
|
+
from: {
|
|
30
|
+
$ref: '#/$defs/account',
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
required: ['amount', 'blockchain', 'from'],
|
|
34
|
+
$defs: {
|
|
35
|
+
decimal: {
|
|
36
|
+
type: 'string',
|
|
37
|
+
title: 'Decimal',
|
|
38
|
+
description: 'An arbitrary precision decimal represented as a string',
|
|
39
|
+
},
|
|
40
|
+
blockchain_id_or_blockchain_symbol: {
|
|
41
|
+
type: 'string',
|
|
42
|
+
title: 'BlockchainID',
|
|
43
|
+
description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix',
|
|
44
|
+
},
|
|
45
|
+
account: {
|
|
46
|
+
type: 'string',
|
|
47
|
+
title: 'AddressEVM',
|
|
48
|
+
description: 'An EVM address',
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
annotations: {},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export const handler = async (client: NirvanaLabs, args: Record<string, unknown> | undefined) => {
|
|
56
|
+
const body = args as any;
|
|
57
|
+
return asTextContentResult(await client.vektor.wrap.wrap.create(body));
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export default { metadata, tool, handler };
|
package/src/tools.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './tools/index';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
// this config is included in the published src directory to prevent TS errors
|
|
3
|
+
// from appearing when users go to source, and VSCode opens the source .ts file
|
|
4
|
+
// via declaration maps
|
|
5
|
+
"include": ["index.ts"],
|
|
6
|
+
"compilerOptions": {
|
|
7
|
+
"target": "es2015",
|
|
8
|
+
"lib": ["DOM"],
|
|
9
|
+
"moduleResolution": "node"
|
|
10
|
+
}
|
|
11
|
+
}
|
package/stdio.d.mts
ADDED
package/stdio.d.mts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stdio.d.mts","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"OAEO,EAAE,UAAU,EAAE;AAErB,eAAO,MAAM,iBAAiB,GAAU,SAAS,UAAU,kBAQ1D,CAAC"}
|
package/stdio.d.ts
ADDED
package/stdio.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stdio.d.ts","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"OAEO,EAAE,UAAU,EAAE;AAErB,eAAO,MAAM,iBAAiB,GAAU,SAAS,UAAU,kBAQ1D,CAAC"}
|
package/stdio.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.launchStdioServer = void 0;
|
|
4
|
+
const stdio_js_1 = require("@modelcontextprotocol/sdk/server/stdio.js");
|
|
5
|
+
const server_1 = require("./server.js");
|
|
6
|
+
const launchStdioServer = async (options) => {
|
|
7
|
+
const server = (0, server_1.newMcpServer)();
|
|
8
|
+
(0, server_1.initMcpServer)({ server, mcpOptions: options });
|
|
9
|
+
const transport = new stdio_js_1.StdioServerTransport();
|
|
10
|
+
await server.connect(transport);
|
|
11
|
+
console.error('MCP Server running on stdio');
|
|
12
|
+
};
|
|
13
|
+
exports.launchStdioServer = launchStdioServer;
|
|
14
|
+
//# sourceMappingURL=stdio.js.map
|
package/stdio.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stdio.js","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":";;;AAAA,wEAAiF;AACjF,wCAAuD;AAGhD,MAAM,iBAAiB,GAAG,KAAK,EAAE,OAAmB,EAAE,EAAE;IAC7D,MAAM,MAAM,GAAG,IAAA,qBAAY,GAAE,CAAC;IAE9B,IAAA,sBAAa,EAAC,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,EAAE,CAAC,CAAC;IAE/C,MAAM,SAAS,GAAG,IAAI,+BAAoB,EAAE,CAAC;IAC7C,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAChC,OAAO,CAAC,KAAK,CAAC,6BAA6B,CAAC,CAAC;AAC/C,CAAC,CAAC;AARW,QAAA,iBAAiB,qBAQ5B"}
|
package/stdio.mjs
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
|
|
2
|
+
import { initMcpServer, newMcpServer } from "./server.mjs";
|
|
3
|
+
export const launchStdioServer = async (options) => {
|
|
4
|
+
const server = newMcpServer();
|
|
5
|
+
initMcpServer({ server, mcpOptions: options });
|
|
6
|
+
const transport = new StdioServerTransport();
|
|
7
|
+
await server.connect(transport);
|
|
8
|
+
console.error('MCP Server running on stdio');
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=stdio.mjs.map
|
package/stdio.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stdio.mjs","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C;OACzE,EAAE,aAAa,EAAE,YAAY,EAAE;AAGtC,MAAM,CAAC,MAAM,iBAAiB,GAAG,KAAK,EAAE,OAAmB,EAAE,EAAE;IAC7D,MAAM,MAAM,GAAG,YAAY,EAAE,CAAC;IAE9B,aAAa,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,EAAE,CAAC,CAAC;IAE/C,MAAM,SAAS,GAAG,IAAI,oBAAoB,EAAE,CAAC;IAC7C,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAChC,OAAO,CAAC,KAAK,CAAC,6BAA6B,CAAC,CAAC;AAC/C,CAAC,CAAC"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Metadata } from '@nirvana-labs/nirvana-mcp/tools/types';
|
|
2
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
3
|
+
import NirvanaLabs from '@nirvana-labs/nirvana';
|
|
4
|
+
export declare const metadata: Metadata;
|
|
5
|
+
export declare const tool: Tool;
|
|
6
|
+
export declare const handler: (client: NirvanaLabs, args: Record<string, unknown> | undefined) => Promise<import("@nirvana-labs/nirvana-mcp/tools/types").ToolCallResult>;
|
|
7
|
+
declare const _default: {
|
|
8
|
+
metadata: Metadata;
|
|
9
|
+
tool: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
name: string;
|
|
12
|
+
inputSchema: {
|
|
13
|
+
[x: string]: unknown;
|
|
14
|
+
type: "object";
|
|
15
|
+
properties?: {
|
|
16
|
+
[x: string]: unknown;
|
|
17
|
+
} | undefined;
|
|
18
|
+
required?: string[] | undefined;
|
|
19
|
+
};
|
|
20
|
+
title?: string | undefined;
|
|
21
|
+
description?: string | undefined;
|
|
22
|
+
outputSchema?: {
|
|
23
|
+
[x: string]: unknown;
|
|
24
|
+
type: "object";
|
|
25
|
+
properties?: {
|
|
26
|
+
[x: string]: unknown;
|
|
27
|
+
} | undefined;
|
|
28
|
+
required?: string[] | undefined;
|
|
29
|
+
} | undefined;
|
|
30
|
+
annotations?: {
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
title?: string | undefined;
|
|
33
|
+
readOnlyHint?: boolean | undefined;
|
|
34
|
+
destructiveHint?: boolean | undefined;
|
|
35
|
+
idempotentHint?: boolean | undefined;
|
|
36
|
+
openWorldHint?: boolean | undefined;
|
|
37
|
+
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
41
|
+
};
|
|
42
|
+
handler: (client: NirvanaLabs, args: Record<string, unknown> | undefined) => Promise<import("@nirvana-labs/nirvana-mcp/tools/types").ToolCallResult>;
|
|
43
|
+
};
|
|
44
|
+
export default _default;
|
|
45
|
+
//# sourceMappingURL=create-api-keys.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-api-keys.d.mts","sourceRoot":"","sources":["../../src/tools/api-keys/create-api-keys.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA+BlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAG3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAHoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK5F,wBAA2C"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Metadata } from '@nirvana-labs/nirvana-mcp/tools/types';
|
|
2
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
3
|
+
import NirvanaLabs from '@nirvana-labs/nirvana';
|
|
4
|
+
export declare const metadata: Metadata;
|
|
5
|
+
export declare const tool: Tool;
|
|
6
|
+
export declare const handler: (client: NirvanaLabs, args: Record<string, unknown> | undefined) => Promise<import("@nirvana-labs/nirvana-mcp/tools/types").ToolCallResult>;
|
|
7
|
+
declare const _default: {
|
|
8
|
+
metadata: Metadata;
|
|
9
|
+
tool: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
name: string;
|
|
12
|
+
inputSchema: {
|
|
13
|
+
[x: string]: unknown;
|
|
14
|
+
type: "object";
|
|
15
|
+
properties?: {
|
|
16
|
+
[x: string]: unknown;
|
|
17
|
+
} | undefined;
|
|
18
|
+
required?: string[] | undefined;
|
|
19
|
+
};
|
|
20
|
+
title?: string | undefined;
|
|
21
|
+
description?: string | undefined;
|
|
22
|
+
outputSchema?: {
|
|
23
|
+
[x: string]: unknown;
|
|
24
|
+
type: "object";
|
|
25
|
+
properties?: {
|
|
26
|
+
[x: string]: unknown;
|
|
27
|
+
} | undefined;
|
|
28
|
+
required?: string[] | undefined;
|
|
29
|
+
} | undefined;
|
|
30
|
+
annotations?: {
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
title?: string | undefined;
|
|
33
|
+
readOnlyHint?: boolean | undefined;
|
|
34
|
+
destructiveHint?: boolean | undefined;
|
|
35
|
+
idempotentHint?: boolean | undefined;
|
|
36
|
+
openWorldHint?: boolean | undefined;
|
|
37
|
+
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
41
|
+
};
|
|
42
|
+
handler: (client: NirvanaLabs, args: Record<string, unknown> | undefined) => Promise<import("@nirvana-labs/nirvana-mcp/tools/types").ToolCallResult>;
|
|
43
|
+
};
|
|
44
|
+
export default _default;
|
|
45
|
+
//# sourceMappingURL=create-api-keys.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-api-keys.d.ts","sourceRoot":"","sources":["../../src/tools/api-keys/create-api-keys.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA+BlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAG3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAHoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK5F,wBAA2C"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.handler = exports.tool = exports.metadata = void 0;
|
|
5
|
+
const filtering_1 = require("@nirvana-labs/nirvana-mcp/filtering");
|
|
6
|
+
const types_1 = require("@nirvana-labs/nirvana-mcp/tools/types");
|
|
7
|
+
exports.metadata = {
|
|
8
|
+
resource: 'api_keys',
|
|
9
|
+
operation: 'write',
|
|
10
|
+
tags: [],
|
|
11
|
+
httpMethod: 'post',
|
|
12
|
+
httpPath: '/v1/api_keys',
|
|
13
|
+
operationId: 'create_api_key',
|
|
14
|
+
};
|
|
15
|
+
exports.tool = {
|
|
16
|
+
name: 'create_api_keys',
|
|
17
|
+
description: "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 a new API key\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/api_key',\n $defs: {\n api_key: {\n type: 'object',\n description: 'API key response.',\n properties: {\n id: {\n type: 'string',\n description: 'API key ID.'\n },\n created_at: {\n type: 'string',\n description: 'When the API key was created.',\n format: 'date-time'\n },\n expires_at: {\n type: 'string',\n description: 'When the API key expires and is no longer valid.',\n format: 'date-time'\n },\n name: {\n type: 'string',\n description: 'API key name.'\n },\n status: {\n type: 'string',\n description: 'Status of the API key.',\n enum: [ 'active',\n 'inactive',\n 'expired'\n ]\n },\n updated_at: {\n type: 'string',\n description: 'When the API key was updated.',\n format: 'date-time'\n },\n key: {\n type: 'string',\n description: 'API key. Only returned on creation.'\n },\n starts_at: {\n type: 'string',\n description: 'When the API key starts to be valid.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'expires_at',\n 'name',\n 'status',\n 'updated_at'\n ]\n }\n }\n}\n```",
|
|
18
|
+
inputSchema: {
|
|
19
|
+
type: 'object',
|
|
20
|
+
properties: {
|
|
21
|
+
expires_at: {
|
|
22
|
+
type: 'string',
|
|
23
|
+
description: 'When the API key expires and is no longer valid.',
|
|
24
|
+
format: 'date-time',
|
|
25
|
+
},
|
|
26
|
+
name: {
|
|
27
|
+
type: 'string',
|
|
28
|
+
description: 'API key name.',
|
|
29
|
+
},
|
|
30
|
+
starts_at: {
|
|
31
|
+
type: 'string',
|
|
32
|
+
description: 'When the API key starts to be valid.',
|
|
33
|
+
format: 'date-time',
|
|
34
|
+
},
|
|
35
|
+
jq_filter: {
|
|
36
|
+
type: 'string',
|
|
37
|
+
title: 'jq Filter',
|
|
38
|
+
description: '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/).',
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
required: ['expires_at', 'name'],
|
|
42
|
+
},
|
|
43
|
+
annotations: {},
|
|
44
|
+
};
|
|
45
|
+
const handler = async (client, args) => {
|
|
46
|
+
const { jq_filter, ...body } = args;
|
|
47
|
+
return (0, types_1.asTextContentResult)(await (0, filtering_1.maybeFilter)(jq_filter, await client.apiKeys.create(body)));
|
|
48
|
+
};
|
|
49
|
+
exports.handler = handler;
|
|
50
|
+
exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
|
|
51
|
+
//# sourceMappingURL=create-api-keys.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-api-keys.js","sourceRoot":"","sources":["../../src/tools/api-keys/create-api-keys.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,cAAc;IACxB,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EACT,6oDAA6oD;IAC/oD,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,UAAU,EAAE;gBACV,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kDAAkD;gBAC/D,MAAM,EAAE,WAAW;aACpB;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,eAAe;aAC7B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,sCAAsC;gBACnD,MAAM,EAAE,WAAW;aACpB;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,YAAY,EAAE,MAAM,CAAC;KACjC;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC9F,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
import { maybeFilter } from '@nirvana-labs/nirvana-mcp/filtering';
|
|
3
|
+
import { asTextContentResult } from '@nirvana-labs/nirvana-mcp/tools/types';
|
|
4
|
+
export const metadata = {
|
|
5
|
+
resource: 'api_keys',
|
|
6
|
+
operation: 'write',
|
|
7
|
+
tags: [],
|
|
8
|
+
httpMethod: 'post',
|
|
9
|
+
httpPath: '/v1/api_keys',
|
|
10
|
+
operationId: 'create_api_key',
|
|
11
|
+
};
|
|
12
|
+
export const tool = {
|
|
13
|
+
name: 'create_api_keys',
|
|
14
|
+
description: "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 a new API key\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/api_key',\n $defs: {\n api_key: {\n type: 'object',\n description: 'API key response.',\n properties: {\n id: {\n type: 'string',\n description: 'API key ID.'\n },\n created_at: {\n type: 'string',\n description: 'When the API key was created.',\n format: 'date-time'\n },\n expires_at: {\n type: 'string',\n description: 'When the API key expires and is no longer valid.',\n format: 'date-time'\n },\n name: {\n type: 'string',\n description: 'API key name.'\n },\n status: {\n type: 'string',\n description: 'Status of the API key.',\n enum: [ 'active',\n 'inactive',\n 'expired'\n ]\n },\n updated_at: {\n type: 'string',\n description: 'When the API key was updated.',\n format: 'date-time'\n },\n key: {\n type: 'string',\n description: 'API key. Only returned on creation.'\n },\n starts_at: {\n type: 'string',\n description: 'When the API key starts to be valid.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'expires_at',\n 'name',\n 'status',\n 'updated_at'\n ]\n }\n }\n}\n```",
|
|
15
|
+
inputSchema: {
|
|
16
|
+
type: 'object',
|
|
17
|
+
properties: {
|
|
18
|
+
expires_at: {
|
|
19
|
+
type: 'string',
|
|
20
|
+
description: 'When the API key expires and is no longer valid.',
|
|
21
|
+
format: 'date-time',
|
|
22
|
+
},
|
|
23
|
+
name: {
|
|
24
|
+
type: 'string',
|
|
25
|
+
description: 'API key name.',
|
|
26
|
+
},
|
|
27
|
+
starts_at: {
|
|
28
|
+
type: 'string',
|
|
29
|
+
description: 'When the API key starts to be valid.',
|
|
30
|
+
format: 'date-time',
|
|
31
|
+
},
|
|
32
|
+
jq_filter: {
|
|
33
|
+
type: 'string',
|
|
34
|
+
title: 'jq Filter',
|
|
35
|
+
description: '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/).',
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
required: ['expires_at', 'name'],
|
|
39
|
+
},
|
|
40
|
+
annotations: {},
|
|
41
|
+
};
|
|
42
|
+
export const handler = async (client, args) => {
|
|
43
|
+
const { jq_filter, ...body } = args;
|
|
44
|
+
return asTextContentResult(await maybeFilter(jq_filter, await client.apiKeys.create(body)));
|
|
45
|
+
};
|
|
46
|
+
export default { metadata, tool, handler };
|
|
47
|
+
//# sourceMappingURL=create-api-keys.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-api-keys.mjs","sourceRoot":"","sources":["../../src/tools/api-keys/create-api-keys.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,cAAc;IACxB,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EACT,6oDAA6oD;IAC/oD,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,UAAU,EAAE;gBACV,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kDAAkD;gBAC/D,MAAM,EAAE,WAAW;aACpB;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,eAAe;aAC7B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,sCAAsC;gBACnD,MAAM,EAAE,WAAW;aACpB;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,YAAY,EAAE,MAAM,CAAC;KACjC;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC9F,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Metadata } from '@nirvana-labs/nirvana-mcp/tools/types';
|
|
2
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
3
|
+
import NirvanaLabs from '@nirvana-labs/nirvana';
|
|
4
|
+
export declare const metadata: Metadata;
|
|
5
|
+
export declare const tool: Tool;
|
|
6
|
+
export declare const handler: (client: NirvanaLabs, args: Record<string, unknown> | undefined) => Promise<import("@nirvana-labs/nirvana-mcp/tools/types").ToolCallResult>;
|
|
7
|
+
declare const _default: {
|
|
8
|
+
metadata: Metadata;
|
|
9
|
+
tool: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
name: string;
|
|
12
|
+
inputSchema: {
|
|
13
|
+
[x: string]: unknown;
|
|
14
|
+
type: "object";
|
|
15
|
+
properties?: {
|
|
16
|
+
[x: string]: unknown;
|
|
17
|
+
} | undefined;
|
|
18
|
+
required?: string[] | undefined;
|
|
19
|
+
};
|
|
20
|
+
title?: string | undefined;
|
|
21
|
+
description?: string | undefined;
|
|
22
|
+
outputSchema?: {
|
|
23
|
+
[x: string]: unknown;
|
|
24
|
+
type: "object";
|
|
25
|
+
properties?: {
|
|
26
|
+
[x: string]: unknown;
|
|
27
|
+
} | undefined;
|
|
28
|
+
required?: string[] | undefined;
|
|
29
|
+
} | undefined;
|
|
30
|
+
annotations?: {
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
title?: string | undefined;
|
|
33
|
+
readOnlyHint?: boolean | undefined;
|
|
34
|
+
destructiveHint?: boolean | undefined;
|
|
35
|
+
idempotentHint?: boolean | undefined;
|
|
36
|
+
openWorldHint?: boolean | undefined;
|
|
37
|
+
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
41
|
+
};
|
|
42
|
+
handler: (client: NirvanaLabs, args: Record<string, unknown> | undefined) => Promise<import("@nirvana-labs/nirvana-mcp/tools/types").ToolCallResult>;
|
|
43
|
+
};
|
|
44
|
+
export default _default;
|
|
45
|
+
//# sourceMappingURL=delete-api-keys.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-api-keys.d.mts","sourceRoot":"","sources":["../../src/tools/api-keys/delete-api-keys.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAelB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAI3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAJoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAM5F,wBAA2C"}
|