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

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
@@ -1,12 +1,14 @@
1
1
  import type { Static } from '@feathersjs/typebox';
2
- import type { HookContext } from '../../../../declarations';
2
+ import { type HookContext } from '../../../../declarations';
3
3
  import type { AgentsSessionsConversationsService } from './conversations.class';
4
4
  export declare const agentsSessionsConversationsSchema: import("@feathersjs/typebox").TObject<{
5
5
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
6
  text: import("@feathersjs/typebox").TString<string>;
7
7
  role: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
8
+ type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
8
9
  sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
9
- agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
10
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
11
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
10
12
  trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
11
13
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
12
14
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
@@ -18,6 +20,9 @@ export declare const agentsSessionsConversationsSchema: import("@feathersjs/type
18
20
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
19
21
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
20
22
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
23
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
24
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
25
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
21
26
  }>>>;
22
27
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
23
28
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -29,27 +34,34 @@ export declare const agentsSessionsConversationsSchema: import("@feathersjs/type
29
34
  }>>>;
30
35
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
31
36
  }>>;
37
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"web">, import("@feathersjs/typebox").TLiteral<"telegram">, import("@feathersjs/typebox").TLiteral<"system">]>>;
32
38
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
33
39
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
34
40
  }>;
35
41
  export type AgentsSessionsConversations = Static<typeof agentsSessionsConversationsSchema>;
36
42
  export declare const agentsSessionsConversationsValidator: import("@feathersjs/schema").Validator<any, any>;
37
43
  export declare const agentsSessionsConversationsResolver: import("@feathersjs/schema").Resolver<{
38
- createdAt?: any;
39
- updatedAt?: any;
44
+ _id: string | {};
45
+ text: string;
46
+ role: "assistant" | "user";
47
+ type?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
40
48
  sessionId?: string | undefined;
41
- agentId?: string | undefined;
49
+ agentId?: string | {} | undefined;
50
+ userId?: string | {} | undefined;
42
51
  trace?: {
43
52
  rationale?: string[] | undefined;
44
53
  toolCalls?: {
45
- response?: any;
46
54
  actionGroupName?: string | undefined;
47
55
  apiPath?: string | undefined;
48
56
  verb?: string | undefined;
49
57
  parameters?: any;
50
58
  requestBody?: any;
59
+ response?: any;
51
60
  success?: boolean | undefined;
52
61
  executionTimeMs?: number | undefined;
62
+ startTime?: string | undefined;
63
+ endTime?: string | undefined;
64
+ error?: string | undefined;
53
65
  }[] | undefined;
54
66
  modelInvocations?: {
55
67
  foundationModel?: string | undefined;
@@ -61,26 +73,32 @@ export declare const agentsSessionsConversationsResolver: import("@feathersjs/sc
61
73
  }[] | undefined;
62
74
  fullTrace?: any;
63
75
  } | undefined;
64
- _id: string | {};
65
- text: string;
66
- role: "user" | "assistant";
67
- }, HookContext<AgentsSessionsConversationsService<import("./conversations.class").AgentsSessionsConversationsParams>>>;
68
- export declare const agentsSessionsConversationsExternalResolver: import("@feathersjs/schema").Resolver<{
76
+ source?: "system" | "telegram" | "web" | undefined;
69
77
  createdAt?: any;
70
78
  updatedAt?: any;
79
+ }, HookContext<AgentsSessionsConversationsService<import("./conversations.class").AgentsSessionsConversationsParams>>>;
80
+ export declare const agentsSessionsConversationsExternalResolver: import("@feathersjs/schema").Resolver<{
81
+ _id: string | {};
82
+ text: string;
83
+ role: "assistant" | "user";
84
+ type?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
71
85
  sessionId?: string | undefined;
72
- agentId?: string | undefined;
86
+ agentId?: string | {} | undefined;
87
+ userId?: string | {} | undefined;
73
88
  trace?: {
74
89
  rationale?: string[] | undefined;
75
90
  toolCalls?: {
76
- response?: any;
77
91
  actionGroupName?: string | undefined;
78
92
  apiPath?: string | undefined;
79
93
  verb?: string | undefined;
80
94
  parameters?: any;
81
95
  requestBody?: any;
96
+ response?: any;
82
97
  success?: boolean | undefined;
83
98
  executionTimeMs?: number | undefined;
99
+ startTime?: string | undefined;
100
+ endTime?: string | undefined;
101
+ error?: string | undefined;
84
102
  }[] | undefined;
85
103
  modelInvocations?: {
86
104
  foundationModel?: string | undefined;
@@ -92,16 +110,18 @@ export declare const agentsSessionsConversationsExternalResolver: import("@feath
92
110
  }[] | undefined;
93
111
  fullTrace?: any;
94
112
  } | undefined;
95
- _id: string | {};
96
- text: string;
97
- role: "user" | "assistant";
113
+ source?: "system" | "telegram" | "web" | undefined;
114
+ createdAt?: any;
115
+ updatedAt?: any;
98
116
  }, HookContext<AgentsSessionsConversationsService<import("./conversations.class").AgentsSessionsConversationsParams>>>;
99
117
  export declare const agentsSessionsConversationsDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
100
118
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
101
119
  text: import("@feathersjs/typebox").TString<string>;
102
120
  role: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
121
+ type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
103
122
  sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
104
- agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
123
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
124
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
105
125
  trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
106
126
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
107
127
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
@@ -113,6 +133,9 @@ export declare const agentsSessionsConversationsDataSchema: import("@feathersjs/
113
133
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
114
134
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
115
135
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
136
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
137
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
138
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
116
139
  }>>>;
117
140
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
118
141
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -124,27 +147,34 @@ export declare const agentsSessionsConversationsDataSchema: import("@feathersjs/
124
147
  }>>>;
125
148
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
126
149
  }>>;
150
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"web">, import("@feathersjs/typebox").TLiteral<"telegram">, import("@feathersjs/typebox").TLiteral<"system">]>>;
127
151
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
128
152
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
129
- }>, ["text", "role", "sessionId", "agentId", "trace"]>;
153
+ }>, ["text", "role", "type", "sessionId", "agentId", "userId", "trace", "source"]>;
130
154
  export type AgentsSessionsConversationsData = Static<typeof agentsSessionsConversationsDataSchema>;
131
155
  export declare const agentsSessionsConversationsDataValidator: import("@feathersjs/schema").Validator<any, any>;
132
156
  export declare const agentsSessionsConversationsDataResolver: import("@feathersjs/schema").Resolver<{
133
- createdAt?: any;
134
- updatedAt?: any;
157
+ _id: string | {};
158
+ text: string;
159
+ role: "assistant" | "user";
160
+ type?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
135
161
  sessionId?: string | undefined;
136
- agentId?: string | undefined;
162
+ agentId?: string | {} | undefined;
163
+ userId?: string | {} | undefined;
137
164
  trace?: {
138
165
  rationale?: string[] | undefined;
139
166
  toolCalls?: {
140
- response?: any;
141
167
  actionGroupName?: string | undefined;
142
168
  apiPath?: string | undefined;
143
169
  verb?: string | undefined;
144
170
  parameters?: any;
145
171
  requestBody?: any;
172
+ response?: any;
146
173
  success?: boolean | undefined;
147
174
  executionTimeMs?: number | undefined;
175
+ startTime?: string | undefined;
176
+ endTime?: string | undefined;
177
+ error?: string | undefined;
148
178
  }[] | undefined;
149
179
  modelInvocations?: {
150
180
  foundationModel?: string | undefined;
@@ -156,16 +186,18 @@ export declare const agentsSessionsConversationsDataResolver: import("@feathersj
156
186
  }[] | undefined;
157
187
  fullTrace?: any;
158
188
  } | undefined;
159
- _id: string | {};
160
- text: string;
161
- role: "user" | "assistant";
189
+ source?: "system" | "telegram" | "web" | undefined;
190
+ createdAt?: any;
191
+ updatedAt?: any;
162
192
  }, HookContext<AgentsSessionsConversationsService<import("./conversations.class").AgentsSessionsConversationsParams>>>;
163
193
  export declare const agentsSessionsConversationsPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
164
194
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
165
195
  text: import("@feathersjs/typebox").TString<string>;
166
196
  role: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
197
+ type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
167
198
  sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
168
- agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
199
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
200
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
169
201
  trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
170
202
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
171
203
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
@@ -177,6 +209,9 @@ export declare const agentsSessionsConversationsPatchSchema: import("@feathersjs
177
209
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
178
210
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
179
211
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
212
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
213
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
214
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
180
215
  }>>>;
181
216
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
182
217
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -188,27 +223,34 @@ export declare const agentsSessionsConversationsPatchSchema: import("@feathersjs
188
223
  }>>>;
189
224
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
190
225
  }>>;
226
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"web">, import("@feathersjs/typebox").TLiteral<"telegram">, import("@feathersjs/typebox").TLiteral<"system">]>>;
191
227
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
192
228
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
193
229
  }>>;
194
230
  export type AgentsSessionsConversationsPatch = Static<typeof agentsSessionsConversationsPatchSchema>;
195
231
  export declare const agentsSessionsConversationsPatchValidator: import("@feathersjs/schema").Validator<any, any>;
196
232
  export declare const agentsSessionsConversationsPatchResolver: import("@feathersjs/schema").Resolver<{
197
- createdAt?: any;
198
- updatedAt?: any;
233
+ _id: string | {};
234
+ text: string;
235
+ role: "assistant" | "user";
236
+ type?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
199
237
  sessionId?: string | undefined;
200
- agentId?: string | undefined;
238
+ agentId?: string | {} | undefined;
239
+ userId?: string | {} | undefined;
201
240
  trace?: {
202
241
  rationale?: string[] | undefined;
203
242
  toolCalls?: {
204
- response?: any;
205
243
  actionGroupName?: string | undefined;
206
244
  apiPath?: string | undefined;
207
245
  verb?: string | undefined;
208
246
  parameters?: any;
209
247
  requestBody?: any;
248
+ response?: any;
210
249
  success?: boolean | undefined;
211
250
  executionTimeMs?: number | undefined;
251
+ startTime?: string | undefined;
252
+ endTime?: string | undefined;
253
+ error?: string | undefined;
212
254
  }[] | undefined;
213
255
  modelInvocations?: {
214
256
  foundationModel?: string | undefined;
@@ -220,16 +262,18 @@ export declare const agentsSessionsConversationsPatchResolver: import("@feathers
220
262
  }[] | undefined;
221
263
  fullTrace?: any;
222
264
  } | undefined;
223
- _id: string | {};
224
- text: string;
225
- role: "user" | "assistant";
265
+ source?: "system" | "telegram" | "web" | undefined;
266
+ createdAt?: any;
267
+ updatedAt?: any;
226
268
  }, HookContext<AgentsSessionsConversationsService<import("./conversations.class").AgentsSessionsConversationsParams>>>;
227
269
  export declare const agentsSessionsConversationsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
228
270
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
229
271
  text: import("@feathersjs/typebox").TString<string>;
230
272
  role: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
273
+ type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
231
274
  sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
232
- agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
275
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
276
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
233
277
  trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
234
278
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
235
279
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
@@ -241,6 +285,9 @@ export declare const agentsSessionsConversationsQueryProperties: import("@feathe
241
285
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
242
286
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
243
287
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
288
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
289
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
290
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
244
291
  }>>>;
245
292
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
246
293
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -252,23 +299,25 @@ export declare const agentsSessionsConversationsQueryProperties: import("@feathe
252
299
  }>>>;
253
300
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
254
301
  }>>;
