@cryptorobot.ai/client 0.0.40 → 1.26.0-dev.1000

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 (617) hide show
  1. package/lib/src/client.d.ts +260 -0
  2. package/lib/src/client.js +165 -23
  3. package/lib/src/services/advisor/advisor.class.d.ts +12 -0
  4. package/lib/src/services/advisor/advisor.d.ts +11 -0
  5. package/lib/src/services/advisor/advisor.hooks.d.ts +9 -0
  6. package/lib/src/services/advisor/advisor.schema.d.ts +2744 -0
  7. package/lib/src/services/advisor/advisor.shared.d.ts +13 -0
  8. package/lib/src/services/advisor/advisor.shared.js +13 -0
  9. package/lib/src/services/advisor/messages/messages.class.d.ts +11 -0
  10. package/lib/src/services/advisor/messages/messages.d.ts +11 -0
  11. package/lib/src/services/advisor/messages/messages.schema.d.ts +575 -0
  12. package/lib/src/services/advisor/messages/messages.shared.d.ts +13 -0
  13. package/lib/src/services/advisor/messages/messages.shared.js +13 -0
  14. package/lib/src/services/affiliates/affiliates.class.d.ts +18 -0
  15. package/lib/src/services/affiliates/affiliates.d.ts +11 -0
  16. package/lib/src/services/affiliates/affiliates.schema.d.ts +579 -0
  17. package/lib/src/services/affiliates/affiliates.shared.d.ts +13 -0
  18. package/lib/src/services/affiliates/affiliates.shared.js +20 -0
  19. package/lib/src/services/affiliates/clicks/clicks.class.d.ts +11 -0
  20. package/lib/src/services/affiliates/clicks/clicks.d.ts +11 -0
  21. package/lib/src/services/affiliates/clicks/clicks.schema.d.ts +507 -0
  22. package/lib/src/services/affiliates/clicks/clicks.shared.d.ts +13 -0
  23. package/lib/src/services/affiliates/clicks/clicks.shared.js +19 -0
  24. package/lib/src/services/affiliates/comissions/comissions.class.d.ts +11 -0
  25. package/lib/src/services/affiliates/comissions/comissions.d.ts +11 -0
  26. package/lib/src/services/affiliates/comissions/comissions.schema.d.ts +841 -0
  27. package/lib/src/services/affiliates/comissions/comissions.shared.d.ts +13 -0
  28. package/lib/src/services/affiliates/comissions/comissions.shared.js +19 -0
  29. package/lib/src/services/affiliates/contracts/contracts.class.d.ts +11 -0
  30. package/lib/src/services/affiliates/contracts/contracts.d.ts +11 -0
  31. package/lib/src/services/affiliates/contracts/contracts.schema.d.ts +667 -0
  32. package/lib/src/services/affiliates/contracts/contracts.shared.d.ts +13 -0
  33. package/lib/src/services/affiliates/contracts/contracts.shared.js +19 -0
  34. package/lib/src/services/affiliates/coupons/coupons.class.d.ts +11 -0
  35. package/lib/src/services/affiliates/coupons/coupons.d.ts +11 -0
  36. package/lib/src/services/affiliates/coupons/coupons.schema.d.ts +523 -0
  37. package/lib/src/services/affiliates/coupons/coupons.shared.d.ts +13 -0
  38. package/lib/src/services/affiliates/coupons/coupons.shared.js +19 -0
  39. package/lib/src/services/affiliates/links/links.class.d.ts +11 -0
  40. package/lib/src/services/affiliates/links/links.d.ts +11 -0
  41. package/lib/src/services/affiliates/links/links.schema.d.ts +515 -0
  42. package/lib/src/services/affiliates/links/links.shared.d.ts +13 -0
  43. package/lib/src/services/affiliates/links/links.shared.js +13 -0
  44. package/lib/src/services/affiliates/payouts/payouts.class.d.ts +11 -0
  45. package/lib/src/services/affiliates/payouts/payouts.d.ts +11 -0
  46. package/lib/src/services/affiliates/payouts/payouts.schema.d.ts +433 -0
  47. package/lib/src/services/affiliates/payouts/payouts.shared.d.ts +13 -0
  48. package/lib/src/services/affiliates/payouts/payouts.shared.js +19 -0
  49. package/lib/src/services/agents/agents.class.d.ts +3 -2
  50. package/lib/src/services/agents/agents.schema.d.ts +2263 -1061
  51. package/lib/src/services/agents/agents.shared.d.ts +1 -1
  52. package/lib/src/services/agents/configure-bedrock-features.hooks.d.ts +2 -0
  53. package/lib/src/services/agents/create-agent-api-key.hooks.d.ts +2 -0
  54. package/lib/src/services/agents/create-bedrock-agent.hooks.d.ts +2 -0
  55. package/lib/src/services/agents/delete-agent-api-key.hooks.d.ts +2 -0
  56. package/lib/src/services/agents/delete-agent-triggers.hooks.d.ts +5 -0
  57. package/lib/src/services/agents/delete-bedrock-agent.hooks.d.ts +2 -0
  58. package/lib/src/services/agents/manage-bedrock-action-groups.hooks.d.ts +2 -0
  59. package/lib/src/services/agents/prepare/agents/backtest-analyst.d.ts +2 -0
  60. package/lib/src/services/agents/prepare/agents/financial-manager.d.ts +16 -0
  61. package/lib/src/services/agents/prepare/agents/hyperopt-analyst.d.ts +2 -0
  62. package/lib/src/services/agents/prepare/agents/index.d.ts +13 -0
  63. package/lib/src/services/agents/prepare/agents/risk-critic.d.ts +2 -0
  64. package/lib/src/services/agents/prepare/agents/strategy-researcher.d.ts +2 -0
  65. package/lib/src/services/agents/prepare/prepare.schema.d.ts +24 -24
  66. package/lib/src/services/agents/prepare/prepare.shared.d.ts +1 -1
  67. package/lib/src/services/agents/refresh-bedrock-agent-status.hooks.d.ts +2 -0
  68. package/lib/src/services/agents/sessions/conversations/conversations.class.d.ts +3 -2
  69. package/lib/src/services/agents/sessions/conversations/conversations.hooks.d.ts +11 -0
  70. package/lib/src/services/agents/sessions/conversations/conversations.schema.d.ts +833 -463
  71. package/lib/src/services/agents/sessions/conversations/conversations.shared.d.ts +1 -1
  72. package/lib/src/services/agents/sessions/conversations/invoke-agent-provider.hooks.d.ts +2 -0
  73. package/lib/src/services/agents/sessions/conversations/invoke-bedrock-agent.hooks.d.ts +2 -0
  74. package/lib/src/services/agents/sessions/conversations/set-conversation-timestamps.hooks.d.ts +0 -0
  75. package/lib/src/services/agents/sessions/create-bedrock-session.hooks.d.ts +2 -0
  76. package/lib/src/services/agents/sessions/delete-bedrock-session.hooks.d.ts +2 -0
  77. package/lib/src/services/agents/sessions/sessions.class.d.ts +3 -2
  78. package/lib/src/services/agents/sessions/sessions.hooks.d.ts +11 -0
  79. package/lib/src/services/agents/sessions/sessions.schema.d.ts +450 -362
  80. package/lib/src/services/agents/sessions/sessions.shared.d.ts +1 -1
  81. package/lib/src/services/agents/sessions/sync-bedrock-sessions.hooks.d.ts +2 -0
  82. package/lib/src/services/agents/sessions/update-bedrock-session.hooks.d.ts +2 -0
  83. package/lib/src/services/agents/update-bedrock-agent.hooks.d.ts +2 -0
  84. package/lib/src/services/agents/update-trigger-rules-with-agent-info.hooks.d.ts +5 -0
  85. package/lib/src/services/agents/validate-agent-actions.hooks.d.ts +3 -0
  86. package/lib/src/services/autotune/apply-params.d.ts +44 -0
  87. package/lib/src/services/autotune/callback.d.ts +2 -0
  88. package/lib/src/services/autotune/compute/compute.d.ts +40 -0
  89. package/lib/src/services/autotune/optuna-bridge.d.ts +10 -0
  90. package/lib/src/services/autotune/score.d.ts +37 -0
  91. package/lib/src/services/autotune/storage.d.ts +6 -0
  92. package/lib/src/services/autotune/studies/studies.class.d.ts +12 -0
  93. package/lib/src/services/autotune/studies/studies.d.ts +12 -0
  94. package/lib/src/services/autotune/studies/studies.schema.d.ts +1229 -0
  95. package/lib/src/services/autotune/studies/studies.shared.d.ts +13 -0
  96. package/lib/src/services/autotune/studies/studies.shared.js +13 -0
  97. package/lib/src/services/autotune/trials/trials.class.d.ts +12 -0
  98. package/lib/src/services/autotune/trials/trials.d.ts +12 -0
  99. package/lib/src/services/autotune/trials/trials.schema.d.ts +790 -0
  100. package/lib/src/services/autotune/trials/trials.shared.d.ts +13 -0
  101. package/lib/src/services/autotune/trials/trials.shared.js +13 -0
  102. package/lib/src/services/autotune/usage/usage.class.d.ts +11 -0
  103. package/lib/src/services/autotune/usage/usage.d.ts +11 -0
  104. package/lib/src/services/autotune/usage/usage.schema.d.ts +1407 -0
  105. package/lib/src/services/autotune/usage/usage.shared.d.ts +13 -0
  106. package/lib/src/services/autotune/usage/usage.shared.js +13 -0
  107. package/lib/src/services/blog/actions/actions.class.d.ts +29 -0
  108. package/lib/src/services/blog/actions/actions.d.ts +10 -0
  109. package/lib/src/services/blog/actions/actions.shared.d.ts +13 -0
  110. package/lib/src/services/blog/actions/actions.shared.js +13 -0
  111. package/lib/src/services/blog/calendar/calendar.class.d.ts +11 -0
  112. package/lib/src/services/blog/calendar/calendar.d.ts +11 -0
  113. package/lib/src/services/blog/calendar/calendar.schema.d.ts +333 -0
  114. package/lib/src/services/blog/calendar/calendar.shared.d.ts +13 -0
  115. package/lib/src/services/blog/calendar/calendar.shared.js +13 -0
  116. package/lib/src/services/blog/integrations/integrations.class.d.ts +11 -0
  117. package/lib/src/services/blog/integrations/integrations.d.ts +11 -0
  118. package/lib/src/services/blog/integrations/integrations.schema.d.ts +391 -0
  119. package/lib/src/services/blog/integrations/integrations.shared.d.ts +13 -0
  120. package/lib/src/services/blog/integrations/integrations.shared.js +19 -0
  121. package/lib/src/services/blog/posts/posts.class.d.ts +11 -0
  122. package/lib/src/services/blog/posts/posts.d.ts +11 -0
  123. package/lib/src/services/blog/posts/posts.schema.d.ts +1295 -0
  124. package/lib/src/services/blog/posts/posts.shared.d.ts +13 -0
  125. package/lib/src/services/blog/posts/posts.shared.js +13 -0
  126. package/lib/src/services/blog/queries/queries.class.d.ts +11 -0
  127. package/lib/src/services/blog/queries/queries.d.ts +11 -0
  128. package/lib/src/services/blog/queries/queries.schema.d.ts +1187 -0
  129. package/lib/src/services/blog/queries/queries.shared.d.ts +13 -0
  130. package/lib/src/services/blog/queries/queries.shared.js +13 -0
  131. package/lib/src/services/blog/sitemaps/pages/pages.class.d.ts +11 -0
  132. package/lib/src/services/blog/sitemaps/pages/pages.d.ts +11 -0
  133. package/lib/src/services/blog/sitemaps/pages/pages.schema.d.ts +871 -0
  134. package/lib/src/services/blog/sitemaps/pages/pages.shared.d.ts +13 -0
  135. package/lib/src/services/blog/sitemaps/pages/pages.shared.js +13 -0
  136. package/lib/src/services/blog/sitemaps/sitemaps.class.d.ts +11 -0
  137. package/lib/src/services/blog/sitemaps/sitemaps.d.ts +11 -0
  138. package/lib/src/services/blog/sitemaps/sitemaps.schema.d.ts +770 -0
  139. package/lib/src/services/blog/sitemaps/sitemaps.shared.d.ts +13 -0
  140. package/lib/src/services/blog/sitemaps/sitemaps.shared.js +13 -0
  141. package/lib/src/services/blog/suggestions/suggestions.class.d.ts +11 -0
  142. package/lib/src/services/blog/suggestions/suggestions.d.ts +11 -0
  143. package/lib/src/services/blog/suggestions/suggestions.schema.d.ts +963 -0
  144. package/lib/src/services/blog/suggestions/suggestions.shared.d.ts +13 -0
  145. package/lib/src/services/blog/suggestions/suggestions.shared.js +13 -0
  146. package/lib/src/services/changelog/changelog.class.d.ts +34 -0
  147. package/lib/src/services/changelog/changelog.d.ts +11 -0
  148. package/lib/src/services/changelog/changelog.helper.d.ts +50 -0
  149. package/lib/src/services/changelog/changelog.schema.d.ts +456 -0
  150. package/lib/src/services/changelog/changelog.shared.d.ts +13 -0
  151. package/lib/src/services/changelog/changelog.shared.js +13 -0
  152. package/lib/src/services/changelog/hooks/parse-from-file.d.ts +8 -0
  153. package/lib/src/services/config/config.class.d.ts +2 -2
  154. package/lib/src/services/config/config.shared.d.ts +1 -1
  155. package/lib/src/services/copilot/concerns/concerns.class.d.ts +12 -0
  156. package/lib/src/services/copilot/concerns/concerns.d.ts +11 -0
  157. package/lib/src/services/copilot/concerns/concerns.schema.d.ts +727 -0
  158. package/lib/src/services/copilot/concerns/concerns.shared.d.ts +13 -0
  159. package/lib/src/services/copilot/concerns/concerns.shared.js +13 -0
  160. package/lib/src/services/copilot/decisions/decisions.class.d.ts +12 -0
  161. package/lib/src/services/copilot/decisions/decisions.d.ts +11 -0
  162. package/lib/src/services/copilot/decisions/decisions.schema.d.ts +728 -0
  163. package/lib/src/services/copilot/decisions/decisions.shared.d.ts +13 -0
  164. package/lib/src/services/copilot/decisions/decisions.shared.js +19 -0
  165. package/lib/src/services/copilot/help/help.class.d.ts +18 -0
  166. package/lib/src/services/copilot/help/help.d.ts +11 -0
  167. package/lib/src/services/copilot/help/help.schema.d.ts +237 -0
  168. package/lib/src/services/copilot/help/help.shared.d.ts +13 -0
  169. package/lib/src/services/copilot/help/help.shared.js +13 -0
  170. package/lib/src/services/copilot/recommendations/recommendations.class.d.ts +12 -0
  171. package/lib/src/services/copilot/recommendations/recommendations.d.ts +11 -0
  172. package/lib/src/services/copilot/recommendations/recommendations.schema.d.ts +949 -0
  173. package/lib/src/services/copilot/recommendations/recommendations.shared.d.ts +13 -0
  174. package/lib/src/services/copilot/recommendations/recommendations.shared.js +19 -0
  175. package/lib/src/services/currencies/currencies.class.d.ts +11 -0
  176. package/lib/src/services/currencies/currencies.d.ts +11 -0
  177. package/lib/src/services/currencies/currencies.schema.d.ts +769 -0
  178. package/lib/src/services/currencies/currencies.shared.d.ts +13 -0
  179. package/lib/src/services/currencies/currencies.shared.js +13 -0
  180. package/lib/src/services/custom/custom.shared.d.ts +1 -1
  181. package/lib/src/services/emails/emails.class.d.ts +11 -0
  182. package/lib/src/services/emails/emails.d.ts +11 -0
  183. package/lib/src/services/emails/emails.schema.d.ts +563 -0
  184. package/lib/src/services/emails/emails.shared.d.ts +13 -0
  185. package/lib/src/services/emails/emails.shared.js +13 -0
  186. package/lib/src/services/events/events.class.d.ts +3 -2
  187. package/lib/src/services/events/events.schema.d.ts +340 -340
  188. package/lib/src/services/events/events.shared.d.ts +1 -1
  189. package/lib/src/services/events/triggers/triggers.class.d.ts +3 -2
  190. package/lib/src/services/events/triggers/triggers.schema.d.ts +1022 -842
  191. package/lib/src/services/events/triggers/triggers.shared.d.ts +1 -1
  192. package/lib/src/services/events/types/types.class.d.ts +3 -2
  193. package/lib/src/services/events/types/types.schema.d.ts +350 -350
  194. package/lib/src/services/events/types/types.shared.d.ts +1 -1
  195. package/lib/src/services/exchanges/arb-signals/arb-signals.class.d.ts +29 -0
  196. package/lib/src/services/exchanges/arb-signals/arb-signals.d.ts +11 -0
  197. package/lib/src/services/exchanges/arb-signals/arb-signals.schema.d.ts +55 -0
  198. package/lib/src/services/exchanges/arb-signals/arb-signals.shared.d.ts +13 -0
  199. package/lib/src/services/exchanges/arb-signals/arb-signals.shared.js +13 -0
  200. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.class.d.ts +27 -0
  201. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.d.ts +11 -0
  202. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.schema.d.ts +148 -0
  203. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.shared.d.ts +13 -0
  204. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.shared.js +13 -0
  205. package/lib/src/services/exchanges/balance/balance.class.d.ts +3 -2
  206. package/lib/src/services/exchanges/balance/balance.schema.d.ts +141 -141
  207. package/lib/src/services/exchanges/balance/balance.shared.d.ts +1 -1
  208. package/lib/src/services/exchanges/deposits/deposits.class.d.ts +11 -0
  209. package/lib/src/services/exchanges/deposits/deposits.d.ts +11 -0
  210. package/lib/src/services/exchanges/deposits/deposits.schema.d.ts +905 -0
  211. package/lib/src/services/exchanges/deposits/deposits.shared.d.ts +13 -0
  212. package/lib/src/services/exchanges/deposits/deposits.shared.js +19 -0
  213. package/lib/src/services/exchanges/deposits/sync/sync.class.d.ts +11 -0
  214. package/lib/src/services/exchanges/deposits/sync/sync.d.ts +11 -0
  215. package/lib/src/services/exchanges/deposits/sync/sync.schema.d.ts +621 -0
  216. package/lib/src/services/exchanges/deposits/sync/sync.shared.d.ts +13 -0
  217. package/lib/src/services/exchanges/deposits/sync/sync.shared.js +19 -0
  218. package/lib/src/services/exchanges/download/download.class.d.ts +3 -2
  219. package/lib/src/services/exchanges/download/download.schema.d.ts +149 -149
  220. package/lib/src/services/exchanges/download/download.shared.d.ts +1 -1
  221. package/lib/src/services/exchanges/download/webhooks/webhooks.class.d.ts +2 -2
  222. package/lib/src/services/exchanges/download/webhooks/webhooks.schema.d.ts +171 -171
  223. package/lib/src/services/exchanges/download/webhooks/webhooks.shared.d.ts +1 -1
  224. package/lib/src/services/exchanges/exchanges.class.d.ts +3 -2
  225. package/lib/src/services/exchanges/exchanges.schema.d.ts +626 -359
  226. package/lib/src/services/exchanges/exchanges.shared.d.ts +1 -1
  227. package/lib/src/services/exchanges/ledger/ledger.class.d.ts +11 -0
  228. package/lib/src/services/exchanges/ledger/ledger.d.ts +11 -0
  229. package/lib/src/services/exchanges/ledger/ledger.schema.d.ts +1045 -0
  230. package/lib/src/services/exchanges/ledger/ledger.shared.d.ts +13 -0
  231. package/lib/src/services/exchanges/ledger/ledger.shared.js +13 -0
  232. package/lib/src/services/exchanges/ledger/sync/sync.class.d.ts +11 -0
  233. package/lib/src/services/exchanges/ledger/sync/sync.d.ts +11 -0
  234. package/lib/src/services/exchanges/ledger/sync/sync.schema.d.ts +621 -0
  235. package/lib/src/services/exchanges/ledger/sync/sync.shared.d.ts +13 -0
  236. package/lib/src/services/exchanges/ledger/sync/sync.shared.js +19 -0
  237. package/lib/src/services/exchanges/markets-stats/markets-stats.class.d.ts +23 -0
  238. package/lib/src/services/exchanges/markets-stats/markets-stats.d.ts +11 -0
  239. package/lib/src/services/exchanges/markets-stats/markets-stats.schema.d.ts +178 -0
  240. package/lib/src/services/exchanges/markets-stats/markets-stats.shared.d.ts +13 -0
  241. package/lib/src/services/exchanges/markets-stats/markets-stats.shared.js +13 -0
  242. package/lib/src/services/exchanges/ohlcv/history/history.class.d.ts +11 -0
  243. package/lib/src/services/exchanges/ohlcv/history/history.d.ts +11 -0
  244. package/lib/src/services/exchanges/ohlcv/history/history.schema.d.ts +473 -0
  245. package/lib/src/services/exchanges/ohlcv/history/history.shared.d.ts +13 -0
  246. package/lib/src/services/exchanges/ohlcv/history/history.shared.js +19 -0
  247. package/lib/src/services/exchanges/ohlcv/ohlcv.schema.d.ts +162 -162
  248. package/lib/src/services/exchanges/ohlcv/ohlcv.shared.d.ts +1 -1
  249. package/lib/src/services/exchanges/orderbook/orderbook.class.d.ts +30 -0
  250. package/lib/src/services/exchanges/orderbook/orderbook.d.ts +11 -0
  251. package/lib/src/services/exchanges/orderbook/orderbook.schema.d.ts +272 -0
  252. package/lib/src/services/exchanges/orderbook/orderbook.shared.d.ts +13 -0
  253. package/lib/src/services/exchanges/orderbook/orderbook.shared.js +13 -0
  254. package/lib/src/services/exchanges/ticker/ticker.class.d.ts +3 -2
  255. package/lib/src/services/exchanges/ticker/ticker.schema.d.ts +243 -243
  256. package/lib/src/services/exchanges/ticker/ticker.shared.d.ts +1 -1
  257. package/lib/src/services/exchanges/transactions/sync/sync.class.d.ts +11 -0
  258. package/lib/src/services/exchanges/transactions/sync/sync.d.ts +11 -0
  259. package/lib/src/services/exchanges/transactions/sync/sync.schema.d.ts +653 -0
  260. package/lib/src/services/exchanges/transactions/sync/sync.shared.d.ts +13 -0
  261. package/lib/src/services/exchanges/transactions/sync/sync.shared.js +19 -0
  262. package/lib/src/services/exchanges/transactions/transactions.class.d.ts +11 -0
  263. package/lib/src/services/exchanges/transactions/transactions.d.ts +11 -0
  264. package/lib/src/services/exchanges/transactions/transactions.schema.d.ts +1119 -0
  265. package/lib/src/services/exchanges/transactions/transactions.shared.d.ts +13 -0
  266. package/lib/src/services/exchanges/transactions/transactions.shared.js +19 -0
  267. package/lib/src/services/extensions/aggregate-extensions.hooks.d.ts +2 -0
  268. package/lib/src/services/extensions/extensions.class.d.ts +3 -2
  269. package/lib/src/services/extensions/extensions.schema.d.ts +641 -559
  270. package/lib/src/services/extensions/extensions.shared.d.ts +1 -1
  271. package/lib/src/services/homepage/homepage.schema.d.ts +17 -9
  272. package/lib/src/services/homepage/homepage.shared.d.ts +10 -2
  273. package/lib/src/services/homepage/homepage.shared.js +8 -1
  274. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.class.d.ts +52 -0
  275. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.d.ts +11 -0
  276. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.schema.d.ts +684 -0
  277. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.shared.d.ts +13 -0
  278. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.shared.js +14 -0
  279. package/lib/src/services/insights/etf-flow/etf-flow.class.d.ts +11 -0
  280. package/lib/src/services/insights/etf-flow/etf-flow.d.ts +11 -0
  281. package/lib/src/services/insights/etf-flow/etf-flow.schema.d.ts +237 -0
  282. package/lib/src/services/insights/etf-flow/etf-flow.shared.d.ts +13 -0
  283. package/lib/src/services/insights/etf-flow/etf-flow.shared.js +13 -0
  284. package/lib/src/services/insights/fear-and-greed/fear-and-greed.class.d.ts +11 -0
  285. package/lib/src/services/insights/fear-and-greed/fear-and-greed.d.ts +11 -0
  286. package/lib/src/services/insights/fear-and-greed/fear-and-greed.schema.d.ts +1831 -0
  287. package/lib/src/services/insights/fear-and-greed/fear-and-greed.shared.d.ts +13 -0
  288. package/lib/src/services/insights/fear-and-greed/fear-and-greed.shared.js +13 -0
  289. package/lib/src/services/insights/global/global.class.d.ts +11 -0
  290. package/lib/src/services/insights/global/global.d.ts +11 -0
  291. package/lib/src/services/insights/global/global.schema.d.ts +779 -0
  292. package/lib/src/services/insights/global/global.shared.d.ts +13 -0
  293. package/lib/src/services/insights/global/global.shared.js +13 -0
  294. package/lib/src/services/insights/insights.class.d.ts +11 -0
  295. package/lib/src/services/insights/insights.d.ts +11 -0
  296. package/lib/src/services/insights/insights.hooks.d.ts +20 -0
  297. package/lib/src/services/{tools/tools.schema.d.ts → insights/insights.schema.d.ts} +130 -162
  298. package/lib/src/services/insights/insights.shared.d.ts +13 -0
  299. package/lib/src/services/insights/insights.shared.js +13 -0
  300. package/lib/src/services/insights/news/news.class.d.ts +23 -0
  301. package/lib/src/services/insights/news/news.d.ts +11 -0
  302. package/lib/src/services/insights/news/news.schema.d.ts +857 -0
  303. package/lib/src/services/insights/news/news.shared.d.ts +23 -0
  304. package/lib/src/services/insights/news/news.shared.js +20 -0
  305. package/lib/src/services/keys/KeysService.d.ts +2 -2
  306. package/lib/src/services/keys/keys.class.d.ts +3 -2
  307. package/lib/src/services/keys/keys.schema.d.ts +364 -364
  308. package/lib/src/services/keys/keys.shared.d.ts +1 -1
  309. package/lib/src/services/knowledges/knowledges.class.d.ts +37 -0
  310. package/lib/src/services/knowledges/knowledges.d.ts +11 -0
  311. package/lib/src/services/knowledges/knowledges.schema.d.ts +566 -0
  312. package/lib/src/services/knowledges/knowledges.shared.d.ts +13 -0
  313. package/lib/src/services/knowledges/knowledges.shared.js +13 -0
  314. package/lib/src/services/mailer/mailer.shared.d.ts +1 -1
  315. package/lib/src/services/marketplaces/marketplaces.class.d.ts +2 -2
  316. package/lib/src/services/marketplaces/marketplaces.shared.d.ts +1 -1
  317. package/lib/src/services/markets/markets.class.d.ts +2 -2
  318. package/lib/src/services/markets/markets.schema.d.ts +112 -112
  319. package/lib/src/services/markets/markets.shared.d.ts +1 -1
  320. package/lib/src/services/messages/messages.class.d.ts +2 -2
  321. package/lib/src/services/messages/messages.schema.d.ts +1257 -353
  322. package/lib/src/services/messages/messages.shared.d.ts +1 -1
  323. package/lib/src/services/models/pods/events/events.class.d.ts +11 -0
  324. package/lib/src/services/models/pods/events/events.d.ts +11 -0
  325. package/lib/src/services/models/pods/events/events.schema.d.ts +669 -0
  326. package/lib/src/services/models/pods/events/events.shared.d.ts +13 -0
  327. package/lib/src/services/models/pods/events/events.shared.js +13 -0
  328. package/lib/src/services/models/pods/pods.class.d.ts +12 -0
  329. package/lib/src/services/models/pods/pods.d.ts +12 -0
  330. package/lib/src/services/models/pods/pods.schema.d.ts +1095 -0
  331. package/lib/src/services/models/pods/pods.shared.d.ts +13 -0
  332. package/lib/src/services/models/pods/pods.shared.js +13 -0
  333. package/lib/src/services/models/presets/presets-generate-and-queue.hooks.d.ts +2 -0
  334. package/lib/src/services/models/presets/presets-generate-freqai-config.hooks.d.ts +2 -0
  335. package/lib/src/services/models/presets/presets-generate-strategy.hooks.d.ts +2 -0
  336. package/lib/src/services/models/presets/presets-get-results.hooks.d.ts +2 -0
  337. package/lib/src/services/models/presets/presets-validate.hooks.d.ts +2 -0
  338. package/lib/src/services/models/presets/presets.class.d.ts +12 -0
  339. package/lib/src/services/models/presets/presets.d.ts +12 -0
  340. package/lib/src/services/models/presets/presets.schema.d.ts +2611 -0
  341. package/lib/src/services/models/presets/presets.shared.d.ts +13 -0
  342. package/lib/src/services/models/presets/presets.shared.js +13 -0
  343. package/lib/src/services/models/signals/history/history.class.d.ts +11 -0
  344. package/lib/src/services/models/signals/history/history.d.ts +11 -0
  345. package/lib/src/services/models/signals/history/history.schema.d.ts +513 -0
  346. package/lib/src/services/models/signals/history/history.shared.d.ts +13 -0
  347. package/lib/src/services/models/signals/history/history.shared.js +13 -0
  348. package/lib/src/services/models/signals/signals-proxy-router.d.ts +47 -0
  349. package/lib/src/services/models/signals/signals.class.d.ts +12 -0
  350. package/lib/src/services/models/signals/signals.d.ts +12 -0
  351. package/lib/src/services/models/signals/signals.schema.d.ts +976 -0
  352. package/lib/src/services/models/signals/signals.shared.d.ts +13 -0
  353. package/lib/src/services/models/signals/signals.shared.js +13 -0
  354. package/lib/src/services/models/signals/subscriptions/subscriptions.class.d.ts +11 -0
  355. package/lib/src/services/models/signals/subscriptions/subscriptions.d.ts +11 -0
  356. package/lib/src/services/models/signals/subscriptions/subscriptions.schema.d.ts +585 -0
  357. package/lib/src/services/models/signals/subscriptions/subscriptions.shared.d.ts +13 -0
  358. package/lib/src/services/models/signals/subscriptions/subscriptions.shared.js +15 -0
  359. package/lib/src/services/objectives/objectives.class.d.ts +11 -0
  360. package/lib/src/services/objectives/objectives.d.ts +11 -0
  361. package/lib/src/services/objectives/objectives.hooks.d.ts +12 -0
  362. package/lib/src/services/objectives/objectives.schema.d.ts +717 -0
  363. package/lib/src/services/objectives/objectives.shared.d.ts +13 -0
  364. package/lib/src/services/objectives/objectives.shared.js +13 -0
  365. package/lib/src/services/plans/plans.class.d.ts +20 -0
  366. package/lib/src/services/plans/plans.d.ts +11 -0
  367. package/lib/src/services/plans/plans.schema.d.ts +383 -0
  368. package/lib/src/services/plans/plans.shared.d.ts +13 -0
  369. package/lib/src/services/plans/plans.shared.js +13 -0
  370. package/lib/src/services/referrals/referrals.class.d.ts +11 -0
  371. package/lib/src/services/referrals/referrals.d.ts +11 -0
  372. package/lib/src/services/referrals/referrals.schema.d.ts +581 -0
  373. package/lib/src/services/referrals/referrals.shared.d.ts +13 -0
  374. package/lib/src/services/referrals/referrals.shared.js +13 -0
  375. package/lib/src/services/restricted/restricted.shared.d.ts +1 -1
  376. package/lib/src/services/security/events/security-events.class.d.ts +11 -0
  377. package/lib/src/services/security/events/security-events.d.ts +11 -0
  378. package/lib/src/services/security/events/security-events.schema.d.ts +499 -0
  379. package/lib/src/services/security/events/security-events.shared.d.ts +8 -0
  380. package/lib/src/services/security/events/security-events.shared.js +13 -0
  381. package/lib/src/services/series/balance/balance.class.d.ts +11 -0
  382. package/lib/src/services/series/balance/balance.d.ts +11 -0
  383. package/lib/src/services/series/balance/balance.schema.d.ts +527 -0
  384. package/lib/src/services/series/balance/balance.shared.d.ts +13 -0
  385. package/lib/src/services/series/balance/balance.shared.js +13 -0
  386. package/lib/src/services/series/performance/performance.class.d.ts +11 -0
  387. package/lib/src/services/series/performance/performance.d.ts +11 -0
  388. package/lib/src/services/series/performance/performance.schema.d.ts +495 -0
  389. package/lib/src/services/series/performance/performance.shared.d.ts +13 -0
  390. package/lib/src/services/series/performance/performance.shared.js +19 -0
  391. package/lib/src/services/series/performance/performance.usage.examples.d.ts +81 -0
  392. package/lib/src/services/snapshot/snapshot.class.d.ts +11 -0
  393. package/lib/src/services/snapshot/snapshot.d.ts +11 -0
  394. package/lib/src/services/snapshot/snapshot.schema.d.ts +11963 -0
  395. package/lib/src/services/snapshot/snapshot.shared.d.ts +13 -0
  396. package/lib/src/services/snapshot/snapshot.shared.js +14 -0
  397. package/lib/src/services/store/items/items.class.d.ts +12 -0
  398. package/lib/src/services/store/items/items.d.ts +11 -0
  399. package/lib/src/services/store/items/items.schema.d.ts +1395 -0
  400. package/lib/src/services/store/items/items.shared.d.ts +13 -0
  401. package/lib/src/services/store/items/items.shared.js +13 -0
  402. package/lib/src/services/strategies/ai/ai.class.d.ts +3 -2
  403. package/lib/src/services/strategies/ai/ai.schema.d.ts +33 -33
  404. package/lib/src/services/strategies/ai/ai.shared.d.ts +1 -1
  405. package/lib/src/services/strategies/ai/stream/stream.shared.d.ts +1 -1
  406. package/lib/src/services/strategies/backtest/backtest.class.d.ts +3 -2
  407. package/lib/src/services/strategies/backtest/backtest.schema.d.ts +820 -288
  408. package/lib/src/services/strategies/backtest/backtest.shared.d.ts +1 -1
  409. package/lib/src/services/strategies/backtest/preflight/preflight.class.d.ts +46 -0
  410. package/lib/src/services/strategies/backtest/preflight/preflight.d.ts +11 -0
  411. package/lib/src/services/strategies/backtest/preflight/preflight.schema.d.ts +737 -0
  412. package/lib/src/services/strategies/backtest/preflight/preflight.shared.d.ts +13 -0
  413. package/lib/src/services/strategies/backtest/preflight/preflight.shared.js +13 -0
  414. package/lib/src/services/strategies/backtest/results/results.class.d.ts +2 -2
  415. package/lib/src/services/strategies/backtest/results/results.schema.d.ts +315 -315
  416. package/lib/src/services/strategies/backtest/results/results.shared.d.ts +1 -1
  417. package/lib/src/services/strategies/blob/blob.shared.d.ts +1 -1
  418. package/lib/src/services/strategies/follow/follow.class.d.ts +12 -0
  419. package/lib/src/services/strategies/follow/follow.d.ts +11 -0
  420. package/lib/src/services/strategies/follow/follow.schema.d.ts +711 -0
  421. package/lib/src/services/strategies/follow/follow.shared.d.ts +13 -0
  422. package/lib/src/services/strategies/follow/follow.shared.js +19 -0
  423. package/lib/src/services/strategies/generate/generate.class.d.ts +3 -2
  424. package/lib/src/services/strategies/generate/generate.schema.d.ts +534 -88
  425. package/lib/src/services/strategies/generate/generate.shared.d.ts +1 -1
  426. package/lib/src/services/strategies/history/history.class.d.ts +11 -0
  427. package/lib/src/services/strategies/history/history.d.ts +11 -0
  428. package/lib/src/services/strategies/history/history.schema.d.ts +714 -0
  429. package/lib/src/services/strategies/history/history.shared.d.ts +13 -0
  430. package/lib/src/services/strategies/history/history.shared.js +19 -0
  431. package/lib/src/services/strategies/hyperopt/hyperopt-generate-and-queue.hooks.d.ts +2 -0
  432. package/lib/src/services/strategies/hyperopt/hyperopt-generate-config-in-disk.hooks.d.ts +2 -0
  433. package/lib/src/services/strategies/hyperopt/hyperopt-generate-exchange-config.hooks.d.ts +8 -0
  434. package/lib/src/services/strategies/hyperopt/hyperopt-get-results.hooks.d.ts +2 -0
  435. package/lib/src/services/strategies/hyperopt/hyperopt-in-disk-clone-strategy.hooks.d.ts +2 -0
  436. package/lib/src/services/strategies/hyperopt/hyperopt-populate-exchange.hooks.d.ts +7 -0
  437. package/lib/src/services/strategies/hyperopt/hyperopt-promote-template.hooks.d.ts +9 -0
  438. package/lib/src/services/strategies/hyperopt/hyperopt-propagate-results.hooks.d.ts +2 -0
  439. package/lib/src/services/strategies/hyperopt/hyperopt-validate-exchange-whitelist.hooks.d.ts +10 -0
  440. package/lib/src/services/strategies/hyperopt/hyperopt-validate-historical-data.hooks.d.ts +9 -0
  441. package/lib/src/services/strategies/hyperopt/hyperopt-validate-stake-balance.hooks.d.ts +7 -0
  442. package/lib/src/services/strategies/hyperopt/hyperopt-validate-stake-currency.hooks.d.ts +9 -0
  443. package/lib/src/services/strategies/hyperopt/hyperopt-validate.hooks.d.ts +7 -0
  444. package/lib/src/services/strategies/hyperopt/hyperopt-verify-subscription-limits.hooks.d.ts +6 -0
  445. package/lib/src/services/strategies/hyperopt/hyperopt.class.d.ts +3 -2
  446. package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +2552 -278
  447. package/lib/src/services/strategies/hyperopt/hyperopt.shared.d.ts +1 -1
  448. package/lib/src/services/strategies/indicators/indicators.class.d.ts +2 -2
  449. package/lib/src/services/strategies/indicators/indicators.schema.d.ts +106 -106
  450. package/lib/src/services/strategies/indicators/indicators.shared.d.ts +1 -1
  451. package/lib/src/services/strategies/indicators/talib/talib.class.d.ts +2 -2
  452. package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +102 -102
  453. package/lib/src/services/strategies/indicators/talib/talib.shared.d.ts +1 -1
  454. package/lib/src/services/strategies/research/research.class.d.ts +11 -0
  455. package/lib/src/services/strategies/research/research.d.ts +12 -0
  456. package/lib/src/services/strategies/research/research.schema.d.ts +1006 -0
  457. package/lib/src/services/strategies/research/research.shared.d.ts +13 -0
  458. package/lib/src/services/strategies/research/research.shared.js +19 -0
  459. package/lib/src/services/strategies/strategies.class.d.ts +3 -2
  460. package/lib/src/services/strategies/strategies.schema.d.ts +3694 -3322
  461. package/lib/src/services/strategies/strategies.shared.d.ts +1 -1
  462. package/lib/src/services/strategies/templates/templates.class.d.ts +2 -2
  463. package/lib/src/services/strategies/templates/templates.schema.d.ts +8062 -950
  464. package/lib/src/services/strategies/templates/templates.shared.d.ts +1 -1
  465. package/lib/src/services/stripe/charges/charges.shared.d.ts +1 -1
  466. package/lib/src/services/stripe/customers/cards/cards.shared.d.ts +1 -1
  467. package/lib/src/services/stripe/customers/customers.shared.d.ts +1 -1
  468. package/lib/src/services/stripe/customers/paymentintent/paymentintent.shared.d.ts +1 -1
  469. package/lib/src/services/stripe/customers/paymentmethods/paymentmethods.shared.d.ts +1 -1
  470. package/lib/src/services/stripe/customers/subscriptions/subscriptions.shared.d.ts +1 -1
  471. package/lib/src/services/stripe/products/products.shared.d.ts +1 -1
  472. package/lib/src/services/stripe/webhooks/webhooks.shared.d.ts +1 -1
  473. package/lib/src/services/support/support.class.d.ts +18 -0
  474. package/lib/src/services/support/support.d.ts +11 -0
  475. package/lib/src/services/support/support.schema.d.ts +507 -0
  476. package/lib/src/services/support/support.shared.d.ts +13 -0
  477. package/lib/src/services/support/support.shared.js +13 -0
  478. package/lib/src/services/tasks/comments/comments.class.d.ts +11 -0
  479. package/lib/src/services/tasks/comments/comments.d.ts +11 -0
  480. package/lib/src/services/tasks/comments/comments.schema.d.ts +771 -0
  481. package/lib/src/services/tasks/comments/comments.shared.d.ts +13 -0
  482. package/lib/src/services/tasks/comments/comments.shared.js +13 -0
  483. package/lib/src/services/tasks/tasks.class.d.ts +14 -0
  484. package/lib/src/services/tasks/tasks.d.ts +11 -0
  485. package/lib/src/services/tasks/tasks.hooks.d.ts +90 -0
  486. package/lib/src/services/tasks/tasks.schema.d.ts +1281 -0
  487. package/lib/src/services/tasks/tasks.shared.d.ts +13 -0
  488. package/lib/src/services/tasks/tasks.shared.js +13 -0
  489. package/lib/src/services/tax/research/research.class.d.ts +11 -0
  490. package/lib/src/services/tax/research/research.d.ts +11 -0
  491. package/lib/src/services/tax/research/research.schema.d.ts +237 -0
  492. package/lib/src/services/tax/research/research.shared.d.ts +13 -0
  493. package/lib/src/services/tax/research/research.shared.js +13 -0
  494. package/lib/src/services/tax/sessions/conversations/conversations.class.d.ts +12 -0
  495. package/lib/src/services/tax/sessions/conversations/conversations.d.ts +11 -0
  496. package/lib/src/services/tax/sessions/conversations/conversations.hooks.d.ts +11 -0
  497. package/lib/src/services/tax/sessions/conversations/conversations.schema.d.ts +2923 -0
  498. package/lib/src/services/tax/sessions/conversations/conversations.shared.d.ts +13 -0
  499. package/lib/src/services/tax/sessions/conversations/conversations.shared.js +13 -0
  500. package/lib/src/services/tax/sessions/conversations/invoke-tax-bedrock-agent.hooks.d.ts +2 -0
  501. package/lib/src/services/tax/sessions/create-tax-bedrock-session.hooks.d.ts +2 -0
  502. package/lib/src/services/tax/sessions/delete-tax-bedrock-session.hooks.d.ts +2 -0
  503. package/lib/src/services/tax/sessions/sessions.class.d.ts +12 -0
  504. package/lib/src/services/tax/sessions/sessions.d.ts +11 -0
  505. package/lib/src/services/tax/sessions/sessions.hooks.d.ts +11 -0
  506. package/lib/src/services/tax/sessions/sessions.schema.d.ts +803 -0
  507. package/lib/src/services/tax/sessions/sessions.shared.d.ts +13 -0
  508. package/lib/src/services/tax/sessions/sessions.shared.js +13 -0
  509. package/lib/src/services/tax/sessions/sync-tax-bedrock-sessions.hooks.d.ts +2 -0
  510. package/lib/src/services/tax/sessions/update-tax-bedrock-session.hooks.d.ts +2 -0
  511. package/lib/src/services/telegram/link/link.class.d.ts +26 -0
  512. package/lib/src/services/telegram/link/link.d.ts +11 -0
  513. package/lib/src/services/telegram/link/link.schema.d.ts +174 -0
  514. package/lib/src/services/telegram/link/link.shared.d.ts +13 -0
  515. package/lib/src/services/telegram/link/link.shared.js +13 -0
  516. package/lib/src/services/telegram/telegram.class.d.ts +34 -0
  517. package/lib/src/services/telegram/telegram.d.ts +11 -0
  518. package/lib/src/services/telegram/telegram.schema.d.ts +152 -0
  519. package/lib/src/services/telegram/telegram.shared.d.ts +13 -0
  520. package/lib/src/services/telegram/telegram.shared.js +13 -0
  521. package/lib/src/services/toggles/toggles.class.d.ts +19 -0
  522. package/lib/src/services/toggles/toggles.d.ts +11 -0
  523. package/lib/src/services/toggles/toggles.schema.d.ts +335 -0
  524. package/lib/src/services/toggles/toggles.shared.d.ts +13 -0
  525. package/lib/src/services/toggles/toggles.shared.js +13 -0
  526. package/lib/src/services/tokens/tokens.class.d.ts +11 -0
  527. package/lib/src/services/tokens/tokens.d.ts +11 -0
  528. package/lib/src/services/tokens/tokens.schema.d.ts +941 -0
  529. package/lib/src/services/tokens/tokens.shared.d.ts +13 -0
  530. package/lib/src/services/tokens/tokens.shared.js +13 -0
  531. package/lib/src/services/traders/pods/api/api.class.d.ts +3 -2
  532. package/lib/src/services/traders/pods/api/api.schema.d.ts +12055 -3967
  533. package/lib/src/services/traders/pods/api/api.shared.d.ts +1 -1
  534. package/lib/src/services/traders/pods/blob/blob.shared.d.ts +1 -1
  535. package/lib/src/services/traders/pods/events/events.class.d.ts +2 -2
  536. package/lib/src/services/traders/pods/events/events.schema.d.ts +388 -332
  537. package/lib/src/services/traders/pods/events/events.shared.d.ts +1 -1
  538. package/lib/src/services/traders/pods/pods.class.d.ts +3 -2
  539. package/lib/src/services/traders/pods/pods.schema.d.ts +9909 -2945
  540. package/lib/src/services/traders/pods/pods.shared.d.ts +1 -1
  541. package/lib/src/services/traders/pods/webhooks/webhooks.class.d.ts +2 -2
  542. package/lib/src/services/traders/pods/webhooks/webhooks.schema.d.ts +105 -105
  543. package/lib/src/services/traders/pods/webhooks/webhooks.shared.d.ts +1 -1
  544. package/lib/src/services/traders/traders.class.d.ts +4 -2
  545. package/lib/src/services/traders/traders.schema.d.ts +2923 -2450
  546. package/lib/src/services/traders/traders.shared.d.ts +1 -1
  547. package/lib/src/services/trades/trades.class.d.ts +11 -0
  548. package/lib/src/services/trades/trades.d.ts +11 -0
  549. package/lib/src/services/trades/trades.schema.d.ts +16969 -0
  550. package/lib/src/services/trades/trades.shared.d.ts +13 -0
  551. package/lib/src/services/trades/trades.shared.js +13 -0
  552. package/lib/src/services/users/access/access.class.d.ts +11 -0
  553. package/lib/src/services/users/access/access.d.ts +11 -0
  554. package/lib/src/services/users/access/access.schema.d.ts +393 -0
  555. package/lib/src/services/users/access/access.shared.d.ts +13 -0
  556. package/lib/src/services/users/access/access.shared.js +13 -0
  557. package/lib/src/services/users/cancel-subscription.class.d.ts +13 -0
  558. package/lib/src/services/users/cancel-subscription.d.ts +9 -0
  559. package/lib/src/services/users/marketing/campaigns/01-welcome.campaign.d.ts +3 -0
  560. package/lib/src/services/users/marketing/campaigns/02-first-bot-running.campaign.d.ts +3 -0
  561. package/lib/src/services/users/marketing/campaigns/03-ai-strategy.campaign.d.ts +3 -0
  562. package/lib/src/services/users/marketing/campaigns/04-hyperopt.campaign.d.ts +3 -0
  563. package/lib/src/services/users/marketing/campaigns/05-safety-tips.campaign.d.ts +3 -0
  564. package/lib/src/services/users/marketing/campaigns/06-humor.campaign.d.ts +3 -0
  565. package/lib/src/services/users/marketing/campaigns/07-paper-vs-real.campaign.d.ts +3 -0
  566. package/lib/src/services/users/marketing/campaigns/08-trial-summary.campaign.d.ts +3 -0
  567. package/lib/src/services/users/marketing/campaigns/09-trial-ending.campaign.d.ts +3 -0
  568. package/lib/src/services/users/marketing/campaigns/10-reactivation.campaign.d.ts +3 -0
  569. package/lib/src/services/users/marketing/campaigns/11-onboarding-incomplete.campaign.d.ts +6 -0
  570. package/lib/src/services/users/marketing/campaigns/index.d.ts +10 -0
  571. package/lib/src/services/users/marketing/campaigns/supervisor-welcome.campaign.d.ts +6 -0
  572. package/lib/src/services/users/marketing/campaigns/trial.context.d.ts +27 -0
  573. package/lib/src/services/users/marketing/marketing.class.d.ts +26 -0
  574. package/lib/src/services/users/marketing/marketing.d.ts +11 -0
  575. package/lib/src/services/users/marketing/marketing.engine.d.ts +36 -0
  576. package/lib/src/services/users/marketing/marketing.schema.d.ts +515 -0
  577. package/lib/src/services/users/marketing/marketing.shared.d.ts +13 -0
  578. package/lib/src/services/users/marketing/marketing.shared.js +20 -0
  579. package/lib/src/services/users/onboarding/onboarding.class.d.ts +11 -0
  580. package/lib/src/services/users/onboarding/onboarding.d.ts +11 -0
  581. package/lib/src/services/users/onboarding/onboarding.hooks.d.ts +60 -0
  582. package/lib/src/services/users/onboarding/onboarding.schema.d.ts +768 -0
  583. package/lib/src/services/users/onboarding/onboarding.shared.d.ts +13 -0
  584. package/lib/src/services/users/onboarding/onboarding.shared.js +13 -0
  585. package/lib/src/services/users/onboarding/steps/exchanges.processor.d.ts +15 -0
  586. package/lib/src/services/users/onboarding/steps/index.d.ts +32 -0
  587. package/lib/src/services/users/onboarding/steps/notifications.processor.d.ts +15 -0
  588. package/lib/src/services/users/onboarding/steps/preferences.processor.d.ts +16 -0
  589. package/lib/src/services/users/onboarding/steps/strategy.processor.d.ts +15 -0
  590. package/lib/src/services/users/onboarding/steps/traders.processor.d.ts +16 -0
  591. package/lib/src/services/users/reset-account.class.d.ts +11 -0
  592. package/lib/src/services/users/reset-account.d.ts +9 -0
  593. package/lib/src/services/users/sessions/sessions.class.d.ts +18 -0
  594. package/lib/src/services/users/sessions/sessions.d.ts +11 -0
  595. package/lib/src/services/users/sessions/sessions.schema.d.ts +698 -0
  596. package/lib/src/services/users/sessions/sessions.shared.d.ts +13 -0
  597. package/lib/src/services/users/sessions/sessions.shared.js +13 -0
  598. package/lib/src/services/users/setup-trial.class.d.ts +21 -0
  599. package/lib/src/services/users/setup-trial.d.ts +9 -0
  600. package/lib/src/services/users/stripe-check-subscription.hooks.d.ts +2 -0
  601. package/lib/src/services/users/stripe-create-payment-intent.hooks.d.ts +2 -0
  602. package/lib/src/services/users/stripe-is-subscription-active.hooks.d.ts +2 -0
  603. package/lib/src/services/users/stripe-sync-customer-data.hooks.d.ts +2 -0
  604. package/lib/src/services/users/users.class.d.ts +298 -59
  605. package/lib/src/services/users/users.schema.d.ts +1942 -350
  606. package/lib/src/services/users/users.shared.d.ts +2 -2
  607. package/lib/src/services/users/users.shared.js +1 -1
  608. package/lib/src/services/version/version.shared.d.ts +1 -1
  609. package/package.json +9 -3
  610. package/lib/src/services/tools/openapi/openapi.class.d.ts +0 -34
  611. package/lib/src/services/tools/openapi/openapi.d.ts +0 -10
  612. package/lib/src/services/tools/openapi/openapi.shared.d.ts +0 -13
  613. package/lib/src/services/tools/openapi/openapi.shared.js +0 -13
  614. package/lib/src/services/tools/tools.class.d.ts +0 -11
  615. package/lib/src/services/tools/tools.d.ts +0 -11
  616. package/lib/src/services/tools/tools.shared.d.ts +0 -13
  617. package/lib/src/services/tools/tools.shared.js +0 -13
