@nirvana-labs/nirvana-mcp 1.18.3 → 1.20.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.
Files changed (388) hide show
  1. package/README.md +15 -12
  2. package/package.json +2 -2
  3. package/server.js +1 -1
  4. package/server.mjs +1 -1
  5. package/src/server.ts +1 -1
  6. package/src/tools/compute/vms/availability/create-vms-compute-availability.ts +22 -1
  7. package/src/tools/compute/vms/availability/update-vms-compute-availability.ts +8 -1
  8. package/src/tools/compute/vms/create-compute-vms.ts +21 -0
  9. package/src/tools/compute/vms/get-compute-vms.ts +1 -1
  10. package/src/tools/compute/vms/list-compute-vms.ts +1 -1
  11. package/src/tools/compute/vms/os-images/list-vms-compute-os-images.ts +1 -1
  12. package/src/tools/compute/vms/update-compute-vms.ts +7 -0
  13. package/src/tools/compute/vms/volumes/list-vms-compute-volumes.ts +1 -1
  14. package/src/tools/compute/volumes/availability/create-volumes-compute-availability.ts +8 -1
  15. package/src/tools/compute/volumes/availability/update-volumes-compute-availability.ts +8 -1
  16. package/src/tools/compute/volumes/create-compute-volumes.ts +7 -0
  17. package/src/tools/compute/volumes/get-compute-volumes.ts +1 -1
  18. package/src/tools/compute/volumes/list-compute-volumes.ts +1 -1
  19. package/src/tools/compute/volumes/update-compute-volumes.ts +7 -0
  20. package/src/tools/index.ts +18 -12
  21. package/src/tools/{connect/flux/update-connect-flux.ts → networking/connect/connections/create-connect-networking-connections.ts} +77 -12
  22. package/src/tools/networking/connect/connections/delete-connect-networking-connections.ts +49 -0
  23. package/src/tools/networking/connect/connections/get-connect-networking-connections.ts +49 -0
  24. package/src/tools/networking/connect/connections/list-connect-networking-connections.ts +46 -0
  25. package/src/tools/networking/connect/connections/update-connect-networking-connections.ts +58 -0
  26. package/src/tools/{connect/flux/providers/list-flux-connect-providers.ts → networking/connect/routes/list-connect-networking-routes.ts} +6 -6
  27. package/src/tools/networking/firewall-rules/create-networking-firewall-rules.ts +7 -0
  28. package/src/tools/networking/firewall-rules/get-networking-firewall-rules.ts +1 -1
  29. package/src/tools/networking/firewall-rules/list-networking-firewall-rules.ts +1 -1
  30. package/src/tools/networking/firewall-rules/update-networking-firewall-rules.ts +7 -0
  31. package/src/tools/networking/vpcs/availability/create-vpcs-networking-availability.ts +8 -1
  32. package/src/tools/networking/vpcs/availability/update-vpcs-networking-availability.ts +8 -1
  33. package/src/tools/networking/vpcs/create-networking-vpcs.ts +7 -0
  34. package/src/tools/networking/vpcs/get-networking-vpcs.ts +1 -1
  35. package/src/tools/networking/vpcs/list-networking-vpcs.ts +1 -1
  36. package/src/tools/networking/vpcs/update-networking-vpcs.ts +7 -0
  37. package/src/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.ts +1 -1
  38. package/src/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.ts +1 -1
  39. package/src/tools/rpc-nodes/flex/create-rpc-nodes-flex.ts +61 -0
  40. package/src/tools/rpc-nodes/flex/delete-rpc-nodes-flex.ts +40 -0
  41. package/src/tools/rpc-nodes/flex/get-rpc-nodes-flex.ts +1 -1
  42. package/src/tools/rpc-nodes/flex/list-rpc-nodes-flex.ts +1 -1
  43. package/src/tools/rpc-nodes/flex/update-rpc-nodes-flex.ts +56 -0
  44. package/src/tools/vektor/balances/list-historical-vektor-balances.ts +1 -1
  45. package/src/tools/vektor/balances/list-vektor-balances.ts +1 -1
  46. package/src/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.ts +1 -1
  47. package/src/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.ts +1 -1
  48. package/src/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.ts +1 -1
  49. package/src/tools/vektor/buy/quotes/list-buy-vektor-quotes.ts +1 -1
  50. package/src/tools/vektor/lock/markets/list-lock-vektor-markets.ts +1 -1
  51. package/src/tools/vektor/lock/positions/list-lock-vektor-positions.ts +3 -11
  52. package/src/tools/vektor/prices/list-historical-vektor-prices.ts +1 -1
  53. package/src/tools/vektor/prices/list-vektor-prices.ts +1 -1
  54. package/src/tools/vektor/registry/assets/list-registry-vektor-assets.ts +1 -1
  55. package/src/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.ts +1 -1
  56. package/src/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.ts +1 -1
  57. package/src/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.ts +1 -1
  58. package/src/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.ts +1 -1
  59. package/src/tools/vektor/registry/venues/list-registry-vektor-venues.ts +1 -1
  60. package/tools/compute/vms/availability/create-vms-compute-availability.d.mts.map +1 -1
  61. package/tools/compute/vms/availability/create-vms-compute-availability.d.ts.map +1 -1
  62. package/tools/compute/vms/availability/create-vms-compute-availability.js +22 -1
  63. package/tools/compute/vms/availability/create-vms-compute-availability.js.map +1 -1
  64. package/tools/compute/vms/availability/create-vms-compute-availability.mjs +22 -1
  65. package/tools/compute/vms/availability/create-vms-compute-availability.mjs.map +1 -1
  66. package/tools/compute/vms/availability/update-vms-compute-availability.d.mts.map +1 -1
  67. package/tools/compute/vms/availability/update-vms-compute-availability.d.ts.map +1 -1
  68. package/tools/compute/vms/availability/update-vms-compute-availability.js +8 -1
  69. package/tools/compute/vms/availability/update-vms-compute-availability.js.map +1 -1
  70. package/tools/compute/vms/availability/update-vms-compute-availability.mjs +8 -1
  71. package/tools/compute/vms/availability/update-vms-compute-availability.mjs.map +1 -1
  72. package/tools/compute/vms/create-compute-vms.d.mts.map +1 -1
  73. package/tools/compute/vms/create-compute-vms.d.ts.map +1 -1
  74. package/tools/compute/vms/create-compute-vms.js +21 -0
  75. package/tools/compute/vms/create-compute-vms.js.map +1 -1
  76. package/tools/compute/vms/create-compute-vms.mjs +21 -0
  77. package/tools/compute/vms/create-compute-vms.mjs.map +1 -1
  78. package/tools/compute/vms/get-compute-vms.js +1 -1
  79. package/tools/compute/vms/get-compute-vms.js.map +1 -1
  80. package/tools/compute/vms/get-compute-vms.mjs +1 -1
  81. package/tools/compute/vms/get-compute-vms.mjs.map +1 -1
  82. package/tools/compute/vms/list-compute-vms.js +1 -1
  83. package/tools/compute/vms/list-compute-vms.js.map +1 -1
  84. package/tools/compute/vms/list-compute-vms.mjs +1 -1
  85. package/tools/compute/vms/list-compute-vms.mjs.map +1 -1
  86. package/tools/compute/vms/os-images/list-vms-compute-os-images.js +1 -1
  87. package/tools/compute/vms/os-images/list-vms-compute-os-images.js.map +1 -1
  88. package/tools/compute/vms/os-images/list-vms-compute-os-images.mjs +1 -1
  89. package/tools/compute/vms/os-images/list-vms-compute-os-images.mjs.map +1 -1
  90. package/tools/compute/vms/update-compute-vms.d.mts.map +1 -1
  91. package/tools/compute/vms/update-compute-vms.d.ts.map +1 -1
  92. package/tools/compute/vms/update-compute-vms.js +7 -0
  93. package/tools/compute/vms/update-compute-vms.js.map +1 -1
  94. package/tools/compute/vms/update-compute-vms.mjs +7 -0
  95. package/tools/compute/vms/update-compute-vms.mjs.map +1 -1
  96. package/tools/compute/vms/volumes/list-vms-compute-volumes.js +1 -1
  97. package/tools/compute/vms/volumes/list-vms-compute-volumes.js.map +1 -1
  98. package/tools/compute/vms/volumes/list-vms-compute-volumes.mjs +1 -1
  99. package/tools/compute/vms/volumes/list-vms-compute-volumes.mjs.map +1 -1
  100. package/tools/compute/volumes/availability/create-volumes-compute-availability.d.mts.map +1 -1
  101. package/tools/compute/volumes/availability/create-volumes-compute-availability.d.ts.map +1 -1
  102. package/tools/compute/volumes/availability/create-volumes-compute-availability.js +8 -1
  103. package/tools/compute/volumes/availability/create-volumes-compute-availability.js.map +1 -1
  104. package/tools/compute/volumes/availability/create-volumes-compute-availability.mjs +8 -1
  105. package/tools/compute/volumes/availability/create-volumes-compute-availability.mjs.map +1 -1
  106. package/tools/compute/volumes/availability/update-volumes-compute-availability.d.mts.map +1 -1
  107. package/tools/compute/volumes/availability/update-volumes-compute-availability.d.ts.map +1 -1
  108. package/tools/compute/volumes/availability/update-volumes-compute-availability.js +8 -1
  109. package/tools/compute/volumes/availability/update-volumes-compute-availability.js.map +1 -1
  110. package/tools/compute/volumes/availability/update-volumes-compute-availability.mjs +8 -1
  111. package/tools/compute/volumes/availability/update-volumes-compute-availability.mjs.map +1 -1
  112. package/tools/compute/volumes/create-compute-volumes.d.mts.map +1 -1
  113. package/tools/compute/volumes/create-compute-volumes.d.ts.map +1 -1
  114. package/tools/compute/volumes/create-compute-volumes.js +7 -0
  115. package/tools/compute/volumes/create-compute-volumes.js.map +1 -1
  116. package/tools/compute/volumes/create-compute-volumes.mjs +7 -0
  117. package/tools/compute/volumes/create-compute-volumes.mjs.map +1 -1
  118. package/tools/compute/volumes/get-compute-volumes.js +1 -1
  119. package/tools/compute/volumes/get-compute-volumes.js.map +1 -1
  120. package/tools/compute/volumes/get-compute-volumes.mjs +1 -1
  121. package/tools/compute/volumes/get-compute-volumes.mjs.map +1 -1
  122. package/tools/compute/volumes/list-compute-volumes.js +1 -1
  123. package/tools/compute/volumes/list-compute-volumes.js.map +1 -1
  124. package/tools/compute/volumes/list-compute-volumes.mjs +1 -1
  125. package/tools/compute/volumes/list-compute-volumes.mjs.map +1 -1
  126. package/tools/compute/volumes/update-compute-volumes.d.mts.map +1 -1
  127. package/tools/compute/volumes/update-compute-volumes.d.ts.map +1 -1
  128. package/tools/compute/volumes/update-compute-volumes.js +7 -0
  129. package/tools/compute/volumes/update-compute-volumes.js.map +1 -1
  130. package/tools/compute/volumes/update-compute-volumes.mjs +7 -0
  131. package/tools/compute/volumes/update-compute-volumes.mjs.map +1 -1
  132. package/tools/index.d.mts.map +1 -1
  133. package/tools/index.d.ts.map +1 -1
  134. package/tools/index.js +18 -12
  135. package/tools/index.js.map +1 -1
  136. package/tools/index.mjs +18 -12
  137. package/tools/index.mjs.map +1 -1
  138. package/tools/networking/connect/connections/create-connect-networking-connections.d.mts +45 -0
  139. package/tools/networking/connect/connections/create-connect-networking-connections.d.mts.map +1 -0
  140. package/tools/networking/connect/connections/create-connect-networking-connections.d.ts +45 -0
  141. package/tools/networking/connect/connections/create-connect-networking-connections.d.ts.map +1 -0
  142. package/tools/{connect/flux/create-connect-flux.js → networking/connect/connections/create-connect-networking-connections.js} +21 -14
  143. package/tools/networking/connect/connections/create-connect-networking-connections.js.map +1 -0
  144. package/tools/{connect/flux/create-connect-flux.mjs → networking/connect/connections/create-connect-networking-connections.mjs} +21 -14
  145. package/tools/networking/connect/connections/create-connect-networking-connections.mjs.map +1 -0
  146. package/tools/networking/connect/connections/delete-connect-networking-connections.d.mts +45 -0
  147. package/tools/networking/connect/connections/delete-connect-networking-connections.d.mts.map +1 -0
  148. package/tools/networking/connect/connections/delete-connect-networking-connections.d.ts +45 -0
  149. package/tools/networking/connect/connections/delete-connect-networking-connections.d.ts.map +1 -0
  150. package/tools/networking/connect/connections/delete-connect-networking-connections.js +42 -0
  151. package/tools/networking/connect/connections/delete-connect-networking-connections.js.map +1 -0
  152. package/tools/networking/connect/connections/delete-connect-networking-connections.mjs +38 -0
  153. package/tools/networking/connect/connections/delete-connect-networking-connections.mjs.map +1 -0
  154. package/tools/networking/connect/connections/get-connect-networking-connections.d.mts +45 -0
  155. package/tools/networking/connect/connections/get-connect-networking-connections.d.mts.map +1 -0
  156. package/tools/networking/connect/connections/get-connect-networking-connections.d.ts +45 -0
  157. package/tools/networking/connect/connections/get-connect-networking-connections.d.ts.map +1 -0
  158. package/tools/networking/connect/connections/get-connect-networking-connections.js +42 -0
  159. package/tools/networking/connect/connections/get-connect-networking-connections.js.map +1 -0
  160. package/tools/networking/connect/connections/get-connect-networking-connections.mjs +38 -0
  161. package/tools/networking/connect/connections/get-connect-networking-connections.mjs.map +1 -0
  162. package/tools/networking/connect/connections/list-connect-networking-connections.d.mts +45 -0
  163. package/tools/networking/connect/connections/list-connect-networking-connections.d.mts.map +1 -0
  164. package/tools/networking/connect/connections/list-connect-networking-connections.d.ts +45 -0
  165. package/tools/networking/connect/connections/list-connect-networking-connections.d.ts.map +1 -0
  166. package/tools/networking/connect/connections/list-connect-networking-connections.js +39 -0
  167. package/tools/networking/connect/connections/list-connect-networking-connections.js.map +1 -0
  168. package/tools/networking/connect/connections/list-connect-networking-connections.mjs +35 -0
  169. package/tools/networking/connect/connections/list-connect-networking-connections.mjs.map +1 -0
  170. package/tools/networking/connect/connections/update-connect-networking-connections.d.mts +45 -0
  171. package/tools/networking/connect/connections/update-connect-networking-connections.d.mts.map +1 -0
  172. package/tools/networking/connect/connections/update-connect-networking-connections.d.ts +45 -0
  173. package/tools/networking/connect/connections/update-connect-networking-connections.d.ts.map +1 -0
  174. package/tools/networking/connect/connections/update-connect-networking-connections.js +51 -0
  175. package/tools/networking/connect/connections/update-connect-networking-connections.js.map +1 -0
  176. package/tools/networking/connect/connections/update-connect-networking-connections.mjs +47 -0
  177. package/tools/networking/connect/connections/update-connect-networking-connections.mjs.map +1 -0
  178. package/tools/networking/connect/routes/list-connect-networking-routes.d.mts +45 -0
  179. package/tools/networking/connect/routes/list-connect-networking-routes.d.mts.map +1 -0
  180. package/tools/networking/connect/routes/list-connect-networking-routes.d.ts +45 -0
  181. package/tools/networking/connect/routes/list-connect-networking-routes.d.ts.map +1 -0
  182. package/tools/{connect/flux/providers/list-flux-connect-providers.js → networking/connect/routes/list-connect-networking-routes.js} +7 -7
  183. package/tools/networking/connect/routes/list-connect-networking-routes.js.map +1 -0
  184. package/tools/networking/connect/routes/list-connect-networking-routes.mjs +35 -0
  185. package/tools/networking/connect/routes/list-connect-networking-routes.mjs.map +1 -0
  186. package/tools/networking/firewall-rules/create-networking-firewall-rules.d.mts.map +1 -1
  187. package/tools/networking/firewall-rules/create-networking-firewall-rules.d.ts.map +1 -1
  188. package/tools/networking/firewall-rules/create-networking-firewall-rules.js +7 -0
  189. package/tools/networking/firewall-rules/create-networking-firewall-rules.js.map +1 -1
  190. package/tools/networking/firewall-rules/create-networking-firewall-rules.mjs +7 -0
  191. package/tools/networking/firewall-rules/create-networking-firewall-rules.mjs.map +1 -1
  192. package/tools/networking/firewall-rules/get-networking-firewall-rules.js +1 -1
  193. package/tools/networking/firewall-rules/get-networking-firewall-rules.js.map +1 -1
  194. package/tools/networking/firewall-rules/get-networking-firewall-rules.mjs +1 -1
  195. package/tools/networking/firewall-rules/get-networking-firewall-rules.mjs.map +1 -1
  196. package/tools/networking/firewall-rules/list-networking-firewall-rules.js +1 -1
  197. package/tools/networking/firewall-rules/list-networking-firewall-rules.js.map +1 -1
  198. package/tools/networking/firewall-rules/list-networking-firewall-rules.mjs +1 -1
  199. package/tools/networking/firewall-rules/list-networking-firewall-rules.mjs.map +1 -1
  200. package/tools/networking/firewall-rules/update-networking-firewall-rules.d.mts.map +1 -1
  201. package/tools/networking/firewall-rules/update-networking-firewall-rules.d.ts.map +1 -1
  202. package/tools/networking/firewall-rules/update-networking-firewall-rules.js +7 -0
  203. package/tools/networking/firewall-rules/update-networking-firewall-rules.js.map +1 -1
  204. package/tools/networking/firewall-rules/update-networking-firewall-rules.mjs +7 -0
  205. package/tools/networking/firewall-rules/update-networking-firewall-rules.mjs.map +1 -1
  206. package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.mts.map +1 -1
  207. package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.ts.map +1 -1
  208. package/tools/networking/vpcs/availability/create-vpcs-networking-availability.js +8 -1
  209. package/tools/networking/vpcs/availability/create-vpcs-networking-availability.js.map +1 -1
  210. package/tools/networking/vpcs/availability/create-vpcs-networking-availability.mjs +8 -1
  211. package/tools/networking/vpcs/availability/create-vpcs-networking-availability.mjs.map +1 -1
  212. package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.mts.map +1 -1
  213. package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.ts.map +1 -1
  214. package/tools/networking/vpcs/availability/update-vpcs-networking-availability.js +8 -1
  215. package/tools/networking/vpcs/availability/update-vpcs-networking-availability.js.map +1 -1
  216. package/tools/networking/vpcs/availability/update-vpcs-networking-availability.mjs +8 -1
  217. package/tools/networking/vpcs/availability/update-vpcs-networking-availability.mjs.map +1 -1
  218. package/tools/networking/vpcs/create-networking-vpcs.d.mts.map +1 -1
  219. package/tools/networking/vpcs/create-networking-vpcs.d.ts.map +1 -1
  220. package/tools/networking/vpcs/create-networking-vpcs.js +7 -0
  221. package/tools/networking/vpcs/create-networking-vpcs.js.map +1 -1
  222. package/tools/networking/vpcs/create-networking-vpcs.mjs +7 -0
  223. package/tools/networking/vpcs/create-networking-vpcs.mjs.map +1 -1
  224. package/tools/networking/vpcs/get-networking-vpcs.js +1 -1
  225. package/tools/networking/vpcs/get-networking-vpcs.js.map +1 -1
  226. package/tools/networking/vpcs/get-networking-vpcs.mjs +1 -1
  227. package/tools/networking/vpcs/get-networking-vpcs.mjs.map +1 -1
  228. package/tools/networking/vpcs/list-networking-vpcs.js +1 -1
  229. package/tools/networking/vpcs/list-networking-vpcs.js.map +1 -1
  230. package/tools/networking/vpcs/list-networking-vpcs.mjs +1 -1
  231. package/tools/networking/vpcs/list-networking-vpcs.mjs.map +1 -1
  232. package/tools/networking/vpcs/update-networking-vpcs.d.mts.map +1 -1
  233. package/tools/networking/vpcs/update-networking-vpcs.d.ts.map +1 -1
  234. package/tools/networking/vpcs/update-networking-vpcs.js +7 -0
  235. package/tools/networking/vpcs/update-networking-vpcs.js.map +1 -1
  236. package/tools/networking/vpcs/update-networking-vpcs.mjs +7 -0
  237. package/tools/networking/vpcs/update-networking-vpcs.mjs.map +1 -1
  238. package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js +1 -1
  239. package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js.map +1 -1
  240. package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs +1 -1
  241. package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs.map +1 -1
  242. package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js +1 -1
  243. package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js.map +1 -1
  244. package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs +1 -1
  245. package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs.map +1 -1
  246. package/tools/{connect/flux/delete-connect-flux.d.mts → rpc-nodes/flex/create-rpc-nodes-flex.d.mts} +1 -1
  247. package/tools/rpc-nodes/flex/create-rpc-nodes-flex.d.mts.map +1 -0
  248. package/tools/{connect/flux/delete-connect-flux.d.ts → rpc-nodes/flex/create-rpc-nodes-flex.d.ts} +1 -1
  249. package/tools/rpc-nodes/flex/create-rpc-nodes-flex.d.ts.map +1 -0
  250. package/tools/rpc-nodes/flex/create-rpc-nodes-flex.js +56 -0
  251. package/tools/rpc-nodes/flex/create-rpc-nodes-flex.js.map +1 -0
  252. package/tools/rpc-nodes/flex/create-rpc-nodes-flex.mjs +52 -0
  253. package/tools/rpc-nodes/flex/create-rpc-nodes-flex.mjs.map +1 -0
  254. package/tools/rpc-nodes/flex/delete-rpc-nodes-flex.d.mts +45 -0
  255. package/tools/rpc-nodes/flex/delete-rpc-nodes-flex.d.mts.map +1 -0
  256. package/tools/{connect/flux/create-connect-flux.d.mts → rpc-nodes/flex/delete-rpc-nodes-flex.d.ts} +1 -1
  257. package/tools/rpc-nodes/flex/delete-rpc-nodes-flex.d.ts.map +1 -0
  258. package/tools/rpc-nodes/flex/delete-rpc-nodes-flex.js +37 -0
  259. package/tools/rpc-nodes/flex/delete-rpc-nodes-flex.js.map +1 -0
  260. package/tools/rpc-nodes/flex/delete-rpc-nodes-flex.mjs +33 -0
  261. package/tools/rpc-nodes/flex/delete-rpc-nodes-flex.mjs.map +1 -0
  262. package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js +1 -1
  263. package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js.map +1 -1
  264. package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs +1 -1
  265. package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs.map +1 -1
  266. package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js +1 -1
  267. package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js.map +1 -1
  268. package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs +1 -1
  269. package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs.map +1 -1
  270. package/tools/rpc-nodes/flex/update-rpc-nodes-flex.d.mts +45 -0
  271. package/tools/rpc-nodes/flex/update-rpc-nodes-flex.d.mts.map +1 -0
  272. package/tools/{connect/flux/create-connect-flux.d.ts → rpc-nodes/flex/update-rpc-nodes-flex.d.ts} +1 -1
  273. package/tools/rpc-nodes/flex/update-rpc-nodes-flex.d.ts.map +1 -0
  274. package/tools/rpc-nodes/flex/update-rpc-nodes-flex.js +51 -0
  275. package/tools/rpc-nodes/flex/update-rpc-nodes-flex.js.map +1 -0
  276. package/tools/rpc-nodes/flex/update-rpc-nodes-flex.mjs +47 -0
  277. package/tools/rpc-nodes/flex/update-rpc-nodes-flex.mjs.map +1 -0
  278. package/tools/vektor/balances/list-historical-vektor-balances.js +1 -1
  279. package/tools/vektor/balances/list-historical-vektor-balances.js.map +1 -1
  280. package/tools/vektor/balances/list-historical-vektor-balances.mjs +1 -1
  281. package/tools/vektor/balances/list-historical-vektor-balances.mjs.map +1 -1
  282. package/tools/vektor/balances/list-vektor-balances.js +1 -1
  283. package/tools/vektor/balances/list-vektor-balances.js.map +1 -1
  284. package/tools/vektor/balances/list-vektor-balances.mjs +1 -1
  285. package/tools/vektor/balances/list-vektor-balances.mjs.map +1 -1
  286. package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.js +1 -1
  287. package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.js.map +1 -1
  288. package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.mjs +1 -1
  289. package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.mjs.map +1 -1
  290. package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.js +1 -1
  291. package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.js.map +1 -1
  292. package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.mjs +1 -1
  293. package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.mjs.map +1 -1
  294. package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.js +1 -1
  295. package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.js.map +1 -1
  296. package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.mjs +1 -1
  297. package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.mjs.map +1 -1
  298. package/tools/vektor/buy/quotes/list-buy-vektor-quotes.js +1 -1
  299. package/tools/vektor/buy/quotes/list-buy-vektor-quotes.js.map +1 -1
  300. package/tools/vektor/buy/quotes/list-buy-vektor-quotes.mjs +1 -1
  301. package/tools/vektor/buy/quotes/list-buy-vektor-quotes.mjs.map +1 -1
  302. package/tools/vektor/lock/markets/list-lock-vektor-markets.js +1 -1
  303. package/tools/vektor/lock/markets/list-lock-vektor-markets.js.map +1 -1
  304. package/tools/vektor/lock/markets/list-lock-vektor-markets.mjs +1 -1
  305. package/tools/vektor/lock/markets/list-lock-vektor-markets.mjs.map +1 -1
  306. package/tools/vektor/lock/positions/list-lock-vektor-positions.d.mts.map +1 -1
  307. package/tools/vektor/lock/positions/list-lock-vektor-positions.d.ts.map +1 -1
  308. package/tools/vektor/lock/positions/list-lock-vektor-positions.js +3 -9
  309. package/tools/vektor/lock/positions/list-lock-vektor-positions.js.map +1 -1
  310. package/tools/vektor/lock/positions/list-lock-vektor-positions.mjs +3 -9
  311. package/tools/vektor/lock/positions/list-lock-vektor-positions.mjs.map +1 -1
  312. package/tools/vektor/prices/list-historical-vektor-prices.js +1 -1
  313. package/tools/vektor/prices/list-historical-vektor-prices.js.map +1 -1
  314. package/tools/vektor/prices/list-historical-vektor-prices.mjs +1 -1
  315. package/tools/vektor/prices/list-historical-vektor-prices.mjs.map +1 -1
  316. package/tools/vektor/prices/list-vektor-prices.js +1 -1
  317. package/tools/vektor/prices/list-vektor-prices.js.map +1 -1
  318. package/tools/vektor/prices/list-vektor-prices.mjs +1 -1
  319. package/tools/vektor/prices/list-vektor-prices.mjs.map +1 -1
  320. package/tools/vektor/registry/assets/list-registry-vektor-assets.js +1 -1
  321. package/tools/vektor/registry/assets/list-registry-vektor-assets.js.map +1 -1
  322. package/tools/vektor/registry/assets/list-registry-vektor-assets.mjs +1 -1
  323. package/tools/vektor/registry/assets/list-registry-vektor-assets.mjs.map +1 -1
  324. package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.js +1 -1
  325. package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.js.map +1 -1
  326. package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.mjs +1 -1
  327. package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.mjs.map +1 -1
  328. package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.js +1 -1
  329. package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.js.map +1 -1
  330. package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.mjs +1 -1
  331. package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.mjs.map +1 -1
  332. package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.js +1 -1
  333. package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.js.map +1 -1
  334. package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.mjs +1 -1
  335. package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.mjs.map +1 -1
  336. package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.js +1 -1
  337. package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.js.map +1 -1
  338. package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.mjs +1 -1
  339. package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.mjs.map +1 -1
  340. package/tools/vektor/registry/venues/list-registry-vektor-venues.js +1 -1
  341. package/tools/vektor/registry/venues/list-registry-vektor-venues.js.map +1 -1
  342. package/tools/vektor/registry/venues/list-registry-vektor-venues.mjs +1 -1
  343. package/tools/vektor/registry/venues/list-registry-vektor-venues.mjs.map +1 -1
  344. package/src/tools/connect/flux/create-connect-flux.ts +0 -105
  345. package/src/tools/connect/flux/delete-connect-flux.ts +0 -47
  346. package/src/tools/connect/flux/get-connect-flux.ts +0 -47
  347. package/src/tools/connect/flux/list-connect-flux.ts +0 -44
  348. package/tools/connect/flux/create-connect-flux.d.mts.map +0 -1
  349. package/tools/connect/flux/create-connect-flux.d.ts.map +0 -1
  350. package/tools/connect/flux/create-connect-flux.js.map +0 -1
  351. package/tools/connect/flux/create-connect-flux.mjs.map +0 -1
  352. package/tools/connect/flux/delete-connect-flux.d.mts.map +0 -1
  353. package/tools/connect/flux/delete-connect-flux.d.ts.map +0 -1
  354. package/tools/connect/flux/delete-connect-flux.js +0 -42
  355. package/tools/connect/flux/delete-connect-flux.js.map +0 -1
  356. package/tools/connect/flux/delete-connect-flux.mjs +0 -38
  357. package/tools/connect/flux/delete-connect-flux.mjs.map +0 -1
  358. package/tools/connect/flux/get-connect-flux.d.mts +0 -45
  359. package/tools/connect/flux/get-connect-flux.d.mts.map +0 -1
  360. package/tools/connect/flux/get-connect-flux.d.ts +0 -45
  361. package/tools/connect/flux/get-connect-flux.d.ts.map +0 -1
  362. package/tools/connect/flux/get-connect-flux.js +0 -42
  363. package/tools/connect/flux/get-connect-flux.js.map +0 -1
  364. package/tools/connect/flux/get-connect-flux.mjs +0 -38
  365. package/tools/connect/flux/get-connect-flux.mjs.map +0 -1
  366. package/tools/connect/flux/list-connect-flux.d.mts +0 -45
  367. package/tools/connect/flux/list-connect-flux.d.mts.map +0 -1
  368. package/tools/connect/flux/list-connect-flux.d.ts +0 -45
  369. package/tools/connect/flux/list-connect-flux.d.ts.map +0 -1
  370. package/tools/connect/flux/list-connect-flux.js +0 -39
  371. package/tools/connect/flux/list-connect-flux.js.map +0 -1
  372. package/tools/connect/flux/list-connect-flux.mjs +0 -35
  373. package/tools/connect/flux/list-connect-flux.mjs.map +0 -1
  374. package/tools/connect/flux/providers/list-flux-connect-providers.d.mts +0 -45
  375. package/tools/connect/flux/providers/list-flux-connect-providers.d.mts.map +0 -1
  376. package/tools/connect/flux/providers/list-flux-connect-providers.d.ts +0 -45
  377. package/tools/connect/flux/providers/list-flux-connect-providers.d.ts.map +0 -1
  378. package/tools/connect/flux/providers/list-flux-connect-providers.js.map +0 -1
  379. package/tools/connect/flux/providers/list-flux-connect-providers.mjs +0 -35
  380. package/tools/connect/flux/providers/list-flux-connect-providers.mjs.map +0 -1
  381. package/tools/connect/flux/update-connect-flux.d.mts +0 -45
  382. package/tools/connect/flux/update-connect-flux.d.mts.map +0 -1
  383. package/tools/connect/flux/update-connect-flux.d.ts +0 -45
  384. package/tools/connect/flux/update-connect-flux.d.ts.map +0 -1
  385. package/tools/connect/flux/update-connect-flux.js +0 -44
  386. package/tools/connect/flux/update-connect-flux.js.map +0 -1
  387. package/tools/connect/flux/update-connect-flux.mjs +0 -40
  388. package/tools/connect/flux/update-connect-flux.mjs.map +0 -1