302
+ source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"web">, import("@feathersjs/typebox").TLiteral<"telegram">, import("@feathersjs/typebox").TLiteral<"system">]>>;
255
303
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
256
304
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
257
- }>, ["_id", "text", "role", "sessionId", "agentId", "trace", "createdAt", "updatedAt"]>;
305
+ }>, ["_id", "text", "role", "type", "sessionId", "agentId", "trace", "createdAt", "updatedAt"]>;
258
306
  export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
259
307
  $limit: import("@feathersjs/typebox").TNumber;
260
308
  $skip: import("@feathersjs/typebox").TNumber;
261
309
  $sort: import("@feathersjs/typebox").TObject<{
262
310
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
311
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
263
312
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
264
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
265
- text: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
266
313
  role: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
267
314
  sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
268
- agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
315
+ text: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
269
316
  trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
317
+ type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
318
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
270
319
  }>;
271
- $select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "updatedAt" | "text" | "role" | "sessionId" | "agentId" | "trace")[]>;
320
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "agentId" | "createdAt" | "role" | "sessionId" | "text" | "trace" | "type" | "updatedAt")[]>;
272
321
  $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
273
322
  _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<{
274
323
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -276,41 +325,30 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
276
325
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
277
326
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
278
327
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
279
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
280
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
328
+ $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<{}>]>;
329
+ $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<{}>]>;
281
330
  }>, import("@feathersjs/typebox").TObject<{
282
331
  [key: string]: import("@feathersjs/typebox").TSchema;
283
332
  } | undefined>]>>]>>;
284
- 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<{
285
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
286
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
287
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
288
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
289
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
290
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
291
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
333
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
334
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
335
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
336
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
337
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
338
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
339
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
340
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
292
341
  }>, import("@feathersjs/typebox").TObject<{
293
342
  [key: string]: import("@feathersjs/typebox").TSchema;
294
343
  } | undefined>]>>]>>;
295
- updatedAt: 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<{
344
+ 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<{
296
345
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
297
346
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
298
347
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
299
348
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
300
349
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
301
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
302
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
303
- }>, import("@feathersjs/typebox").TObject<{
304
- [key: string]: import("@feathersjs/typebox").TSchema;
305
- } | undefined>]>>]>>;
306
- text: 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<{
307
- $gt: import("@feathersjs/typebox").TString<string>;
308
- $gte: import("@feathersjs/typebox").TString<string>;
309
- $lt: import("@feathersjs/typebox").TString<string>;
310
- $lte: import("@feathersjs/typebox").TString<string>;
311
- $ne: import("@feathersjs/typebox").TString<string>;
312
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
313
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
350
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
351
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
314
352
  }>, import("@feathersjs/typebox").TObject<{
315
353
  [key: string]: import("@feathersjs/typebox").TSchema;
316
354
  } | undefined>]>>]>>;
@@ -320,8 +358,8 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
320
358
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
321
359
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
322
360
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
323
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
324
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
361
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
362
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
325
363
  }>, import("@feathersjs/typebox").TObject<{
326
364
  [key: string]: import("@feathersjs/typebox").TSchema;
327
365
  } | undefined>]>>]>>;
@@ -331,19 +369,19 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
331
369
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
332
370
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
333
371
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
334
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
335
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
372
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
373
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
336
374
  }>, import("@feathersjs/typebox").TObject<{
337
375
  [key: string]: import("@feathersjs/typebox").TSchema;
338
376
  } | undefined>]>>]>>;
339
- 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<{
340
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
341
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
342
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
343
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
344
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
345
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
346
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
377
+ text: 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<{
378
+ $gt: import("@feathersjs/typebox").TString<string>;
379
+ $gte: import("@feathersjs/typebox").TString<string>;
380
+ $lt: import("@feathersjs/typebox").TString<string>;
381
+ $lte: import("@feathersjs/typebox").TString<string>;
382
+ $ne: import("@feathersjs/typebox").TString<string>;
383
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
384
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
347
385
  }>, import("@feathersjs/typebox").TObject<{
348
386
  [key: string]: import("@feathersjs/typebox").TSchema;
349
387
  } | undefined>]>>]>>;
@@ -358,6 +396,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
358
396
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
359
397
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
360
398
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
399
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
400
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
401
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
361
402
  }>>>;
362
403
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
363
404
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -380,6 +421,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
380
421
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
381
422
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
382
423
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
424
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
425
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
426
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
383
427
  }>>>;
384
428
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
385
429
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -402,6 +446,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
402
446
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
403
447
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
404
448
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
449
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
450
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
451
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
405
452
  }>>>;
406
453
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
407
454
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -424,6 +471,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
424
471
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
425
472
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
426
473
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
474
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
475
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
476
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
427
477
  }>>>;
428
478
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
429
479
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -446,6 +496,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
446
496
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
447
497
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
448
498
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
499
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
500
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
501
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
449
502
  }>>>;
450
503
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
451
504
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -468,6 +521,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
468
521
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
469
522
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
470
523
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
524
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
525
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
526
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
471
527
  }>>>;
472
528
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
473
529
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -479,7 +535,7 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
479
535
  }>>>;
480
536
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
481
537
  }>>;
482
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
538
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
483
539
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
484
540
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
485
541
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -490,6 +546,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
490
546
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
491
547
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
492
548
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
549
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
550
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
551
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
493
552
  }>>>;
494
553
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
495
554
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -500,7 +559,7 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
500
559
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
501
560
  }>>>;
502
561
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
503
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
562
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
504
563
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
505
564
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
506
565
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -511,6 +570,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
511
570
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
512
571
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
513
572
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
573
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
574
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
575
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
514
576
  }>>>;
515
577
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
516
578
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -521,8 +583,8 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
521
583
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
522
584
  }>>>;
523
585
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
524
- }>>>;
525
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
586
+ }>>;
587
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
526
588
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
527
589
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
528
590
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -533,6 +595,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
533
595
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
534
596
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
535
597
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
598
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
599
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
600
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
536
601
  }>>>;
537
602
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
538
603
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -543,7 +608,7 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
543
608
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
544
609
  }>>>;
545
610
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
546
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
611
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
547
612
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
548
613
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
549
614
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -554,6 +619,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
554
619
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
555
620
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
556
621
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
622
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
623
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
624
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
557
625
  }>>>;
558
626
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
559
627
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -564,7 +632,29 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
564
632
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
565
633
  }>>>;
566
634
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
567
- }>>>;
635
+ }>>;
636
+ }>, import("@feathersjs/typebox").TObject<{
637
+ [key: string]: import("@feathersjs/typebox").TSchema;
638
+ } | undefined>]>>]>>;
639
+ type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
640
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
641
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
642
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
643
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
644
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
645
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
646
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
647
+ }>, import("@feathersjs/typebox").TObject<{
648
+ [key: string]: import("@feathersjs/typebox").TSchema;
649
+ } | undefined>]>>]>>;
650
+ updatedAt: 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<{
651
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
652
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
653
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
654
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
655
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
656
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
657
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
568
658
  }>, import("@feathersjs/typebox").TObject<{
569
659
  [key: string]: import("@feathersjs/typebox").TSchema;
570
660
  } | undefined>]>>]>>;
@@ -576,41 +666,30 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
576
666
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
577
667
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
578
668
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
579
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
580
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
669
+ $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<{}>]>;
670
+ $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<{}>]>;
581
671
  }>, import("@feathersjs/typebox").TObject<{
582
672
  [key: string]: import("@feathersjs/typebox").TSchema;
583
673
  } | undefined>]>>]>>;
584
- 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<{
585
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
586
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
587
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
588
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
589
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
590
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
591
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
674
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
675
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
676
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
677
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
678
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
679
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
680
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
681
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
592
682
  }>, import("@feathersjs/typebox").TObject<{
593
683
  [key: string]: import("@feathersjs/typebox").TSchema;
594
684
  } | undefined>]>>]>>;
595
- updatedAt: 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<{
685
+ 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<{
596
686
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
597
687
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
598
688
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
599
689
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
600
690
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
601
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
602
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
603
- }>, import("@feathersjs/typebox").TObject<{
604
- [key: string]: import("@feathersjs/typebox").TSchema;
605
- } | undefined>]>>]>>;
606
- text: 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<{
607
- $gt: import("@feathersjs/typebox").TString<string>;
608
- $gte: import("@feathersjs/typebox").TString<string>;
609
- $lt: import("@feathersjs/typebox").TString<string>;
610
- $lte: import("@feathersjs/typebox").TString<string>;
611
- $ne: import("@feathersjs/typebox").TString<string>;
612
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
613
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
691
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
692
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
614
693
  }>, import("@feathersjs/typebox").TObject<{
615
694
  [key: string]: import("@feathersjs/typebox").TSchema;
616
695
  } | undefined>]>>]>>;
@@ -620,8 +699,8 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
620
699
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
621
700
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
622
701
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
623
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
624
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
702
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
703
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
625
704
  }>, import("@feathersjs/typebox").TObject<{
626
705
  [key: string]: import("@feathersjs/typebox").TSchema;
627
706
  } | undefined>]>>]>>;
@@ -631,19 +710,19 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
631
710
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
632
711
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
633
712
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
634
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
635
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
713
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
714
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
636
715
  }>, import("@feathersjs/typebox").TObject<{
637
716
  [key: string]: import("@feathersjs/typebox").TSchema;
638
717
  } | undefined>]>>]>>;
639
- 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<{
640
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
641
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
642
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
643
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
644
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
645
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
646
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
718
+ text: 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<{
719
+ $gt: import("@feathersjs/typebox").TString<string>;
720
+ $gte: import("@feathersjs/typebox").TString<string>;
721
+ $lt: import("@feathersjs/typebox").TString<string>;
722
+ $lte: import("@feathersjs/typebox").TString<string>;
723
+ $ne: import("@feathersjs/typebox").TString<string>;
724
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
725
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
647
726
  }>, import("@feathersjs/typebox").TObject<{
648
727
  [key: string]: import("@feathersjs/typebox").TSchema;
649
728
  } | undefined>]>>]>>;
@@ -658,6 +737,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
658
737
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
659
738
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
660
739
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
740
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
741
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
742
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
661
743
  }>>>;
662
744
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
663
745
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -680,6 +762,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
680
762
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
681
763
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
682
764
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
765
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
766
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
767
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
683
768
  }>>>;
684
769
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
685
770
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -702,6 +787,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
702
787
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
703
788
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
704
789
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
790
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
791
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
792
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
705
793
  }>>>;
706
794
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
707
795
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -724,6 +812,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
724
812
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
725
813
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
726
814
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
815
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
816
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
817
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
727
818
  }>>>;
728
819
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
729
820
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -746,6 +837,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
746
837
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
747
838
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
748
839
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
840
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
841
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
842
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
749
843
  }>>>;
750
844
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
751
845
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -768,6 +862,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
768
862
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
769
863
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
770
864
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
865
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
866
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
867
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
771
868
  }>>>;
772
869
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
773
870
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -779,7 +876,7 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
779
876
  }>>>;
780
877
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
781
878
  }>>;
782
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
879
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
783
880
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
784
881
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
785
882
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -790,6 +887,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
790
887
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
791
888
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
792
889
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
890
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
891
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
892
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
793
893
  }>>>;
794
894
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
795
895
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -800,7 +900,7 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
800
900
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
801
901
  }>>>;
802
902
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
803
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
903
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
804
904
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
805
905
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
806
906
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -811,6 +911,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
811
911
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
812
912
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
813
913
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
914
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
915
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
916
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
814
917
  }>>>;
815
918
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
816
919
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -821,8 +924,8 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
821
924
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
822
925
  }>>>;