@@ -0,0 +1,941 @@
1
+ import type { Static } from '@feathersjs/typebox';
2
+ import type { HookContext } from '../../declarations';
3
+ import type { TokensService } from './tokens.class';
4
+ export declare const tokensSchema: import("@feathersjs/typebox").TObject<{
5
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
7
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
8
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
9
+ model: import("@feathersjs/typebox").TString<string>;
10
+ inputTokens: import("@feathersjs/typebox").TNumber;
11
+ outputTokens: import("@feathersjs/typebox").TNumber;
12
+ totalTokens: import("@feathersjs/typebox").TNumber;
13
+ responseTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
14
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
15
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
16
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
17
+ }>;
18
+ export type Tokens = Static<typeof tokensSchema>;
19
+ export declare const tokensValidator: import("@feathersjs/schema").Validator<any, any>;
20
+ export declare const tokensResolver: import("@feathersjs/schema").Resolver<{
21
+ _id: string | {};
22
+ userId: string | {};
23
+ agentId?: string | undefined;
24
+ sessionId?: string | undefined;
25
+ model: string;
26
+ inputTokens: number;
27
+ outputTokens: number;
28
+ totalTokens: number;
29
+ responseTime?: number | undefined;
30
+ toolCalls?: number | undefined;
31
+ source?: string | undefined;
32
+ createdAt?: any;
33
+ }, HookContext<TokensService<import("./tokens.class").TokensParams>>>;
34
+ export declare const tokensExternalResolver: import("@feathersjs/schema").Resolver<{
35
+ _id: string | {};
36
+ userId: string | {};
37
+ agentId?: string | undefined;
38
+ sessionId?: string | undefined;
39
+ model: string;
40
+ inputTokens: number;
41
+ outputTokens: number;
42
+ totalTokens: number;
43
+ responseTime?: number | undefined;
44
+ toolCalls?: number | undefined;
45
+ source?: string | undefined;
46
+ createdAt?: any;
47
+ }, HookContext<TokensService<import("./tokens.class").TokensParams>>>;
48
+ export declare const tokensDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
49
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
50
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
51
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
52
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
53
+ model: import("@feathersjs/typebox").TString<string>;
54
+ inputTokens: import("@feathersjs/typebox").TNumber;
55
+ outputTokens: import("@feathersjs/typebox").TNumber;
56
+ totalTokens: import("@feathersjs/typebox").TNumber;
57
+ responseTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
58
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
59
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
60
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
61
+ }>, ["userId", "agentId", "sessionId", "model", "inputTokens", "outputTokens", "totalTokens", "responseTime", "toolCalls", "source", "createdAt"]>;
62
+ export type TokensData = Static<typeof tokensDataSchema>;
63
+ export declare const tokensDataValidator: import("@feathersjs/schema").Validator<any, any>;
64
+ export declare const tokensDataResolver: import("@feathersjs/schema").Resolver<{
65
+ _id: string | {};
66
+ userId: string | {};
67
+ agentId?: string | undefined;
68
+ sessionId?: string | undefined;
69
+ model: string;
70
+ inputTokens: number;
71
+ outputTokens: number;
72
+ totalTokens: number;
73
+ responseTime?: number | undefined;
74
+ toolCalls?: number | undefined;
75
+ source?: string | undefined;
76
+ createdAt?: any;
77
+ }, HookContext<TokensService<import("./tokens.class").TokensParams>>>;
78
+ export declare const tokensPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
79
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
80
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
81
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
82
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
83
+ model: import("@feathersjs/typebox").TString<string>;
84
+ inputTokens: import("@feathersjs/typebox").TNumber;
85
+ outputTokens: import("@feathersjs/typebox").TNumber;
86
+ totalTokens: import("@feathersjs/typebox").TNumber;
87
+ responseTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
88
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
89
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
90
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
91
+ }>>;
92
+ export type TokensPatch = Static<typeof tokensPatchSchema>;
93
+ export declare const tokensPatchValidator: import("@feathersjs/schema").Validator<any, any>;
94
+ export declare const tokensPatchResolver: import("@feathersjs/schema").Resolver<{
95
+ _id: string | {};
96
+ userId: string | {};
97
+ agentId?: string | undefined;
98
+ sessionId?: string | undefined;
99
+ model: string;
100
+ inputTokens: number;
101
+ outputTokens: number;
102
+ totalTokens: number;
103
+ responseTime?: number | undefined;
104
+ toolCalls?: number | undefined;
105
+ source?: string | undefined;
106
+ createdAt?: any;
107
+ }, HookContext<TokensService<import("./tokens.class").TokensParams>>>;
108
+ export declare const tokensQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
109
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
110
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
111
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
112
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
113
+ model: import("@feathersjs/typebox").TString<string>;
114
+ inputTokens: import("@feathersjs/typebox").TNumber;
115
+ outputTokens: import("@feathersjs/typebox").TNumber;
116
+ totalTokens: import("@feathersjs/typebox").TNumber;
117
+ responseTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
118
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
119
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
120
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
121
+ }>, ["_id", "userId", "agentId", "sessionId", "model", "inputTokens", "outputTokens", "totalTokens", "source", "createdAt"]>;
122
+ export declare const tokensQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
123
+ $limit: import("@feathersjs/typebox").TNumber;
124
+ $skip: import("@feathersjs/typebox").TNumber;
125
+ $sort: import("@feathersjs/typebox").TObject<{
126
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
127
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
128
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
129
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
130
+ model: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
131
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
132
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
133
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
134
+ totalTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
135
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
136
+ }>;
137
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "agentId" | "createdAt" | "inputTokens" | "model" | "outputTokens" | "sessionId" | "source" | "totalTokens" | "userId")[]>;
138
+ $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
139
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
140
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
141
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
142
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
143
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
144
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
145
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
146
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
147
+ }>, import("@feathersjs/typebox").TObject<{
148
+ [key: string]: import("@feathersjs/typebox").TSchema;
149
+ } | undefined>]>>]>>;
150
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
151
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
152
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
153
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
154
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
155
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
156
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
157
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
158
+ }>, import("@feathersjs/typebox").TObject<{
159
+ [key: string]: import("@feathersjs/typebox").TSchema;
160
+ } | undefined>]>>]>>;
161
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
162
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
163
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
164
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
165
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
166
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
167
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
168
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
169
+ }>, import("@feathersjs/typebox").TObject<{
170
+ [key: string]: import("@feathersjs/typebox").TSchema;
171
+ } | undefined>]>>]>>;
172
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
173
+ $gt: import("@feathersjs/typebox").TNumber;
174
+ $gte: import("@feathersjs/typebox").TNumber;
175
+ $lt: import("@feathersjs/typebox").TNumber;
176
+ $lte: import("@feathersjs/typebox").TNumber;
177
+ $ne: import("@feathersjs/typebox").TNumber;
178
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
179
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
180
+ }>, import("@feathersjs/typebox").TObject<{
181
+ [key: string]: import("@feathersjs/typebox").TSchema;
182
+ } | undefined>]>>]>>;
183
+ model: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
184
+ $gt: import("@feathersjs/typebox").TString<string>;
185
+ $gte: import("@feathersjs/typebox").TString<string>;
186
+ $lt: import("@feathersjs/typebox").TString<string>;
187
+ $lte: import("@feathersjs/typebox").TString<string>;
188
+ $ne: import("@feathersjs/typebox").TString<string>;
189
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
190
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
191
+ }>, import("@feathersjs/typebox").TObject<{
192
+ [key: string]: import("@feathersjs/typebox").TSchema;
193
+ } | undefined>]>>]>>;
194
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
195
+ $gt: import("@feathersjs/typebox").TNumber;
196
+ $gte: import("@feathersjs/typebox").TNumber;
197
+ $lt: import("@feathersjs/typebox").TNumber;
198
+ $lte: import("@feathersjs/typebox").TNumber;
199
+ $ne: import("@feathersjs/typebox").TNumber;
200
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
201
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
202
+ }>, import("@feathersjs/typebox").TObject<{
203
+ [key: string]: import("@feathersjs/typebox").TSchema;
204
+ } | undefined>]>>]>>;
205
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
206
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
207
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
208
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
209
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
210
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
211
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
212
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
213
+ }>, import("@feathersjs/typebox").TObject<{
214
+ [key: string]: import("@feathersjs/typebox").TSchema;
215
+ } | undefined>]>>]>>;
216
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
217
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
218
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
219
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
220
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
221
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
222
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
223
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
224
+ }>, import("@feathersjs/typebox").TObject<{
225
+ [key: string]: import("@feathersjs/typebox").TSchema;
226
+ } | undefined>]>>]>>;
227
+ totalTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
228
+ $gt: import("@feathersjs/typebox").TNumber;
229
+ $gte: import("@feathersjs/typebox").TNumber;
230
+ $lt: import("@feathersjs/typebox").TNumber;
231
+ $lte: import("@feathersjs/typebox").TNumber;
232
+ $ne: import("@feathersjs/typebox").TNumber;
233
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
234
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
235
+ }>, import("@feathersjs/typebox").TObject<{
236
+ [key: string]: import("@feathersjs/typebox").TSchema;
237
+ } | undefined>]>>]>>;
238
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
239
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
240
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
241
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
242
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
243
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
244
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
245
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
246
+ }>, import("@feathersjs/typebox").TObject<{
247
+ [key: string]: import("@feathersjs/typebox").TSchema;
248
+ } | undefined>]>>]>>;
249
+ }>>, import("@feathersjs/typebox").TObject<{
250
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
251
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
252
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
253
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
254
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
255
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
256
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
257
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
258
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
259
+ }>, import("@feathersjs/typebox").TObject<{
260
+ [key: string]: import("@feathersjs/typebox").TSchema;
261
+ } | undefined>]>>]>>;
262
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
263
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
264
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
265
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
266
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
267
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
268
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
269
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
270
+ }>, import("@feathersjs/typebox").TObject<{
271
+ [key: string]: import("@feathersjs/typebox").TSchema;
272
+ } | undefined>]>>]>>;
273
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
274
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
275
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
276
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
277
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
278
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
279
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
280
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
281
+ }>, import("@feathersjs/typebox").TObject<{
282
+ [key: string]: import("@feathersjs/typebox").TSchema;
283
+ } | undefined>]>>]>>;
284
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
285
+ $gt: import("@feathersjs/typebox").TNumber;
286
+ $gte: import("@feathersjs/typebox").TNumber;
287
+ $lt: import("@feathersjs/typebox").TNumber;
288
+ $lte: import("@feathersjs/typebox").TNumber;
289
+ $ne: import("@feathersjs/typebox").TNumber;
290
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
291
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
292
+ }>, import("@feathersjs/typebox").TObject<{
293
+ [key: string]: import("@feathersjs/typebox").TSchema;
294
+ } | undefined>]>>]>>;
295
+ model: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
296
+ $gt: import("@feathersjs/typebox").TString<string>;
297
+ $gte: import("@feathersjs/typebox").TString<string>;
298
+ $lt: import("@feathersjs/typebox").TString<string>;
299
+ $lte: import("@feathersjs/typebox").TString<string>;
300
+ $ne: import("@feathersjs/typebox").TString<string>;
301
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
302
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
303
+ }>, import("@feathersjs/typebox").TObject<{
304
+ [key: string]: import("@feathersjs/typebox").TSchema;
305
+ } | undefined>]>>]>>;
306
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
307
+ $gt: import("@feathersjs/typebox").TNumber;
308
+ $gte: import("@feathersjs/typebox").TNumber;
309
+ $lt: import("@feathersjs/typebox").TNumber;
310
+ $lte: import("@feathersjs/typebox").TNumber;
311
+ $ne: import("@feathersjs/typebox").TNumber;
312
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
313
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
314
+ }>, import("@feathersjs/typebox").TObject<{
315
+ [key: string]: import("@feathersjs/typebox").TSchema;
316
+ } | undefined>]>>]>>;
317
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
318
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
319
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
320
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
321
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
322
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
323
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
324
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
325
+ }>, import("@feathersjs/typebox").TObject<{
326
+ [key: string]: import("@feathersjs/typebox").TSchema;
327
+ } | undefined>]>>]>>;
328
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
329
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
330
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
331
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
332
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
333
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
334
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
335
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
336
+ }>, import("@feathersjs/typebox").TObject<{
337
+ [key: string]: import("@feathersjs/typebox").TSchema;
338
+ } | undefined>]>>]>>;
339
+ totalTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
340
+ $gt: import("@feathersjs/typebox").TNumber;
341
+ $gte: import("@feathersjs/typebox").TNumber;
342
+ $lt: import("@feathersjs/typebox").TNumber;
343
+ $lte: import("@feathersjs/typebox").TNumber;
344
+ $ne: import("@feathersjs/typebox").TNumber;
345
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
346
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
347
+ }>, import("@feathersjs/typebox").TObject<{
348
+ [key: string]: import("@feathersjs/typebox").TSchema;
349
+ } | undefined>]>>]>>;
350
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
351
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
352
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
353
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
354
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
355
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
356
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
357
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
358
+ }>, import("@feathersjs/typebox").TObject<{
359
+ [key: string]: import("@feathersjs/typebox").TSchema;
360
+ } | undefined>]>>]>>;
361
+ }>>>;
362
+ }>]>>;
363
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
364
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
365
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
366
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
367
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
368
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
369
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
370
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
371
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
372
+ }>, import("@feathersjs/typebox").TObject<{
373
+ [key: string]: import("@feathersjs/typebox").TSchema;
374
+ } | undefined>]>>]>>;
375
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
376
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
377
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
378
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
379
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
380
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
381
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
382
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
383
+ }>, import("@feathersjs/typebox").TObject<{
384
+ [key: string]: import("@feathersjs/typebox").TSchema;
385
+ } | undefined>]>>]>>;
386
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
387
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
388
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
389
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
390
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
391
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
392
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
393
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
394
+ }>, import("@feathersjs/typebox").TObject<{
395
+ [key: string]: import("@feathersjs/typebox").TSchema;
396
+ } | undefined>]>>]>>;
397
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
398
+ $gt: import("@feathersjs/typebox").TNumber;
399
+ $gte: import("@feathersjs/typebox").TNumber;
400
+ $lt: import("@feathersjs/typebox").TNumber;
401
+ $lte: import("@feathersjs/typebox").TNumber;
402
+ $ne: import("@feathersjs/typebox").TNumber;
403
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
404
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
405
+ }>, import("@feathersjs/typebox").TObject<{
406
+ [key: string]: import("@feathersjs/typebox").TSchema;
407
+ } | undefined>]>>]>>;
408
+ model: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
409
+ $gt: import("@feathersjs/typebox").TString<string>;
410
+ $gte: import("@feathersjs/typebox").TString<string>;
411
+ $lt: import("@feathersjs/typebox").TString<string>;
412
+ $lte: import("@feathersjs/typebox").TString<string>;
413
+ $ne: import("@feathersjs/typebox").TString<string>;
414
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
415
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
416
+ }>, import("@feathersjs/typebox").TObject<{
417
+ [key: string]: import("@feathersjs/typebox").TSchema;
418
+ } | undefined>]>>]>>;
419
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
420
+ $gt: import("@feathersjs/typebox").TNumber;
421
+ $gte: import("@feathersjs/typebox").TNumber;
422
+ $lt: import("@feathersjs/typebox").TNumber;
423
+ $lte: import("@feathersjs/typebox").TNumber;
424
+ $ne: import("@feathersjs/typebox").TNumber;
425
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
426
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
427
+ }>, import("@feathersjs/typebox").TObject<{
428
+ [key: string]: import("@feathersjs/typebox").TSchema;
429
+ } | undefined>]>>]>>;
430
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
431
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
432
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
433
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
434
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
435
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
436
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
437
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
438
+ }>, import("@feathersjs/typebox").TObject<{
439
+ [key: string]: import("@feathersjs/typebox").TSchema;
440
+ } | undefined>]>>]>>;
441
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
442
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
443
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
444
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
445
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
446
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
447
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
448
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
449
+ }>, import("@feathersjs/typebox").TObject<{
450
+ [key: string]: import("@feathersjs/typebox").TSchema;
451
+ } | undefined>]>>]>>;
452
+ totalTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
453
+ $gt: import("@feathersjs/typebox").TNumber;
454
+ $gte: import("@feathersjs/typebox").TNumber;
455
+ $lt: import("@feathersjs/typebox").TNumber;
456
+ $lte: import("@feathersjs/typebox").TNumber;
457
+ $ne: import("@feathersjs/typebox").TNumber;
458
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
459
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
460
+ }>, import("@feathersjs/typebox").TObject<{
461
+ [key: string]: import("@feathersjs/typebox").TSchema;
462
+ } | undefined>]>>]>>;
463
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
464
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
465
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
466
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
467
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
468
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
469
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
470
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
471
+ }>, import("@feathersjs/typebox").TObject<{
472
+ [key: string]: import("@feathersjs/typebox").TSchema;
473
+ } | undefined>]>>]>>;
474
+ }>>>;
475
+ }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
476
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
477
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
478
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
479
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
480
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
481
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
482
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
483
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
484
+ }>, import("@feathersjs/typebox").TObject<{
485
+ [key: string]: import("@feathersjs/typebox").TSchema;
486
+ } | undefined>]>>]>>;
487
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
488
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
489
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
490
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
491
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
492
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
493
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
494
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
495
+ }>, import("@feathersjs/typebox").TObject<{
496
+ [key: string]: import("@feathersjs/typebox").TSchema;
497
+ } | undefined>]>>]>>;
498
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
499
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
500
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
501
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
502
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
503
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
504
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
505
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
506
+ }>, import("@feathersjs/typebox").TObject<{
507
+ [key: string]: import("@feathersjs/typebox").TSchema;
508
+ } | undefined>]>>]>>;
509
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
510
+ $gt: import("@feathersjs/typebox").TNumber;
511
+ $gte: import("@feathersjs/typebox").TNumber;
512
+ $lt: import("@feathersjs/typebox").TNumber;
513
+ $lte: import("@feathersjs/typebox").TNumber;
514
+ $ne: import("@feathersjs/typebox").TNumber;
515
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
516
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
517
+ }>, import("@feathersjs/typebox").TObject<{
518
+ [key: string]: import("@feathersjs/typebox").TSchema;
519
+ } | undefined>]>>]>>;
520
+ model: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
521
+ $gt: import("@feathersjs/typebox").TString<string>;
522
+ $gte: import("@feathersjs/typebox").TString<string>;
523
+ $lt: import("@feathersjs/typebox").TString<string>;
524
+ $lte: import("@feathersjs/typebox").TString<string>;
525
+ $ne: import("@feathersjs/typebox").TString<string>;
526
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
527
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
528
+ }>, import("@feathersjs/typebox").TObject<{
529
+ [key: string]: import("@feathersjs/typebox").TSchema;
530
+ } | undefined>]>>]>>;
531
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
532
+ $gt: import("@feathersjs/typebox").TNumber;
533
+ $gte: import("@feathersjs/typebox").TNumber;
534
+ $lt: import("@feathersjs/typebox").TNumber;
535
+ $lte: import("@feathersjs/typebox").TNumber;
536
+ $ne: import("@feathersjs/typebox").TNumber;
537
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
538
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
539
+ }>, import("@feathersjs/typebox").TObject<{
540
+ [key: string]: import("@feathersjs/typebox").TSchema;
541
+ } | undefined>]>>]>>;
542
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
543
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
544
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
545
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
546
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
547
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
548
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
549
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
550
+ }>, import("@feathersjs/typebox").TObject<{
551
+ [key: string]: import("@feathersjs/typebox").TSchema;
552
+ } | undefined>]>>]>>;
553
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
554
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
555
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
556
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
557
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
558
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
559
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
560
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
561
+ }>, import("@feathersjs/typebox").TObject<{
562
+ [key: string]: import("@feathersjs/typebox").TSchema;
563
+ } | undefined>]>>]>>;
564
+ totalTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
565
+ $gt: import("@feathersjs/typebox").TNumber;
566
+ $gte: import("@feathersjs/typebox").TNumber;
567
+ $lt: import("@feathersjs/typebox").TNumber;
568
+ $lte: import("@feathersjs/typebox").TNumber;
569
+ $ne: import("@feathersjs/typebox").TNumber;
570
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
571
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
572
+ }>, import("@feathersjs/typebox").TObject<{
573
+ [key: string]: import("@feathersjs/typebox").TSchema;
574
+ } | undefined>]>>]>>;
575
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
576
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
577
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
578
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
579
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
580
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
581
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
582
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
583
+ }>, import("@feathersjs/typebox").TObject<{
584
+ [key: string]: import("@feathersjs/typebox").TSchema;
585
+ } | undefined>]>>]>>;
586
+ }>>]>, import("@feathersjs/typebox").TObject<{}>]>;
587
+ export type TokensQuery = Static<typeof tokensQuerySchema>;
588
+ export declare const tokensQueryValidator: import("@feathersjs/schema").Validator<any, any>;
589
+ export declare const tokensQueryResolver: import("@feathersjs/schema").Resolver<Partial<{
590
+ $limit: number;
591
+ $skip: number;
592
+ $sort: {
593
+ _id?: number | undefined;
594
+ agentId?: number | undefined;
595
+ createdAt?: number | undefined;
596
+ inputTokens?: number | undefined;
597
+ model?: number | undefined;
598
+ outputTokens?: number | undefined;
599
+ sessionId?: number | undefined;
600
+ source?: number | undefined;
601
+ totalTokens?: number | undefined;
602
+ userId?: number | undefined;
603
+ };
604
+ $select: ("_id" | "agentId" | "createdAt" | "inputTokens" | "model" | "outputTokens" | "sessionId" | "source" | "totalTokens" | "userId")[];
605
+ $and: ({
606
+ _id?: string | Partial<{
607
+ $gt: string | {};
608
+ $gte: string | {};
609
+ $lt: string | {};
610
+ $lte: string | {};
611
+ $ne: string | {};
612
+ $in: string | (string | {})[] | {};
613
+ $nin: string | (string | {})[] | {};
614
+ } & {}> | {} | undefined;
615
+ agentId?: string | Partial<{
616
+ $gt?: string | undefined;
617
+ $gte?: string | undefined;
618
+ $lt?: string | undefined;
619
+ $lte?: string | undefined;
620
+ $ne?: string | undefined;
621
+ $in: string | string[];
622
+ $nin: string | string[];
623
+ } & {}> | undefined;
624
+ createdAt?: any;
625
+ inputTokens?: number | Partial<{
626
+ $gt: number;
627
+ $gte: number;
628
+ $lt: number;
629
+ $lte: number;
630
+ $ne: number;
631
+ $in: number | number[];
632
+ $nin: number | number[];
633
+ } & {}> | undefined;
634
+ model?: string | Partial<{
635
+ $gt: string;
636
+ $gte: string;
637
+ $lt: string;
638
+ $lte: string;
639
+ $ne: string;
640
+ $in: string | string[];
641
+ $nin: string | string[];
642
+ } & {}> | undefined;
643
+ outputTokens?: number | Partial<{
644
+ $gt: number;
645
+ $gte: number;
646
+ $lt: number;
647
+ $lte: number;
648
+ $ne: number;
649
+ $in: number | number[];
650
+ $nin: number | number[];
651
+ } & {}> | undefined;
652
+ sessionId?: string | Partial<{
653
+ $gt?: string | undefined;
654
+ $gte?: string | undefined;
655
+ $lt?: string | undefined;
656
+ $lte?: string | undefined;
657
+ $ne?: string | undefined;
658
+ $in: string | string[];
659
+ $nin: string | string[];
660
+ } & {}> | undefined;
661
+ source?: string | Partial<{
662
+ $gt?: string | undefined;
663
+ $gte?: string | undefined;
664
+ $lt?: string | undefined;
665
+ $lte?: string | undefined;
666
+ $ne?: string | undefined;
667
+ $in: string | string[];
668
+ $nin: string | string[];
669
+ } & {}> | undefined;
670
+ totalTokens?: number | Partial<{
671
+ $gt: number;
672
+ $gte: number;
673
+ $lt: number;
674
+ $lte: number;
675
+ $ne: number;
676
+ $in: number | number[];
677
+ $nin: number | number[];
678
+ } & {}> | undefined;
679
+ userId?: string | Partial<{
680
+ $gt: string | {};
681
+ $gte: string | {};
682
+ $lt: string | {};
683
+ $lte: string | {};
684
+ $ne: string | {};
685
+ $in: string | (string | {})[] | {};
686
+ $nin: string | (string | {})[] | {};
687
+ } & {}> | {} | undefined;
688
+ } | {
689
+ $or: {
690
+ _id?: string | Partial<{
691
+ $gt: string | {};
692
+ $gte: string | {};
693
+ $lt: string | {};
694
+ $lte: string | {};
695
+ $ne: string | {};
696
+ $in: string | (string | {})[] | {};
697
+ $nin: string | (string | {})[] | {};
698
+ } & {}> | {} | undefined;
699
+ agentId?: string | Partial<{
700
+ $gt?: string | undefined;
701
+ $gte?: string | undefined;
702
+ $lt?: string | undefined;
703
+ $lte?: string | undefined;
704
+ $ne?: string | undefined;
705
+ $in: string | string[];
706
+ $nin: string | string[];
707
+ } & {}> | undefined;
708
+ createdAt?: any;
709
+ inputTokens?: number | Partial<{
710
+ $gt: number;
711
+ $gte: number;
712
+ $lt: number;
713
+ $lte: number;
714
+ $ne: number;
715
+ $in: number | number[];
716
+ $nin: number | number[];
717
+ } & {}> | undefined;
718
+ model?: string | Partial<{
719
+ $gt: string;
720
+ $gte: string;
721
+ $lt: string;
722
+ $lte: string;
723
+ $ne: string;
724
+ $in: string | string[];
725
+ $nin: string | string[];
726
+ } & {}> | undefined;
727
+ outputTokens?: number | Partial<{
728
+ $gt: number;
729
+ $gte: number;
730
+ $lt: number;
731
+ $lte: number;
732
+ $ne: number;
733
+ $in: number | number[];
734
+ $nin: number | number[];
735
+ } & {}> | undefined;
736
+ sessionId?: string | Partial<{
737
+ $gt?: string | undefined;
738
+ $gte?: string | undefined;
739
+ $lt?: string | undefined;
740
+ $lte?: string | undefined;
741
+ $ne?: string | undefined;
742
+ $in: string | string[];
743
+ $nin: string | string[];
744
+ } & {}> | undefined;
745
+ source?: string | Partial<{
746
+ $gt?: string | undefined;
747
+ $gte?: string | undefined;
748
+ $lt?: string | undefined;
749
+ $lte?: string | undefined;
750
+ $ne?: string | undefined;
751
+ $in: string | string[];
752
+ $nin: string | string[];
753
+ } & {}> | undefined;
754
+ totalTokens?: number | Partial<{
755
+ $gt: number;
756
+ $gte: number;
757
+ $lt: number;
758
+ $lte: number;
759
+ $ne: number;
760
+ $in: number | number[];
761
+ $nin: number | number[];
762
+ } & {}> | undefined;
763
+ userId?: string | Partial<{
764
+ $gt: string | {};
765
+ $gte: string | {};
766
+ $lt: string | {};
767
+ $lte: string | {};
768
+ $ne: string | {};
769
+ $in: string | (string | {})[] | {};
770
+ $nin: string | (string | {})[] | {};
771
+ } & {}> | {} | undefined;
772
+ }[];
773
+ })[];
774
+ $or: {
775
+ _id?: string | Partial<{
776
+ $gt: string | {};
777
+ $gte: string | {};
778
+ $lt: string | {};
779
+ $lte: string | {};
780
+ $ne: string | {};
781
+ $in: string | (string | {})[] | {};
782
+ $nin: string | (string | {})[] | {};
783
+ } & {}> | {} | undefined;
784
+ agentId?: string | Partial<{
785
+ $gt?: string | undefined;
786
+ $gte?: string | undefined;
787
+ $lt?: string | undefined;
788
+ $lte?: string | undefined;
789
+ $ne?: string | undefined;
790
+ $in: string | string[];
791
+ $nin: string | string[];
792
+ } & {}> | undefined;
793
+ createdAt?: any;
794
+ inputTokens?: number | Partial<{
795
+ $gt: number;
796
+ $gte: number;
797
+ $lt: number;
798
+ $lte: number;
799
+ $ne: number;
800
+ $in: number | number[];
801
+ $nin: number | number[];
802
+ } & {}> | undefined;
803
+ model?: string | Partial<{
804
+ $gt: string;
805
+ $gte: string;
806
+ $lt: string;
807
+ $lte: string;
808
+ $ne: string;
809
+ $in: string | string[];
810
+ $nin: string | string[];
811
+ } & {}> | undefined;
812
+ outputTokens?: number | Partial<{
813
+ $gt: number;
814
+ $gte: number;
815
+ $lt: number;
816
+ $lte: number;
817
+ $ne: number;
818
+ $in: number | number[];
819
+ $nin: number | number[];
820
+ } & {}> | undefined;
821
+ sessionId?: string | Partial<{
822
+ $gt?: string | undefined;
823
+ $gte?: string | undefined;
824
+ $lt?: string | undefined;
825
+ $lte?: string | undefined;
826
+ $ne?: string | undefined;
827
+ $in: string | string[];
828
+ $nin: string | string[];
829
+ } & {}> | undefined;
830
+ source?: string | Partial<{
831
+ $gt?: string | undefined;
832
+ $gte?: string | undefined;
833
+ $lt?: string | undefined;
834
+ $lte?: string | undefined;
835
+ $ne?: string | undefined;
836
+ $in: string | string[];
837
+ $nin: string | string[];
838
+ } & {}> | undefined;
839
+ totalTokens?: number | Partial<{
840
+ $gt: number;
841
+ $gte: number;
842
+ $lt: number;
843
+ $lte: number;
844
+ $ne: number;
845
+ $in: number | number[];
846
+ $nin: number | number[];
847
+ } & {}> | undefined;
848
+ userId?: string | Partial<{
849
+ $gt: string | {};
850
+ $gte: string | {};
851
+ $lt: string | {};
852
+ $lte: string | {};
853
+ $ne: string | {};
854
+ $in: string | (string | {})[] | {};
855
+ $nin: string | (string | {})[] | {};
856
+ } & {}> | {} | undefined;
857
+ }[];
858
+ }> & {
859
+ _id?: string | Partial<{
860
+ $gt: string | {};
861
+ $gte: string | {};
862
+ $lt: string | {};
863
+ $lte: string | {};
864
+ $ne: string | {};
865
+ $in: string | (string | {})[] | {};
866
+ $nin: string | (string | {})[] | {};
867
+ } & {}> | {} | undefined;
868
+ agentId?: string | Partial<{
869
+ $gt?: string | undefined;
870
+ $gte?: string | undefined;
871
+ $lt?: string | undefined;
872
+ $lte?: string | undefined;
873
+ $ne?: string | undefined;
874
+ $in: string | string[];
875
+ $nin: string | string[];
876
+ } & {}> | undefined;
877
+ createdAt?: any;
878
+ inputTokens?: number | Partial<{
879
+ $gt: number;
880
+ $gte: number;
881
+ $lt: number;
882
+ $lte: number;
883
+ $ne: number;
884
+ $in: number | number[];
885
+ $nin: number | number[];
886
+ } & {}> | undefined;
887
+ model?: string | Partial<{
888
+ $gt: string;
889
+ $gte: string;
890
+ $lt: string;
891
+ $lte: string;
892
+ $ne: string;
893
+ $in: string | string[];
894
+ $nin: string | string[];
895
+ } & {}> | undefined;
896
+ outputTokens?: number | Partial<{
897
+ $gt: number;
898
+ $gte: number;
899
+ $lt: number;
900
+ $lte: number;
901
+ $ne: number;
902
+ $in: number | number[];
903
+ $nin: number | number[];
904
+ } & {}> | undefined;
905
+ sessionId?: string | Partial<{
906
+ $gt?: string | undefined;
907
+ $gte?: string | undefined;
908
+ $lt?: string | undefined;
909
+ $lte?: string | undefined;
910
+ $ne?: string | undefined;
911
+ $in: string | string[];
912
+ $nin: string | string[];
913
+ } & {}> | undefined;
914
+ source?: string | Partial<{
915
+ $gt?: string | undefined;
916
+ $gte?: string | undefined;
917
+ $lt?: string | undefined;
918
+ $lte?: string | undefined;
919
+ $ne?: string | undefined;
920
+ $in: string | string[];
921
+ $nin: string | string[];
922
+ } & {}> | undefined;
923
+ totalTokens?: number | Partial<{
924
+ $gt: number;
925
+ $gte: number;
926
+ $lt: number;
927
+ $lte: number;
928
+ $ne: number;
929
+ $in: number | number[];
930
+ $nin: number | number[];
931
+ } & {}> | undefined;
932
+ userId?: string | Partial<{
933
+ $gt: string | {};
934
+ $gte: string | {};
935
+ $lt: string | {};
936
+ $lte: string | {};
937
+ $ne: string | {};
938
+ $in: string | (string | {})[] | {};
939
+ $nin: string | (string | {})[] | {};
940
+ } & {}> | {} | undefined;
941
+ } & {}, HookContext<TokensService<import("./tokens.class").TokensParams>>>;