@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,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=list-networking-vpcs.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-networking-vpcs.d.mts","sourceRoot":"","sources":["../../../src/tools/networking/vpcs/list-networking-vpcs.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,IAmBlB,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=list-networking-vpcs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-networking-vpcs.d.ts","sourceRoot":"","sources":["../../../src/tools/networking/vpcs/list-networking-vpcs.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,IAmBlB,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,39 @@
|
|
|
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: 'networking.vpcs',
|
|
9
|
+
operation: 'read',
|
|
10
|
+
tags: [],
|
|
11
|
+
httpMethod: 'get',
|
|
12
|
+
httpPath: '/v1/networking/vpcs',
|
|
13
|
+
operationId: 'list_vpcs',
|
|
14
|
+
};
|
|
15
|
+
exports.tool = {
|
|
16
|
+
name: 'list_networking_vpcs',
|
|
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\nList all VPCs\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vpc_list',\n $defs: {\n vpc_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/vpc'\n }\n }\n },\n required: [ 'items'\n ]\n },\n vpc: {\n type: 'object',\n description: 'VPC details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VPC.'\n },\n created_at: {\n type: 'string',\n description: 'When the VPC was created.',\n format: 'date-time'\n },\n firewall_rule_ids: {\n type: 'array',\n description: 'IDs of the firewall rules associated with the VPC.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the VPC.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet: {\n $ref: '#/$defs/subnet'\n },\n updated_at: {\n type: 'string',\n description: 'When the VPC was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'firewall_rule_ids',\n 'name',\n 'region',\n 'status',\n 'subnet',\n 'updated_at'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n },\n subnet: {\n type: 'object',\n description: 'Subnet of the VPC.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Subnet.'\n },\n cidr: {\n type: 'string',\n description: 'CIDR block for the subnet.'\n },\n created_at: {\n type: 'string',\n description: 'When the subnet was created.',\n format: 'date-time'\n },\n name: {\n type: 'string',\n description: 'Name of the subnet.'\n },\n updated_at: {\n type: 'string',\n description: 'When the subnet was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'cidr',\n 'created_at',\n 'name',\n 'updated_at'\n ]\n }\n }\n}\n```",
|
|
18
|
+
inputSchema: {
|
|
19
|
+
type: 'object',
|
|
20
|
+
properties: {
|
|
21
|
+
jq_filter: {
|
|
22
|
+
type: 'string',
|
|
23
|
+
title: 'jq Filter',
|
|
24
|
+
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/).',
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
required: [],
|
|
28
|
+
},
|
|
29
|
+
annotations: {
|
|
30
|
+
readOnlyHint: true,
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
const handler = async (client, args) => {
|
|
34
|
+
const { jq_filter } = args;
|
|
35
|
+
return (0, types_1.asTextContentResult)(await (0, filtering_1.maybeFilter)(jq_filter, await client.networking.vpcs.list()));
|
|
36
|
+
};
|
|
37
|
+
exports.handler = handler;
|
|
38
|
+
exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
|
|
39
|
+
//# sourceMappingURL=list-networking-vpcs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-networking-vpcs.js","sourceRoot":"","sources":["../../../src/tools/networking/vpcs/list-networking-vpcs.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,iBAAiB;IAC3B,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,qBAAqB;IAC/B,WAAW,EAAE,WAAW;CACzB,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,sBAAsB;IAC5B,WAAW,EACT,skGAAskG;IACxkG,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;KACb;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAW,CAAC;IAClC,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AAChG,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,35 @@
|
|
|
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: 'networking.vpcs',
|
|
6
|
+
operation: 'read',
|
|
7
|
+
tags: [],
|
|
8
|
+
httpMethod: 'get',
|
|
9
|
+
httpPath: '/v1/networking/vpcs',
|
|
10
|
+
operationId: 'list_vpcs',
|
|
11
|
+
};
|
|
12
|
+
export const tool = {
|
|
13
|
+
name: 'list_networking_vpcs',
|
|
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\nList all VPCs\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vpc_list',\n $defs: {\n vpc_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/vpc'\n }\n }\n },\n required: [ 'items'\n ]\n },\n vpc: {\n type: 'object',\n description: 'VPC details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VPC.'\n },\n created_at: {\n type: 'string',\n description: 'When the VPC was created.',\n format: 'date-time'\n },\n firewall_rule_ids: {\n type: 'array',\n description: 'IDs of the firewall rules associated with the VPC.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the VPC.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet: {\n $ref: '#/$defs/subnet'\n },\n updated_at: {\n type: 'string',\n description: 'When the VPC was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'firewall_rule_ids',\n 'name',\n 'region',\n 'status',\n 'subnet',\n 'updated_at'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n },\n subnet: {\n type: 'object',\n description: 'Subnet of the VPC.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Subnet.'\n },\n cidr: {\n type: 'string',\n description: 'CIDR block for the subnet.'\n },\n created_at: {\n type: 'string',\n description: 'When the subnet was created.',\n format: 'date-time'\n },\n name: {\n type: 'string',\n description: 'Name of the subnet.'\n },\n updated_at: {\n type: 'string',\n description: 'When the subnet was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'cidr',\n 'created_at',\n 'name',\n 'updated_at'\n ]\n }\n }\n}\n```",
|
|
15
|
+
inputSchema: {
|
|
16
|
+
type: 'object',
|
|
17
|
+
properties: {
|
|
18
|
+
jq_filter: {
|
|
19
|
+
type: 'string',
|
|
20
|
+
title: 'jq Filter',
|
|
21
|
+
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/).',
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
required: [],
|
|
25
|
+
},
|
|
26
|
+
annotations: {
|
|
27
|
+
readOnlyHint: true,
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
export const handler = async (client, args) => {
|
|
31
|
+
const { jq_filter } = args;
|
|
32
|
+
return asTextContentResult(await maybeFilter(jq_filter, await client.networking.vpcs.list()));
|
|
33
|
+
};
|
|
34
|
+
export default { metadata, tool, handler };
|
|
35
|
+
//# sourceMappingURL=list-networking-vpcs.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-networking-vpcs.mjs","sourceRoot":"","sources":["../../../src/tools/networking/vpcs/list-networking-vpcs.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,iBAAiB;IAC3B,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,qBAAqB;IAC/B,WAAW,EAAE,WAAW;CACzB,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,sBAAsB;IAC5B,WAAW,EACT,skGAAskG;IACxkG,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;KACb;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAW,CAAC;IAClC,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AAChG,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=update-networking-vpcs.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-networking-vpcs.d.mts","sourceRoot":"","sources":["../../../src/tools/networking/vpcs/update-networking-vpcs.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,IA4BlB,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=update-networking-vpcs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-networking-vpcs.d.ts","sourceRoot":"","sources":["../../../src/tools/networking/vpcs/update-networking-vpcs.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,IA4BlB,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,48 @@
|
|
|
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: 'networking.vpcs',
|
|
9
|
+
operation: 'write',
|
|
10
|
+
tags: [],
|
|
11
|
+
httpMethod: 'patch',
|
|
12
|
+
httpPath: '/v1/networking/vpcs/{vpc_id}',
|
|
13
|
+
operationId: 'update_vpc',
|
|
14
|
+
};
|
|
15
|
+
exports.tool = {
|
|
16
|
+
name: 'update_networking_vpcs',
|
|
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\nUpdate a VPC\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
18
|
+
inputSchema: {
|
|
19
|
+
type: 'object',
|
|
20
|
+
properties: {
|
|
21
|
+
vpc_id: {
|
|
22
|
+
type: 'string',
|
|
23
|
+
},
|
|
24
|
+
name: {
|
|
25
|
+
type: 'string',
|
|
26
|
+
description: 'Name of the VPC.',
|
|
27
|
+
},
|
|
28
|
+
subnet_name: {
|
|
29
|
+
type: 'string',
|
|
30
|
+
description: 'Name of the subnet to create.',
|
|
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: ['vpc_id'],
|
|
39
|
+
},
|
|
40
|
+
annotations: {},
|
|
41
|
+
};
|
|
42
|
+
const handler = async (client, args) => {
|
|
43
|
+
const { vpc_id, jq_filter, ...body } = args;
|
|
44
|
+
return (0, types_1.asTextContentResult)(await (0, filtering_1.maybeFilter)(jq_filter, await client.networking.vpcs.update(vpc_id, body)));
|
|
45
|
+
};
|
|
46
|
+
exports.handler = handler;
|
|
47
|
+
exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
|
|
48
|
+
//# sourceMappingURL=update-networking-vpcs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-networking-vpcs.js","sourceRoot":"","sources":["../../../src/tools/networking/vpcs/update-networking-vpcs.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,iBAAiB;IAC3B,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,8BAA8B;IACxC,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EACT,o5DAAo5D;IACt5D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;aACf;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kBAAkB;aAChC;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,+BAA+B;aAC7C;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,QAAQ,CAAC;KACrB;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACnD,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AAC9G,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,44 @@
|
|
|
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: 'networking.vpcs',
|
|
6
|
+
operation: 'write',
|
|
7
|
+
tags: [],
|
|
8
|
+
httpMethod: 'patch',
|
|
9
|
+
httpPath: '/v1/networking/vpcs/{vpc_id}',
|
|
10
|
+
operationId: 'update_vpc',
|
|
11
|
+
};
|
|
12
|
+
export const tool = {
|
|
13
|
+
name: 'update_networking_vpcs',
|
|
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\nUpdate a VPC\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
15
|
+
inputSchema: {
|
|
16
|
+
type: 'object',
|
|
17
|
+
properties: {
|
|
18
|
+
vpc_id: {
|
|
19
|
+
type: 'string',
|
|
20
|
+
},
|
|
21
|
+
name: {
|
|
22
|
+
type: 'string',
|
|
23
|
+
description: 'Name of the VPC.',
|
|
24
|
+
},
|
|
25
|
+
subnet_name: {
|
|
26
|
+
type: 'string',
|
|
27
|
+
description: 'Name of the subnet to create.',
|
|
28
|
+
},
|
|
29
|
+
jq_filter: {
|
|
30
|
+
type: 'string',
|
|
31
|
+
title: 'jq Filter',
|
|
32
|
+
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/).',
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
required: ['vpc_id'],
|
|
36
|
+
},
|
|
37
|
+
annotations: {},
|
|
38
|
+
};
|
|
39
|
+
export const handler = async (client, args) => {
|
|
40
|
+
const { vpc_id, jq_filter, ...body } = args;
|
|
41
|
+
return asTextContentResult(await maybeFilter(jq_filter, await client.networking.vpcs.update(vpc_id, body)));
|
|
42
|
+
};
|
|
43
|
+
export default { metadata, tool, handler };
|
|
44
|
+
//# sourceMappingURL=update-networking-vpcs.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-networking-vpcs.mjs","sourceRoot":"","sources":["../../../src/tools/networking/vpcs/update-networking-vpcs.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,iBAAiB;IAC3B,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,8BAA8B;IACxC,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EACT,o5DAAo5D;IACt5D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;aACf;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kBAAkB;aAChC;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,+BAA+B;aAC7C;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,QAAQ,CAAC;KACrB;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACnD,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AAC9G,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=get-operations.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-operations.d.mts","sourceRoot":"","sources":["../../src/tools/operations/get-operations.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,IAsBlB,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=get-operations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-operations.d.ts","sourceRoot":"","sources":["../../src/tools/operations/get-operations.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,IAsBlB,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,42 @@
|
|
|
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: 'operations',
|
|
9
|
+
operation: 'read',
|
|
10
|
+
tags: [],
|
|
11
|
+
httpMethod: 'get',
|
|
12
|
+
httpPath: '/v1/operations/{operation_id}',
|
|
13
|
+
operationId: 'get_operation',
|
|
14
|
+
};
|
|
15
|
+
exports.tool = {
|
|
16
|
+
name: 'get_operations',
|
|
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\nGet details about a specific operation\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
18
|
+
inputSchema: {
|
|
19
|
+
type: 'object',
|
|
20
|
+
properties: {
|
|
21
|
+
operation_id: {
|
|
22
|
+
type: 'string',
|
|
23
|
+
},
|
|
24
|
+
jq_filter: {
|
|
25
|
+
type: 'string',
|
|
26
|
+
title: 'jq Filter',
|
|
27
|
+
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/).',
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
required: ['operation_id'],
|
|
31
|
+
},
|
|
32
|
+
annotations: {
|
|
33
|
+
readOnlyHint: true,
|
|
34
|
+
},
|
|
35
|
+
};
|
|
36
|
+
const handler = async (client, args) => {
|
|
37
|
+
const { operation_id, jq_filter, ...body } = args;
|
|
38
|
+
return (0, types_1.asTextContentResult)(await (0, filtering_1.maybeFilter)(jq_filter, await client.operations.get(operation_id)));
|
|
39
|
+
};
|
|
40
|
+
exports.handler = handler;
|
|
41
|
+
exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
|
|
42
|
+
//# sourceMappingURL=get-operations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-operations.js","sourceRoot":"","sources":["../../src/tools/operations/get-operations.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,YAAY;IACtB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,+BAA+B;IACzC,WAAW,EAAE,eAAe;CAC7B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,gBAAgB;IACtB,WAAW,EACT,86DAA86D;IACh7D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;aACf;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,cAAc,CAAC;KAC3B;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,YAAY,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACzD,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;AACtG,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,38 @@
|
|
|
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: 'operations',
|
|
6
|
+
operation: 'read',
|
|
7
|
+
tags: [],
|
|
8
|
+
httpMethod: 'get',
|
|
9
|
+
httpPath: '/v1/operations/{operation_id}',
|
|
10
|
+
operationId: 'get_operation',
|
|
11
|
+
};
|
|
12
|
+
export const tool = {
|
|
13
|
+
name: 'get_operations',
|
|
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\nGet details about a specific operation\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
15
|
+
inputSchema: {
|
|
16
|
+
type: 'object',
|
|
17
|
+
properties: {
|
|
18
|
+
operation_id: {
|
|
19
|
+
type: 'string',
|
|
20
|
+
},
|
|
21
|
+
jq_filter: {
|
|
22
|
+
type: 'string',
|
|
23
|
+
title: 'jq Filter',
|
|
24
|
+
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/).',
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
required: ['operation_id'],
|
|
28
|
+
},
|
|
29
|
+
annotations: {
|
|
30
|
+
readOnlyHint: true,
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
export const handler = async (client, args) => {
|
|
34
|
+
const { operation_id, jq_filter, ...body } = args;
|
|
35
|
+
return asTextContentResult(await maybeFilter(jq_filter, await client.operations.get(operation_id)));
|
|
36
|
+
};
|
|
37
|
+
export default { metadata, tool, handler };
|
|
38
|
+
//# sourceMappingURL=get-operations.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-operations.mjs","sourceRoot":"","sources":["../../src/tools/operations/get-operations.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,YAAY;IACtB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,+BAA+B;IACzC,WAAW,EAAE,eAAe;CAC7B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,gBAAgB;IACtB,WAAW,EACT,86DAA86D;IACh7D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;aACf;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,cAAc,CAAC;KAC3B;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,YAAY,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACzD,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;AACtG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|