823
926
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
824
- }>>>;
825
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
927
+ }>>;
928
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
826
929
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
827
930
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
828
931
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -833,6 +936,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
833
936
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
834
937
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
835
938
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
939
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
940
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
941
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
836
942
  }>>>;
837
943
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
838
944
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -843,7 +949,7 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
843
949
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
844
950
  }>>>;
845
951
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
846
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
952
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
847
953
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
848
954
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
849
955
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -854,6 +960,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
854
960
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
855
961
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
856
962
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
963
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
964
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
965
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
857
966
  }>>>;
858
967
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
859
968
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -864,7 +973,29 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
864
973
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
865
974
  }>>>;
866
975
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
867
- }>>>;
976
+ }>>;
977
+ }>, import("@feathersjs/typebox").TObject<{
978
+ [key: string]: import("@feathersjs/typebox").TSchema;
979
+ } | undefined>]>>]>>;
980
+ type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
981
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
982
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
983
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
984
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
985
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
986
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
987
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
988
+ }>, import("@feathersjs/typebox").TObject<{
989
+ [key: string]: import("@feathersjs/typebox").TSchema;
990
+ } | undefined>]>>]>>;
991
+ updatedAt: 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<{
992
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
993
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
994
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
995
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
996
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
997
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
998
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
868
999
  }>, import("@feathersjs/typebox").TObject<{
869
1000
  [key: string]: import("@feathersjs/typebox").TSchema;
870
1001
  } | undefined>]>>]>>;
@@ -877,41 +1008,30 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
877
1008
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
878
1009
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
879
1010
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
880
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
881
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1011
+ $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<{}>]>;
1012
+ $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<{}>]>;
882
1013
  }>, import("@feathersjs/typebox").TObject<{
883
1014
  [key: string]: import("@feathersjs/typebox").TSchema;
884
1015
  } | undefined>]>>]>>;
885
- 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<{
886
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
887
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
888
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
889
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
890
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
891
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
892
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1016
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
1017
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1018
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1019
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1020
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1021
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1022
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1023
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
893
1024
  }>, import("@feathersjs/typebox").TObject<{
894
1025
  [key: string]: import("@feathersjs/typebox").TSchema;
895
1026
  } | undefined>]>>]>>;
896
- updatedAt: 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<{
1027
+ 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<{
897
1028
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
898
1029
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
899
1030
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
900
1031
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
901
1032
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
902
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
903
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
904
- }>, import("@feathersjs/typebox").TObject<{
905
- [key: string]: import("@feathersjs/typebox").TSchema;
906
- } | undefined>]>>]>>;
907
- text: 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<{
908
- $gt: import("@feathersjs/typebox").TString<string>;
909
- $gte: import("@feathersjs/typebox").TString<string>;
910
- $lt: import("@feathersjs/typebox").TString<string>;
911
- $lte: import("@feathersjs/typebox").TString<string>;
912
- $ne: import("@feathersjs/typebox").TString<string>;
913
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
914
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1033
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1034
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
915
1035
  }>, import("@feathersjs/typebox").TObject<{
916
1036
  [key: string]: import("@feathersjs/typebox").TSchema;
917
1037
  } | undefined>]>>]>>;
@@ -921,8 +1041,8 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
921
1041
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
922
1042
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
923
1043
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
924
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
925
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
1044
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
1045
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
926
1046
  }>, import("@feathersjs/typebox").TObject<{
927
1047
  [key: string]: import("@feathersjs/typebox").TSchema;
928
1048
  } | undefined>]>>]>>;
@@ -932,19 +1052,19 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
932
1052
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
933
1053
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
934
1054
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
935
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
936
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1055
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1056
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
937
1057
  }>, import("@feathersjs/typebox").TObject<{
938
1058
  [key: string]: import("@feathersjs/typebox").TSchema;
939
1059
  } | undefined>]>>]>>;
940
- 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<{
941
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
942
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
943
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
944
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
945
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
946
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
947
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1060
+ text: 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<{
1061
+ $gt: import("@feathersjs/typebox").TString<string>;
1062
+ $gte: import("@feathersjs/typebox").TString<string>;
1063
+ $lt: import("@feathersjs/typebox").TString<string>;
1064
+ $lte: import("@feathersjs/typebox").TString<string>;
1065
+ $ne: import("@feathersjs/typebox").TString<string>;
1066
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1067
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
948
1068
  }>, import("@feathersjs/typebox").TObject<{
949
1069
  [key: string]: import("@feathersjs/typebox").TSchema;
950
1070
  } | undefined>]>>]>>;
@@ -959,6 +1079,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
959
1079
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
960
1080
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
961
1081
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1082
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1083
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1084
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
962
1085
  }>>>;
963
1086
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
964
1087
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -981,6 +1104,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
981
1104
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
982
1105
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
983
1106
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1107
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1108
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1109
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
984
1110
  }>>>;
985
1111
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
986
1112
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1003,6 +1129,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1003
1129
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1004
1130
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1005
1131
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1132
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1133
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1134
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1006
1135
  }>>>;
1007
1136
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1008
1137
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1025,6 +1154,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1025
1154
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1026
1155
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1027
1156
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1157
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1158
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1159
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1028
1160
  }>>>;
1029
1161
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1030
1162
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1047,6 +1179,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1047
1179
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1048
1180
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1049
1181
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1182
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1183
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1184
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1050
1185
  }>>>;
1051
1186
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1052
1187
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1069,6 +1204,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1069
1204
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1070
1205
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1071
1206
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1207
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1208
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1209
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1072
1210
  }>>>;
1073
1211
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1074
1212
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1080,7 +1218,7 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1080
1218
  }>>>;
1081
1219
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1082
1220
  }>>;
1083
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1221
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1084
1222
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1085
1223
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1086
1224
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1091,6 +1229,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1091
1229
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1092
1230
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1093
1231
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1232
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1233
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1234
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1094
1235
  }>>>;
1095
1236
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1096
1237
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1101,7 +1242,7 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1101
1242
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1102
1243
  }>>>;
1103
1244
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1104
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1245
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1105
1246
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1106
1247
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1107
1248
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1112,6 +1253,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1112
1253
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1113
1254
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1114
1255
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1256
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1257
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1258
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1115
1259
  }>>>;
1116
1260
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1117
1261
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1122,8 +1266,8 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1122
1266
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1123
1267
  }>>>;
1124
1268
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1125
- }>>>;
1126
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1269
+ }>>;
1270
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1127
1271
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1128
1272
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1129
1273
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1134,6 +1278,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1134
1278
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1135
1279
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1136
1280
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1281
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1282
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1283
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1137
1284
  }>>>;
1138
1285
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1139
1286
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1144,7 +1291,7 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1144
1291
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1145
1292
  }>>>;
1146
1293
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1147
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1294
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1148
1295
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1149
1296
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1150
1297
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1155,6 +1302,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1155
1302
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1156
1303
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1157
1304
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1305
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1306
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1307
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1158
1308
  }>>>;
1159
1309
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1160
1310
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1165,7 +1315,29 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1165
1315
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1166
1316
  }>>>;
1167
1317
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1168
- }>>>;
1318
+ }>>;
1319
+ }>, import("@feathersjs/typebox").TObject<{
1320
+ [key: string]: import("@feathersjs/typebox").TSchema;
1321
+ } | undefined>]>>]>>;
1322
+ type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1323
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1324
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1325
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1326
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1327
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1328
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1329
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1330
+ }>, import("@feathersjs/typebox").TObject<{
1331
+ [key: string]: import("@feathersjs/typebox").TSchema;
1332
+ } | undefined>]>>]>>;
1333
+ updatedAt: 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<{
1334
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1335
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1336
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1337
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1338
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1339
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1340
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1169
1341
  }>, import("@feathersjs/typebox").TObject<{
1170
1342
  [key: string]: import("@feathersjs/typebox").TSchema;
1171
1343
  } | undefined>]>>]>>;
@@ -1177,41 +1349,30 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1177
1349
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1178
1350
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1179
1351
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1180
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1181
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1352
+ $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<{}>]>;
1353
+ $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<{}>]>;
1182
1354
  }>, import("@feathersjs/typebox").TObject<{
1183
1355
  [key: string]: import("@feathersjs/typebox").TSchema;
1184
1356
  } | undefined>]>>]>>;
1185
- 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<{
1186
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1187
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1188
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1189
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1190
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1191
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1192
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1357
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
1358
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1359
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1360
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1361
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1362
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1363
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1364
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1193
1365
  }>, import("@feathersjs/typebox").TObject<{
1194
1366
  [key: string]: import("@feathersjs/typebox").TSchema;
1195
1367
  } | undefined>]>>]>>;
1196
- updatedAt: 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<{
1368
+ 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<{
1197
1369
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1198
1370
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1199
1371
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1200
1372
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1201
1373
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1202
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1203
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1204
- }>, import("@feathersjs/typebox").TObject<{
1205
- [key: string]: import("@feathersjs/typebox").TSchema;
1206
- } | undefined>]>>]>>;
1207
- text: 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<{
1208
- $gt: import("@feathersjs/typebox").TString<string>;
1209
- $gte: import("@feathersjs/typebox").TString<string>;
1210
- $lt: import("@feathersjs/typebox").TString<string>;
1211
- $lte: import("@feathersjs/typebox").TString<string>;
1212
- $ne: import("@feathersjs/typebox").TString<string>;
1213
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1214
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1374
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1375
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1215
1376
  }>, import("@feathersjs/typebox").TObject<{
1216
1377
  [key: string]: import("@feathersjs/typebox").TSchema;
1217
1378
  } | undefined>]>>]>>;
@@ -1221,8 +1382,8 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1221
1382
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
1222
1383
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
1223
1384
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
1224
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
1225
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
1385
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
1386
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
1226
1387
  }>, import("@feathersjs/typebox").TObject<{
1227
1388
  [key: string]: import("@feathersjs/typebox").TSchema;
1228
1389
  } | undefined>]>>]>>;
@@ -1232,19 +1393,19 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1232
1393
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1233
1394
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1234
1395
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1235
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1236
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1396
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1397
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1237
1398
  }>, import("@feathersjs/typebox").TObject<{
1238
1399
  [key: string]: import("@feathersjs/typebox").TSchema;
1239
1400
  } | undefined>]>>]>>;
1240
- 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<{
1241
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1242
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1243
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1244
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1245
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1246
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1247
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1401
+ text: 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<{
1402
+ $gt: import("@feathersjs/typebox").TString<string>;
1403
+ $gte: import("@feathersjs/typebox").TString<string>;
1404
+ $lt: import("@feathersjs/typebox").TString<string>;
1405
+ $lte: import("@feathersjs/typebox").TString<string>;
1406
+ $ne: import("@feathersjs/typebox").TString<string>;
1407
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1408
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1248
1409
  }>, import("@feathersjs/typebox").TObject<{
1249
1410
  [key: string]: import("@feathersjs/typebox").TSchema;
1250
1411
  } | undefined>]>>]>>;
@@ -1259,6 +1420,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1259
1420
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1260
1421
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1261
1422
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1423
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1424
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1425
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1262
1426
  }>>>;
1263
1427
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1264
1428
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1281,6 +1445,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1281
1445
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1282
1446
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1283
1447
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1448
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1449
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1450
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1284
1451
  }>>>;
1285
1452
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1286
1453
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1303,6 +1470,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1303
1470
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1304
1471
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1305
1472
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1473
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1474
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1475
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1306
1476
  }>>>;
1307
1477
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1308
1478
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1325,6 +1495,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1325
1495
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1326
1496
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1327
1497
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1498
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1499
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1500
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1328
1501
  }>>>;