@@ -11,7 +11,7 @@ export const metadata = {
11
11
  };
12
12
  export const tool = {
13
13
  name: 'list_compute_volumes',
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 volumes\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/volume_list',\n $defs: {\n volume_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/volume'\n }\n }\n },\n required: [ 'items'\n ]\n },\n volume: {\n type: 'object',\n description: 'Volume details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Volume.'\n },\n created_at: {\n type: 'string',\n description: 'When the Volume was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/volume_kind'\n },\n name: {\n type: 'string',\n description: 'Name of the Volume.'\n },\n size: {\n type: 'integer',\n description: 'Size of the Volume in GB.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n type: {\n $ref: '#/$defs/storage_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Volume was updated.',\n format: 'date-time'\n },\n vm_id: {\n type: 'string',\n description: 'ID of the VM the Volume is attached to.'\n },\n vm_name: {\n type: 'string',\n description: 'Name of the VM the Volume is attached to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'name',\n 'size',\n 'status',\n 'type',\n 'updated_at',\n 'vm_id',\n 'vm_name'\n ]\n },\n volume_kind: {\n type: 'string',\n description: 'Volume kind.',\n enum: [ 'boot',\n 'data'\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 storage_type: {\n type: 'string',\n description: 'Storage type the Volume is using.',\n enum: [ 'nvme'\n ]\n }\n }\n}\n```",
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 volumes\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/volume_list',\n $defs: {\n volume_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/volume'\n }\n }\n },\n required: [ 'items'\n ]\n },\n volume: {\n type: 'object',\n description: 'Volume details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Volume.'\n },\n created_at: {\n type: 'string',\n description: 'When the Volume was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/volume_kind'\n },\n name: {\n type: 'string',\n description: 'Name of the Volume.'\n },\n size: {\n type: 'integer',\n description: 'Size of the Volume in GB.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n tags: {\n type: 'array',\n description: 'Tags to attach to the Volume.',\n items: {\n type: 'string'\n }\n },\n type: {\n $ref: '#/$defs/storage_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Volume was updated.',\n format: 'date-time'\n },\n vm_id: {\n type: 'string',\n description: 'ID of the VM the Volume is attached to.'\n },\n vm_name: {\n type: 'string',\n description: 'Name of the VM the Volume is attached to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'name',\n 'size',\n 'status',\n 'tags',\n 'type',\n 'updated_at',\n 'vm_id',\n 'vm_name'\n ]\n },\n volume_kind: {\n type: 'string',\n description: 'Volume kind.',\n enum: [ 'boot',\n 'data'\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 storage_type: {\n type: 'string',\n description: 'Storage type the Volume is using.',\n enum: [ 'nvme'\n ]\n }\n }\n}\n```",
15
15
  inputSchema: {
16
16
  type: 'object',
17
17
  properties: {
@@ -1 +1 @@
1
- {"version":3,"file":"list-compute-volumes.mjs","sourceRoot":"","sources":["../../../src/tools/compute/volumes/list-compute-volumes.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,cAAc;CAC5B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,sBAAsB;IAC5B,WAAW,EACT,q7EAAq7E;IACv7E,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,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AAChG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-compute-volumes.mjs","sourceRoot":"","sources":["../../../src/tools/compute/volumes/list-compute-volumes.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,cAAc;CAC5B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,sBAAsB;IAC5B,WAAW,EACT,mnFAAmnF;IACrnF,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,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AAChG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"update-compute-volumes.d.mts","sourceRoot":"","sources":["../../../src/tools/compute/volumes/update-compute-volumes.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,4EAK3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBALoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAO5F,wBAA2C"}
1
+ {"version":3,"file":"update-compute-volumes.d.mts","sourceRoot":"","sources":["../../../src/tools/compute/volumes/update-compute-volumes.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,IAmClB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAK3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBALoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAO5F,wBAA2C"}
@@ -1 +1 @@
1
- {"version":3,"file":"update-compute-volumes.d.ts","sourceRoot":"","sources":["../../../src/tools/compute/volumes/update-compute-volumes.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,4EAK3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBALoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAO5F,wBAA2C"}
1
+ {"version":3,"file":"update-compute-volumes.d.ts","sourceRoot":"","sources":["../../../src/tools/compute/volumes/update-compute-volumes.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,IAmClB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAK3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBALoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAO5F,wBAA2C"}
@@ -29,6 +29,13 @@ exports.tool = {
29
29
  type: 'integer',
30
30
  description: 'Size of the Volume in GB.',
31
31
  },
32
+ tags: {
33
+ type: 'array',
34
+ description: 'Tags to attach to the Volume.',
35
+ items: {
36
+ type: 'string',
37
+ },
38
+ },
32
39
  jq_filter: {
33
40
  type: 'string',
34
41
  title: 'jq Filter',
@@ -1 +1 @@
1
- {"version":3,"file":"update-compute-volumes.js","sourceRoot":"","sources":["../../../src/tools/compute/volumes/update-compute-volumes.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,iCAAiC;IAC3C,WAAW,EAAE,eAAe;CAC7B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EACT,67DAA67D;IAC/7D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;aACf;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qBAAqB;aACnC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,2BAA2B;aACzC;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,WAAW,CAAC;KACxB;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACtD,OAAO,IAAA,2BAAmB,EACxB,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC,CACnF,CAAC;AACJ,CAAC,CAAC;AALW,QAAA,OAAO,WAKlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"update-compute-volumes.js","sourceRoot":"","sources":["../../../src/tools/compute/volumes/update-compute-volumes.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,iCAAiC;IAC3C,WAAW,EAAE,eAAe;CAC7B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EACT,67DAA67D;IAC/7D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;aACf;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qBAAqB;aACnC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,2BAA2B;aACzC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,+BAA+B;gBAC5C,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,WAAW,CAAC;KACxB;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACtD,OAAO,IAAA,2BAAmB,EACxB,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC,CACnF,CAAC;AACJ,CAAC,CAAC;AALW,QAAA,OAAO,WAKlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
@@ -26,6 +26,13 @@ export const tool = {
26
26
  type: 'integer',
27
27
  description: 'Size of the Volume in GB.',
28
28
  },
29
+ tags: {
30
+ type: 'array',
31
+ description: 'Tags to attach to the Volume.',
32
+ items: {
33
+ type: 'string',
34
+ },
35
+ },
29
36
  jq_filter: {
30
37
  type: 'string',
31
38
  title: 'jq Filter',
@@ -1 +1 @@
1
- {"version":3,"file":"update-compute-volumes.mjs","sourceRoot":"","sources":["../../../src/tools/compute/volumes/update-compute-volumes.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,iCAAiC;IAC3C,WAAW,EAAE,eAAe;CAC7B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EACT,67DAA67D;IAC/7D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;aACf;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qBAAqB;aACnC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,2BAA2B;aACzC;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,WAAW,CAAC;KACxB;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACtD,OAAO,mBAAmB,CACxB,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC,CACnF,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"update-compute-volumes.mjs","sourceRoot":"","sources":["../../../src/tools/compute/volumes/update-compute-volumes.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,iCAAiC;IAC3C,WAAW,EAAE,eAAe;CAC7B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EACT,67DAA67D;IAC/7D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;aACf;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qBAAqB;aACnC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,2BAA2B;aACzC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,+BAA+B;gBAC5C,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,WAAW,CAAC;KACxB;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACtD,OAAO,mBAAmB,CACxB,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC,CACnF,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/tools/index.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE;AAE9C,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE,CAAC;AAqG/C,eAAO,MAAM,SAAS,EAAE,QAAQ,EAAO,CAAC;AAyGxC,MAAM,MAAM,MAAM,GAAG;IACnB,IAAI,EAAE,UAAU,GAAG,WAAW,GAAG,KAAK,GAAG,MAAM,CAAC;IAChD,EAAE,EAAE,SAAS,GAAG,SAAS,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,wBAAgB,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,QAAQ,EAAE,CA4B1E"}
1
+ {"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/tools/index.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE;AAE9C,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE,CAAC;AAwG/C,eAAO,MAAM,SAAS,EAAE,QAAQ,EAAO,CAAC;AA4GxC,MAAM,MAAM,MAAM,GAAG;IACnB,IAAI,EAAE,UAAU,GAAG,WAAW,GAAG,KAAK,GAAG,MAAM,CAAC;IAChD,EAAE,EAAE,SAAS,GAAG,SAAS,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,wBAAgB,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,QAAQ,EAAE,CA4B1E"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/tools/index.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE;AAE9C,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE,CAAC;AAqG/C,eAAO,MAAM,SAAS,EAAE,QAAQ,EAAO,CAAC;AAyGxC,MAAM,MAAM,MAAM,GAAG;IACnB,IAAI,EAAE,UAAU,GAAG,WAAW,GAAG,KAAK,GAAG,MAAM,CAAC;IAChD,EAAE,EAAE,SAAS,GAAG,SAAS,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,wBAAgB,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,QAAQ,EAAE,CA4B1E"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/tools/index.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE;AAE9C,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE,CAAC;AAwG/C,eAAO,MAAM,SAAS,EAAE,QAAQ,EAAO,CAAC;AA4GxC,MAAM,MAAM,MAAM,GAAG;IACnB,IAAI,EAAE,UAAU,GAAG,WAAW,GAAG,KAAK,GAAG,MAAM,CAAC;IAChD,EAAE,EAAE,SAAS,GAAG,SAAS,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,wBAAgB,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,QAAQ,EAAE,CA4B1E"}
package/tools/index.js CHANGED
@@ -43,18 +43,21 @@ const update_networking_firewall_rules_1 = __importDefault(require("./networking
43
43
  const list_networking_firewall_rules_1 = __importDefault(require("./networking/firewall-rules/list-networking-firewall-rules.js"));
44
44
  const delete_networking_firewall_rules_1 = __importDefault(require("./networking/firewall-rules/delete-networking-firewall-rules.js"));
45
45
  const get_networking_firewall_rules_1 = __importDefault(require("./networking/firewall-rules/get-networking-firewall-rules.js"));
46
+ const create_connect_networking_connections_1 = __importDefault(require("./networking/connect/connections/create-connect-networking-connections.js"));
47
+ const update_connect_networking_connections_1 = __importDefault(require("./networking/connect/connections/update-connect-networking-connections.js"));
48
+ const list_connect_networking_connections_1 = __importDefault(require("./networking/connect/connections/list-connect-networking-connections.js"));
49
+ const delete_connect_networking_connections_1 = __importDefault(require("./networking/connect/connections/delete-connect-networking-connections.js"));
50
+ const get_connect_networking_connections_1 = __importDefault(require("./networking/connect/connections/get-connect-networking-connections.js"));
51
+ const list_connect_networking_routes_1 = __importDefault(require("./networking/connect/routes/list-connect-networking-routes.js"));
52
+ const create_rpc_nodes_flex_1 = __importDefault(require("./rpc-nodes/flex/create-rpc-nodes-flex.js"));
53
+ const update_rpc_nodes_flex_1 = __importDefault(require("./rpc-nodes/flex/update-rpc-nodes-flex.js"));
46
54
  const list_rpc_nodes_flex_1 = __importDefault(require("./rpc-nodes/flex/list-rpc-nodes-flex.js"));
55
+ const delete_rpc_nodes_flex_1 = __importDefault(require("./rpc-nodes/flex/delete-rpc-nodes-flex.js"));
47
56
  const get_rpc_nodes_flex_1 = __importDefault(require("./rpc-nodes/flex/get-rpc-nodes-flex.js"));
48
57
  const list_flex_rpc_nodes_blockchains_1 = __importDefault(require("./rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.js"));
49
58
  const list_rpc_nodes_dedicated_1 = __importDefault(require("./rpc-nodes/dedicated/list-rpc-nodes-dedicated.js"));
50
59
  const get_rpc_nodes_dedicated_1 = __importDefault(require("./rpc-nodes/dedicated/get-rpc-nodes-dedicated.js"));
51
60
  const list_dedicated_rpc_nodes_blockchains_1 = __importDefault(require("./rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.js"));
52
- const create_connect_flux_1 = __importDefault(require("./connect/flux/create-connect-flux.js"));
53
- const update_connect_flux_1 = __importDefault(require("./connect/flux/update-connect-flux.js"));
54
- const list_connect_flux_1 = __importDefault(require("./connect/flux/list-connect-flux.js"));
55
- const delete_connect_flux_1 = __importDefault(require("./connect/flux/delete-connect-flux.js"));
56
- const get_connect_flux_1 = __importDefault(require("./connect/flux/get-connect-flux.js"));
57
- const list_flux_connect_providers_1 = __importDefault(require("./connect/flux/providers/list-flux-connect-providers.js"));
58
61
  const list_registry_vektor_assets_1 = __importDefault(require("./vektor/registry/assets/list-registry-vektor-assets.js"));
59
62
  const list_registry_vektor_blockchains_1 = __importDefault(require("./vektor/registry/blockchains/list-registry-vektor-blockchains.js"));
60
63
  const list_registry_vektor_venues_1 = __importDefault(require("./vektor/registry/venues/list-registry-vektor-venues.js"));
@@ -145,18 +148,21 @@ addEndpoint(update_networking_firewall_rules_1.default);
145
148
  addEndpoint(list_networking_firewall_rules_1.default);
146
149
  addEndpoint(delete_networking_firewall_rules_1.default);
147
150
  addEndpoint(get_networking_firewall_rules_1.default);
151
+ addEndpoint(create_connect_networking_connections_1.default);
152
+ addEndpoint(update_connect_networking_connections_1.default);
153
+ addEndpoint(list_connect_networking_connections_1.default);
154
+ addEndpoint(delete_connect_networking_connections_1.default);
155
+ addEndpoint(get_connect_networking_connections_1.default);
156
+ addEndpoint(list_connect_networking_routes_1.default);
157
+ addEndpoint(create_rpc_nodes_flex_1.default);
158
+ addEndpoint(update_rpc_nodes_flex_1.default);
148
159
  addEndpoint(list_rpc_nodes_flex_1.default);
160
+ addEndpoint(delete_rpc_nodes_flex_1.default);
149
161
  addEndpoint(get_rpc_nodes_flex_1.default);
150
162
  addEndpoint(list_flex_rpc_nodes_blockchains_1.default);
151
163
  addEndpoint(list_rpc_nodes_dedicated_1.default);
152
164
  addEndpoint(get_rpc_nodes_dedicated_1.default);
153
165
  addEndpoint(list_dedicated_rpc_nodes_blockchains_1.default);
154
- addEndpoint(create_connect_flux_1.default);
155
- addEndpoint(update_connect_flux_1.default);
156
- addEndpoint(list_connect_flux_1.default);
157
- addEndpoint(delete_connect_flux_1.default);
158
- addEndpoint(get_connect_flux_1.default);
159
- addEndpoint(list_flux_connect_providers_1.default);
160
166
  addEndpoint(list_registry_vektor_assets_1.default);
161
167
  addEndpoint(list_registry_vektor_blockchains_1.default);
162
168
  addEndpoint(list_registry_vektor_venues_1.default);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/tools/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/tools/index.ts"],"names":[],"mappings":"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"}
package/tools/index.mjs CHANGED
@@ -36,18 +36,21 @@ import update_networking_firewall_rules from "./networking/firewall-rules/update
36
36
  import list_networking_firewall_rules from "./networking/firewall-rules/list-networking-firewall-rules.mjs";
37
37
  import delete_networking_firewall_rules from "./networking/firewall-rules/delete-networking-firewall-rules.mjs";
38
38
  import get_networking_firewall_rules from "./networking/firewall-rules/get-networking-firewall-rules.mjs";
39
+ import create_connect_networking_connections from "./networking/connect/connections/create-connect-networking-connections.mjs";
40
+ import update_connect_networking_connections from "./networking/connect/connections/update-connect-networking-connections.mjs";
41
+ import list_connect_networking_connections from "./networking/connect/connections/list-connect-networking-connections.mjs";
42
+ import delete_connect_networking_connections from "./networking/connect/connections/delete-connect-networking-connections.mjs";
43
+ import get_connect_networking_connections from "./networking/connect/connections/get-connect-networking-connections.mjs";
44
+ import list_connect_networking_routes from "./networking/connect/routes/list-connect-networking-routes.mjs";
45
+ import create_rpc_nodes_flex from "./rpc-nodes/flex/create-rpc-nodes-flex.mjs";
46
+ import update_rpc_nodes_flex from "./rpc-nodes/flex/update-rpc-nodes-flex.mjs";
39
47
  import list_rpc_nodes_flex from "./rpc-nodes/flex/list-rpc-nodes-flex.mjs";
48
+ import delete_rpc_nodes_flex from "./rpc-nodes/flex/delete-rpc-nodes-flex.mjs";
40
49
  import get_rpc_nodes_flex from "./rpc-nodes/flex/get-rpc-nodes-flex.mjs";
41
50
  import list_flex_rpc_nodes_blockchains from "./rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.mjs";
42
51
  import list_rpc_nodes_dedicated from "./rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs";
43
52
  import get_rpc_nodes_dedicated from "./rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs";
44
53
  import list_dedicated_rpc_nodes_blockchains from "./rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.mjs";
45
- import create_connect_flux from "./connect/flux/create-connect-flux.mjs";
46
- import update_connect_flux from "./connect/flux/update-connect-flux.mjs";
47
- import list_connect_flux from "./connect/flux/list-connect-flux.mjs";
48
- import delete_connect_flux from "./connect/flux/delete-connect-flux.mjs";
49
- import get_connect_flux from "./connect/flux/get-connect-flux.mjs";
50
- import list_flux_connect_providers from "./connect/flux/providers/list-flux-connect-providers.mjs";
51
54
  import list_registry_vektor_assets from "./vektor/registry/assets/list-registry-vektor-assets.mjs";
52
55
  import list_registry_vektor_blockchains from "./vektor/registry/blockchains/list-registry-vektor-blockchains.mjs";
53
56
  import list_registry_vektor_venues from "./vektor/registry/venues/list-registry-vektor-venues.mjs";
@@ -138,18 +141,21 @@ addEndpoint(update_networking_firewall_rules);
138
141
  addEndpoint(list_networking_firewall_rules);
139
142
  addEndpoint(delete_networking_firewall_rules);
140
143
  addEndpoint(get_networking_firewall_rules);
144
+ addEndpoint(create_connect_networking_connections);
145
+ addEndpoint(update_connect_networking_connections);
146
+ addEndpoint(list_connect_networking_connections);
147
+ addEndpoint(delete_connect_networking_connections);
148
+ addEndpoint(get_connect_networking_connections);
149
+ addEndpoint(list_connect_networking_routes);
150
+ addEndpoint(create_rpc_nodes_flex);
151
+ addEndpoint(update_rpc_nodes_flex);
141
152
  addEndpoint(list_rpc_nodes_flex);
153
+ addEndpoint(delete_rpc_nodes_flex);
142
154
  addEndpoint(get_rpc_nodes_flex);
143
155
  addEndpoint(list_flex_rpc_nodes_blockchains);
144
156
  addEndpoint(list_rpc_nodes_dedicated);
145
157
  addEndpoint(get_rpc_nodes_dedicated);
146
158
  addEndpoint(list_dedicated_rpc_nodes_blockchains);
147
- addEndpoint(create_connect_flux);
148
- addEndpoint(update_connect_flux);
149
- addEndpoint(list_connect_flux);
150
- addEndpoint(delete_connect_flux);
151
- addEndpoint(get_connect_flux);
152
- addEndpoint(list_flux_connect_providers);
153
159
  addEndpoint(list_registry_vektor_assets);
154
160
  addEndpoint(list_registry_vektor_blockchains);
155
161
  addEndpoint(list_registry_vektor_venues);
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/tools/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/tools/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,45 @@
1
+ import { Metadata } from '@nirvana-labs/nirvana-mcp/tools/types';
2
+ import { Tool } from '@modelcontextprotocol/sdk/types.js';
3
+ import NirvanaLabs from '@nirvana-labs/nirvana';
4
+ export declare const metadata: Metadata;
5
+ export declare const tool: Tool;
6
+ export declare const handler: (client: NirvanaLabs, args: Record<string, unknown> | undefined) => Promise<import("@nirvana-labs/nirvana-mcp/tools/types").ToolCallResult>;
7
+ declare const _default: {
8
+ metadata: Metadata;
9
+ tool: {
10
+ [x: string]: unknown;
11
+ name: string;
12
+ inputSchema: {
13
+ [x: string]: unknown;
14
+ type: "object";
15
+ properties?: {
16
+ [x: string]: unknown;
17
+ } | undefined;
18
+ required?: string[] | undefined;
19
+ };
20
+ title?: string | undefined;
21
+ description?: string | undefined;
22
+ outputSchema?: {
23
+ [x: string]: unknown;
24
+ type: "object";
25
+ properties?: {
26
+ [x: string]: unknown;
27
+ } | undefined;
28
+ required?: string[] | undefined;
29
+ } | undefined;
30
+ annotations?: {
31
+ [x: string]: unknown;
32
+ title?: string | undefined;
33
+ readOnlyHint?: boolean | undefined;
34
+ destructiveHint?: boolean | undefined;
35
+ idempotentHint?: boolean | undefined;
36
+ openWorldHint?: boolean | undefined;
37
+ } | undefined;
38
+ _meta?: {
39
+ [x: string]: unknown;
40
+ } | undefined;
41
+ };
42
+ handler: (client: NirvanaLabs, args: Record<string, unknown> | undefined) => Promise<import("@nirvana-labs/nirvana-mcp/tools/types").ToolCallResult>;
43
+ };
44
+ export default _default;
45
+ //# sourceMappingURL=create-connect-networking-connections.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-connect-networking-connections.d.mts","sourceRoot":"","sources":["../../../../src/tools/networking/connect/connections/create-connect-networking-connections.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,IAuFlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAK3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBALoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAO5F,wBAA2C"}
@@ -0,0 +1,45 @@
1
+ import { Metadata } from '@nirvana-labs/nirvana-mcp/tools/types';
2
+ import { Tool } from '@modelcontextprotocol/sdk/types.js';
3
+ import NirvanaLabs from '@nirvana-labs/nirvana';
4
+ export declare const metadata: Metadata;
5
+ export declare const tool: Tool;
6
+ export declare const handler: (client: NirvanaLabs, args: Record<string, unknown> | undefined) => Promise<import("@nirvana-labs/nirvana-mcp/tools/types").ToolCallResult>;
7
+ declare const _default: {
8
+ metadata: Metadata;
9
+ tool: {
10
+ [x: string]: unknown;
11
+ name: string;
12
+ inputSchema: {
13
+ [x: string]: unknown;
14
+ type: "object";
15
+ properties?: {
16
+ [x: string]: unknown;
17
+ } | undefined;
18
+ required?: string[] | undefined;
19
+ };
20
+ title?: string | undefined;
21
+ description?: string | undefined;
22
+ outputSchema?: {
23
+ [x: string]: unknown;
24
+ type: "object";
25
+ properties?: {
26
+ [x: string]: unknown;
27
+ } | undefined;
28
+ required?: string[] | undefined;
29
+ } | undefined;
30
+ annotations?: {
31
+ [x: string]: unknown;
32
+ title?: string | undefined;
33
+ readOnlyHint?: boolean | undefined;
34
+ destructiveHint?: boolean | undefined;
35
+ idempotentHint?: boolean | undefined;
36
+ openWorldHint?: boolean | undefined;
37
+ } | undefined;
38
+ _meta?: {
39
+ [x: string]: unknown;
40
+ } | undefined;
41
+ };
42
+ handler: (client: NirvanaLabs, args: Record<string, unknown> | undefined) => Promise<import("@nirvana-labs/nirvana-mcp/tools/types").ToolCallResult>;
43
+ };
44
+ export default _default;
45
+ //# sourceMappingURL=create-connect-networking-connections.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-connect-networking-connections.d.ts","sourceRoot":"","sources":["../../../../src/tools/networking/connect/connections/create-connect-networking-connections.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,IAuFlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAK3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBALoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAO5F,wBAA2C"}
@@ -5,32 +5,32 @@ exports.handler = exports.tool = exports.metadata = void 0;
5
5
  const filtering_1 = require("@nirvana-labs/nirvana-mcp/filtering");
6
6
  const types_1 = require("@nirvana-labs/nirvana-mcp/tools/types");
7
7
  exports.metadata = {
8
- resource: 'connect.flux',
8
+ resource: 'networking.connect.connections',
9
9
  operation: 'write',
10
10
  tags: [],
11
11
  httpMethod: 'post',
12
- httpPath: '/v1/connect/flux',
13
- operationId: 'create_connect_flux',
12
+ httpPath: '/v1/networking/connect/connections',
13
+ operationId: 'create_connect_connection',
14
14
  };
15
15
  exports.tool = {
16
- name: 'create_connect_flux',
17
- description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a Connect Flux\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```",
16
+ name: 'create_connect_networking_connections',
17
+ description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a Connect Connection\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
18
  inputSchema: {
19
19
  type: 'object',
20
20
  properties: {
21
21
  bandwidth_mbps: {
22
- $ref: '#/$defs/flux_bandwidth_mbps',
22
+ $ref: '#/$defs/connect_bandwidth_mbps',
23
23
  },
24
24
  cidrs: {
25
25
  type: 'array',
26
- description: 'CIDRs for the Connect Flux',
26
+ description: 'CIDRs for the Connect Connection',
27
27
  items: {
28
28
  type: 'string',
29
29
  },
30
30
  },
31
31
  name: {
32
32
  type: 'string',
33
- description: 'Name of the Connect Flux',
33
+ description: 'Name of the Connect Connection',
34
34
  },
35
35
  provider_cidrs: {
36
36
  type: 'array',
@@ -43,7 +43,14 @@ exports.tool = {
43
43
  $ref: '#/$defs/region_name',
44
44
  },
45
45
  aws: {
46
- $ref: '#/$defs/flux_provider_aws_config_request',
46
+ $ref: '#/$defs/connect_connection_aws_config_request',
47
+ },
48
+ tags: {
49
+ type: 'array',
50
+ description: 'Tags to attach to the Connect Connection',
51
+ items: {
52
+ type: 'string',
53
+ },
47
54
  },
48
55
  jq_filter: {
49
56
  type: 'string',
@@ -53,9 +60,9 @@ exports.tool = {
53
60
  },
54
61
  required: ['bandwidth_mbps', 'cidrs', 'name', 'provider_cidrs', 'region'],
55
62
  $defs: {
56
- flux_bandwidth_mbps: {
63
+ connect_bandwidth_mbps: {
57
64
  type: 'string',
58
- description: 'Connect Flux speed in Mbps',
65
+ description: 'Connect Connection speed in Mbps',
59
66
  enum: [50, 200, 500, 1000, 2000],
60
67
  },
61
68
  region_name: {
@@ -72,7 +79,7 @@ exports.tool = {
72
79
  'ap-tyo-1',
73
80
  ],
74
81
  },
75
- flux_provider_aws_config_request: {
82
+ connect_connection_aws_config_request: {
76
83
  type: 'object',
77
84
  description: 'AWS provider configuration',
78
85
  properties: {
@@ -93,8 +100,8 @@ exports.tool = {
93
100
  };
94
101
  const handler = async (client, args) => {
95
102
  const { jq_filter, ...body } = args;
96
- return (0, types_1.asTextContentResult)(await (0, filtering_1.maybeFilter)(jq_filter, await client.connect.flux.create(body)));
103
+ return (0, types_1.asTextContentResult)(await (0, filtering_1.maybeFilter)(jq_filter, await client.networking.connect.connections.create(body)));
97
104
  };
98
105
  exports.handler = handler;
99
106
  exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
100
- //# sourceMappingURL=create-connect-flux.js.map
107
+ //# sourceMappingURL=create-connect-networking-connections.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-connect-networking-connections.js","sourceRoot":"","sources":["../../../../src/tools/networking/connect/connections/create-connect-networking-connections.ts"],"names":[],"mappings":"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"}
@@ -2,32 +2,32 @@
2
2
  import { maybeFilter } from '@nirvana-labs/nirvana-mcp/filtering';
3
3
  import { asTextContentResult } from '@nirvana-labs/nirvana-mcp/tools/types';
4
4
  export const metadata = {
5
- resource: 'connect.flux',
5
+ resource: 'networking.connect.connections',
6
6
  operation: 'write',
7
7
  tags: [],
8
8
  httpMethod: 'post',
9
- httpPath: '/v1/connect/flux',
10
- operationId: 'create_connect_flux',
9
+ httpPath: '/v1/networking/connect/connections',
10
+ operationId: 'create_connect_connection',
11
11
  };
12
12
  export const tool = {
13
- name: 'create_connect_flux',
14
- description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a Connect Flux\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```",
13
+ name: 'create_connect_networking_connections',
14
+ description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a Connect Connection\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
15
  inputSchema: {
16
16
  type: 'object',
17
17
  properties: {
18
18
  bandwidth_mbps: {
19
- $ref: '#/$defs/flux_bandwidth_mbps',
19
+ $ref: '#/$defs/connect_bandwidth_mbps',
20
20
  },
21
21
  cidrs: {
22
22
  type: 'array',
23
- description: 'CIDRs for the Connect Flux',
23
+ description: 'CIDRs for the Connect Connection',
24
24
  items: {
25
25
  type: 'string',
26
26
  },
27
27
  },
28
28
  name: {
29
29
  type: 'string',
30
- description: 'Name of the Connect Flux',
30
+ description: 'Name of the Connect Connection',
31
31
  },
32
32
  provider_cidrs: {
33
33
  type: 'array',
@@ -40,7 +40,14 @@ export const tool = {
40
40
  $ref: '#/$defs/region_name',
41
41
  },
42
42
  aws: {
43
- $ref: '#/$defs/flux_provider_aws_config_request',
43
+ $ref: '#/$defs/connect_connection_aws_config_request',
44
+ },
45
+ tags: {
46
+ type: 'array',
47
+ description: 'Tags to attach to the Connect Connection',
48
+ items: {
49
+ type: 'string',
50
+ },
44
51
  },
45
52
  jq_filter: {
46
53
  type: 'string',
@@ -50,9 +57,9 @@ export const tool = {
50
57
  },
51
58
  required: ['bandwidth_mbps', 'cidrs', 'name', 'provider_cidrs', 'region'],
52
59
  $defs: {
53
- flux_bandwidth_mbps: {
60
+ connect_bandwidth_mbps: {
54
61
  type: 'string',
55
- description: 'Connect Flux speed in Mbps',
62
+ description: 'Connect Connection speed in Mbps',
56
63
  enum: [50, 200, 500, 1000, 2000],
57
64
  },
58
65
  region_name: {
@@ -69,7 +76,7 @@ export const tool = {
69
76
  'ap-tyo-1',
70
77
  ],
71
78
  },
72
- flux_provider_aws_config_request: {
79
+ connect_connection_aws_config_request: {
73
80
  type: 'object',
74
81
  description: 'AWS provider configuration',
75
82
  properties: {
@@ -90,7 +97,7 @@ export const tool = {
90
97
  };
91
98
  export const handler = async (client, args) => {
92
99
  const { jq_filter, ...body } = args;
93
- return asTextContentResult(await maybeFilter(jq_filter, await client.connect.flux.create(body)));
100
+ return asTextContentResult(await maybeFilter(jq_filter, await client.networking.connect.connections.create(body)));
94
101
  };
95
102
  export default { metadata, tool, handler };
96
- //# sourceMappingURL=create-connect-flux.mjs.map
103
+ //# sourceMappingURL=create-connect-networking-connections.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-connect-networking-connections.mjs","sourceRoot":"","sources":["../../../../src/tools/networking/connect/connections/create-connect-networking-connections.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,gCAAgC;IAC1C,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,oCAAoC;IAC9C,WAAW,EAAE,2BAA2B;CACzC,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,uCAAuC;IAC7C,WAAW,EACT,m6DAAm6D;IACr6D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,cAAc,EAAE;gBACd,IAAI,EAAE,gCAAgC;aACvC;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,kCAAkC;gBAC/C,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,gCAAgC;aAC9C;YACD,cAAc,EAAE;gBACd,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,gBAAgB;gBAC7B,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,qBAAqB;aAC5B;YACD,GAAG,EAAE;gBACH,IAAI,EAAE,+CAA+C;aACtD;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,0CAA0C;gBACvD,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,gBAAgB,EAAE,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,QAAQ,CAAC;QACzE,KAAK,EAAE;YACL,sBAAsB,EAAE;gBACtB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kCAAkC;gBAC/C,IAAI,EAAE,CAAC,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC;aACjC;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,4BAA4B;gBACzC,IAAI,EAAE;oBACJ,UAAU;oBACV,UAAU;oBACV,UAAU;oBACV,UAAU;oBACV,UAAU;oBACV,UAAU;oBACV,UAAU;oBACV,UAAU;iBACX;aACF;YACD,qCAAqC,EAAE;gBACrC,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,4BAA4B;gBACzC,UAAU,EAAE;oBACV,UAAU,EAAE;wBACV,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,gBAAgB;qBAC9B;oBACD,MAAM,EAAE;wBACN,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,qDAAqD;qBACnE;iBACF;gBACD,QAAQ,EAAE,CAAC,YAAY,EAAE,QAAQ,CAAC;aACnC;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,mBAAmB,CACxB,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CACvF,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}