@nirvana-labs/nirvana-mcp 1.18.3 → 1.19.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 (298) hide show
  1. package/README.md +2 -2
  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/connect/flux/create-connect-flux.ts +7 -0
  21. package/src/tools/connect/flux/get-connect-flux.ts +1 -1
  22. package/src/tools/connect/flux/list-connect-flux.ts +1 -1
  23. package/src/tools/connect/flux/{providers/list-flux-connect-providers.ts → routes/list-flux-connect-routes.ts} +6 -6
  24. package/src/tools/connect/flux/update-connect-flux.ts +7 -0
  25. package/src/tools/index.ts +2 -2
  26. package/src/tools/networking/firewall-rules/create-networking-firewall-rules.ts +7 -0
  27. package/src/tools/networking/firewall-rules/get-networking-firewall-rules.ts +1 -1
  28. package/src/tools/networking/firewall-rules/list-networking-firewall-rules.ts +1 -1
  29. package/src/tools/networking/firewall-rules/update-networking-firewall-rules.ts +7 -0
  30. package/src/tools/networking/vpcs/availability/create-vpcs-networking-availability.ts +8 -1
  31. package/src/tools/networking/vpcs/availability/update-vpcs-networking-availability.ts +8 -1
  32. package/src/tools/networking/vpcs/create-networking-vpcs.ts +7 -0
  33. package/src/tools/networking/vpcs/get-networking-vpcs.ts +1 -1
  34. package/src/tools/networking/vpcs/list-networking-vpcs.ts +1 -1
  35. package/src/tools/networking/vpcs/update-networking-vpcs.ts +7 -0
  36. package/src/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.ts +1 -1
  37. package/src/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.ts +1 -1
  38. package/src/tools/rpc-nodes/flex/get-rpc-nodes-flex.ts +1 -1
  39. package/src/tools/rpc-nodes/flex/list-rpc-nodes-flex.ts +1 -1
  40. package/src/tools/vektor/balances/list-historical-vektor-balances.ts +1 -1
  41. package/src/tools/vektor/balances/list-vektor-balances.ts +1 -1
  42. package/src/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.ts +1 -1
  43. package/src/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.ts +1 -1
  44. package/src/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.ts +1 -1
  45. package/src/tools/vektor/buy/quotes/list-buy-vektor-quotes.ts +1 -1
  46. package/src/tools/vektor/lock/markets/list-lock-vektor-markets.ts +1 -1
  47. package/src/tools/vektor/lock/positions/list-lock-vektor-positions.ts +3 -11
  48. package/src/tools/vektor/prices/list-historical-vektor-prices.ts +1 -1
  49. package/src/tools/vektor/prices/list-vektor-prices.ts +1 -1
  50. package/src/tools/vektor/registry/assets/list-registry-vektor-assets.ts +1 -1
  51. package/src/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.ts +1 -1
  52. package/src/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.ts +1 -1
  53. package/src/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.ts +1 -1
  54. package/src/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.ts +1 -1
  55. package/src/tools/vektor/registry/venues/list-registry-vektor-venues.ts +1 -1
  56. package/tools/compute/vms/availability/create-vms-compute-availability.d.mts.map +1 -1
  57. package/tools/compute/vms/availability/create-vms-compute-availability.d.ts.map +1 -1
  58. package/tools/compute/vms/availability/create-vms-compute-availability.js +22 -1
  59. package/tools/compute/vms/availability/create-vms-compute-availability.js.map +1 -1
  60. package/tools/compute/vms/availability/create-vms-compute-availability.mjs +22 -1
  61. package/tools/compute/vms/availability/create-vms-compute-availability.mjs.map +1 -1
  62. package/tools/compute/vms/availability/update-vms-compute-availability.d.mts.map +1 -1
  63. package/tools/compute/vms/availability/update-vms-compute-availability.d.ts.map +1 -1
  64. package/tools/compute/vms/availability/update-vms-compute-availability.js +8 -1
  65. package/tools/compute/vms/availability/update-vms-compute-availability.js.map +1 -1
  66. package/tools/compute/vms/availability/update-vms-compute-availability.mjs +8 -1
  67. package/tools/compute/vms/availability/update-vms-compute-availability.mjs.map +1 -1
  68. package/tools/compute/vms/create-compute-vms.d.mts.map +1 -1
  69. package/tools/compute/vms/create-compute-vms.d.ts.map +1 -1
  70. package/tools/compute/vms/create-compute-vms.js +21 -0
  71. package/tools/compute/vms/create-compute-vms.js.map +1 -1
  72. package/tools/compute/vms/create-compute-vms.mjs +21 -0
  73. package/tools/compute/vms/create-compute-vms.mjs.map +1 -1
  74. package/tools/compute/vms/get-compute-vms.js +1 -1
  75. package/tools/compute/vms/get-compute-vms.js.map +1 -1
  76. package/tools/compute/vms/get-compute-vms.mjs +1 -1
  77. package/tools/compute/vms/get-compute-vms.mjs.map +1 -1
  78. package/tools/compute/vms/list-compute-vms.js +1 -1
  79. package/tools/compute/vms/list-compute-vms.js.map +1 -1
  80. package/tools/compute/vms/list-compute-vms.mjs +1 -1
  81. package/tools/compute/vms/list-compute-vms.mjs.map +1 -1
  82. package/tools/compute/vms/os-images/list-vms-compute-os-images.js +1 -1
  83. package/tools/compute/vms/os-images/list-vms-compute-os-images.js.map +1 -1
  84. package/tools/compute/vms/os-images/list-vms-compute-os-images.mjs +1 -1
  85. package/tools/compute/vms/os-images/list-vms-compute-os-images.mjs.map +1 -1
  86. package/tools/compute/vms/update-compute-vms.d.mts.map +1 -1
  87. package/tools/compute/vms/update-compute-vms.d.ts.map +1 -1
  88. package/tools/compute/vms/update-compute-vms.js +7 -0
  89. package/tools/compute/vms/update-compute-vms.js.map +1 -1
  90. package/tools/compute/vms/update-compute-vms.mjs +7 -0
  91. package/tools/compute/vms/update-compute-vms.mjs.map +1 -1
  92. package/tools/compute/vms/volumes/list-vms-compute-volumes.js +1 -1
  93. package/tools/compute/vms/volumes/list-vms-compute-volumes.js.map +1 -1
  94. package/tools/compute/vms/volumes/list-vms-compute-volumes.mjs +1 -1
  95. package/tools/compute/vms/volumes/list-vms-compute-volumes.mjs.map +1 -1
  96. package/tools/compute/volumes/availability/create-volumes-compute-availability.d.mts.map +1 -1
  97. package/tools/compute/volumes/availability/create-volumes-compute-availability.d.ts.map +1 -1
  98. package/tools/compute/volumes/availability/create-volumes-compute-availability.js +8 -1
  99. package/tools/compute/volumes/availability/create-volumes-compute-availability.js.map +1 -1
  100. package/tools/compute/volumes/availability/create-volumes-compute-availability.mjs +8 -1
  101. package/tools/compute/volumes/availability/create-volumes-compute-availability.mjs.map +1 -1
  102. package/tools/compute/volumes/availability/update-volumes-compute-availability.d.mts.map +1 -1
  103. package/tools/compute/volumes/availability/update-volumes-compute-availability.d.ts.map +1 -1
  104. package/tools/compute/volumes/availability/update-volumes-compute-availability.js +8 -1
  105. package/tools/compute/volumes/availability/update-volumes-compute-availability.js.map +1 -1
  106. package/tools/compute/volumes/availability/update-volumes-compute-availability.mjs +8 -1
  107. package/tools/compute/volumes/availability/update-volumes-compute-availability.mjs.map +1 -1
  108. package/tools/compute/volumes/create-compute-volumes.d.mts.map +1 -1
  109. package/tools/compute/volumes/create-compute-volumes.d.ts.map +1 -1
  110. package/tools/compute/volumes/create-compute-volumes.js +7 -0
  111. package/tools/compute/volumes/create-compute-volumes.js.map +1 -1
  112. package/tools/compute/volumes/create-compute-volumes.mjs +7 -0
  113. package/tools/compute/volumes/create-compute-volumes.mjs.map +1 -1
  114. package/tools/compute/volumes/get-compute-volumes.js +1 -1
  115. package/tools/compute/volumes/get-compute-volumes.js.map +1 -1
  116. package/tools/compute/volumes/get-compute-volumes.mjs +1 -1
  117. package/tools/compute/volumes/get-compute-volumes.mjs.map +1 -1
  118. package/tools/compute/volumes/list-compute-volumes.js +1 -1
  119. package/tools/compute/volumes/list-compute-volumes.js.map +1 -1
  120. package/tools/compute/volumes/list-compute-volumes.mjs +1 -1
  121. package/tools/compute/volumes/list-compute-volumes.mjs.map +1 -1
  122. package/tools/compute/volumes/update-compute-volumes.d.mts.map +1 -1
  123. package/tools/compute/volumes/update-compute-volumes.d.ts.map +1 -1
  124. package/tools/compute/volumes/update-compute-volumes.js +7 -0
  125. package/tools/compute/volumes/update-compute-volumes.js.map +1 -1
  126. package/tools/compute/volumes/update-compute-volumes.mjs +7 -0
  127. package/tools/compute/volumes/update-compute-volumes.mjs.map +1 -1
  128. package/tools/connect/flux/create-connect-flux.d.mts.map +1 -1
  129. package/tools/connect/flux/create-connect-flux.d.ts.map +1 -1
  130. package/tools/connect/flux/create-connect-flux.js +7 -0
  131. package/tools/connect/flux/create-connect-flux.js.map +1 -1
  132. package/tools/connect/flux/create-connect-flux.mjs +7 -0
  133. package/tools/connect/flux/create-connect-flux.mjs.map +1 -1
  134. package/tools/connect/flux/get-connect-flux.js +1 -1
  135. package/tools/connect/flux/get-connect-flux.js.map +1 -1
  136. package/tools/connect/flux/get-connect-flux.mjs +1 -1
  137. package/tools/connect/flux/get-connect-flux.mjs.map +1 -1
  138. package/tools/connect/flux/list-connect-flux.js +1 -1
  139. package/tools/connect/flux/list-connect-flux.js.map +1 -1
  140. package/tools/connect/flux/list-connect-flux.mjs +1 -1
  141. package/tools/connect/flux/list-connect-flux.mjs.map +1 -1
  142. package/tools/connect/flux/{providers/list-flux-connect-providers.d.ts → routes/list-flux-connect-routes.d.mts} +1 -1
  143. package/tools/connect/flux/routes/list-flux-connect-routes.d.mts.map +1 -0
  144. package/tools/connect/flux/{providers/list-flux-connect-providers.d.mts → routes/list-flux-connect-routes.d.ts} +1 -1
  145. package/tools/connect/flux/routes/list-flux-connect-routes.d.ts.map +1 -0
  146. package/tools/connect/flux/{providers/list-flux-connect-providers.js → routes/list-flux-connect-routes.js} +7 -7
  147. package/tools/connect/flux/routes/list-flux-connect-routes.js.map +1 -0
  148. package/tools/connect/flux/routes/list-flux-connect-routes.mjs +35 -0
  149. package/tools/connect/flux/routes/list-flux-connect-routes.mjs.map +1 -0
  150. package/tools/connect/flux/update-connect-flux.d.mts.map +1 -1
  151. package/tools/connect/flux/update-connect-flux.d.ts.map +1 -1
  152. package/tools/connect/flux/update-connect-flux.js +7 -0
  153. package/tools/connect/flux/update-connect-flux.js.map +1 -1
  154. package/tools/connect/flux/update-connect-flux.mjs +7 -0
  155. package/tools/connect/flux/update-connect-flux.mjs.map +1 -1
  156. package/tools/index.js +2 -2
  157. package/tools/index.js.map +1 -1
  158. package/tools/index.mjs +2 -2
  159. package/tools/index.mjs.map +1 -1
  160. package/tools/networking/firewall-rules/create-networking-firewall-rules.d.mts.map +1 -1
  161. package/tools/networking/firewall-rules/create-networking-firewall-rules.d.ts.map +1 -1
  162. package/tools/networking/firewall-rules/create-networking-firewall-rules.js +7 -0
  163. package/tools/networking/firewall-rules/create-networking-firewall-rules.js.map +1 -1
  164. package/tools/networking/firewall-rules/create-networking-firewall-rules.mjs +7 -0
  165. package/tools/networking/firewall-rules/create-networking-firewall-rules.mjs.map +1 -1
  166. package/tools/networking/firewall-rules/get-networking-firewall-rules.js +1 -1
  167. package/tools/networking/firewall-rules/get-networking-firewall-rules.js.map +1 -1
  168. package/tools/networking/firewall-rules/get-networking-firewall-rules.mjs +1 -1
  169. package/tools/networking/firewall-rules/get-networking-firewall-rules.mjs.map +1 -1
  170. package/tools/networking/firewall-rules/list-networking-firewall-rules.js +1 -1
  171. package/tools/networking/firewall-rules/list-networking-firewall-rules.js.map +1 -1
  172. package/tools/networking/firewall-rules/list-networking-firewall-rules.mjs +1 -1
  173. package/tools/networking/firewall-rules/list-networking-firewall-rules.mjs.map +1 -1
  174. package/tools/networking/firewall-rules/update-networking-firewall-rules.d.mts.map +1 -1
  175. package/tools/networking/firewall-rules/update-networking-firewall-rules.d.ts.map +1 -1
  176. package/tools/networking/firewall-rules/update-networking-firewall-rules.js +7 -0
  177. package/tools/networking/firewall-rules/update-networking-firewall-rules.js.map +1 -1
  178. package/tools/networking/firewall-rules/update-networking-firewall-rules.mjs +7 -0
  179. package/tools/networking/firewall-rules/update-networking-firewall-rules.mjs.map +1 -1
  180. package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.mts.map +1 -1
  181. package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.ts.map +1 -1
  182. package/tools/networking/vpcs/availability/create-vpcs-networking-availability.js +8 -1
  183. package/tools/networking/vpcs/availability/create-vpcs-networking-availability.js.map +1 -1
  184. package/tools/networking/vpcs/availability/create-vpcs-networking-availability.mjs +8 -1
  185. package/tools/networking/vpcs/availability/create-vpcs-networking-availability.mjs.map +1 -1
  186. package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.mts.map +1 -1
  187. package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.ts.map +1 -1
  188. package/tools/networking/vpcs/availability/update-vpcs-networking-availability.js +8 -1
  189. package/tools/networking/vpcs/availability/update-vpcs-networking-availability.js.map +1 -1
  190. package/tools/networking/vpcs/availability/update-vpcs-networking-availability.mjs +8 -1
  191. package/tools/networking/vpcs/availability/update-vpcs-networking-availability.mjs.map +1 -1
  192. package/tools/networking/vpcs/create-networking-vpcs.d.mts.map +1 -1
  193. package/tools/networking/vpcs/create-networking-vpcs.d.ts.map +1 -1
  194. package/tools/networking/vpcs/create-networking-vpcs.js +7 -0
  195. package/tools/networking/vpcs/create-networking-vpcs.js.map +1 -1
  196. package/tools/networking/vpcs/create-networking-vpcs.mjs +7 -0
  197. package/tools/networking/vpcs/create-networking-vpcs.mjs.map +1 -1
  198. package/tools/networking/vpcs/get-networking-vpcs.js +1 -1
  199. package/tools/networking/vpcs/get-networking-vpcs.js.map +1 -1
  200. package/tools/networking/vpcs/get-networking-vpcs.mjs +1 -1
  201. package/tools/networking/vpcs/get-networking-vpcs.mjs.map +1 -1
  202. package/tools/networking/vpcs/list-networking-vpcs.js +1 -1
  203. package/tools/networking/vpcs/list-networking-vpcs.js.map +1 -1
  204. package/tools/networking/vpcs/list-networking-vpcs.mjs +1 -1
  205. package/tools/networking/vpcs/list-networking-vpcs.mjs.map +1 -1
  206. package/tools/networking/vpcs/update-networking-vpcs.d.mts.map +1 -1
  207. package/tools/networking/vpcs/update-networking-vpcs.d.ts.map +1 -1
  208. package/tools/networking/vpcs/update-networking-vpcs.js +7 -0
  209. package/tools/networking/vpcs/update-networking-vpcs.js.map +1 -1
  210. package/tools/networking/vpcs/update-networking-vpcs.mjs +7 -0
  211. package/tools/networking/vpcs/update-networking-vpcs.mjs.map +1 -1
  212. package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js +1 -1
  213. package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js.map +1 -1
  214. package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs +1 -1
  215. package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs.map +1 -1
  216. package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js +1 -1
  217. package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js.map +1 -1
  218. package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs +1 -1
  219. package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs.map +1 -1
  220. package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js +1 -1
  221. package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js.map +1 -1
  222. package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs +1 -1
  223. package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs.map +1 -1
  224. package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js +1 -1
  225. package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js.map +1 -1
  226. package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs +1 -1
  227. package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs.map +1 -1
  228. package/tools/vektor/balances/list-historical-vektor-balances.js +1 -1
  229. package/tools/vektor/balances/list-historical-vektor-balances.js.map +1 -1
  230. package/tools/vektor/balances/list-historical-vektor-balances.mjs +1 -1
  231. package/tools/vektor/balances/list-historical-vektor-balances.mjs.map +1 -1
  232. package/tools/vektor/balances/list-vektor-balances.js +1 -1
  233. package/tools/vektor/balances/list-vektor-balances.js.map +1 -1
  234. package/tools/vektor/balances/list-vektor-balances.mjs +1 -1
  235. package/tools/vektor/balances/list-vektor-balances.mjs.map +1 -1
  236. package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.js +1 -1
  237. package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.js.map +1 -1
  238. package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.mjs +1 -1
  239. package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.mjs.map +1 -1
  240. package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.js +1 -1
  241. package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.js.map +1 -1
  242. package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.mjs +1 -1
  243. package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.mjs.map +1 -1
  244. package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.js +1 -1
  245. package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.js.map +1 -1
  246. package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.mjs +1 -1
  247. package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.mjs.map +1 -1
  248. package/tools/vektor/buy/quotes/list-buy-vektor-quotes.js +1 -1
  249. package/tools/vektor/buy/quotes/list-buy-vektor-quotes.js.map +1 -1
  250. package/tools/vektor/buy/quotes/list-buy-vektor-quotes.mjs +1 -1
  251. package/tools/vektor/buy/quotes/list-buy-vektor-quotes.mjs.map +1 -1
  252. package/tools/vektor/lock/markets/list-lock-vektor-markets.js +1 -1
  253. package/tools/vektor/lock/markets/list-lock-vektor-markets.js.map +1 -1
  254. package/tools/vektor/lock/markets/list-lock-vektor-markets.mjs +1 -1
  255. package/tools/vektor/lock/markets/list-lock-vektor-markets.mjs.map +1 -1
  256. package/tools/vektor/lock/positions/list-lock-vektor-positions.d.mts.map +1 -1
  257. package/tools/vektor/lock/positions/list-lock-vektor-positions.d.ts.map +1 -1
  258. package/tools/vektor/lock/positions/list-lock-vektor-positions.js +3 -9
  259. package/tools/vektor/lock/positions/list-lock-vektor-positions.js.map +1 -1
  260. package/tools/vektor/lock/positions/list-lock-vektor-positions.mjs +3 -9
  261. package/tools/vektor/lock/positions/list-lock-vektor-positions.mjs.map +1 -1
  262. package/tools/vektor/prices/list-historical-vektor-prices.js +1 -1
  263. package/tools/vektor/prices/list-historical-vektor-prices.js.map +1 -1
  264. package/tools/vektor/prices/list-historical-vektor-prices.mjs +1 -1
  265. package/tools/vektor/prices/list-historical-vektor-prices.mjs.map +1 -1
  266. package/tools/vektor/prices/list-vektor-prices.js +1 -1
  267. package/tools/vektor/prices/list-vektor-prices.js.map +1 -1
  268. package/tools/vektor/prices/list-vektor-prices.mjs +1 -1
  269. package/tools/vektor/prices/list-vektor-prices.mjs.map +1 -1
  270. package/tools/vektor/registry/assets/list-registry-vektor-assets.js +1 -1
  271. package/tools/vektor/registry/assets/list-registry-vektor-assets.js.map +1 -1
  272. package/tools/vektor/registry/assets/list-registry-vektor-assets.mjs +1 -1
  273. package/tools/vektor/registry/assets/list-registry-vektor-assets.mjs.map +1 -1
  274. package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.js +1 -1
  275. package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.js.map +1 -1
  276. package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.mjs +1 -1
  277. package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.mjs.map +1 -1
  278. package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.js +1 -1
  279. package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.js.map +1 -1
  280. package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.mjs +1 -1
  281. package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.mjs.map +1 -1
  282. package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.js +1 -1
  283. package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.js.map +1 -1
  284. package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.mjs +1 -1
  285. package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.mjs.map +1 -1
  286. package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.js +1 -1
  287. package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.js.map +1 -1
  288. package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.mjs +1 -1
  289. package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.mjs.map +1 -1
  290. package/tools/vektor/registry/venues/list-registry-vektor-venues.js +1 -1
  291. package/tools/vektor/registry/venues/list-registry-vektor-venues.js.map +1 -1
  292. package/tools/vektor/registry/venues/list-registry-vektor-venues.mjs +1 -1
  293. package/tools/vektor/registry/venues/list-registry-vektor-venues.mjs.map +1 -1
  294. package/tools/connect/flux/providers/list-flux-connect-providers.d.mts.map +0 -1
  295. package/tools/connect/flux/providers/list-flux-connect-providers.d.ts.map +0 -1
  296. package/tools/connect/flux/providers/list-flux-connect-providers.js.map +0 -1
  297. package/tools/connect/flux/providers/list-flux-connect-providers.mjs +0 -35
  298. package/tools/connect/flux/providers/list-flux-connect-providers.mjs.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"list-buy-vektor-quotes.mjs","sourceRoot":"","sources":["../../../../src/tools/vektor/buy/quotes/list-buy-vektor-quotes.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,mBAAmB;IAC7B,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,uBAAuB;IACjC,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EACT,2iQAA2iQ;IAC7iQ,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,UAAU,EAAE;gBACV,IAAI,EAAE,4CAA4C;aACnD;YACD,cAAc,EAAE;gBACd,IAAI,EAAE,iBAAiB;aACxB;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,iDAAiD;aACxD;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,iDAAiD;aACxD;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,0BAA0B;gBACjC,WAAW,EAAE,sCAAsC;gBACnD,KAAK,EAAE;oBACL,IAAI,EAAE,kCAAkC;iBACzC;aACF;YACD,kBAAkB,EAAE;gBAClB,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,YAAY,EAAE,gBAAgB,EAAE,eAAe,EAAE,aAAa,EAAE,QAAQ,CAAC;QACpF,KAAK,EAAE;YACL,kCAAkC,EAAE;gBAClC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,wDAAwD;aACtE;YACD,uCAAuC,EAAE;gBACvC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,wBAAwB,EAAE;gBACxB,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,yDAAyD;aACvE;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,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACtG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-buy-vektor-quotes.mjs","sourceRoot":"","sources":["../../../../src/tools/vektor/buy/quotes/list-buy-vektor-quotes.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,mBAAmB;IAC7B,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,uBAAuB;IACjC,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EACT,krQAAkrQ;IACprQ,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,UAAU,EAAE;gBACV,IAAI,EAAE,4CAA4C;aACnD;YACD,cAAc,EAAE;gBACd,IAAI,EAAE,iBAAiB;aACxB;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,iDAAiD;aACxD;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,iDAAiD;aACxD;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,0BAA0B;gBACjC,WAAW,EAAE,sCAAsC;gBACnD,KAAK,EAAE;oBACL,IAAI,EAAE,kCAAkC;iBACzC;aACF;YACD,kBAAkB,EAAE;gBAClB,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,YAAY,EAAE,gBAAgB,EAAE,eAAe,EAAE,aAAa,EAAE,QAAQ,CAAC;QACpF,KAAK,EAAE;YACL,kCAAkC,EAAE;gBAClC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,wDAAwD;aACtE;YACD,uCAAuC,EAAE;gBACvC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,wBAAwB,EAAE;gBACxB,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,yDAAyD;aACvE;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,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACtG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
@@ -14,7 +14,7 @@ exports.metadata = {
14
14
  };
15
15
  exports.tool = {
16
16
  name: 'list_lock_vektor_markets',
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 a list of markets where assets can be locked\n\n# Response Schema\n```json\n{\n type: 'object',\n title: 'LockMarketListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'LockMarketList',\n description: 'A list of lock markets',\n items: {\n $ref: '#/$defs/lock_market'\n }\n }\n },\n required: [ 'items'\n ],\n $defs: {\n lock_market: {\n type: 'object',\n title: 'LockMarket',\n description: 'A lock market',\n properties: {\n asset: {\n $ref: '#/$defs/asset'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n venue: {\n $ref: '#/$defs/venue'\n }\n },\n required: [ 'asset',\n 'blockchain',\n 'venue'\n ]\n },\n asset: {\n type: 'object',\n title: 'Asset',\n description: 'On-chain asset (aka token)',\n properties: {\n id: {\n $ref: '#/$defs/asset_id'\n },\n address: {\n type: 'string',\n title: 'AddressEVM',\n description: 'An EVM address'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n decimals: {\n type: 'integer',\n description: 'Asset\\'s decimal places'\n },\n name: {\n type: 'string',\n description: 'Asset\\'s name'\n },\n symbol: {\n type: 'string',\n description: 'Asset\\'s symbol'\n }\n },\n required: [ 'id',\n 'address',\n 'blockchain',\n 'decimals',\n 'name',\n 'symbol'\n ]\n },\n asset_id: {\n type: 'string',\n title: 'AssetID',\n description: 'An asset ID, represented as a TypeID with `asset` prefix'\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\n },\n venue: {\n type: 'object',\n title: 'Venue',\n description: 'On-chain venue',\n properties: {\n id: {\n $ref: '#/$defs/venue_id'\n },\n blockchain_ids: {\n type: 'array',\n title: 'BlockchainIDList',\n description: 'A list of blockchain IDs',\n items: {\n $ref: '#/$defs/blockchain_id'\n }\n },\n name: {\n type: 'string',\n description: 'Venue name'\n },\n symbol: {\n $ref: '#/$defs/venue_symbol'\n },\n type: {\n type: 'string',\n description: 'Venue type'\n },\n url: {\n type: 'string',\n description: 'Venue url'\n }\n },\n required: [ 'id',\n 'blockchain_ids',\n 'name',\n 'symbol',\n 'type',\n 'url'\n ]\n },\n venue_id: {\n type: 'string',\n title: 'VenueID',\n description: 'A venue ID, represented as a TypeID with `venue` prefix'\n },\n venue_symbol: {\n type: 'string',\n title: 'VenueSymbol',\n description: 'A venue symbol'\n }\n }\n}\n```",
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 a list of markets where assets can be locked\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/market_list_response',\n $defs: {\n market_list_response: {\n type: 'object',\n title: 'LockMarketListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'LockMarketList',\n description: 'A list of lock markets',\n items: {\n $ref: '#/$defs/lock_market'\n }\n }\n },\n required: [ 'items'\n ]\n },\n lock_market: {\n type: 'object',\n title: 'LockMarket',\n description: 'A lock market',\n properties: {\n asset: {\n $ref: '#/$defs/asset'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n venue: {\n $ref: '#/$defs/venue'\n }\n },\n required: [ 'asset',\n 'blockchain',\n 'venue'\n ]\n },\n asset: {\n type: 'object',\n title: 'Asset',\n description: 'On-chain asset (aka token)',\n properties: {\n id: {\n $ref: '#/$defs/asset_id'\n },\n address: {\n type: 'string',\n title: 'AddressEVM',\n description: 'An EVM address'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n decimals: {\n type: 'integer',\n description: 'Asset\\'s decimal places'\n },\n name: {\n type: 'string',\n description: 'Asset\\'s name'\n },\n symbol: {\n type: 'string',\n description: 'Asset\\'s symbol'\n }\n },\n required: [ 'id',\n 'address',\n 'blockchain',\n 'decimals',\n 'name',\n 'symbol'\n ]\n },\n asset_id: {\n type: 'string',\n title: 'AssetID',\n description: 'An asset ID, represented as a TypeID with `asset` prefix'\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\n },\n venue: {\n type: 'object',\n title: 'Venue',\n description: 'On-chain venue',\n properties: {\n id: {\n $ref: '#/$defs/venue_id'\n },\n blockchain_ids: {\n type: 'array',\n title: 'BlockchainIDList',\n description: 'A list of blockchain IDs',\n items: {\n $ref: '#/$defs/blockchain_id'\n }\n },\n name: {\n type: 'string',\n description: 'Venue name'\n },\n symbol: {\n $ref: '#/$defs/venue_symbol'\n },\n type: {\n type: 'string',\n description: 'Venue type'\n },\n url: {\n type: 'string',\n description: 'Venue url'\n }\n },\n required: [ 'id',\n 'blockchain_ids',\n 'name',\n 'symbol',\n 'type',\n 'url'\n ]\n },\n venue_id: {\n type: 'string',\n title: 'VenueID',\n description: 'A venue ID, represented as a TypeID with `venue` prefix'\n },\n venue_symbol: {\n type: 'string',\n title: 'VenueSymbol',\n description: 'A venue symbol'\n }\n }\n}\n```",
18
18
  inputSchema: {
19
19
  type: 'object',
20
20
  properties: {
@@ -1 +1 @@
1
- {"version":3,"file":"list-lock-vektor-markets.js","sourceRoot":"","sources":["../../../../src/tools/vektor/lock/markets/list-lock-vektor-markets.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,qBAAqB;IAC/B,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,yBAAyB;IACnC,WAAW,EAAE,cAAc;CAC5B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,0BAA0B;IAChC,WAAW,EACT,0+JAA0+J;IAC5+J,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,sCAAsC;gBAC7C,WAAW,EAAE,qDAAqD;gBAClE,KAAK,EAAE;oBACL,IAAI,EAAE,iDAAiD;iBACxD;aACF;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4CAA4C;aACnD;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,0BAA0B;gBACjC,WAAW,EAAE,sCAAsC;gBACnD,KAAK,EAAE;oBACL,IAAI,EAAE,kCAAkC;iBACzC;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,QAAQ,EAAE,YAAY,EAAE,QAAQ,CAAC;QAC5C,KAAK,EAAE;YACL,uCAAuC,EAAE;gBACvC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,kCAAkC,EAAE;gBAClC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,wBAAwB,EAAE;gBACxB,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,yDAAyD;aACvE;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACxG,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-lock-vektor-markets.js","sourceRoot":"","sources":["../../../../src/tools/vektor/lock/markets/list-lock-vektor-markets.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,qBAAqB;IAC/B,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,yBAAyB;IACnC,WAAW,EAAE,cAAc;CAC5B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,0BAA0B;IAChC,WAAW,EACT,mnKAAmnK;IACrnK,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,sCAAsC;gBAC7C,WAAW,EAAE,qDAAqD;gBAClE,KAAK,EAAE;oBACL,IAAI,EAAE,iDAAiD;iBACxD;aACF;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4CAA4C;aACnD;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,0BAA0B;gBACjC,WAAW,EAAE,sCAAsC;gBACnD,KAAK,EAAE;oBACL,IAAI,EAAE,kCAAkC;iBACzC;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,QAAQ,EAAE,YAAY,EAAE,QAAQ,CAAC;QAC5C,KAAK,EAAE;YACL,uCAAuC,EAAE;gBACvC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,kCAAkC,EAAE;gBAClC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,wBAAwB,EAAE;gBACxB,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,yDAAyD;aACvE;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACxG,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
@@ -11,7 +11,7 @@ export const metadata = {
11
11
  };
12
12
  export const tool = {
13
13
  name: 'list_lock_vektor_markets',
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 a list of markets where assets can be locked\n\n# Response Schema\n```json\n{\n type: 'object',\n title: 'LockMarketListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'LockMarketList',\n description: 'A list of lock markets',\n items: {\n $ref: '#/$defs/lock_market'\n }\n }\n },\n required: [ 'items'\n ],\n $defs: {\n lock_market: {\n type: 'object',\n title: 'LockMarket',\n description: 'A lock market',\n properties: {\n asset: {\n $ref: '#/$defs/asset'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n venue: {\n $ref: '#/$defs/venue'\n }\n },\n required: [ 'asset',\n 'blockchain',\n 'venue'\n ]\n },\n asset: {\n type: 'object',\n title: 'Asset',\n description: 'On-chain asset (aka token)',\n properties: {\n id: {\n $ref: '#/$defs/asset_id'\n },\n address: {\n type: 'string',\n title: 'AddressEVM',\n description: 'An EVM address'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n decimals: {\n type: 'integer',\n description: 'Asset\\'s decimal places'\n },\n name: {\n type: 'string',\n description: 'Asset\\'s name'\n },\n symbol: {\n type: 'string',\n description: 'Asset\\'s symbol'\n }\n },\n required: [ 'id',\n 'address',\n 'blockchain',\n 'decimals',\n 'name',\n 'symbol'\n ]\n },\n asset_id: {\n type: 'string',\n title: 'AssetID',\n description: 'An asset ID, represented as a TypeID with `asset` prefix'\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\n },\n venue: {\n type: 'object',\n title: 'Venue',\n description: 'On-chain venue',\n properties: {\n id: {\n $ref: '#/$defs/venue_id'\n },\n blockchain_ids: {\n type: 'array',\n title: 'BlockchainIDList',\n description: 'A list of blockchain IDs',\n items: {\n $ref: '#/$defs/blockchain_id'\n }\n },\n name: {\n type: 'string',\n description: 'Venue name'\n },\n symbol: {\n $ref: '#/$defs/venue_symbol'\n },\n type: {\n type: 'string',\n description: 'Venue type'\n },\n url: {\n type: 'string',\n description: 'Venue url'\n }\n },\n required: [ 'id',\n 'blockchain_ids',\n 'name',\n 'symbol',\n 'type',\n 'url'\n ]\n },\n venue_id: {\n type: 'string',\n title: 'VenueID',\n description: 'A venue ID, represented as a TypeID with `venue` prefix'\n },\n venue_symbol: {\n type: 'string',\n title: 'VenueSymbol',\n description: 'A venue symbol'\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\nGet a list of markets where assets can be locked\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/market_list_response',\n $defs: {\n market_list_response: {\n type: 'object',\n title: 'LockMarketListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'LockMarketList',\n description: 'A list of lock markets',\n items: {\n $ref: '#/$defs/lock_market'\n }\n }\n },\n required: [ 'items'\n ]\n },\n lock_market: {\n type: 'object',\n title: 'LockMarket',\n description: 'A lock market',\n properties: {\n asset: {\n $ref: '#/$defs/asset'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n venue: {\n $ref: '#/$defs/venue'\n }\n },\n required: [ 'asset',\n 'blockchain',\n 'venue'\n ]\n },\n asset: {\n type: 'object',\n title: 'Asset',\n description: 'On-chain asset (aka token)',\n properties: {\n id: {\n $ref: '#/$defs/asset_id'\n },\n address: {\n type: 'string',\n title: 'AddressEVM',\n description: 'An EVM address'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n decimals: {\n type: 'integer',\n description: 'Asset\\'s decimal places'\n },\n name: {\n type: 'string',\n description: 'Asset\\'s name'\n },\n symbol: {\n type: 'string',\n description: 'Asset\\'s symbol'\n }\n },\n required: [ 'id',\n 'address',\n 'blockchain',\n 'decimals',\n 'name',\n 'symbol'\n ]\n },\n asset_id: {\n type: 'string',\n title: 'AssetID',\n description: 'An asset ID, represented as a TypeID with `asset` prefix'\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\n },\n venue: {\n type: 'object',\n title: 'Venue',\n description: 'On-chain venue',\n properties: {\n id: {\n $ref: '#/$defs/venue_id'\n },\n blockchain_ids: {\n type: 'array',\n title: 'BlockchainIDList',\n description: 'A list of blockchain IDs',\n items: {\n $ref: '#/$defs/blockchain_id'\n }\n },\n name: {\n type: 'string',\n description: 'Venue name'\n },\n symbol: {\n $ref: '#/$defs/venue_symbol'\n },\n type: {\n type: 'string',\n description: 'Venue type'\n },\n url: {\n type: 'string',\n description: 'Venue url'\n }\n },\n required: [ 'id',\n 'blockchain_ids',\n 'name',\n 'symbol',\n 'type',\n 'url'\n ]\n },\n venue_id: {\n type: 'string',\n title: 'VenueID',\n description: 'A venue ID, represented as a TypeID with `venue` prefix'\n },\n venue_symbol: {\n type: 'string',\n title: 'VenueSymbol',\n description: 'A venue symbol'\n }\n }\n}\n```",
15
15
  inputSchema: {
16
16
  type: 'object',
17
17
  properties: {
@@ -1 +1 @@
1
- {"version":3,"file":"list-lock-vektor-markets.mjs","sourceRoot":"","sources":["../../../../src/tools/vektor/lock/markets/list-lock-vektor-markets.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,qBAAqB;IAC/B,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,yBAAyB;IACnC,WAAW,EAAE,cAAc;CAC5B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,0BAA0B;IAChC,WAAW,EACT,0+JAA0+J;IAC5+J,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,sCAAsC;gBAC7C,WAAW,EAAE,qDAAqD;gBAClE,KAAK,EAAE;oBACL,IAAI,EAAE,iDAAiD;iBACxD;aACF;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4CAA4C;aACnD;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,0BAA0B;gBACjC,WAAW,EAAE,sCAAsC;gBACnD,KAAK,EAAE;oBACL,IAAI,EAAE,kCAAkC;iBACzC;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,QAAQ,EAAE,YAAY,EAAE,QAAQ,CAAC;QAC5C,KAAK,EAAE;YACL,uCAAuC,EAAE;gBACvC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,kCAAkC,EAAE;gBAClC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,wBAAwB,EAAE;gBACxB,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,yDAAyD;aACvE;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,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACxG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-lock-vektor-markets.mjs","sourceRoot":"","sources":["../../../../src/tools/vektor/lock/markets/list-lock-vektor-markets.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,qBAAqB;IAC/B,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,yBAAyB;IACnC,WAAW,EAAE,cAAc;CAC5B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,0BAA0B;IAChC,WAAW,EACT,mnKAAmnK;IACrnK,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,sCAAsC;gBAC7C,WAAW,EAAE,qDAAqD;gBAClE,KAAK,EAAE;oBACL,IAAI,EAAE,iDAAiD;iBACxD;aACF;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4CAA4C;aACnD;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,0BAA0B;gBACjC,WAAW,EAAE,sCAAsC;gBACnD,KAAK,EAAE;oBACL,IAAI,EAAE,kCAAkC;iBACzC;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,QAAQ,EAAE,YAAY,EAAE,QAAQ,CAAC;QAC5C,KAAK,EAAE;YACL,uCAAuC,EAAE;gBACvC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,kCAAkC,EAAE;gBAClC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,wBAAwB,EAAE;gBACxB,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,yDAAyD;aACvE;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,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACxG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"list-lock-vektor-positions.d.mts","sourceRoot":"","sources":["../../../../src/tools/vektor/lock/positions/list-lock-vektor-positions.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,IAkElB,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"}
1
+ {"version":3,"file":"list-lock-vektor-positions.d.mts","sourceRoot":"","sources":["../../../../src/tools/vektor/lock/positions/list-lock-vektor-positions.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA2DlB,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"}
@@ -1 +1 @@
1
- {"version":3,"file":"list-lock-vektor-positions.d.ts","sourceRoot":"","sources":["../../../../src/tools/vektor/lock/positions/list-lock-vektor-positions.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,IAkElB,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"}
1
+ {"version":3,"file":"list-lock-vektor-positions.d.ts","sourceRoot":"","sources":["../../../../src/tools/vektor/lock/positions/list-lock-vektor-positions.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA2DlB,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"}
@@ -2,7 +2,6 @@
2
2
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.handler = exports.tool = exports.metadata = void 0;
5
- const filtering_1 = require("@nirvana-labs/nirvana-mcp/filtering");
6
5
  const types_1 = require("@nirvana-labs/nirvana-mcp/tools/types");
7
6
  exports.metadata = {
8
7
  resource: 'vektor.lock.positions',
@@ -14,7 +13,7 @@ exports.metadata = {
14
13
  };
15
14
  exports.tool = {
16
15
  name: 'list_lock_vektor_positions',
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 info on locked positions\n\n# Response Schema\n```json\n{\n type: 'object',\n title: 'LockPositionListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'LockPositionList',\n description: 'A list of lock positions',\n items: {\n $ref: '#/$defs/lock_position'\n }\n }\n },\n required: [ 'items'\n ],\n $defs: {\n lock_position: {\n type: 'object',\n title: 'LockPosition',\n description: 'A lock position',\n properties: {\n account: {\n $ref: '#/$defs/account'\n },\n blockstamp: {\n $ref: '#/$defs/blockstamp'\n },\n locked_amount: {\n $ref: '#/$defs/decimal'\n },\n locked_asset: {\n $ref: '#/$defs/nft'\n },\n market: {\n $ref: '#/$defs/lock_market'\n },\n unlocked_at: {\n $ref: '#/$defs/timestamp'\n },\n used: {\n type: 'boolean'\n },\n voting_power: {\n $ref: '#/$defs/decimal'\n }\n },\n required: [ 'account',\n 'blockstamp',\n 'locked_amount',\n 'locked_asset',\n 'market',\n 'unlocked_at',\n 'used',\n 'voting_power'\n ]\n },\n account: {\n type: 'string',\n title: 'AddressEVM',\n description: 'An EVM address'\n },\n blockstamp: {\n type: 'object',\n title: 'Blockstamp',\n description: 'Information about a specific block number and its timestamp',\n properties: {\n block_number: {\n $ref: '#/$defs/block_number'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n timestamp: {\n $ref: '#/$defs/timestamp'\n }\n },\n required: [ 'block_number',\n 'blockchain',\n 'timestamp'\n ]\n },\n block_number: {\n type: 'integer',\n title: 'BlockNumber',\n description: 'A block number'\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\n },\n timestamp: {\n type: 'string',\n title: 'Timestamp',\n description: 'ISO8601 Timestamp'\n },\n decimal: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n nft: {\n type: 'object',\n title: 'NFT',\n description: 'A NFT',\n properties: {\n id: {\n type: 'integer',\n description: 'The NFT id'\n },\n collection: {\n $ref: '#/$defs/nft_collection'\n }\n },\n required: [ 'id',\n 'collection'\n ]\n },\n nft_collection: {\n type: 'object',\n title: 'NFTCollection',\n description: 'A NFT Collection',\n properties: {\n address: {\n type: 'string',\n description: 'The NFT Collection\\'s address'\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n name: {\n type: 'string',\n description: 'The NFT Collection\\'s name'\n }\n },\n required: [ 'address'\n ]\n },\n lock_market: {\n type: 'object',\n title: 'LockMarket',\n description: 'A lock market',\n properties: {\n asset: {\n $ref: '#/$defs/asset'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n venue: {\n $ref: '#/$defs/venue'\n }\n },\n required: [ 'asset',\n 'blockchain',\n 'venue'\n ]\n },\n asset: {\n type: 'object',\n title: 'Asset',\n description: 'On-chain asset (aka token)',\n properties: {\n id: {\n $ref: '#/$defs/asset_id'\n },\n address: {\n type: 'string',\n title: 'AddressEVM',\n description: 'An EVM address'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n decimals: {\n type: 'integer',\n description: 'Asset\\'s decimal places'\n },\n name: {\n type: 'string',\n description: 'Asset\\'s name'\n },\n symbol: {\n type: 'string',\n description: 'Asset\\'s symbol'\n }\n },\n required: [ 'id',\n 'address',\n 'blockchain',\n 'decimals',\n 'name',\n 'symbol'\n ]\n },\n asset_id: {\n type: 'string',\n title: 'AssetID',\n description: 'An asset ID, represented as a TypeID with `asset` prefix'\n },\n venue: {\n type: 'object',\n title: 'Venue',\n description: 'On-chain venue',\n properties: {\n id: {\n $ref: '#/$defs/venue_id'\n },\n blockchain_ids: {\n type: 'array',\n title: 'BlockchainIDList',\n description: 'A list of blockchain IDs',\n items: {\n $ref: '#/$defs/blockchain_id'\n }\n },\n name: {\n type: 'string',\n description: 'Venue name'\n },\n symbol: {\n $ref: '#/$defs/venue_symbol'\n },\n type: {\n type: 'string',\n description: 'Venue type'\n },\n url: {\n type: 'string',\n description: 'Venue url'\n }\n },\n required: [ 'id',\n 'blockchain_ids',\n 'name',\n 'symbol',\n 'type',\n 'url'\n ]\n },\n venue_id: {\n type: 'string',\n title: 'VenueID',\n description: 'A venue ID, represented as a TypeID with `venue` prefix'\n },\n venue_symbol: {\n type: 'string',\n title: 'VenueSymbol',\n description: 'A venue symbol'\n }\n }\n}\n```",
16
+ description: 'Get info on locked positions',
18
17
  inputSchema: {
19
18
  type: 'object',
20
19
  properties: {
@@ -45,11 +44,6 @@ exports.tool = {
45
44
  $ref: '#/$defs/venue_id_or_venue_symbol',
46
45
  },
47
46
  },
48
- jq_filter: {
49
- type: 'string',
50
- title: 'jq Filter',
51
- 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/).',
52
- },
53
47
  },
54
48
  required: ['accounts', 'assets', 'blockchain', 'venues'],
55
49
  $defs: {
@@ -78,8 +72,8 @@ exports.tool = {
78
72
  annotations: {},
79
73
  };
80
74
  const handler = async (client, args) => {
81
- const { jq_filter, ...body } = args;
82
- return (0, types_1.asTextContentResult)(await (0, filtering_1.maybeFilter)(jq_filter, await client.vektor.lock.positions.list(body)));
75
+ const body = args;
76
+ return (0, types_1.asTextContentResult)(await client.vektor.lock.positions.list(body));
83
77
  };
84
78
  exports.handler = handler;
85
79
  exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
@@ -1 +1 @@
1
- {"version":3,"file":"list-lock-vektor-positions.js","sourceRoot":"","sources":["../../../../src/tools/vektor/lock/positions/list-lock-vektor-positions.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,uBAAuB;IACjC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,4BAA4B;IAClC,WAAW,EACT,4mRAA4mR;IAC9mR,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,QAAQ,EAAE;gBACR,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iEAAiE;gBAC9E,KAAK,EAAE;oBACL,IAAI,EAAE,iBAAiB;iBACxB;aACF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,sCAAsC;gBAC7C,WAAW,EAAE,qDAAqD;gBAClE,KAAK,EAAE;oBACL,IAAI,EAAE,iDAAiD;iBACxD;aACF;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4CAA4C;aACnD;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,0BAA0B;gBACjC,WAAW,EAAE,sCAAsC;gBACnD,KAAK,EAAE;oBACL,IAAI,EAAE,kCAAkC;iBACzC;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,QAAQ,CAAC;QACxD,KAAK,EAAE;YACL,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,YAAY;gBACnB,WAAW,EAAE,gBAAgB;aAC9B;YACD,uCAAuC,EAAE;gBACvC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,kCAAkC,EAAE;gBAClC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,wBAAwB,EAAE;gBACxB,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,yDAAyD;aACvE;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC1G,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-lock-vektor-positions.js","sourceRoot":"","sources":["../../../../src/tools/vektor/lock/positions/list-lock-vektor-positions.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,uBAAuB;IACjC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,4BAA4B;IAClC,WAAW,EAAE,8BAA8B;IAC3C,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,QAAQ,EAAE;gBACR,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iEAAiE;gBAC9E,KAAK,EAAE;oBACL,IAAI,EAAE,iBAAiB;iBACxB;aACF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,sCAAsC;gBAC7C,WAAW,EAAE,qDAAqD;gBAClE,KAAK,EAAE;oBACL,IAAI,EAAE,iDAAiD;iBACxD;aACF;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4CAA4C;aACnD;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,0BAA0B;gBACjC,WAAW,EAAE,sCAAsC;gBACnD,KAAK,EAAE;oBACL,IAAI,EAAE,kCAAkC;iBACzC;aACF;SACF;QACD,QAAQ,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,QAAQ,CAAC;QACxD,KAAK,EAAE;YACL,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,YAAY;gBACnB,WAAW,EAAE,gBAAgB;aAC9B;YACD,uCAAuC,EAAE;gBACvC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,kCAAkC,EAAE;gBAClC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,wBAAwB,EAAE;gBACxB,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,yDAAyD;aACvE;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,IAAI,GAAG,IAAW,CAAC;IACzB,OAAO,IAAA,2BAAmB,EAAC,MAAM,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;AAC5E,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
@@ -1,5 +1,4 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
- import { maybeFilter } from '@nirvana-labs/nirvana-mcp/filtering';
3
2
  import { asTextContentResult } from '@nirvana-labs/nirvana-mcp/tools/types';
4
3
  export const metadata = {
5
4
  resource: 'vektor.lock.positions',
@@ -11,7 +10,7 @@ export const metadata = {
11
10
  };
12
11
  export const tool = {
13
12
  name: 'list_lock_vektor_positions',
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 info on locked positions\n\n# Response Schema\n```json\n{\n type: 'object',\n title: 'LockPositionListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'LockPositionList',\n description: 'A list of lock positions',\n items: {\n $ref: '#/$defs/lock_position'\n }\n }\n },\n required: [ 'items'\n ],\n $defs: {\n lock_position: {\n type: 'object',\n title: 'LockPosition',\n description: 'A lock position',\n properties: {\n account: {\n $ref: '#/$defs/account'\n },\n blockstamp: {\n $ref: '#/$defs/blockstamp'\n },\n locked_amount: {\n $ref: '#/$defs/decimal'\n },\n locked_asset: {\n $ref: '#/$defs/nft'\n },\n market: {\n $ref: '#/$defs/lock_market'\n },\n unlocked_at: {\n $ref: '#/$defs/timestamp'\n },\n used: {\n type: 'boolean'\n },\n voting_power: {\n $ref: '#/$defs/decimal'\n }\n },\n required: [ 'account',\n 'blockstamp',\n 'locked_amount',\n 'locked_asset',\n 'market',\n 'unlocked_at',\n 'used',\n 'voting_power'\n ]\n },\n account: {\n type: 'string',\n title: 'AddressEVM',\n description: 'An EVM address'\n },\n blockstamp: {\n type: 'object',\n title: 'Blockstamp',\n description: 'Information about a specific block number and its timestamp',\n properties: {\n block_number: {\n $ref: '#/$defs/block_number'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n timestamp: {\n $ref: '#/$defs/timestamp'\n }\n },\n required: [ 'block_number',\n 'blockchain',\n 'timestamp'\n ]\n },\n block_number: {\n type: 'integer',\n title: 'BlockNumber',\n description: 'A block number'\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\n },\n timestamp: {\n type: 'string',\n title: 'Timestamp',\n description: 'ISO8601 Timestamp'\n },\n decimal: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n nft: {\n type: 'object',\n title: 'NFT',\n description: 'A NFT',\n properties: {\n id: {\n type: 'integer',\n description: 'The NFT id'\n },\n collection: {\n $ref: '#/$defs/nft_collection'\n }\n },\n required: [ 'id',\n 'collection'\n ]\n },\n nft_collection: {\n type: 'object',\n title: 'NFTCollection',\n description: 'A NFT Collection',\n properties: {\n address: {\n type: 'string',\n description: 'The NFT Collection\\'s address'\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n name: {\n type: 'string',\n description: 'The NFT Collection\\'s name'\n }\n },\n required: [ 'address'\n ]\n },\n lock_market: {\n type: 'object',\n title: 'LockMarket',\n description: 'A lock market',\n properties: {\n asset: {\n $ref: '#/$defs/asset'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n venue: {\n $ref: '#/$defs/venue'\n }\n },\n required: [ 'asset',\n 'blockchain',\n 'venue'\n ]\n },\n asset: {\n type: 'object',\n title: 'Asset',\n description: 'On-chain asset (aka token)',\n properties: {\n id: {\n $ref: '#/$defs/asset_id'\n },\n address: {\n type: 'string',\n title: 'AddressEVM',\n description: 'An EVM address'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n decimals: {\n type: 'integer',\n description: 'Asset\\'s decimal places'\n },\n name: {\n type: 'string',\n description: 'Asset\\'s name'\n },\n symbol: {\n type: 'string',\n description: 'Asset\\'s symbol'\n }\n },\n required: [ 'id',\n 'address',\n 'blockchain',\n 'decimals',\n 'name',\n 'symbol'\n ]\n },\n asset_id: {\n type: 'string',\n title: 'AssetID',\n description: 'An asset ID, represented as a TypeID with `asset` prefix'\n },\n venue: {\n type: 'object',\n title: 'Venue',\n description: 'On-chain venue',\n properties: {\n id: {\n $ref: '#/$defs/venue_id'\n },\n blockchain_ids: {\n type: 'array',\n title: 'BlockchainIDList',\n description: 'A list of blockchain IDs',\n items: {\n $ref: '#/$defs/blockchain_id'\n }\n },\n name: {\n type: 'string',\n description: 'Venue name'\n },\n symbol: {\n $ref: '#/$defs/venue_symbol'\n },\n type: {\n type: 'string',\n description: 'Venue type'\n },\n url: {\n type: 'string',\n description: 'Venue url'\n }\n },\n required: [ 'id',\n 'blockchain_ids',\n 'name',\n 'symbol',\n 'type',\n 'url'\n ]\n },\n venue_id: {\n type: 'string',\n title: 'VenueID',\n description: 'A venue ID, represented as a TypeID with `venue` prefix'\n },\n venue_symbol: {\n type: 'string',\n title: 'VenueSymbol',\n description: 'A venue symbol'\n }\n }\n}\n```",
13
+ description: 'Get info on locked positions',
15
14
  inputSchema: {
16
15
  type: 'object',
17
16
  properties: {
@@ -42,11 +41,6 @@ export const tool = {
42
41
  $ref: '#/$defs/venue_id_or_venue_symbol',
43
42
  },
44
43
  },
45
- jq_filter: {
46
- type: 'string',
47
- title: 'jq Filter',
48
- 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/).',
49
- },
50
44
  },
51
45
  required: ['accounts', 'assets', 'blockchain', 'venues'],
52
46
  $defs: {
@@ -75,8 +69,8 @@ export const tool = {
75
69
  annotations: {},
76
70
  };
77
71
  export const handler = async (client, args) => {
78
- const { jq_filter, ...body } = args;
79
- return asTextContentResult(await maybeFilter(jq_filter, await client.vektor.lock.positions.list(body)));
72
+ const body = args;
73
+ return asTextContentResult(await client.vektor.lock.positions.list(body));
80
74
  };
81
75
  export default { metadata, tool, handler };
82
76
  //# sourceMappingURL=list-lock-vektor-positions.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-lock-vektor-positions.mjs","sourceRoot":"","sources":["../../../../src/tools/vektor/lock/positions/list-lock-vektor-positions.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,uBAAuB;IACjC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,4BAA4B;IAClC,WAAW,EACT,4mRAA4mR;IAC9mR,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,QAAQ,EAAE;gBACR,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iEAAiE;gBAC9E,KAAK,EAAE;oBACL,IAAI,EAAE,iBAAiB;iBACxB;aACF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,sCAAsC;gBAC7C,WAAW,EAAE,qDAAqD;gBAClE,KAAK,EAAE;oBACL,IAAI,EAAE,iDAAiD;iBACxD;aACF;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4CAA4C;aACnD;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,0BAA0B;gBACjC,WAAW,EAAE,sCAAsC;gBACnD,KAAK,EAAE;oBACL,IAAI,EAAE,kCAAkC;iBACzC;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,QAAQ,CAAC;QACxD,KAAK,EAAE;YACL,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,YAAY;gBACnB,WAAW,EAAE,gBAAgB;aAC9B;YACD,uCAAuC,EAAE;gBACvC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,kCAAkC,EAAE;gBAClC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,wBAAwB,EAAE;gBACxB,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,yDAAyD;aACvE;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,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC1G,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-lock-vektor-positions.mjs","sourceRoot":"","sources":["../../../../src/tools/vektor/lock/positions/list-lock-vektor-positions.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,uBAAuB;IACjC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,4BAA4B;IAClC,WAAW,EAAE,8BAA8B;IAC3C,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,QAAQ,EAAE;gBACR,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iEAAiE;gBAC9E,KAAK,EAAE;oBACL,IAAI,EAAE,iBAAiB;iBACxB;aACF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,sCAAsC;gBAC7C,WAAW,EAAE,qDAAqD;gBAClE,KAAK,EAAE;oBACL,IAAI,EAAE,iDAAiD;iBACxD;aACF;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4CAA4C;aACnD;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,0BAA0B;gBACjC,WAAW,EAAE,sCAAsC;gBACnD,KAAK,EAAE;oBACL,IAAI,EAAE,kCAAkC;iBACzC;aACF;SACF;QACD,QAAQ,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,QAAQ,CAAC;QACxD,KAAK,EAAE;YACL,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,YAAY;gBACnB,WAAW,EAAE,gBAAgB;aAC9B;YACD,uCAAuC,EAAE;gBACvC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,kCAAkC,EAAE;gBAClC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,wBAAwB,EAAE;gBACxB,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,yDAAyD;aACvE;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,IAAI,GAAG,IAAW,CAAC;IACzB,OAAO,mBAAmB,CAAC,MAAM,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;AAC5E,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
@@ -14,7 +14,7 @@ exports.metadata = {
14
14
  };
15
15
  exports.tool = {
16
16
  name: 'list_historical_vektor_prices',
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 a list of asset prices\n\n# Response Schema\n```json\n{\n type: 'object',\n title: 'HistoricalPriceListOutput',\n properties: {\n historical: {\n $ref: '#/$defs/off_chain_historical_range'\n },\n items: {\n type: 'array',\n title: 'TimestampedListPriceList',\n items: {\n type: 'object',\n title: 'TimestampedPriceList',\n properties: {\n items: {\n type: 'array',\n title: 'PriceList',\n description: 'Array of price',\n items: {\n $ref: '#/$defs/price'\n }\n },\n timestamp: {\n $ref: '#/$defs/timestamp'\n }\n },\n required: [ 'items',\n 'timestamp'\n ]\n }\n }\n },\n required: [ 'historical',\n 'items'\n ],\n $defs: {\n off_chain_historical_range: {\n type: 'object',\n title: 'OffChainHistoricalRange',\n description: 'A range of timestamps',\n properties: {\n from: {\n $ref: '#/$defs/timestamp'\n },\n to: {\n $ref: '#/$defs/timestamp'\n }\n },\n required: [ 'from',\n 'to'\n ]\n },\n timestamp: {\n type: 'string',\n title: 'Timestamp',\n description: 'ISO8601 Timestamp'\n },\n price: {\n type: 'object',\n title: 'Price',\n description: 'A price',\n properties: {\n asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n },\n change_1h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_1y: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_24h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_30d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_7d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n market_cap: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n price: {\n $ref: '#/$defs/decimal'\n },\n quote_asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n }\n },\n required: [ 'asset_symbol',\n 'change_1h',\n 'change_1y',\n 'change_24h',\n 'change_30d',\n 'change_7d',\n 'market_cap',\n 'price',\n 'quote_asset_symbol'\n ]\n },\n asset_symbol: {\n type: 'string',\n title: 'AssetSymbol',\n description: 'An asset symbol'\n },\n decimal: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n }\n }\n}\n```",
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 a list of asset prices\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/price_list_historical_response',\n $defs: {\n price_list_historical_response: {\n type: 'object',\n title: 'HistoricalPriceListOutput',\n properties: {\n historical: {\n $ref: '#/$defs/off_chain_historical_range'\n },\n items: {\n type: 'array',\n title: 'TimestampedListPriceList',\n items: {\n type: 'object',\n title: 'TimestampedPriceList',\n properties: {\n items: {\n type: 'array',\n title: 'PriceList',\n description: 'Array of price',\n items: {\n $ref: '#/$defs/price'\n }\n },\n timestamp: {\n $ref: '#/$defs/timestamp'\n }\n },\n required: [ 'items',\n 'timestamp'\n ]\n }\n }\n },\n required: [ 'historical',\n 'items'\n ]\n },\n off_chain_historical_range: {\n type: 'object',\n title: 'OffChainHistoricalRange',\n description: 'A range of timestamps',\n properties: {\n from: {\n $ref: '#/$defs/timestamp'\n },\n to: {\n $ref: '#/$defs/timestamp'\n }\n },\n required: [ 'from',\n 'to'\n ]\n },\n timestamp: {\n type: 'string',\n title: 'Timestamp',\n description: 'ISO8601 Timestamp'\n },\n price: {\n type: 'object',\n title: 'Price',\n description: 'A price',\n properties: {\n asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n },\n change_1h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_1y: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_24h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_30d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_7d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n market_cap: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n price: {\n $ref: '#/$defs/decimal'\n },\n quote_asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n }\n },\n required: [ 'asset_symbol',\n 'change_1h',\n 'change_1y',\n 'change_24h',\n 'change_30d',\n 'change_7d',\n 'market_cap',\n 'price',\n 'quote_asset_symbol'\n ]\n },\n asset_symbol: {\n type: 'string',\n title: 'AssetSymbol',\n description: 'An asset symbol'\n },\n decimal: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n }\n }\n}\n```",
18
18
  inputSchema: {
19
19
  type: 'object',
20
20
  properties: {
@@ -1 +1 @@
1
- {"version":3,"file":"list-historical-vektor-prices.js","sourceRoot":"","sources":["../../../src/tools/vektor/prices/list-historical-vektor-prices.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,eAAe;IACzB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,8BAA8B;IACxC,WAAW,EAAE,wBAAwB;CACtC,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,+BAA+B;IACrC,WAAW,EACT,40GAA40G;IAC90G,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,aAAa,EAAE;gBACb,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,iBAAiB;gBACxB,WAAW,EAAE,yBAAyB;gBACtC,KAAK,EAAE;oBACL,IAAI,EAAE,sBAAsB;iBAC7B;aACF;YACD,kBAAkB,EAAE;gBAClB,IAAI,EAAE,sBAAsB;aAC7B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,eAAe,CAAC;QAC3B,KAAK,EAAE;YACL,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC5G,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-historical-vektor-prices.js","sourceRoot":"","sources":["../../../src/tools/vektor/prices/list-historical-vektor-prices.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,eAAe;IACzB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,8BAA8B;IACxC,WAAW,EAAE,wBAAwB;CACtC,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,+BAA+B;IACrC,WAAW,EACT,6jHAA6jH;IAC/jH,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,aAAa,EAAE;gBACb,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,iBAAiB;gBACxB,WAAW,EAAE,yBAAyB;gBACtC,KAAK,EAAE;oBACL,IAAI,EAAE,sBAAsB;iBAC7B;aACF;YACD,kBAAkB,EAAE;gBAClB,IAAI,EAAE,sBAAsB;aAC7B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,eAAe,CAAC;QAC3B,KAAK,EAAE;YACL,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC5G,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
@@ -11,7 +11,7 @@ export const metadata = {
11
11
  };
12
12
  export const tool = {
13
13
  name: 'list_historical_vektor_prices',
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 a list of asset prices\n\n# Response Schema\n```json\n{\n type: 'object',\n title: 'HistoricalPriceListOutput',\n properties: {\n historical: {\n $ref: '#/$defs/off_chain_historical_range'\n },\n items: {\n type: 'array',\n title: 'TimestampedListPriceList',\n items: {\n type: 'object',\n title: 'TimestampedPriceList',\n properties: {\n items: {\n type: 'array',\n title: 'PriceList',\n description: 'Array of price',\n items: {\n $ref: '#/$defs/price'\n }\n },\n timestamp: {\n $ref: '#/$defs/timestamp'\n }\n },\n required: [ 'items',\n 'timestamp'\n ]\n }\n }\n },\n required: [ 'historical',\n 'items'\n ],\n $defs: {\n off_chain_historical_range: {\n type: 'object',\n title: 'OffChainHistoricalRange',\n description: 'A range of timestamps',\n properties: {\n from: {\n $ref: '#/$defs/timestamp'\n },\n to: {\n $ref: '#/$defs/timestamp'\n }\n },\n required: [ 'from',\n 'to'\n ]\n },\n timestamp: {\n type: 'string',\n title: 'Timestamp',\n description: 'ISO8601 Timestamp'\n },\n price: {\n type: 'object',\n title: 'Price',\n description: 'A price',\n properties: {\n asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n },\n change_1h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_1y: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_24h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_30d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_7d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n market_cap: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n price: {\n $ref: '#/$defs/decimal'\n },\n quote_asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n }\n },\n required: [ 'asset_symbol',\n 'change_1h',\n 'change_1y',\n 'change_24h',\n 'change_30d',\n 'change_7d',\n 'market_cap',\n 'price',\n 'quote_asset_symbol'\n ]\n },\n asset_symbol: {\n type: 'string',\n title: 'AssetSymbol',\n description: 'An asset symbol'\n },\n decimal: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\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\nGet a list of asset prices\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/price_list_historical_response',\n $defs: {\n price_list_historical_response: {\n type: 'object',\n title: 'HistoricalPriceListOutput',\n properties: {\n historical: {\n $ref: '#/$defs/off_chain_historical_range'\n },\n items: {\n type: 'array',\n title: 'TimestampedListPriceList',\n items: {\n type: 'object',\n title: 'TimestampedPriceList',\n properties: {\n items: {\n type: 'array',\n title: 'PriceList',\n description: 'Array of price',\n items: {\n $ref: '#/$defs/price'\n }\n },\n timestamp: {\n $ref: '#/$defs/timestamp'\n }\n },\n required: [ 'items',\n 'timestamp'\n ]\n }\n }\n },\n required: [ 'historical',\n 'items'\n ]\n },\n off_chain_historical_range: {\n type: 'object',\n title: 'OffChainHistoricalRange',\n description: 'A range of timestamps',\n properties: {\n from: {\n $ref: '#/$defs/timestamp'\n },\n to: {\n $ref: '#/$defs/timestamp'\n }\n },\n required: [ 'from',\n 'to'\n ]\n },\n timestamp: {\n type: 'string',\n title: 'Timestamp',\n description: 'ISO8601 Timestamp'\n },\n price: {\n type: 'object',\n title: 'Price',\n description: 'A price',\n properties: {\n asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n },\n change_1h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_1y: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_24h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_30d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_7d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n market_cap: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n price: {\n $ref: '#/$defs/decimal'\n },\n quote_asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n }\n },\n required: [ 'asset_symbol',\n 'change_1h',\n 'change_1y',\n 'change_24h',\n 'change_30d',\n 'change_7d',\n 'market_cap',\n 'price',\n 'quote_asset_symbol'\n ]\n },\n asset_symbol: {\n type: 'string',\n title: 'AssetSymbol',\n description: 'An asset symbol'\n },\n decimal: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n }\n }\n}\n```",
15
15
  inputSchema: {
16
16
  type: 'object',
17
17
  properties: {
@@ -1 +1 @@
1
- {"version":3,"file":"list-historical-vektor-prices.mjs","sourceRoot":"","sources":["../../../src/tools/vektor/prices/list-historical-vektor-prices.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,eAAe;IACzB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,8BAA8B;IACxC,WAAW,EAAE,wBAAwB;CACtC,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,+BAA+B;IACrC,WAAW,EACT,40GAA40G;IAC90G,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,aAAa,EAAE;gBACb,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,iBAAiB;gBACxB,WAAW,EAAE,yBAAyB;gBACtC,KAAK,EAAE;oBACL,IAAI,EAAE,sBAAsB;iBAC7B;aACF;YACD,kBAAkB,EAAE;gBAClB,IAAI,EAAE,sBAAsB;aAC7B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,eAAe,CAAC;QAC3B,KAAK,EAAE;YACL,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;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,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC5G,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-historical-vektor-prices.mjs","sourceRoot":"","sources":["../../../src/tools/vektor/prices/list-historical-vektor-prices.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,eAAe;IACzB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,8BAA8B;IACxC,WAAW,EAAE,wBAAwB;CACtC,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,+BAA+B;IACrC,WAAW,EACT,6jHAA6jH;IAC/jH,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,aAAa,EAAE;gBACb,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,iBAAiB;gBACxB,WAAW,EAAE,yBAAyB;gBACtC,KAAK,EAAE;oBACL,IAAI,EAAE,sBAAsB;iBAC7B;aACF;YACD,kBAAkB,EAAE;gBAClB,IAAI,EAAE,sBAAsB;aAC7B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,eAAe,CAAC;QAC3B,KAAK,EAAE;YACL,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;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,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC5G,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
@@ -14,7 +14,7 @@ exports.metadata = {
14
14
  };
15
15
  exports.tool = {
16
16
  name: 'list_vektor_prices',
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 a list of asset prices\n\n# Response Schema\n```json\n{\n type: 'object',\n title: 'PriceListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'PriceList',\n description: 'Array of price',\n items: {\n $ref: '#/$defs/price'\n }\n }\n },\n required: [ 'items'\n ],\n $defs: {\n price: {\n type: 'object',\n title: 'Price',\n description: 'A price',\n properties: {\n asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n },\n change_1h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_1y: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_24h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_30d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_7d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n market_cap: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n price: {\n $ref: '#/$defs/decimal'\n },\n quote_asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n }\n },\n required: [ 'asset_symbol',\n 'change_1h',\n 'change_1y',\n 'change_24h',\n 'change_30d',\n 'change_7d',\n 'market_cap',\n 'price',\n 'quote_asset_symbol'\n ]\n },\n asset_symbol: {\n type: 'string',\n title: 'AssetSymbol',\n description: 'An asset symbol'\n },\n decimal: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n }\n }\n}\n```",
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 a list of asset prices\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/price_list_response',\n $defs: {\n price_list_response: {\n type: 'object',\n title: 'PriceListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'PriceList',\n description: 'Array of price',\n items: {\n $ref: '#/$defs/price'\n }\n }\n },\n required: [ 'items'\n ]\n },\n price: {\n type: 'object',\n title: 'Price',\n description: 'A price',\n properties: {\n asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n },\n change_1h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_1y: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_24h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_30d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_7d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n market_cap: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n price: {\n $ref: '#/$defs/decimal'\n },\n quote_asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n }\n },\n required: [ 'asset_symbol',\n 'change_1h',\n 'change_1y',\n 'change_24h',\n 'change_30d',\n 'change_7d',\n 'market_cap',\n 'price',\n 'quote_asset_symbol'\n ]\n },\n asset_symbol: {\n type: 'string',\n title: 'AssetSymbol',\n description: 'An asset symbol'\n },\n decimal: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n }\n }\n}\n```",
18
18
  inputSchema: {
19
19
  type: 'object',
20
20
  properties: {
@@ -1 +1 @@
1
- {"version":3,"file":"list-vektor-prices.js","sourceRoot":"","sources":["../../../src/tools/vektor/prices/list-vektor-prices.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,eAAe;IACzB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,mBAAmB;IAC7B,WAAW,EAAE,aAAa;CAC3B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,q2EAAq2E;IACv2E,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,aAAa,EAAE;gBACb,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,iBAAiB;gBACxB,WAAW,EAAE,yBAAyB;gBACtC,KAAK,EAAE;oBACL,IAAI,EAAE,sBAAsB;iBAC7B;aACF;YACD,kBAAkB,EAAE;gBAClB,IAAI,EAAE,sBAAsB;aAC7B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,eAAe,CAAC;QAC3B,KAAK,EAAE;YACL,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClG,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-vektor-prices.js","sourceRoot":"","sources":["../../../src/tools/vektor/prices/list-vektor-prices.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,eAAe;IACzB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,mBAAmB;IAC7B,WAAW,EAAE,aAAa;CAC3B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,4+EAA4+E;IAC9+E,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,aAAa,EAAE;gBACb,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,iBAAiB;gBACxB,WAAW,EAAE,yBAAyB;gBACtC,KAAK,EAAE;oBACL,IAAI,EAAE,sBAAsB;iBAC7B;aACF;YACD,kBAAkB,EAAE;gBAClB,IAAI,EAAE,sBAAsB;aAC7B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,eAAe,CAAC;QAC3B,KAAK,EAAE;YACL,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClG,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
@@ -11,7 +11,7 @@ export const metadata = {
11
11
  };
12
12
  export const tool = {
13
13
  name: 'list_vektor_prices',
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 a list of asset prices\n\n# Response Schema\n```json\n{\n type: 'object',\n title: 'PriceListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'PriceList',\n description: 'Array of price',\n items: {\n $ref: '#/$defs/price'\n }\n }\n },\n required: [ 'items'\n ],\n $defs: {\n price: {\n type: 'object',\n title: 'Price',\n description: 'A price',\n properties: {\n asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n },\n change_1h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_1y: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_24h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_30d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_7d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n market_cap: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n price: {\n $ref: '#/$defs/decimal'\n },\n quote_asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n }\n },\n required: [ 'asset_symbol',\n 'change_1h',\n 'change_1y',\n 'change_24h',\n 'change_30d',\n 'change_7d',\n 'market_cap',\n 'price',\n 'quote_asset_symbol'\n ]\n },\n asset_symbol: {\n type: 'string',\n title: 'AssetSymbol',\n description: 'An asset symbol'\n },\n decimal: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\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\nGet a list of asset prices\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/price_list_response',\n $defs: {\n price_list_response: {\n type: 'object',\n title: 'PriceListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'PriceList',\n description: 'Array of price',\n items: {\n $ref: '#/$defs/price'\n }\n }\n },\n required: [ 'items'\n ]\n },\n price: {\n type: 'object',\n title: 'Price',\n description: 'A price',\n properties: {\n asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n },\n change_1h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_1y: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_24h: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_30d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n change_7d: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n market_cap: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n },\n price: {\n $ref: '#/$defs/decimal'\n },\n quote_asset_symbol: {\n $ref: '#/$defs/asset_symbol'\n }\n },\n required: [ 'asset_symbol',\n 'change_1h',\n 'change_1y',\n 'change_24h',\n 'change_30d',\n 'change_7d',\n 'market_cap',\n 'price',\n 'quote_asset_symbol'\n ]\n },\n asset_symbol: {\n type: 'string',\n title: 'AssetSymbol',\n description: 'An asset symbol'\n },\n decimal: {\n type: 'string',\n title: 'Decimal',\n description: 'An arbitrary precision decimal represented as a string'\n }\n }\n}\n```",
15
15
  inputSchema: {
16
16
  type: 'object',
17
17
  properties: {
@@ -1 +1 @@
1
- {"version":3,"file":"list-vektor-prices.mjs","sourceRoot":"","sources":["../../../src/tools/vektor/prices/list-vektor-prices.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,eAAe;IACzB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,mBAAmB;IAC7B,WAAW,EAAE,aAAa;CAC3B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,q2EAAq2E;IACv2E,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,aAAa,EAAE;gBACb,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,iBAAiB;gBACxB,WAAW,EAAE,yBAAyB;gBACtC,KAAK,EAAE;oBACL,IAAI,EAAE,sBAAsB;iBAC7B;aACF;YACD,kBAAkB,EAAE;gBAClB,IAAI,EAAE,sBAAsB;aAC7B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,eAAe,CAAC;QAC3B,KAAK,EAAE;YACL,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;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,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-vektor-prices.mjs","sourceRoot":"","sources":["../../../src/tools/vektor/prices/list-vektor-prices.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,eAAe;IACzB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,mBAAmB;IAC7B,WAAW,EAAE,aAAa;CAC3B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,4+EAA4+E;IAC9+E,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,aAAa,EAAE;gBACb,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,iBAAiB;gBACxB,WAAW,EAAE,yBAAyB;gBACtC,KAAK,EAAE;oBACL,IAAI,EAAE,sBAAsB;iBAC7B;aACF;YACD,kBAAkB,EAAE;gBAClB,IAAI,EAAE,sBAAsB;aAC7B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,eAAe,CAAC;QAC3B,KAAK,EAAE;YACL,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;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,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
@@ -14,7 +14,7 @@ exports.metadata = {
14
14
  };
15
15
  exports.tool = {
16
16
  name: 'list_registry_vektor_assets',
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 supported assets, optionally filtered by blockchain\n\n# Response Schema\n```json\n{\n type: 'object',\n title: 'AssetListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'AssetList',\n description: 'Response for multiple assets',\n items: {\n $ref: '#/$defs/asset'\n }\n }\n },\n required: [ 'items'\n ],\n $defs: {\n asset: {\n type: 'object',\n title: 'Asset',\n description: 'On-chain asset (aka token)',\n properties: {\n id: {\n $ref: '#/$defs/asset_id'\n },\n address: {\n type: 'string',\n title: 'AddressEVM',\n description: 'An EVM address'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n decimals: {\n type: 'integer',\n description: 'Asset\\'s decimal places'\n },\n name: {\n type: 'string',\n description: 'Asset\\'s name'\n },\n symbol: {\n type: 'string',\n description: 'Asset\\'s symbol'\n }\n },\n required: [ 'id',\n 'address',\n 'blockchain',\n 'decimals',\n 'name',\n 'symbol'\n ]\n },\n asset_id: {\n type: 'string',\n title: 'AssetID',\n description: 'An asset ID, represented as a TypeID with `asset` prefix'\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\n }\n }\n}\n```",
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 supported assets, optionally filtered by blockchain\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/asset_list_response',\n $defs: {\n asset_list_response: {\n type: 'object',\n title: 'AssetListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'AssetList',\n description: 'Response for multiple assets',\n items: {\n $ref: '#/$defs/asset'\n }\n }\n },\n required: [ 'items'\n ]\n },\n asset: {\n type: 'object',\n title: 'Asset',\n description: 'On-chain asset (aka token)',\n properties: {\n id: {\n $ref: '#/$defs/asset_id'\n },\n address: {\n type: 'string',\n title: 'AddressEVM',\n description: 'An EVM address'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n decimals: {\n type: 'integer',\n description: 'Asset\\'s decimal places'\n },\n name: {\n type: 'string',\n description: 'Asset\\'s name'\n },\n symbol: {\n type: 'string',\n description: 'Asset\\'s symbol'\n }\n },\n required: [ 'id',\n 'address',\n 'blockchain',\n 'decimals',\n 'name',\n 'symbol'\n ]\n },\n asset_id: {\n type: 'string',\n title: 'AssetID',\n description: 'An asset ID, represented as a TypeID with `asset` prefix'\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\n }\n }\n}\n```",
18
18
  inputSchema: {
19
19
  type: 'object',
20
20
  properties: {
@@ -1 +1 @@
1
- {"version":3,"file":"list-registry-vektor-assets.js","sourceRoot":"","sources":["../../../../src/tools/vektor/registry/assets/list-registry-vektor-assets.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,wBAAwB;IAClC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,4BAA4B;IACtC,WAAW,EAAE,sBAAsB;CACpC,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,6BAA6B;IACnC,WAAW,EACT,45GAA45G;IAC95G,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,uBAAuB;aAC9B;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;QACZ,KAAK,EAAE;YACL,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC3G,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-registry-vektor-assets.js","sourceRoot":"","sources":["../../../../src/tools/vektor/registry/assets/list-registry-vektor-assets.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,wBAAwB;IAClC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,4BAA4B;IACtC,WAAW,EAAE,sBAAsB;CACpC,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,6BAA6B;IACnC,WAAW,EACT,miHAAmiH;IACriH,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,uBAAuB;aAC9B;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;QACZ,KAAK,EAAE;YACL,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC3G,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
@@ -11,7 +11,7 @@ export const metadata = {
11
11
  };
12
12
  export const tool = {
13
13
  name: 'list_registry_vektor_assets',
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 supported assets, optionally filtered by blockchain\n\n# Response Schema\n```json\n{\n type: 'object',\n title: 'AssetListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'AssetList',\n description: 'Response for multiple assets',\n items: {\n $ref: '#/$defs/asset'\n }\n }\n },\n required: [ 'items'\n ],\n $defs: {\n asset: {\n type: 'object',\n title: 'Asset',\n description: 'On-chain asset (aka token)',\n properties: {\n id: {\n $ref: '#/$defs/asset_id'\n },\n address: {\n type: 'string',\n title: 'AddressEVM',\n description: 'An EVM address'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n decimals: {\n type: 'integer',\n description: 'Asset\\'s decimal places'\n },\n name: {\n type: 'string',\n description: 'Asset\\'s name'\n },\n symbol: {\n type: 'string',\n description: 'Asset\\'s symbol'\n }\n },\n required: [ 'id',\n 'address',\n 'blockchain',\n 'decimals',\n 'name',\n 'symbol'\n ]\n },\n asset_id: {\n type: 'string',\n title: 'AssetID',\n description: 'An asset ID, represented as a TypeID with `asset` prefix'\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\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 supported assets, optionally filtered by blockchain\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/asset_list_response',\n $defs: {\n asset_list_response: {\n type: 'object',\n title: 'AssetListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'AssetList',\n description: 'Response for multiple assets',\n items: {\n $ref: '#/$defs/asset'\n }\n }\n },\n required: [ 'items'\n ]\n },\n asset: {\n type: 'object',\n title: 'Asset',\n description: 'On-chain asset (aka token)',\n properties: {\n id: {\n $ref: '#/$defs/asset_id'\n },\n address: {\n type: 'string',\n title: 'AddressEVM',\n description: 'An EVM address'\n },\n blockchain: {\n $ref: '#/$defs/blockchain'\n },\n decimals: {\n type: 'integer',\n description: 'Asset\\'s decimal places'\n },\n name: {\n type: 'string',\n description: 'Asset\\'s name'\n },\n symbol: {\n type: 'string',\n description: 'Asset\\'s symbol'\n }\n },\n required: [ 'id',\n 'address',\n 'blockchain',\n 'decimals',\n 'name',\n 'symbol'\n ]\n },\n asset_id: {\n type: 'string',\n title: 'AssetID',\n description: 'An asset ID, represented as a TypeID with `asset` prefix'\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\n }\n }\n}\n```",
15
15
  inputSchema: {
16
16
  type: 'object',
17
17
  properties: {
@@ -1 +1 @@
1
- {"version":3,"file":"list-registry-vektor-assets.mjs","sourceRoot":"","sources":["../../../../src/tools/vektor/registry/assets/list-registry-vektor-assets.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,wBAAwB;IAClC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,4BAA4B;IACtC,WAAW,EAAE,sBAAsB;CACpC,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,6BAA6B;IACnC,WAAW,EACT,45GAA45G;IAC95G,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,uBAAuB;aAC9B;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;QACZ,KAAK,EAAE;YACL,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;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,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC3G,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-registry-vektor-assets.mjs","sourceRoot":"","sources":["../../../../src/tools/vektor/registry/assets/list-registry-vektor-assets.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,wBAAwB;IAClC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,4BAA4B;IACtC,WAAW,EAAE,sBAAsB;CACpC,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,6BAA6B;IACnC,WAAW,EACT,miHAAmiH;IACriH,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,0DAA0D;aACxE;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,uBAAuB;aAC9B;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,iBAAiB;aAC/B;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;QACZ,KAAK,EAAE;YACL,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;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,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC3G,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
@@ -14,7 +14,7 @@ exports.metadata = {
14
14
  };
15
15
  exports.tool = {
16
16
  name: 'list_registry_vektor_blockchains',
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 supported blockchains\n\n# Response Schema\n```json\n{\n type: 'object',\n title: 'BlockchainListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'BlockchainList',\n description: 'A list of blockchains',\n items: {\n $ref: '#/$defs/blockchain'\n }\n }\n },\n required: [ 'items'\n ],\n $defs: {\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\n }\n }\n}\n```",
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 supported blockchains\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/blockchain_list_response',\n $defs: {\n blockchain_list_response: {\n type: 'object',\n title: 'BlockchainListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'BlockchainList',\n description: 'A list of blockchains',\n items: {\n $ref: '#/$defs/blockchain'\n }\n }\n },\n required: [ 'items'\n ]\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\n }\n }\n}\n```",
18
18
  inputSchema: {
19
19
  type: 'object',
20
20
  properties: {
@@ -1 +1 @@
1
- {"version":3,"file":"list-registry-vektor-blockchains.js","sourceRoot":"","sources":["../../../../src/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,6BAA6B;IACvC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,iCAAiC;IAC3C,WAAW,EAAE,2BAA2B;CACzC,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,kCAAkC;IACxC,WAAW,EACT,44EAA44E;IAC94E,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,kBAAkB;gBACzB,WAAW,EAAE,qBAAqB;aACnC;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;KACb;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EACxB,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAClF,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":"list-registry-vektor-blockchains.js","sourceRoot":"","sources":["../../../../src/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,6BAA6B;IACvC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,iCAAiC;IAC3C,WAAW,EAAE,2BAA2B;CACzC,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,kCAAkC;IACxC,WAAW,EACT,6hFAA6hF;IAC/hF,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,kBAAkB;gBACzB,WAAW,EAAE,qBAAqB;aACnC;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;KACb;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EACxB,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAClF,CAAC;AACJ,CAAC,CAAC;AALW,QAAA,OAAO,WAKlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
@@ -11,7 +11,7 @@ export const metadata = {
11
11
  };
12
12
  export const tool = {
13
13
  name: 'list_registry_vektor_blockchains',
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 supported blockchains\n\n# Response Schema\n```json\n{\n type: 'object',\n title: 'BlockchainListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'BlockchainList',\n description: 'A list of blockchains',\n items: {\n $ref: '#/$defs/blockchain'\n }\n }\n },\n required: [ 'items'\n ],\n $defs: {\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\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 supported blockchains\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/blockchain_list_response',\n $defs: {\n blockchain_list_response: {\n type: 'object',\n title: 'BlockchainListOutput',\n properties: {\n items: {\n type: 'array',\n title: 'BlockchainList',\n description: 'A list of blockchains',\n items: {\n $ref: '#/$defs/blockchain'\n }\n }\n },\n required: [ 'items'\n ]\n },\n blockchain: {\n type: 'object',\n title: 'Blockchain',\n description: 'Data about a blockchain',\n properties: {\n id: {\n $ref: '#/$defs/blockchain_id'\n },\n chain_data: {\n $ref: '#/$defs/evm_chain_data'\n },\n chain_type: {\n $ref: '#/$defs/chain_type'\n },\n explorer_url: {\n type: 'string',\n description: 'The blockchain\\'s explorer URL'\n },\n name: {\n $ref: '#/$defs/blockchain_name'\n },\n network: {\n $ref: '#/$defs/network_name'\n },\n symbol: {\n $ref: '#/$defs/blockchain_symbol'\n }\n },\n required: [ 'id',\n 'chain_data',\n 'chain_type',\n 'explorer_url',\n 'name',\n 'network',\n 'symbol'\n ]\n },\n blockchain_id: {\n type: 'string',\n title: 'BlockchainID',\n description: 'A blockchain ID, represented as a TypeID with `blockchain` prefix'\n },\n evm_chain_data: {\n type: 'object',\n title: 'EVMChainData',\n description: 'Data about an EVM blockchain',\n properties: {\n chain_id: {\n type: 'integer',\n description: 'Chain ID'\n }\n },\n required: [ 'chain_id'\n ]\n },\n chain_type: {\n type: 'string',\n title: 'ChainType',\n description: 'Blockchain ecosystem',\n enum: [ 'evm'\n ]\n },\n blockchain_name: {\n type: 'string',\n title: 'BlockchainName',\n description: 'BlockchainName'\n },\n network_name: {\n type: 'string',\n title: 'NetworkName',\n description: 'Blockchain\\'s network'\n },\n blockchain_symbol: {\n type: 'string',\n title: 'BlockchainSymbol',\n description: 'A blockchain symbol'\n }\n }\n}\n```",
15
15
  inputSchema: {
16
16
  type: 'object',
17
17
  properties: {
@@ -1 +1 @@
1
- {"version":3,"file":"list-registry-vektor-blockchains.mjs","sourceRoot":"","sources":["../../../../src/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.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,6BAA6B;IACvC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,iCAAiC;IAC3C,WAAW,EAAE,2BAA2B;CACzC,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,kCAAkC;IACxC,WAAW,EACT,44EAA44E;IAC94E,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,kBAAkB;gBACzB,WAAW,EAAE,qBAAqB;aACnC;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;KACb;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,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAClF,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
1
+ {"version":3,"file":"list-registry-vektor-blockchains.mjs","sourceRoot":"","sources":["../../../../src/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.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,6BAA6B;IACvC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,iCAAiC;IAC3C,WAAW,EAAE,2BAA2B;CACzC,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,kCAAkC;IACxC,WAAW,EACT,6hFAA6hF;IAC/hF,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,cAAc;gBACrB,WAAW,EAAE,mEAAmE;aACjF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,kBAAkB;gBACzB,WAAW,EAAE,qBAAqB;aACnC;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;KACb;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,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAClF,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}