1329
1502
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1330
1503
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1347,6 +1520,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1347
1520
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1348
1521
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1349
1522
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1523
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1524
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1525
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1350
1526
  }>>>;
1351
1527
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1352
1528
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1369,6 +1545,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1369
1545
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1370
1546
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1371
1547
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1548
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1549
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1550
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1372
1551
  }>>>;
1373
1552
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1374
1553
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1380,7 +1559,7 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1380
1559
  }>>>;
1381
1560
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1382
1561
  }>>;
1383
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1562
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1384
1563
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1385
1564
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1386
1565
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1391,6 +1570,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1391
1570
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1392
1571
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1393
1572
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1573
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1574
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1575
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1394
1576
  }>>>;
1395
1577
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1396
1578
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1401,7 +1583,7 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1401
1583
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1402
1584
  }>>>;
1403
1585
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1404
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1586
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1405
1587
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1406
1588
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1407
1589
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1412,6 +1594,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1412
1594
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1413
1595
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1414
1596
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1597
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1598
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1599
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1415
1600
  }>>>;
1416
1601
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1417
1602
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1422,8 +1607,8 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1422
1607
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1423
1608
  }>>>;
1424
1609
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1425
- }>>>;
1426
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1610
+ }>>;
1611
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1427
1612
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1428
1613
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1429
1614
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1434,6 +1619,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1434
1619
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1435
1620
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1436
1621
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1622
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1623
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1624
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1437
1625
  }>>>;
1438
1626
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1439
1627
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1444,7 +1632,7 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1444
1632
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1445
1633
  }>>>;
1446
1634
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1447
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1635
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1448
1636
  rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1449
1637
  toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1450
1638
  actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1455,6 +1643,9 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1455
1643
  response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1456
1644
  success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1457
1645
  executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1646
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1647
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1648
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1458
1649
  }>>>;
1459
1650
  modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1460
1651
  foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1465,7 +1656,29 @@ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs
1465
1656
  endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1466
1657
  }>>>;
1467
1658
  fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1468
- }>>>;
1659
+ }>>;
1660
+ }>, import("@feathersjs/typebox").TObject<{
1661
+ [key: string]: import("@feathersjs/typebox").TSchema;
1662
+ } | undefined>]>>]>>;
1663
+ type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1664
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1665
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1666
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1667
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1668
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1669
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1670
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user_message">, import("@feathersjs/typebox").TLiteral<"thinking">, import("@feathersjs/typebox").TLiteral<"tool_usage">, import("@feathersjs/typebox").TLiteral<"tool_response">, import("@feathersjs/typebox").TLiteral<"model_output">, import("@feathersjs/typebox").TLiteral<"final_response">, import("@feathersjs/typebox").TLiteral<"answer">, import("@feathersjs/typebox").TLiteral<"error">, import("@feathersjs/typebox").TLiteral<"loading">, import("@feathersjs/typebox").TLiteral<"debug_request">, import("@feathersjs/typebox").TLiteral<"debug_response">, import("@feathersjs/typebox").TLiteral<"tool_call">, import("@feathersjs/typebox").TLiteral<"tool_result">, import("@feathersjs/typebox").TLiteral<"question">, import("@feathersjs/typebox").TLiteral<"response">, import("@feathersjs/typebox").TLiteral<"supervisor_decision">, import("@feathersjs/typebox").TLiteral<"supervisor_report">, import("@feathersjs/typebox").TLiteral<"supervisor_question">, import("@feathersjs/typebox").TLiteral<"supervisor_announcement">, import("@feathersjs/typebox").TLiteral<"system_prompt">]>>;
1671
+ }>, import("@feathersjs/typebox").TObject<{
1672
+ [key: string]: import("@feathersjs/typebox").TSchema;
1673
+ } | undefined>]>>]>>;
1674
+ updatedAt: 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<{
1675
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1676
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1677
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1678
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1679
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1680
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1681
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1469
1682
  }>, import("@feathersjs/typebox").TObject<{
1470
1683
  [key: string]: import("@feathersjs/typebox").TSchema;
1471
1684
  } | undefined>]>>]>>;
@@ -1477,44 +1690,44 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1477
1690
  $skip: number;
1478
1691
  $sort: {
1479
1692
  _id?: number | undefined;
1693
+ agentId?: number | undefined;
1480
1694
  createdAt?: number | undefined;
1481
- updatedAt?: number | undefined;
1482
- text?: number | undefined;
1483
1695
  role?: number | undefined;
1484
1696
  sessionId?: number | undefined;
1485
- agentId?: number | undefined;
1697
+ text?: number | undefined;
1486
1698
  trace?: number | undefined;
1699
+ type?: number | undefined;
1700
+ updatedAt?: number | undefined;
1487
1701
  };
1488
- $select: ("_id" | "createdAt" | "updatedAt" | "text" | "role" | "sessionId" | "agentId" | "trace")[];
1702
+ $select: ("_id" | "agentId" | "createdAt" | "role" | "sessionId" | "text" | "trace" | "type" | "updatedAt")[];
1489
1703
  $and: ({
1490
- _id?: string | {} | Partial<{
1704
+ _id?: string | Partial<{
1491
1705
  $gt: string | {};
1492
1706
  $gte: string | {};
1493
1707
  $lt: string | {};
1494
1708
  $lte: string | {};
1495
1709
  $ne: string | {};
1496
- $in: string | {} | (string | {})[];
1497
- $nin: string | {} | (string | {})[];
1498
- } & {}> | undefined;
1710
+ $in: string | (string | {})[] | {};
1711
+ $nin: string | (string | {})[] | {};
1712
+ } & {}> | {} | undefined;
1713
+ agentId?: string | Partial<{
1714
+ $gt?: string | {} | undefined;
1715
+ $gte?: string | {} | undefined;
1716
+ $lt?: string | {} | undefined;
1717
+ $lte?: string | {} | undefined;
1718
+ $ne?: string | {} | undefined;
1719
+ $in: string | (string | {})[] | {};
1720
+ $nin: string | (string | {})[] | {};
1721
+ } & {}> | {} | undefined;
1499
1722
  createdAt?: any;
1500
- updatedAt?: any;
1501
- text?: string | Partial<{
1502
- $gt: string;
1503
- $gte: string;
1504
- $lt: string;
1505
- $lte: string;
1506
- $ne: string;
1507
- $in: string | string[];
1508
- $nin: string | string[];
1509
- } & {}> | undefined;
1510
- role?: "user" | "assistant" | Partial<{
1511
- $gt: "user" | "assistant";
1512
- $gte: "user" | "assistant";
1513
- $lt: "user" | "assistant";
1514
- $lte: "user" | "assistant";
1515
- $ne: "user" | "assistant";
1516
- $in: "user" | "assistant" | ("user" | "assistant")[];
1517
- $nin: "user" | "assistant" | ("user" | "assistant")[];
1723
+ role?: "assistant" | "user" | Partial<{
1724
+ $gt: "assistant" | "user";
1725
+ $gte: "assistant" | "user";
1726
+ $lt: "assistant" | "user";
1727
+ $lte: "assistant" | "user";
1728
+ $ne: "assistant" | "user";
1729
+ $in: "assistant" | "user" | ("assistant" | "user")[];
1730
+ $nin: "assistant" | "user" | ("assistant" | "user")[];
1518
1731
  } & {}> | undefined;
1519
1732
  sessionId?: string | Partial<{
1520
1733
  $gt?: string | undefined;
@@ -1525,48 +1738,30 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1525
1738
  $in: string | string[];
1526
1739
  $nin: string | string[];
1527
1740
  } & {}> | undefined;
1528
- agentId?: string | Partial<{
1529
- $gt?: string | undefined;
1530
- $gte?: string | undefined;
1531
- $lt?: string | undefined;
1532
- $lte?: string | undefined;
1533
- $ne?: string | undefined;
1741
+ text?: string | Partial<{
1742
+ $gt: string;
1743
+ $gte: string;
1744
+ $lt: string;
1745
+ $lte: string;
1746
+ $ne: string;
1534
1747
  $in: string | string[];
1535
1748
  $nin: string | string[];
1536
1749
  } & {}> | undefined;
1537
- trace?: {
1538
- rationale?: string[] | undefined;
1539
- toolCalls?: {
1540
- response?: any;
1541
- actionGroupName?: string | undefined;
1542
- apiPath?: string | undefined;
1543
- verb?: string | undefined;
1544
- parameters?: any;
1545
- requestBody?: any;
1546
- success?: boolean | undefined;
1547
- executionTimeMs?: number | undefined;
1548
- }[] | undefined;
1549
- modelInvocations?: {
1550
- foundationModel?: string | undefined;
1551
- inputTokens?: number | undefined;
1552
- outputTokens?: number | undefined;
1553
- totalTimeMs?: number | undefined;
1554
- startTime?: string | undefined;
1555
- endTime?: string | undefined;
1556
- }[] | undefined;
1557
- fullTrace?: any;
1558
- } | Partial<{
1750
+ trace?: Partial<{
1559
1751
  $gt?: {
1560
1752
  rationale?: string[] | undefined;
1561
1753
  toolCalls?: {
1562
- response?: any;
1563
1754
  actionGroupName?: string | undefined;
1564
1755
  apiPath?: string | undefined;
1565
1756
  verb?: string | undefined;
1566
1757
  parameters?: any;
1567
1758
  requestBody?: any;
1759
+ response?: any;
1568
1760
  success?: boolean | undefined;
1569
1761
  executionTimeMs?: number | undefined;
1762
+ startTime?: string | undefined;
1763
+ endTime?: string | undefined;
1764
+ error?: string | undefined;
1570
1765
  }[] | undefined;
1571
1766
  modelInvocations?: {
1572
1767
  foundationModel?: string | undefined;
@@ -1581,14 +1776,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1581
1776
  $gte?: {
1582
1777
  rationale?: string[] | undefined;
1583
1778
  toolCalls?: {
1584
- response?: any;
1585
1779
  actionGroupName?: string | undefined;
1586
1780
  apiPath?: string | undefined;
1587
1781
  verb?: string | undefined;
1588
1782
  parameters?: any;
1589
1783
  requestBody?: any;
1784
+ response?: any;
1590
1785
  success?: boolean | undefined;
1591
1786
  executionTimeMs?: number | undefined;
1787
+ startTime?: string | undefined;
1788
+ endTime?: string | undefined;
1789
+ error?: string | undefined;
1592
1790
  }[] | undefined;
1593
1791
  modelInvocations?: {
1594
1792
  foundationModel?: string | undefined;
@@ -1603,14 +1801,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1603
1801
  $lt?: {
1604
1802
  rationale?: string[] | undefined;
1605
1803
  toolCalls?: {
1606
- response?: any;
1607
1804
  actionGroupName?: string | undefined;
1608
1805
  apiPath?: string | undefined;
1609
1806
  verb?: string | undefined;
1610
1807
  parameters?: any;
1611
1808
  requestBody?: any;
1809
+ response?: any;
1612
1810
  success?: boolean | undefined;
1613
1811
  executionTimeMs?: number | undefined;
1812
+ startTime?: string | undefined;
1813
+ endTime?: string | undefined;
1814
+ error?: string | undefined;
1614
1815
  }[] | undefined;
1615
1816
  modelInvocations?: {
1616
1817
  foundationModel?: string | undefined;
@@ -1625,14 +1826,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1625
1826
  $lte?: {
1626
1827
  rationale?: string[] | undefined;
1627
1828
  toolCalls?: {
1628
- response?: any;
1629
1829
  actionGroupName?: string | undefined;
1630
1830
  apiPath?: string | undefined;
1631
1831
  verb?: string | undefined;
1632
1832
  parameters?: any;
1633
1833
  requestBody?: any;
1834
+ response?: any;
1634
1835
  success?: boolean | undefined;
1635
1836
  executionTimeMs?: number | undefined;
1837
+ startTime?: string | undefined;
1838
+ endTime?: string | undefined;
1839
+ error?: string | undefined;
1636
1840
  }[] | undefined;
1637
1841
  modelInvocations?: {
1638
1842
  foundationModel?: string | undefined;
@@ -1647,14 +1851,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1647
1851
  $ne?: {
1648
1852
  rationale?: string[] | undefined;
1649
1853
  toolCalls?: {
1650
- response?: any;
1651
1854
  actionGroupName?: string | undefined;
1652
1855
  apiPath?: string | undefined;
1653
1856
  verb?: string | undefined;
1654
1857
  parameters?: any;
1655
1858
  requestBody?: any;
1859
+ response?: any;
1656
1860
  success?: boolean | undefined;
1657
1861
  executionTimeMs?: number | undefined;
1862
+ startTime?: string | undefined;
1863
+ endTime?: string | undefined;
1864
+ error?: string | undefined;
1658
1865
  }[] | undefined;
1659
1866
  modelInvocations?: {
1660
1867
  foundationModel?: string | undefined;
@@ -1669,14 +1876,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1669
1876
  $in: {
1670
1877
  rationale?: string[] | undefined;
1671
1878
  toolCalls?: {
1672
- response?: any;
1673
1879
  actionGroupName?: string | undefined;
1674
1880
  apiPath?: string | undefined;
1675
1881
  verb?: string | undefined;
1676
1882
  parameters?: any;
1677
1883
  requestBody?: any;
1884
+ response?: any;
1678
1885
  success?: boolean | undefined;
1679
1886
  executionTimeMs?: number | undefined;
1887
+ startTime?: string | undefined;
1888
+ endTime?: string | undefined;
1889
+ error?: string | undefined;
1680
1890
  }[] | undefined;
1681
1891
  modelInvocations?: {
1682
1892
  foundationModel?: string | undefined;
@@ -1687,17 +1897,20 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1687
1897
  endTime?: string | undefined;
1688
1898
  }[] | undefined;
1689
1899
  fullTrace?: any;
1690
- } | {
1900
+ }[] | {
1691
1901
  rationale?: string[] | undefined;
1692
1902
  toolCalls?: {
1693
- response?: any;
1694
1903
  actionGroupName?: string | undefined;
1695
1904
  apiPath?: string | undefined;
1696
1905
  verb?: string | undefined;
1697
1906
  parameters?: any;
1698
1907
  requestBody?: any;
1908
+ response?: any;
1699
1909
  success?: boolean | undefined;
1700
1910
  executionTimeMs?: number | undefined;
1911
+ startTime?: string | undefined;
1912
+ endTime?: string | undefined;
1913
+ error?: string | undefined;
1701
1914
  }[] | undefined;
1702
1915
  modelInvocations?: {
1703
1916
  foundationModel?: string | undefined;
@@ -1708,18 +1921,21 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1708
1921
  endTime?: string | undefined;
1709
1922
  }[] | undefined;
1710
1923
  fullTrace?: any;
1711
- }[];
1924
+ };
1712
1925
  $nin: {
1713
1926
  rationale?: string[] | undefined;
1714
1927
  toolCalls?: {
1715
- response?: any;
1716
1928
  actionGroupName?: string | undefined;
1717
1929
  apiPath?: string | undefined;
1718
1930
  verb?: string | undefined;
1719
1931
  parameters?: any;
1720
1932
  requestBody?: any;
1933
+ response?: any;
1721
1934
  success?: boolean | undefined;
1722
1935
  executionTimeMs?: number | undefined;
1936
+ startTime?: string | undefined;
1937
+ endTime?: string | undefined;
1938
+ error?: string | undefined;
1723
1939
  }[] | undefined;
1724
1940
  modelInvocations?: {
1725
1941
  foundationModel?: string | undefined;
@@ -1730,17 +1946,20 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1730
1946
  endTime?: string | undefined;
1731
1947
  }[] | undefined;
1732
1948
  fullTrace?: any;
1733
- } | {
1949
+ }[] | {
1734
1950
  rationale?: string[] | undefined;
1735
1951
  toolCalls?: {
1736
- response?: any;
1737
1952
  actionGroupName?: string | undefined;
1738
1953
  apiPath?: string | undefined;
1739
1954
  verb?: string | undefined;
1740
1955
  parameters?: any;
1741
1956
  requestBody?: any;
1957
+ response?: any;
1742
1958
  success?: boolean | undefined;
1743
1959
  executionTimeMs?: number | undefined;
1960
+ startTime?: string | undefined;
1961
+ endTime?: string | undefined;
1962
+ error?: string | undefined;
1744
1963
  }[] | undefined;
1745
1964
  modelInvocations?: {
1746
1965
  foundationModel?: string | undefined;
@@ -1751,38 +1970,71 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1751
1970
  endTime?: string | undefined;
1752
1971
  }[] | undefined;
1753
1972
  fullTrace?: any;
1754
- }[];
1973
+ };
1974
+ } & {}> | {
1975
+ rationale?: string[] | undefined;
1976
+ toolCalls?: {
1977
+ actionGroupName?: string | undefined;
1978
+ apiPath?: string | undefined;
1979
+ verb?: string | undefined;
1980
+ parameters?: any;
1981
+ requestBody?: any;
1982
+ response?: any;
1983
+ success?: boolean | undefined;
1984
+ executionTimeMs?: number | undefined;
1985
+ startTime?: string | undefined;
1986
+ endTime?: string | undefined;
1987
+ error?: string | undefined;
1988
+ }[] | undefined;
1989
+ modelInvocations?: {
1990
+ foundationModel?: string | undefined;
1991
+ inputTokens?: number | undefined;
1992
+ outputTokens?: number | undefined;
1993
+ totalTimeMs?: number | undefined;
1994
+ startTime?: string | undefined;
1995
+ endTime?: string | undefined;
1996
+ }[] | undefined;
1997
+ fullTrace?: any;
1998
+ } | undefined;
1999
+ type?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | Partial<{
2000
+ $gt?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2001
+ $gte?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2002
+ $lt?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2003
+ $lte?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2004
+ $ne?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2005
+ $in: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | ("answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message")[];
2006
+ $nin: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | ("answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message")[];
1755
2007
  } & {}> | undefined;
2008
+ updatedAt?: any;
1756
2009
  } | {
1757
2010
  $or: {
1758
- _id?: string | {} | Partial<{
2011
+ _id?: string | Partial<{
1759
2012
  $gt: string | {};
1760
2013
  $gte: string | {};
1761
2014
  $lt: string | {};
1762
2015
  $lte: string | {};
1763
2016
  $ne: string | {};
1764
- $in: string | {} | (string | {})[];
1765
- $nin: string | {} | (string | {})[];
1766
- } & {}> | undefined;
2017
+ $in: string | (string | {})[] | {};
2018
+ $nin: string | (string | {})[] | {};
2019
+ } & {}> | {} | undefined;
2020
+ agentId?: string | Partial<{
2021
+ $gt?: string | {} | undefined;
2022
+ $gte?: string | {} | undefined;
2023
+ $lt?: string | {} | undefined;
2024
+ $lte?: string | {} | undefined;
2025
+ $ne?: string | {} | undefined;
2026
+ $in: string | (string | {})[] | {};
2027
+ $nin: string | (string | {})[] | {};
2028
+ } & {}> | {} | undefined;
1767
2029
  createdAt?: any;
1768
- updatedAt?: any;
1769
- text?: string | Partial<{
1770
- $gt: string;
1771
- $gte: string;
1772
- $lt: string;
1773
- $lte: string;
1774
- $ne: string;
1775
- $in: string | string[];
1776
- $nin: string | string[];
1777
- } & {}> | undefined;
1778
- role?: "user" | "assistant" | Partial<{
1779
- $gt: "user" | "assistant";
1780
- $gte: "user" | "assistant";
1781
- $lt: "user" | "assistant";
1782
- $lte: "user" | "assistant";
1783
- $ne: "user" | "assistant";
1784
- $in: "user" | "assistant" | ("user" | "assistant")[];
1785
- $nin: "user" | "assistant" | ("user" | "assistant")[];
2030
+ role?: "assistant" | "user" | Partial<{
2031
+ $gt: "assistant" | "user";
2032
+ $gte: "assistant" | "user";
2033
+ $lt: "assistant" | "user";
2034
+ $lte: "assistant" | "user";
2035
+ $ne: "assistant" | "user";
2036
+ $in: "assistant" | "user" | ("assistant" | "user")[];
2037
+ $nin: "assistant" | "user" | ("assistant" | "user")[];
1786
2038
  } & {}> | undefined;
1787
2039
  sessionId?: string | Partial<{
1788
2040
  $gt?: string | undefined;
@@ -1793,48 +2045,30 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1793
2045
  $in: string | string[];
1794
2046
  $nin: string | string[];
1795
2047
  } & {}> | undefined;
1796
- agentId?: string | Partial<{
1797
- $gt?: string | undefined;
1798
- $gte?: string | undefined;
1799
- $lt?: string | undefined;
1800
- $lte?: string | undefined;
1801
- $ne?: string | undefined;
2048
+ text?: string | Partial<{
2049
+ $gt: string;
2050
+ $gte: string;
2051
+ $lt: string;
2052
+ $lte: string;
2053
+ $ne: string;
1802
2054
  $in: string | string[];
1803
2055
  $nin: string | string[];
1804
2056
  } & {}> | undefined;
1805
- trace?: {
1806
- rationale?: string[] | undefined;
1807
- toolCalls?: {
1808
- response?: any;
1809
- actionGroupName?: string | undefined;
1810
- apiPath?: string | undefined;
1811
- verb?: string | undefined;
1812
- parameters?: any;
1813
- requestBody?: any;
1814
- success?: boolean | undefined;
1815
- executionTimeMs?: number | undefined;
1816
- }[] | undefined;
1817
- modelInvocations?: {
1818
- foundationModel?: string | undefined;
1819
- inputTokens?: number | undefined;
1820
- outputTokens?: number | undefined;
1821
- totalTimeMs?: number | undefined;
1822
- startTime?: string | undefined;
1823
- endTime?: string | undefined;
1824
- }[] | undefined;
1825
- fullTrace?: any;
1826
- } | Partial<{
2057
+ trace?: Partial<{
1827
2058
  $gt?: {
1828
2059
  rationale?: string[] | undefined;
1829
2060
  toolCalls?: {
1830
- response?: any;
1831
2061
  actionGroupName?: string | undefined;
1832
2062
  apiPath?: string | undefined;
1833
2063
  verb?: string | undefined;
1834
2064
  parameters?: any;
1835
2065
  requestBody?: any;
2066
+ response?: any;
1836
2067
  success?: boolean | undefined;
1837
2068
  executionTimeMs?: number | undefined;
2069
+ startTime?: string | undefined;
2070
+ endTime?: string | undefined;
2071
+ error?: string | undefined;
1838
2072
  }[] | undefined;
1839
2073
  modelInvocations?: {
1840
2074
  foundationModel?: string | undefined;
@@ -1849,14 +2083,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1849
2083
  $gte?: {
1850
2084
  rationale?: string[] | undefined;
1851
2085
  toolCalls?: {
1852
- response?: any;
1853
2086
  actionGroupName?: string | undefined;
1854
2087
  apiPath?: string | undefined;
1855
2088
  verb?: string | undefined;
1856
2089
  parameters?: any;
1857
2090
  requestBody?: any;
2091
+ response?: any;
1858
2092
  success?: boolean | undefined;
1859
2093
  executionTimeMs?: number | undefined;
2094
+ startTime?: string | undefined;
2095
+ endTime?: string | undefined;
2096
+ error?: string | undefined;
1860
2097
  }[] | undefined;
1861
2098
  modelInvocations?: {
1862
2099
  foundationModel?: string | undefined;
@@ -1871,14 +2108,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1871
2108
  $lt?: {
1872
2109
  rationale?: string[] | undefined;
1873
2110
  toolCalls?: {
1874
- response?: any;
1875
2111
  actionGroupName?: string | undefined;
1876
2112
  apiPath?: string | undefined;
1877
2113
  verb?: string | undefined;
1878
2114
  parameters?: any;
1879
2115
  requestBody?: any;
2116
+ response?: any;
1880
2117
  success?: boolean | undefined;
1881
2118
  executionTimeMs?: number | undefined;
2119
+ startTime?: string | undefined;
2120
+ endTime?: string | undefined;
2121
+ error?: string | undefined;
1882
2122
  }[] | undefined;
1883
2123
  modelInvocations?: {
1884
2124
  foundationModel?: string | undefined;
@@ -1893,14 +2133,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1893
2133
  $lte?: {
1894
2134
  rationale?: string[] | undefined;
1895
2135
  toolCalls?: {
1896
- response?: any;
1897
2136
  actionGroupName?: string | undefined;
1898
2137
  apiPath?: string | undefined;
1899
2138
  verb?: string | undefined;
1900
2139
  parameters?: any;
1901
2140
  requestBody?: any;
2141
+ response?: any;
1902
2142
  success?: boolean | undefined;
1903
2143
  executionTimeMs?: number | undefined;
2144
+ startTime?: string | undefined;
2145
+ endTime?: string | undefined;
2146
+ error?: string | undefined;
1904
2147
  }[] | undefined;
1905
2148
  modelInvocations?: {
1906
2149
  foundationModel?: string | undefined;
@@ -1915,14 +2158,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1915
2158
  $ne?: {
1916
2159
  rationale?: string[] | undefined;
1917
2160
  toolCalls?: {
1918
- response?: any;
1919
2161
  actionGroupName?: string | undefined;
1920
2162
  apiPath?: string | undefined;
1921
2163
  verb?: string | undefined;
1922
2164
  parameters?: any;
1923
2165
  requestBody?: any;
2166
+ response?: any;
1924
2167
  success?: boolean | undefined;
1925
2168
  executionTimeMs?: number | undefined;
2169
+ startTime?: string | undefined;
2170
+ endTime?: string | undefined;
2171
+ error?: string | undefined;
1926
2172
  }[] | undefined;
1927
2173
  modelInvocations?: {
1928
2174
  foundationModel?: string | undefined;
@@ -1937,14 +2183,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1937
2183
  $in: {
1938
2184
  rationale?: string[] | undefined;
1939
2185
  toolCalls?: {
1940
- response?: any;
1941
2186
  actionGroupName?: string | undefined;
1942
2187
  apiPath?: string | undefined;
1943
2188
  verb?: string | undefined;
1944
2189
  parameters?: any;
1945
2190
  requestBody?: any;
2191
+ response?: any;
1946
2192
  success?: boolean | undefined;
1947
2193
  executionTimeMs?: number | undefined;
2194
+ startTime?: string | undefined;
2195
+ endTime?: string | undefined;
2196
+ error?: string | undefined;
1948
2197
  }[] | undefined;
1949
2198
  modelInvocations?: {
1950
2199
  foundationModel?: string | undefined;
@@ -1955,17 +2204,20 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1955
2204
  endTime?: string | undefined;
1956
2205
  }[] | undefined;
1957
2206
  fullTrace?: any;
1958
- } | {
2207
+ }[] | {
1959
2208
  rationale?: string[] | undefined;
1960
2209
  toolCalls?: {
1961
- response?: any;
1962
2210
  actionGroupName?: string | undefined;
1963
2211
  apiPath?: string | undefined;
1964
2212
  verb?: string | undefined;
1965
2213
  parameters?: any;
1966
2214
  requestBody?: any;
2215
+ response?: any;
1967
2216
  success?: boolean | undefined;
1968
2217
  executionTimeMs?: number | undefined;
2218
+ startTime?: string | undefined;
2219
+ endTime?: string | undefined;
2220
+ error?: string | undefined;
1969
2221
  }[] | undefined;
1970
2222
  modelInvocations?: {
1971
2223
  foundationModel?: string | undefined;
@@ -1976,18 +2228,21 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1976
2228
  endTime?: string | undefined;
1977
2229
  }[] | undefined;
1978
2230
  fullTrace?: any;
1979
- }[];
2231
+ };
1980
2232
  $nin: {
1981
2233
  rationale?: string[] | undefined;
1982
2234
  toolCalls?: {
1983
- response?: any;
1984
2235
  actionGroupName?: string | undefined;
1985
2236
  apiPath?: string | undefined;
1986
2237
  verb?: string | undefined;
1987
2238
  parameters?: any;
1988
2239
  requestBody?: any;
2240
+ response?: any;
1989
2241
  success?: boolean | undefined;
1990
2242
  executionTimeMs?: number | undefined;
2243
+ startTime?: string | undefined;
2244
+ endTime?: string | undefined;
2245
+ error?: string | undefined;
1991
2246
  }[] | undefined;
1992
2247
  modelInvocations?: {
1993
2248
  foundationModel?: string | undefined;
@@ -1998,17 +2253,20 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
1998
2253
  endTime?: string | undefined;
1999
2254
  }[] | undefined;
2000
2255
  fullTrace?: any;
2001
- } | {
2256
+ }[] | {
2002
2257
  rationale?: string[] | undefined;
2003
2258
  toolCalls?: {
2004
- response?: any;
2005
2259
  actionGroupName?: string | undefined;
2006
2260
  apiPath?: string | undefined;
2007
2261
  verb?: string | undefined;
2008
2262
  parameters?: any;
2009
2263
  requestBody?: any;
2264
+ response?: any;
2010
2265
  success?: boolean | undefined;
2011
2266
  executionTimeMs?: number | undefined;
2267
+ startTime?: string | undefined;
2268
+ endTime?: string | undefined;
2269
+ error?: string | undefined;
2012
2270
  }[] | undefined;
2013
2271
  modelInvocations?: {
2014
2272
  foundationModel?: string | undefined;
@@ -2019,39 +2277,72 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2019
2277
  endTime?: string | undefined;
2020
2278
  }[] | undefined;
2021
2279
  fullTrace?: any;
2022
- }[];
2280
+ };
2281
+ } & {}> | {
2282
+ rationale?: string[] | undefined;
2283
+ toolCalls?: {
2284
+ actionGroupName?: string | undefined;
2285
+ apiPath?: string | undefined;
2286
+ verb?: string | undefined;
2287
+ parameters?: any;
2288
+ requestBody?: any;
2289
+ response?: any;
2290
+ success?: boolean | undefined;
2291
+ executionTimeMs?: number | undefined;
2292
+ startTime?: string | undefined;
2293
+ endTime?: string | undefined;
2294
+ error?: string | undefined;
2295
+ }[] | undefined;
2296
+ modelInvocations?: {
2297
+ foundationModel?: string | undefined;
2298
+ inputTokens?: number | undefined;
2299
+ outputTokens?: number | undefined;
2300
+ totalTimeMs?: number | undefined;
2301
+ startTime?: string | undefined;
2302
+ endTime?: string | undefined;
2303
+ }[] | undefined;
2304
+ fullTrace?: any;
2305
+ } | undefined;
2306
+ type?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | Partial<{
2307
+ $gt?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2308
+ $gte?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2309
+ $lt?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2310
+ $lte?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2311
+ $ne?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2312
+ $in: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | ("answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message")[];
2313
+ $nin: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | ("answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message")[];
2023
2314
  } & {}> | undefined;
2315
+ updatedAt?: any;
2024
2316
  }[];
2025
2317
  })[];
2026
2318
  $or: {
2027
- _id?: string | {} | Partial<{
2319
+ _id?: string | Partial<{
2028
2320
  $gt: string | {};
2029
2321
  $gte: string | {};
2030
2322
  $lt: string | {};
2031
2323
  $lte: string | {};
2032
2324
  $ne: string | {};
2033
- $in: string | {} | (string | {})[];
2034
- $nin: string | {} | (string | {})[];
2035
- } & {}> | undefined;
2325
+ $in: string | (string | {})[] | {};
2326
+ $nin: string | (string | {})[] | {};
2327
+ } & {}> | {} | undefined;
2328
+ agentId?: string | Partial<{
2329
+ $gt?: string | {} | undefined;
2330
+ $gte?: string | {} | undefined;
2331
+ $lt?: string | {} | undefined;
2332
+ $lte?: string | {} | undefined;
2333
+ $ne?: string | {} | undefined;
2334
+ $in: string | (string | {})[] | {};
2335
+ $nin: string | (string | {})[] | {};
2336
+ } & {}> | {} | undefined;
2036
2337
  createdAt?: any;
2037
- updatedAt?: any;
2038
- text?: string | Partial<{
2039
- $gt: string;
2040
- $gte: string;
2041
- $lt: string;
2042
- $lte: string;
2043
- $ne: string;
2044
- $in: string | string[];
2045
- $nin: string | string[];
2046
- } & {}> | undefined;
2047
- role?: "user" | "assistant" | Partial<{
2048
- $gt: "user" | "assistant";
2049
- $gte: "user" | "assistant";
2050
- $lt: "user" | "assistant";
2051
- $lte: "user" | "assistant";
2052
- $ne: "user" | "assistant";
2053
- $in: "user" | "assistant" | ("user" | "assistant")[];
2054
- $nin: "user" | "assistant" | ("user" | "assistant")[];
2338
+ role?: "assistant" | "user" | Partial<{
2339
+ $gt: "assistant" | "user";
2340
+ $gte: "assistant" | "user";
2341
+ $lt: "assistant" | "user";
2342
+ $lte: "assistant" | "user";
2343
+ $ne: "assistant" | "user";
2344
+ $in: "assistant" | "user" | ("assistant" | "user")[];
2345
+ $nin: "assistant" | "user" | ("assistant" | "user")[];
2055
2346
  } & {}> | undefined;
2056
2347
  sessionId?: string | Partial<{
2057
2348
  $gt?: string | undefined;
@@ -2062,48 +2353,30 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2062
2353
  $in: string | string[];
2063
2354
  $nin: string | string[];
2064
2355
  } & {}> | undefined;
2065
- agentId?: string | Partial<{
2066
- $gt?: string | undefined;
2067
- $gte?: string | undefined;
2068
- $lt?: string | undefined;
2069
- $lte?: string | undefined;
2070
- $ne?: string | undefined;
2356
+ text?: string | Partial<{
2357
+ $gt: string;
2358
+ $gte: string;
2359
+ $lt: string;
2360
+ $lte: string;
2361
+ $ne: string;
2071
2362
  $in: string | string[];
2072
2363
  $nin: string | string[];
2073
2364
  } & {}> | undefined;
2074
- trace?: {
2075
- rationale?: string[] | undefined;
2076
- toolCalls?: {
2077
- response?: any;
2078
- actionGroupName?: string | undefined;
2079
- apiPath?: string | undefined;
2080
- verb?: string | undefined;
2081
- parameters?: any;
2082
- requestBody?: any;
2083
- success?: boolean | undefined;
2084
- executionTimeMs?: number | undefined;
2085
- }[] | undefined;
2086
- modelInvocations?: {
2087
- foundationModel?: string | undefined;
2088
- inputTokens?: number | undefined;
2089
- outputTokens?: number | undefined;
2090
- totalTimeMs?: number | undefined;
2091
- startTime?: string | undefined;
2092
- endTime?: string | undefined;
2093
- }[] | undefined;
2094
- fullTrace?: any;
2095
- } | Partial<{
2365
+ trace?: Partial<{
2096
2366
  $gt?: {
2097
2367
  rationale?: string[] | undefined;
2098
2368
  toolCalls?: {
2099
- response?: any;
2100
2369
  actionGroupName?: string | undefined;
2101
2370
  apiPath?: string | undefined;
2102
2371
  verb?: string | undefined;
2103
2372
  parameters?: any;
2104
2373
  requestBody?: any;
2374
+ response?: any;
2105
2375
  success?: boolean | undefined;
2106
2376
  executionTimeMs?: number | undefined;
2377
+ startTime?: string | undefined;
2378
+ endTime?: string | undefined;
2379
+ error?: string | undefined;
2107
2380
  }[] | undefined;
2108
2381
  modelInvocations?: {
2109
2382
  foundationModel?: string | undefined;
@@ -2118,14 +2391,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2118
2391
  $gte?: {
2119
2392
  rationale?: string[] | undefined;
2120
2393
  toolCalls?: {
2121
- response?: any;
2122
2394
  actionGroupName?: string | undefined;
2123
2395
  apiPath?: string | undefined;
2124
2396
  verb?: string | undefined;
2125
2397
  parameters?: any;
2126
2398
  requestBody?: any;
2399
+ response?: any;
2127
2400
  success?: boolean | undefined;
2128
2401
  executionTimeMs?: number | undefined;
2402
+ startTime?: string | undefined;
2403
+ endTime?: string | undefined;
2404
+ error?: string | undefined;
2129
2405
  }[] | undefined;
2130
2406
  modelInvocations?: {
2131
2407
  foundationModel?: string | undefined;
@@ -2140,14 +2416,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2140
2416
  $lt?: {
2141
2417
  rationale?: string[] | undefined;
2142
2418
  toolCalls?: {
2143
- response?: any;
2144
2419
  actionGroupName?: string | undefined;
2145
2420
  apiPath?: string | undefined;
2146
2421
  verb?: string | undefined;
2147
2422
  parameters?: any;
2148
2423
  requestBody?: any;
2424
+ response?: any;
2149
2425
  success?: boolean | undefined;
2150
2426
  executionTimeMs?: number | undefined;
2427
+ startTime?: string | undefined;
2428
+ endTime?: string | undefined;
2429
+ error?: string | undefined;
2151
2430
  }[] | undefined;
2152
2431
  modelInvocations?: {
2153
2432
  foundationModel?: string | undefined;
@@ -2162,14 +2441,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2162
2441
  $lte?: {
2163
2442
  rationale?: string[] | undefined;
2164
2443
  toolCalls?: {
2165
- response?: any;
2166
2444
  actionGroupName?: string | undefined;
2167
2445
  apiPath?: string | undefined;
2168
2446
  verb?: string | undefined;
2169
2447
  parameters?: any;
2170
2448
  requestBody?: any;
2449
+ response?: any;
2171
2450
  success?: boolean | undefined;
2172
2451
  executionTimeMs?: number | undefined;
2452
+ startTime?: string | undefined;
2453
+ endTime?: string | undefined;
2454
+ error?: string | undefined;
2173
2455
  }[] | undefined;
2174
2456
  modelInvocations?: {
2175
2457
  foundationModel?: string | undefined;
@@ -2184,14 +2466,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2184
2466
  $ne?: {
2185
2467
  rationale?: string[] | undefined;
2186
2468
  toolCalls?: {
2187
- response?: any;
2188
2469
  actionGroupName?: string | undefined;
2189
2470
  apiPath?: string | undefined;
2190
2471
  verb?: string | undefined;
2191
2472
  parameters?: any;
2192
2473
  requestBody?: any;
2474
+ response?: any;
2193
2475
  success?: boolean | undefined;
2194
2476
  executionTimeMs?: number | undefined;
2477
+ startTime?: string | undefined;
2478
+ endTime?: string | undefined;
2479
+ error?: string | undefined;
2195
2480
  }[] | undefined;
2196
2481
  modelInvocations?: {
2197
2482
  foundationModel?: string | undefined;
@@ -2206,14 +2491,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2206
2491
  $in: {
2207
2492
  rationale?: string[] | undefined;
2208
2493
  toolCalls?: {
2209
- response?: any;
2210
2494
  actionGroupName?: string | undefined;
2211
2495
  apiPath?: string | undefined;
2212
2496
  verb?: string | undefined;
2213
2497
  parameters?: any;
2214
2498
  requestBody?: any;
2499
+ response?: any;
2215
2500
  success?: boolean | undefined;
2216
2501
  executionTimeMs?: number | undefined;
2502
+ startTime?: string | undefined;
2503
+ endTime?: string | undefined;
2504
+ error?: string | undefined;
2217
2505
  }[] | undefined;
2218
2506
  modelInvocations?: {
2219
2507
  foundationModel?: string | undefined;
@@ -2224,17 +2512,20 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2224
2512
  endTime?: string | undefined;
2225
2513
  }[] | undefined;
2226
2514
  fullTrace?: any;
2227
- } | {
2515
+ }[] | {
2228
2516
  rationale?: string[] | undefined;
2229
2517
  toolCalls?: {
2230
- response?: any;
2231
2518
  actionGroupName?: string | undefined;
2232
2519
  apiPath?: string | undefined;
2233
2520
  verb?: string | undefined;
2234
2521
  parameters?: any;
2235
2522
  requestBody?: any;
2523
+ response?: any;
2236
2524
  success?: boolean | undefined;
2237
2525
  executionTimeMs?: number | undefined;
2526
+ startTime?: string | undefined;
2527
+ endTime?: string | undefined;
2528
+ error?: string | undefined;
2238
2529
  }[] | undefined;
2239
2530
  modelInvocations?: {
2240
2531
  foundationModel?: string | undefined;
@@ -2245,18 +2536,21 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2245
2536
  endTime?: string | undefined;
2246
2537
  }[] | undefined;
2247
2538
  fullTrace?: any;
2248
- }[];
2539
+ };
2249
2540
  $nin: {
2250
2541
  rationale?: string[] | undefined;
2251
2542
  toolCalls?: {
2252
- response?: any;
2253
2543
  actionGroupName?: string | undefined;
2254
2544
  apiPath?: string | undefined;
2255
2545
  verb?: string | undefined;
2256
2546
  parameters?: any;
2257
2547
  requestBody?: any;
2548
+ response?: any;
2258
2549
  success?: boolean | undefined;
2259
2550
  executionTimeMs?: number | undefined;
2551
+ startTime?: string | undefined;
2552
+ endTime?: string | undefined;
2553
+ error?: string | undefined;
2260
2554
  }[] | undefined;
2261
2555
  modelInvocations?: {
2262
2556
  foundationModel?: string | undefined;
@@ -2267,17 +2561,20 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2267
2561
  endTime?: string | undefined;
2268
2562
  }[] | undefined;
2269
2563
  fullTrace?: any;
2270
- } | {
2564
+ }[] | {
2271
2565
  rationale?: string[] | undefined;
2272
2566
  toolCalls?: {
2273
- response?: any;
2274
2567
  actionGroupName?: string | undefined;
2275
2568
  apiPath?: string | undefined;
2276
2569
  verb?: string | undefined;
2277
2570
  parameters?: any;
2278
2571
  requestBody?: any;
2572
+ response?: any;
2279
2573
  success?: boolean | undefined;
2280
2574
  executionTimeMs?: number | undefined;
2575
+ startTime?: string | undefined;
2576
+ endTime?: string | undefined;
2577
+ error?: string | undefined;
2281
2578
  }[] | undefined;
2282
2579
  modelInvocations?: {
2283
2580
  foundationModel?: string | undefined;
@@ -2288,38 +2585,71 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2288
2585
  endTime?: string | undefined;
2289
2586
  }[] | undefined;
2290
2587
  fullTrace?: any;
2291
- }[];
2588
+ };
2589
+ } & {}> | {
2590
+ rationale?: string[] | undefined;
2591
+ toolCalls?: {
2592
+ actionGroupName?: string | undefined;
2593
+ apiPath?: string | undefined;
2594
+ verb?: string | undefined;
2595
+ parameters?: any;
2596
+ requestBody?: any;
2597
+ response?: any;
2598
+ success?: boolean | undefined;
2599
+ executionTimeMs?: number | undefined;
2600
+ startTime?: string | undefined;
2601
+ endTime?: string | undefined;
2602
+ error?: string | undefined;
2603
+ }[] | undefined;
2604
+ modelInvocations?: {
2605
+ foundationModel?: string | undefined;
2606
+ inputTokens?: number | undefined;
2607
+ outputTokens?: number | undefined;
2608
+ totalTimeMs?: number | undefined;
2609
+ startTime?: string | undefined;
2610
+ endTime?: string | undefined;
2611
+ }[] | undefined;
2612
+ fullTrace?: any;
2613
+ } | undefined;
2614
+ type?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | Partial<{
2615
+ $gt?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2616
+ $gte?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2617
+ $lt?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2618
+ $lte?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2619
+ $ne?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2620
+ $in: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | ("answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message")[];
2621
+ $nin: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | ("answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message")[];
2292
2622
  } & {}> | undefined;
2623
+ updatedAt?: any;
2293
2624
  }[];
2294
2625
  }> & {
2295
- _id?: string | {} | Partial<{
2626
+ _id?: string | Partial<{
2296
2627
  $gt: string | {};
2297
2628
  $gte: string | {};
2298
2629
  $lt: string | {};
2299
2630
  $lte: string | {};
2300
2631
  $ne: string | {};
2301
- $in: string | {} | (string | {})[];
2302
- $nin: string | {} | (string | {})[];
2303
- } & {}> | undefined;
2632
+ $in: string | (string | {})[] | {};
2633
+ $nin: string | (string | {})[] | {};
2634
+ } & {}> | {} | undefined;
2635
+ agentId?: string | Partial<{
2636
+ $gt?: string | {} | undefined;
2637
+ $gte?: string | {} | undefined;
2638
+ $lt?: string | {} | undefined;
2639
+ $lte?: string | {} | undefined;
2640
+ $ne?: string | {} | undefined;
2641
+ $in: string | (string | {})[] | {};
2642
+ $nin: string | (string | {})[] | {};
2643
+ } & {}> | {} | undefined;
2304
2644
  createdAt?: any;
2305
- updatedAt?: any;
2306
- text?: string | Partial<{
2307
- $gt: string;
2308
- $gte: string;
2309
- $lt: string;
2310
- $lte: string;
2311
- $ne: string;
2312
- $in: string | string[];
2313
- $nin: string | string[];
2314
- } & {}> | undefined;
2315
- role?: "user" | "assistant" | Partial<{
2316
- $gt: "user" | "assistant";
2317
- $gte: "user" | "assistant";
2318
- $lt: "user" | "assistant";
2319
- $lte: "user" | "assistant";
2320
- $ne: "user" | "assistant";
2321
- $in: "user" | "assistant" | ("user" | "assistant")[];
2322
- $nin: "user" | "assistant" | ("user" | "assistant")[];
2645
+ role?: "assistant" | "user" | Partial<{
2646
+ $gt: "assistant" | "user";
2647
+ $gte: "assistant" | "user";
2648
+ $lt: "assistant" | "user";
2649
+ $lte: "assistant" | "user";
2650
+ $ne: "assistant" | "user";
2651
+ $in: "assistant" | "user" | ("assistant" | "user")[];
2652
+ $nin: "assistant" | "user" | ("assistant" | "user")[];
2323
2653
  } & {}> | undefined;
2324
2654
  sessionId?: string | Partial<{
2325
2655
  $gt?: string | undefined;
@@ -2330,48 +2660,30 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2330
2660
  $in: string | string[];
2331
2661
  $nin: string | string[];
2332
2662
  } & {}> | undefined;
2333
- agentId?: string | Partial<{
2334
- $gt?: string | undefined;
2335
- $gte?: string | undefined;
2336
- $lt?: string | undefined;
2337
- $lte?: string | undefined;
2338
- $ne?: string | undefined;
2663
+ text?: string | Partial<{
2664
+ $gt: string;
2665
+ $gte: string;
2666
+ $lt: string;
2667
+ $lte: string;
2668
+ $ne: string;
2339
2669
  $in: string | string[];
2340
2670
  $nin: string | string[];
2341
2671
  } & {}> | undefined;
2342
- trace?: {
2343
- rationale?: string[] | undefined;
2344
- toolCalls?: {
2345
- response?: any;
2346
- actionGroupName?: string | undefined;
2347
- apiPath?: string | undefined;
2348
- verb?: string | undefined;
2349
- parameters?: any;
2350
- requestBody?: any;
2351
- success?: boolean | undefined;
2352
- executionTimeMs?: number | undefined;
2353
- }[] | undefined;
2354
- modelInvocations?: {
2355
- foundationModel?: string | undefined;
2356
- inputTokens?: number | undefined;
2357
- outputTokens?: number | undefined;
2358
- totalTimeMs?: number | undefined;
2359
- startTime?: string | undefined;
2360
- endTime?: string | undefined;
2361
- }[] | undefined;
2362
- fullTrace?: any;
2363
- } | Partial<{
2672
+ trace?: Partial<{
2364
2673
  $gt?: {
2365
2674
  rationale?: string[] | undefined;
2366
2675
  toolCalls?: {
2367
- response?: any;
2368
2676
  actionGroupName?: string | undefined;
2369
2677
  apiPath?: string | undefined;
2370
2678
  verb?: string | undefined;
2371
2679
  parameters?: any;
2372
2680
  requestBody?: any;
2681
+ response?: any;
2373
2682
  success?: boolean | undefined;
2374
2683
  executionTimeMs?: number | undefined;
2684
+ startTime?: string | undefined;
2685
+ endTime?: string | undefined;
2686
+ error?: string | undefined;
2375
2687
  }[] | undefined;
2376
2688
  modelInvocations?: {
2377
2689
  foundationModel?: string | undefined;
@@ -2386,14 +2698,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2386
2698
  $gte?: {
2387
2699
  rationale?: string[] | undefined;
2388
2700
  toolCalls?: {
2389
- response?: any;
2390
2701
  actionGroupName?: string | undefined;
2391
2702
  apiPath?: string | undefined;
2392
2703
  verb?: string | undefined;
2393
2704
  parameters?: any;
2394
2705
  requestBody?: any;
2706
+ response?: any;
2395
2707
  success?: boolean | undefined;
2396
2708
  executionTimeMs?: number | undefined;
2709
+ startTime?: string | undefined;
2710
+ endTime?: string | undefined;
2711
+ error?: string | undefined;
2397
2712
  }[] | undefined;
2398
2713
  modelInvocations?: {
2399
2714
  foundationModel?: string | undefined;
@@ -2408,14 +2723,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2408
2723
  $lt?: {
2409
2724
  rationale?: string[] | undefined;
2410
2725
  toolCalls?: {
2411
- response?: any;
2412
2726
  actionGroupName?: string | undefined;
2413
2727
  apiPath?: string | undefined;
2414
2728
  verb?: string | undefined;
2415
2729
  parameters?: any;
2416
2730
  requestBody?: any;
2731
+ response?: any;
2417
2732
  success?: boolean | undefined;
2418
2733
  executionTimeMs?: number | undefined;
2734
+ startTime?: string | undefined;
2735
+ endTime?: string | undefined;
2736
+ error?: string | undefined;
2419
2737
  }[] | undefined;
2420
2738
  modelInvocations?: {
2421
2739
  foundationModel?: string | undefined;
@@ -2430,14 +2748,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2430
2748
  $lte?: {
2431
2749
  rationale?: string[] | undefined;
2432
2750
  toolCalls?: {
2433
- response?: any;
2434
2751
  actionGroupName?: string | undefined;
2435
2752
  apiPath?: string | undefined;
2436
2753
  verb?: string | undefined;
2437
2754
  parameters?: any;
2438
2755
  requestBody?: any;
2756
+ response?: any;
2439
2757
  success?: boolean | undefined;
2440
2758
  executionTimeMs?: number | undefined;
2759
+ startTime?: string | undefined;
2760
+ endTime?: string | undefined;
2761
+ error?: string | undefined;
2441
2762
  }[] | undefined;
2442
2763
  modelInvocations?: {
2443
2764
  foundationModel?: string | undefined;
@@ -2452,14 +2773,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2452
2773
  $ne?: {
2453
2774
  rationale?: string[] | undefined;
2454
2775
  toolCalls?: {
2455
- response?: any;
2456
2776
  actionGroupName?: string | undefined;
2457
2777
  apiPath?: string | undefined;
2458
2778
  verb?: string | undefined;
2459
2779
  parameters?: any;
2460
2780
  requestBody?: any;
2781
+ response?: any;
2461
2782
  success?: boolean | undefined;
2462
2783
  executionTimeMs?: number | undefined;
2784
+ startTime?: string | undefined;
2785
+ endTime?: string | undefined;
2786
+ error?: string | undefined;
2463
2787
  }[] | undefined;
2464
2788
  modelInvocations?: {
2465
2789
  foundationModel?: string | undefined;
@@ -2474,14 +2798,17 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2474
2798
  $in: {
2475
2799
  rationale?: string[] | undefined;
2476
2800
  toolCalls?: {
2477
- response?: any;
2478
2801
  actionGroupName?: string | undefined;
2479
2802
  apiPath?: string | undefined;
2480
2803
  verb?: string | undefined;
2481
2804
  parameters?: any;
2482
2805
  requestBody?: any;
2806
+ response?: any;
2483
2807
  success?: boolean | undefined;
2484
2808
  executionTimeMs?: number | undefined;
2809
+ startTime?: string | undefined;
2810
+ endTime?: string | undefined;
2811
+ error?: string | undefined;
2485
2812
  }[] | undefined;
2486
2813
  modelInvocations?: {
2487
2814
  foundationModel?: string | undefined;
@@ -2492,17 +2819,20 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2492
2819
  endTime?: string | undefined;
2493
2820
  }[] | undefined;
2494
2821
  fullTrace?: any;
2495
- } | {
2822
+ }[] | {
2496
2823
  rationale?: string[] | undefined;
2497
2824
  toolCalls?: {
2498
- response?: any;
2499
2825
  actionGroupName?: string | undefined;
2500
2826
  apiPath?: string | undefined;
2501
2827
  verb?: string | undefined;
2502
2828
  parameters?: any;
2503
2829
  requestBody?: any;
2830
+ response?: any;
2504
2831
  success?: boolean | undefined;
2505
2832
  executionTimeMs?: number | undefined;
2833
+ startTime?: string | undefined;
2834
+ endTime?: string | undefined;
2835
+ error?: string | undefined;
2506
2836
  }[] | undefined;
2507
2837
  modelInvocations?: {
2508
2838
  foundationModel?: string | undefined;
@@ -2513,18 +2843,21 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2513
2843
  endTime?: string | undefined;
2514
2844
  }[] | undefined;
2515
2845
  fullTrace?: any;
2516
- }[];
2846
+ };
2517
2847
  $nin: {
2518
2848
  rationale?: string[] | undefined;
2519
2849
  toolCalls?: {
2520
- response?: any;
2521
2850
  actionGroupName?: string | undefined;
2522
2851
  apiPath?: string | undefined;
2523
2852
  verb?: string | undefined;
2524
2853
  parameters?: any;
2525
2854
  requestBody?: any;
2855
+ response?: any;
2526
2856
  success?: boolean | undefined;
2527
2857
  executionTimeMs?: number | undefined;
2858
+ startTime?: string | undefined;
2859
+ endTime?: string | undefined;
2860
+ error?: string | undefined;
2528
2861
  }[] | undefined;
2529
2862
  modelInvocations?: {
2530
2863
  foundationModel?: string | undefined;
@@ -2535,17 +2868,20 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2535
2868
  endTime?: string | undefined;
2536
2869
  }[] | undefined;
2537
2870
  fullTrace?: any;
2538
- } | {
2871
+ }[] | {
2539
2872
  rationale?: string[] | undefined;
2540
2873
  toolCalls?: {
2541
- response?: any;
2542
2874
  actionGroupName?: string | undefined;
2543
2875
  apiPath?: string | undefined;
2544
2876
  verb?: string | undefined;
2545
2877
  parameters?: any;
2546
2878
  requestBody?: any;
2879
+ response?: any;
2547
2880
  success?: boolean | undefined;
2548
2881
  executionTimeMs?: number | undefined;
2882
+ startTime?: string | undefined;
2883
+ endTime?: string | undefined;
2884
+ error?: string | undefined;
2549
2885
  }[] | undefined;
2550
2886
  modelInvocations?: {
2551
2887
  foundationModel?: string | undefined;
@@ -2556,6 +2892,40 @@ export declare const agentsSessionsConversationsQueryResolver: import("@feathers
2556
2892
  endTime?: string | undefined;
2557
2893
  }[] | undefined;
2558
2894
  fullTrace?: any;
2559
- }[];
2895
+ };
2896
+ } & {}> | {
2897
+ rationale?: string[] | undefined;
2898
+ toolCalls?: {
2899
+ actionGroupName?: string | undefined;
2900
+ apiPath?: string | undefined;
2901
+ verb?: string | undefined;
2902
+ parameters?: any;
2903
+ requestBody?: any;
2904
+ response?: any;
2905
+ success?: boolean | undefined;
2906
+ executionTimeMs?: number | undefined;
2907
+ startTime?: string | undefined;
2908
+ endTime?: string | undefined;
2909
+ error?: string | undefined;
2910
+ }[] | undefined;
2911
+ modelInvocations?: {
2912
+ foundationModel?: string | undefined;
2913
+ inputTokens?: number | undefined;
2914
+ outputTokens?: number | undefined;
2915
+ totalTimeMs?: number | undefined;
2916
+ startTime?: string | undefined;
2917
+ endTime?: string | undefined;
2918
+ }[] | undefined;
2919
+ fullTrace?: any;
2920
+ } | undefined;
2921
+ type?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | Partial<{
2922
+ $gt?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2923
+ $gte?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2924
+ $lt?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2925
+ $lte?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2926
+ $ne?: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | undefined;
2927
+ $in: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | ("answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message")[];
2928
+ $nin: "answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message" | ("answer" | "debug_request" | "debug_response" | "error" | "final_response" | "loading" | "model_output" | "question" | "response" | "supervisor_announcement" | "supervisor_decision" | "supervisor_question" | "supervisor_report" | "system_prompt" | "thinking" | "tool_call" | "tool_response" | "tool_result" | "tool_usage" | "user_message")[];
2560
2929
  } & {}> | undefined;
2930
+ updatedAt?: any;
2561
2931
  } & {}, HookContext<AgentsSessionsConversationsService<import("./conversations.class").AgentsSessionsConversationsParams>>>;