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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (617) hide show
  1. package/lib/src/client.d.ts +260 -0
  2. package/lib/src/client.js +165 -23
  3. package/lib/src/services/advisor/advisor.class.d.ts +12 -0
  4. package/lib/src/services/advisor/advisor.d.ts +11 -0
  5. package/lib/src/services/advisor/advisor.hooks.d.ts +9 -0
  6. package/lib/src/services/advisor/advisor.schema.d.ts +2744 -0
  7. package/lib/src/services/advisor/advisor.shared.d.ts +13 -0
  8. package/lib/src/services/advisor/advisor.shared.js +13 -0
  9. package/lib/src/services/advisor/messages/messages.class.d.ts +11 -0
  10. package/lib/src/services/advisor/messages/messages.d.ts +11 -0
  11. package/lib/src/services/advisor/messages/messages.schema.d.ts +575 -0
  12. package/lib/src/services/advisor/messages/messages.shared.d.ts +13 -0
  13. package/lib/src/services/advisor/messages/messages.shared.js +13 -0
  14. package/lib/src/services/affiliates/affiliates.class.d.ts +18 -0
  15. package/lib/src/services/affiliates/affiliates.d.ts +11 -0
  16. package/lib/src/services/affiliates/affiliates.schema.d.ts +579 -0
  17. package/lib/src/services/affiliates/affiliates.shared.d.ts +13 -0
  18. package/lib/src/services/affiliates/affiliates.shared.js +20 -0
  19. package/lib/src/services/affiliates/clicks/clicks.class.d.ts +11 -0
  20. package/lib/src/services/affiliates/clicks/clicks.d.ts +11 -0
  21. package/lib/src/services/affiliates/clicks/clicks.schema.d.ts +507 -0
  22. package/lib/src/services/affiliates/clicks/clicks.shared.d.ts +13 -0
  23. package/lib/src/services/affiliates/clicks/clicks.shared.js +19 -0
  24. package/lib/src/services/affiliates/comissions/comissions.class.d.ts +11 -0
  25. package/lib/src/services/affiliates/comissions/comissions.d.ts +11 -0
  26. package/lib/src/services/affiliates/comissions/comissions.schema.d.ts +841 -0
  27. package/lib/src/services/affiliates/comissions/comissions.shared.d.ts +13 -0
  28. package/lib/src/services/affiliates/comissions/comissions.shared.js +19 -0
  29. package/lib/src/services/affiliates/contracts/contracts.class.d.ts +11 -0
  30. package/lib/src/services/affiliates/contracts/contracts.d.ts +11 -0
  31. package/lib/src/services/affiliates/contracts/contracts.schema.d.ts +667 -0
  32. package/lib/src/services/affiliates/contracts/contracts.shared.d.ts +13 -0
  33. package/lib/src/services/affiliates/contracts/contracts.shared.js +19 -0
  34. package/lib/src/services/affiliates/coupons/coupons.class.d.ts +11 -0
  35. package/lib/src/services/affiliates/coupons/coupons.d.ts +11 -0
  36. package/lib/src/services/affiliates/coupons/coupons.schema.d.ts +523 -0
  37. package/lib/src/services/affiliates/coupons/coupons.shared.d.ts +13 -0
  38. package/lib/src/services/affiliates/coupons/coupons.shared.js +19 -0
  39. package/lib/src/services/affiliates/links/links.class.d.ts +11 -0
  40. package/lib/src/services/affiliates/links/links.d.ts +11 -0
  41. package/lib/src/services/affiliates/links/links.schema.d.ts +515 -0
  42. package/lib/src/services/affiliates/links/links.shared.d.ts +13 -0
  43. package/lib/src/services/affiliates/links/links.shared.js +13 -0
  44. package/lib/src/services/affiliates/payouts/payouts.class.d.ts +11 -0
  45. package/lib/src/services/affiliates/payouts/payouts.d.ts +11 -0
  46. package/lib/src/services/affiliates/payouts/payouts.schema.d.ts +433 -0
  47. package/lib/src/services/affiliates/payouts/payouts.shared.d.ts +13 -0
  48. package/lib/src/services/affiliates/payouts/payouts.shared.js +19 -0
  49. package/lib/src/services/agents/agents.class.d.ts +3 -2
  50. package/lib/src/services/agents/agents.schema.d.ts +2263 -1061
  51. package/lib/src/services/agents/agents.shared.d.ts +1 -1
  52. package/lib/src/services/agents/configure-bedrock-features.hooks.d.ts +2 -0
  53. package/lib/src/services/agents/create-agent-api-key.hooks.d.ts +2 -0
  54. package/lib/src/services/agents/create-bedrock-agent.hooks.d.ts +2 -0
  55. package/lib/src/services/agents/delete-agent-api-key.hooks.d.ts +2 -0
  56. package/lib/src/services/agents/delete-agent-triggers.hooks.d.ts +5 -0
  57. package/lib/src/services/agents/delete-bedrock-agent.hooks.d.ts +2 -0
  58. package/lib/src/services/agents/manage-bedrock-action-groups.hooks.d.ts +2 -0
  59. package/lib/src/services/agents/prepare/agents/backtest-analyst.d.ts +2 -0
  60. package/lib/src/services/agents/prepare/agents/financial-manager.d.ts +16 -0
  61. package/lib/src/services/agents/prepare/agents/hyperopt-analyst.d.ts +2 -0
  62. package/lib/src/services/agents/prepare/agents/index.d.ts +13 -0
  63. package/lib/src/services/agents/prepare/agents/risk-critic.d.ts +2 -0
  64. package/lib/src/services/agents/prepare/agents/strategy-researcher.d.ts +2 -0
  65. package/lib/src/services/agents/prepare/prepare.schema.d.ts +24 -24
  66. package/lib/src/services/agents/prepare/prepare.shared.d.ts +1 -1
  67. package/lib/src/services/agents/refresh-bedrock-agent-status.hooks.d.ts +2 -0
  68. package/lib/src/services/agents/sessions/conversations/conversations.class.d.ts +3 -2
  69. package/lib/src/services/agents/sessions/conversations/conversations.hooks.d.ts +11 -0
  70. package/lib/src/services/agents/sessions/conversations/conversations.schema.d.ts +833 -463
  71. package/lib/src/services/agents/sessions/conversations/conversations.shared.d.ts +1 -1
  72. package/lib/src/services/agents/sessions/conversations/invoke-agent-provider.hooks.d.ts +2 -0
  73. package/lib/src/services/agents/sessions/conversations/invoke-bedrock-agent.hooks.d.ts +2 -0
  74. package/lib/src/services/agents/sessions/conversations/set-conversation-timestamps.hooks.d.ts +0 -0
  75. package/lib/src/services/agents/sessions/create-bedrock-session.hooks.d.ts +2 -0
  76. package/lib/src/services/agents/sessions/delete-bedrock-session.hooks.d.ts +2 -0
  77. package/lib/src/services/agents/sessions/sessions.class.d.ts +3 -2
  78. package/lib/src/services/agents/sessions/sessions.hooks.d.ts +11 -0
  79. package/lib/src/services/agents/sessions/sessions.schema.d.ts +450 -362
  80. package/lib/src/services/agents/sessions/sessions.shared.d.ts +1 -1
  81. package/lib/src/services/agents/sessions/sync-bedrock-sessions.hooks.d.ts +2 -0
  82. package/lib/src/services/agents/sessions/update-bedrock-session.hooks.d.ts +2 -0
  83. package/lib/src/services/agents/update-bedrock-agent.hooks.d.ts +2 -0
  84. package/lib/src/services/agents/update-trigger-rules-with-agent-info.hooks.d.ts +5 -0
  85. package/lib/src/services/agents/validate-agent-actions.hooks.d.ts +3 -0
  86. package/lib/src/services/autotune/apply-params.d.ts +44 -0
  87. package/lib/src/services/autotune/callback.d.ts +2 -0
  88. package/lib/src/services/autotune/compute/compute.d.ts +40 -0
  89. package/lib/src/services/autotune/optuna-bridge.d.ts +10 -0
  90. package/lib/src/services/autotune/score.d.ts +37 -0
  91. package/lib/src/services/autotune/storage.d.ts +6 -0
  92. package/lib/src/services/autotune/studies/studies.class.d.ts +12 -0
  93. package/lib/src/services/autotune/studies/studies.d.ts +12 -0
  94. package/lib/src/services/autotune/studies/studies.schema.d.ts +1229 -0
  95. package/lib/src/services/autotune/studies/studies.shared.d.ts +13 -0
  96. package/lib/src/services/autotune/studies/studies.shared.js +13 -0
  97. package/lib/src/services/autotune/trials/trials.class.d.ts +12 -0
  98. package/lib/src/services/autotune/trials/trials.d.ts +12 -0
  99. package/lib/src/services/autotune/trials/trials.schema.d.ts +790 -0
  100. package/lib/src/services/autotune/trials/trials.shared.d.ts +13 -0
  101. package/lib/src/services/autotune/trials/trials.shared.js +13 -0
  102. package/lib/src/services/autotune/usage/usage.class.d.ts +11 -0
  103. package/lib/src/services/autotune/usage/usage.d.ts +11 -0
  104. package/lib/src/services/autotune/usage/usage.schema.d.ts +1407 -0
  105. package/lib/src/services/autotune/usage/usage.shared.d.ts +13 -0
  106. package/lib/src/services/autotune/usage/usage.shared.js +13 -0
  107. package/lib/src/services/blog/actions/actions.class.d.ts +29 -0
  108. package/lib/src/services/blog/actions/actions.d.ts +10 -0
  109. package/lib/src/services/blog/actions/actions.shared.d.ts +13 -0
  110. package/lib/src/services/blog/actions/actions.shared.js +13 -0
  111. package/lib/src/services/blog/calendar/calendar.class.d.ts +11 -0
  112. package/lib/src/services/blog/calendar/calendar.d.ts +11 -0
  113. package/lib/src/services/blog/calendar/calendar.schema.d.ts +333 -0
  114. package/lib/src/services/blog/calendar/calendar.shared.d.ts +13 -0
  115. package/lib/src/services/blog/calendar/calendar.shared.js +13 -0
  116. package/lib/src/services/blog/integrations/integrations.class.d.ts +11 -0
  117. package/lib/src/services/blog/integrations/integrations.d.ts +11 -0
  118. package/lib/src/services/blog/integrations/integrations.schema.d.ts +391 -0
  119. package/lib/src/services/blog/integrations/integrations.shared.d.ts +13 -0
  120. package/lib/src/services/blog/integrations/integrations.shared.js +19 -0
  121. package/lib/src/services/blog/posts/posts.class.d.ts +11 -0
  122. package/lib/src/services/blog/posts/posts.d.ts +11 -0
  123. package/lib/src/services/blog/posts/posts.schema.d.ts +1295 -0
  124. package/lib/src/services/blog/posts/posts.shared.d.ts +13 -0
  125. package/lib/src/services/blog/posts/posts.shared.js +13 -0
  126. package/lib/src/services/blog/queries/queries.class.d.ts +11 -0
  127. package/lib/src/services/blog/queries/queries.d.ts +11 -0
  128. package/lib/src/services/blog/queries/queries.schema.d.ts +1187 -0
  129. package/lib/src/services/blog/queries/queries.shared.d.ts +13 -0
  130. package/lib/src/services/blog/queries/queries.shared.js +13 -0
  131. package/lib/src/services/blog/sitemaps/pages/pages.class.d.ts +11 -0
  132. package/lib/src/services/blog/sitemaps/pages/pages.d.ts +11 -0
  133. package/lib/src/services/blog/sitemaps/pages/pages.schema.d.ts +871 -0
  134. package/lib/src/services/blog/sitemaps/pages/pages.shared.d.ts +13 -0
  135. package/lib/src/services/blog/sitemaps/pages/pages.shared.js +13 -0
  136. package/lib/src/services/blog/sitemaps/sitemaps.class.d.ts +11 -0
  137. package/lib/src/services/blog/sitemaps/sitemaps.d.ts +11 -0
  138. package/lib/src/services/blog/sitemaps/sitemaps.schema.d.ts +770 -0
  139. package/lib/src/services/blog/sitemaps/sitemaps.shared.d.ts +13 -0
  140. package/lib/src/services/blog/sitemaps/sitemaps.shared.js +13 -0
  141. package/lib/src/services/blog/suggestions/suggestions.class.d.ts +11 -0
  142. package/lib/src/services/blog/suggestions/suggestions.d.ts +11 -0
  143. package/lib/src/services/blog/suggestions/suggestions.schema.d.ts +963 -0
  144. package/lib/src/services/blog/suggestions/suggestions.shared.d.ts +13 -0
  145. package/lib/src/services/blog/suggestions/suggestions.shared.js +13 -0
  146. package/lib/src/services/changelog/changelog.class.d.ts +34 -0
  147. package/lib/src/services/changelog/changelog.d.ts +11 -0
  148. package/lib/src/services/changelog/changelog.helper.d.ts +50 -0
  149. package/lib/src/services/changelog/changelog.schema.d.ts +456 -0
  150. package/lib/src/services/changelog/changelog.shared.d.ts +13 -0
  151. package/lib/src/services/changelog/changelog.shared.js +13 -0
  152. package/lib/src/services/changelog/hooks/parse-from-file.d.ts +8 -0
  153. package/lib/src/services/config/config.class.d.ts +2 -2
  154. package/lib/src/services/config/config.shared.d.ts +1 -1
  155. package/lib/src/services/copilot/concerns/concerns.class.d.ts +12 -0
  156. package/lib/src/services/copilot/concerns/concerns.d.ts +11 -0
  157. package/lib/src/services/copilot/concerns/concerns.schema.d.ts +727 -0
  158. package/lib/src/services/copilot/concerns/concerns.shared.d.ts +13 -0
  159. package/lib/src/services/copilot/concerns/concerns.shared.js +13 -0
  160. package/lib/src/services/copilot/decisions/decisions.class.d.ts +12 -0
  161. package/lib/src/services/copilot/decisions/decisions.d.ts +11 -0
  162. package/lib/src/services/copilot/decisions/decisions.schema.d.ts +728 -0
  163. package/lib/src/services/copilot/decisions/decisions.shared.d.ts +13 -0
  164. package/lib/src/services/copilot/decisions/decisions.shared.js +19 -0
  165. package/lib/src/services/copilot/help/help.class.d.ts +18 -0
  166. package/lib/src/services/copilot/help/help.d.ts +11 -0
  167. package/lib/src/services/copilot/help/help.schema.d.ts +237 -0
  168. package/lib/src/services/copilot/help/help.shared.d.ts +13 -0
  169. package/lib/src/services/copilot/help/help.shared.js +13 -0
  170. package/lib/src/services/copilot/recommendations/recommendations.class.d.ts +12 -0
  171. package/lib/src/services/copilot/recommendations/recommendations.d.ts +11 -0
  172. package/lib/src/services/copilot/recommendations/recommendations.schema.d.ts +949 -0
  173. package/lib/src/services/copilot/recommendations/recommendations.shared.d.ts +13 -0
  174. package/lib/src/services/copilot/recommendations/recommendations.shared.js +19 -0
  175. package/lib/src/services/currencies/currencies.class.d.ts +11 -0
  176. package/lib/src/services/currencies/currencies.d.ts +11 -0
  177. package/lib/src/services/currencies/currencies.schema.d.ts +769 -0
  178. package/lib/src/services/currencies/currencies.shared.d.ts +13 -0
  179. package/lib/src/services/currencies/currencies.shared.js +13 -0
  180. package/lib/src/services/custom/custom.shared.d.ts +1 -1
  181. package/lib/src/services/emails/emails.class.d.ts +11 -0
  182. package/lib/src/services/emails/emails.d.ts +11 -0
  183. package/lib/src/services/emails/emails.schema.d.ts +563 -0
  184. package/lib/src/services/emails/emails.shared.d.ts +13 -0
  185. package/lib/src/services/emails/emails.shared.js +13 -0
  186. package/lib/src/services/events/events.class.d.ts +3 -2
  187. package/lib/src/services/events/events.schema.d.ts +340 -340
  188. package/lib/src/services/events/events.shared.d.ts +1 -1
  189. package/lib/src/services/events/triggers/triggers.class.d.ts +3 -2
  190. package/lib/src/services/events/triggers/triggers.schema.d.ts +1022 -842
  191. package/lib/src/services/events/triggers/triggers.shared.d.ts +1 -1
  192. package/lib/src/services/events/types/types.class.d.ts +3 -2
  193. package/lib/src/services/events/types/types.schema.d.ts +350 -350
  194. package/lib/src/services/events/types/types.shared.d.ts +1 -1
  195. package/lib/src/services/exchanges/arb-signals/arb-signals.class.d.ts +29 -0
  196. package/lib/src/services/exchanges/arb-signals/arb-signals.d.ts +11 -0
  197. package/lib/src/services/exchanges/arb-signals/arb-signals.schema.d.ts +55 -0
  198. package/lib/src/services/exchanges/arb-signals/arb-signals.shared.d.ts +13 -0
  199. package/lib/src/services/exchanges/arb-signals/arb-signals.shared.js +13 -0
  200. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.class.d.ts +27 -0
  201. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.d.ts +11 -0
  202. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.schema.d.ts +148 -0
  203. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.shared.d.ts +13 -0
  204. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.shared.js +13 -0
  205. package/lib/src/services/exchanges/balance/balance.class.d.ts +3 -2
  206. package/lib/src/services/exchanges/balance/balance.schema.d.ts +141 -141
  207. package/lib/src/services/exchanges/balance/balance.shared.d.ts +1 -1
  208. package/lib/src/services/exchanges/deposits/deposits.class.d.ts +11 -0
  209. package/lib/src/services/exchanges/deposits/deposits.d.ts +11 -0
  210. package/lib/src/services/exchanges/deposits/deposits.schema.d.ts +905 -0
  211. package/lib/src/services/exchanges/deposits/deposits.shared.d.ts +13 -0
  212. package/lib/src/services/exchanges/deposits/deposits.shared.js +19 -0
  213. package/lib/src/services/exchanges/deposits/sync/sync.class.d.ts +11 -0
  214. package/lib/src/services/exchanges/deposits/sync/sync.d.ts +11 -0
  215. package/lib/src/services/exchanges/deposits/sync/sync.schema.d.ts +621 -0
  216. package/lib/src/services/exchanges/deposits/sync/sync.shared.d.ts +13 -0
  217. package/lib/src/services/exchanges/deposits/sync/sync.shared.js +19 -0
  218. package/lib/src/services/exchanges/download/download.class.d.ts +3 -2
  219. package/lib/src/services/exchanges/download/download.schema.d.ts +149 -149
  220. package/lib/src/services/exchanges/download/download.shared.d.ts +1 -1
  221. package/lib/src/services/exchanges/download/webhooks/webhooks.class.d.ts +2 -2
  222. package/lib/src/services/exchanges/download/webhooks/webhooks.schema.d.ts +171 -171
  223. package/lib/src/services/exchanges/download/webhooks/webhooks.shared.d.ts +1 -1
  224. package/lib/src/services/exchanges/exchanges.class.d.ts +3 -2
  225. package/lib/src/services/exchanges/exchanges.schema.d.ts +626 -359
  226. package/lib/src/services/exchanges/exchanges.shared.d.ts +1 -1
  227. package/lib/src/services/exchanges/ledger/ledger.class.d.ts +11 -0
  228. package/lib/src/services/exchanges/ledger/ledger.d.ts +11 -0
  229. package/lib/src/services/exchanges/ledger/ledger.schema.d.ts +1045 -0
  230. package/lib/src/services/exchanges/ledger/ledger.shared.d.ts +13 -0
  231. package/lib/src/services/exchanges/ledger/ledger.shared.js +13 -0
  232. package/lib/src/services/exchanges/ledger/sync/sync.class.d.ts +11 -0
  233. package/lib/src/services/exchanges/ledger/sync/sync.d.ts +11 -0
  234. package/lib/src/services/exchanges/ledger/sync/sync.schema.d.ts +621 -0
  235. package/lib/src/services/exchanges/ledger/sync/sync.shared.d.ts +13 -0
  236. package/lib/src/services/exchanges/ledger/sync/sync.shared.js +19 -0
  237. package/lib/src/services/exchanges/markets-stats/markets-stats.class.d.ts +23 -0
  238. package/lib/src/services/exchanges/markets-stats/markets-stats.d.ts +11 -0
  239. package/lib/src/services/exchanges/markets-stats/markets-stats.schema.d.ts +178 -0
  240. package/lib/src/services/exchanges/markets-stats/markets-stats.shared.d.ts +13 -0
  241. package/lib/src/services/exchanges/markets-stats/markets-stats.shared.js +13 -0
  242. package/lib/src/services/exchanges/ohlcv/history/history.class.d.ts +11 -0
  243. package/lib/src/services/exchanges/ohlcv/history/history.d.ts +11 -0
  244. package/lib/src/services/exchanges/ohlcv/history/history.schema.d.ts +473 -0
  245. package/lib/src/services/exchanges/ohlcv/history/history.shared.d.ts +13 -0
  246. package/lib/src/services/exchanges/ohlcv/history/history.shared.js +19 -0
  247. package/lib/src/services/exchanges/ohlcv/ohlcv.schema.d.ts +162 -162
  248. package/lib/src/services/exchanges/ohlcv/ohlcv.shared.d.ts +1 -1
  249. package/lib/src/services/exchanges/orderbook/orderbook.class.d.ts +30 -0
  250. package/lib/src/services/exchanges/orderbook/orderbook.d.ts +11 -0
  251. package/lib/src/services/exchanges/orderbook/orderbook.schema.d.ts +272 -0
  252. package/lib/src/services/exchanges/orderbook/orderbook.shared.d.ts +13 -0
  253. package/lib/src/services/exchanges/orderbook/orderbook.shared.js +13 -0
  254. package/lib/src/services/exchanges/ticker/ticker.class.d.ts +3 -2
  255. package/lib/src/services/exchanges/ticker/ticker.schema.d.ts +243 -243
  256. package/lib/src/services/exchanges/ticker/ticker.shared.d.ts +1 -1
  257. package/lib/src/services/exchanges/transactions/sync/sync.class.d.ts +11 -0
  258. package/lib/src/services/exchanges/transactions/sync/sync.d.ts +11 -0
  259. package/lib/src/services/exchanges/transactions/sync/sync.schema.d.ts +653 -0
  260. package/lib/src/services/exchanges/transactions/sync/sync.shared.d.ts +13 -0
  261. package/lib/src/services/exchanges/transactions/sync/sync.shared.js +19 -0
  262. package/lib/src/services/exchanges/transactions/transactions.class.d.ts +11 -0
  263. package/lib/src/services/exchanges/transactions/transactions.d.ts +11 -0
  264. package/lib/src/services/exchanges/transactions/transactions.schema.d.ts +1119 -0
  265. package/lib/src/services/exchanges/transactions/transactions.shared.d.ts +13 -0
  266. package/lib/src/services/exchanges/transactions/transactions.shared.js +19 -0
  267. package/lib/src/services/extensions/aggregate-extensions.hooks.d.ts +2 -0
  268. package/lib/src/services/extensions/extensions.class.d.ts +3 -2
  269. package/lib/src/services/extensions/extensions.schema.d.ts +641 -559
  270. package/lib/src/services/extensions/extensions.shared.d.ts +1 -1
  271. package/lib/src/services/homepage/homepage.schema.d.ts +17 -9
  272. package/lib/src/services/homepage/homepage.shared.d.ts +10 -2
  273. package/lib/src/services/homepage/homepage.shared.js +8 -1
  274. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.class.d.ts +52 -0
  275. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.d.ts +11 -0
  276. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.schema.d.ts +684 -0
  277. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.shared.d.ts +13 -0
  278. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.shared.js +14 -0
  279. package/lib/src/services/insights/etf-flow/etf-flow.class.d.ts +11 -0
  280. package/lib/src/services/insights/etf-flow/etf-flow.d.ts +11 -0
  281. package/lib/src/services/insights/etf-flow/etf-flow.schema.d.ts +237 -0
  282. package/lib/src/services/insights/etf-flow/etf-flow.shared.d.ts +13 -0
  283. package/lib/src/services/insights/etf-flow/etf-flow.shared.js +13 -0
  284. package/lib/src/services/insights/fear-and-greed/fear-and-greed.class.d.ts +11 -0
  285. package/lib/src/services/insights/fear-and-greed/fear-and-greed.d.ts +11 -0
  286. package/lib/src/services/insights/fear-and-greed/fear-and-greed.schema.d.ts +1831 -0
  287. package/lib/src/services/insights/fear-and-greed/fear-and-greed.shared.d.ts +13 -0
  288. package/lib/src/services/insights/fear-and-greed/fear-and-greed.shared.js +13 -0
  289. package/lib/src/services/insights/global/global.class.d.ts +11 -0
  290. package/lib/src/services/insights/global/global.d.ts +11 -0
  291. package/lib/src/services/insights/global/global.schema.d.ts +779 -0
  292. package/lib/src/services/insights/global/global.shared.d.ts +13 -0
  293. package/lib/src/services/insights/global/global.shared.js +13 -0
  294. package/lib/src/services/insights/insights.class.d.ts +11 -0
  295. package/lib/src/services/insights/insights.d.ts +11 -0
  296. package/lib/src/services/insights/insights.hooks.d.ts +20 -0
  297. package/lib/src/services/{tools/tools.schema.d.ts → insights/insights.schema.d.ts} +130 -162
  298. package/lib/src/services/insights/insights.shared.d.ts +13 -0
  299. package/lib/src/services/insights/insights.shared.js +13 -0
  300. package/lib/src/services/insights/news/news.class.d.ts +23 -0
  301. package/lib/src/services/insights/news/news.d.ts +11 -0
  302. package/lib/src/services/insights/news/news.schema.d.ts +857 -0
  303. package/lib/src/services/insights/news/news.shared.d.ts +23 -0
  304. package/lib/src/services/insights/news/news.shared.js +20 -0
  305. package/lib/src/services/keys/KeysService.d.ts +2 -2
  306. package/lib/src/services/keys/keys.class.d.ts +3 -2
  307. package/lib/src/services/keys/keys.schema.d.ts +364 -364
  308. package/lib/src/services/keys/keys.shared.d.ts +1 -1
  309. package/lib/src/services/knowledges/knowledges.class.d.ts +37 -0
  310. package/lib/src/services/knowledges/knowledges.d.ts +11 -0
  311. package/lib/src/services/knowledges/knowledges.schema.d.ts +566 -0
  312. package/lib/src/services/knowledges/knowledges.shared.d.ts +13 -0
  313. package/lib/src/services/knowledges/knowledges.shared.js +13 -0
  314. package/lib/src/services/mailer/mailer.shared.d.ts +1 -1
  315. package/lib/src/services/marketplaces/marketplaces.class.d.ts +2 -2
  316. package/lib/src/services/marketplaces/marketplaces.shared.d.ts +1 -1
  317. package/lib/src/services/markets/markets.class.d.ts +2 -2
  318. package/lib/src/services/markets/markets.schema.d.ts +112 -112
  319. package/lib/src/services/markets/markets.shared.d.ts +1 -1
  320. package/lib/src/services/messages/messages.class.d.ts +2 -2
  321. package/lib/src/services/messages/messages.schema.d.ts +1257 -353
  322. package/lib/src/services/messages/messages.shared.d.ts +1 -1
  323. package/lib/src/services/models/pods/events/events.class.d.ts +11 -0
  324. package/lib/src/services/models/pods/events/events.d.ts +11 -0
  325. package/lib/src/services/models/pods/events/events.schema.d.ts +669 -0
  326. package/lib/src/services/models/pods/events/events.shared.d.ts +13 -0
  327. package/lib/src/services/models/pods/events/events.shared.js +13 -0
  328. package/lib/src/services/models/pods/pods.class.d.ts +12 -0
  329. package/lib/src/services/models/pods/pods.d.ts +12 -0
  330. package/lib/src/services/models/pods/pods.schema.d.ts +1095 -0
  331. package/lib/src/services/models/pods/pods.shared.d.ts +13 -0
  332. package/lib/src/services/models/pods/pods.shared.js +13 -0
  333. package/lib/src/services/models/presets/presets-generate-and-queue.hooks.d.ts +2 -0
  334. package/lib/src/services/models/presets/presets-generate-freqai-config.hooks.d.ts +2 -0
  335. package/lib/src/services/models/presets/presets-generate-strategy.hooks.d.ts +2 -0
  336. package/lib/src/services/models/presets/presets-get-results.hooks.d.ts +2 -0
  337. package/lib/src/services/models/presets/presets-validate.hooks.d.ts +2 -0
  338. package/lib/src/services/models/presets/presets.class.d.ts +12 -0
  339. package/lib/src/services/models/presets/presets.d.ts +12 -0
  340. package/lib/src/services/models/presets/presets.schema.d.ts +2611 -0
  341. package/lib/src/services/models/presets/presets.shared.d.ts +13 -0
  342. package/lib/src/services/models/presets/presets.shared.js +13 -0
  343. package/lib/src/services/models/signals/history/history.class.d.ts +11 -0
  344. package/lib/src/services/models/signals/history/history.d.ts +11 -0
  345. package/lib/src/services/models/signals/history/history.schema.d.ts +513 -0
  346. package/lib/src/services/models/signals/history/history.shared.d.ts +13 -0
  347. package/lib/src/services/models/signals/history/history.shared.js +13 -0
  348. package/lib/src/services/models/signals/signals-proxy-router.d.ts +47 -0
  349. package/lib/src/services/models/signals/signals.class.d.ts +12 -0
  350. package/lib/src/services/models/signals/signals.d.ts +12 -0
  351. package/lib/src/services/models/signals/signals.schema.d.ts +976 -0
  352. package/lib/src/services/models/signals/signals.shared.d.ts +13 -0
  353. package/lib/src/services/models/signals/signals.shared.js +13 -0
  354. package/lib/src/services/models/signals/subscriptions/subscriptions.class.d.ts +11 -0
  355. package/lib/src/services/models/signals/subscriptions/subscriptions.d.ts +11 -0
  356. package/lib/src/services/models/signals/subscriptions/subscriptions.schema.d.ts +585 -0
  357. package/lib/src/services/models/signals/subscriptions/subscriptions.shared.d.ts +13 -0
  358. package/lib/src/services/models/signals/subscriptions/subscriptions.shared.js +15 -0
  359. package/lib/src/services/objectives/objectives.class.d.ts +11 -0
  360. package/lib/src/services/objectives/objectives.d.ts +11 -0
  361. package/lib/src/services/objectives/objectives.hooks.d.ts +12 -0
  362. package/lib/src/services/objectives/objectives.schema.d.ts +717 -0
  363. package/lib/src/services/objectives/objectives.shared.d.ts +13 -0
  364. package/lib/src/services/objectives/objectives.shared.js +13 -0
  365. package/lib/src/services/plans/plans.class.d.ts +20 -0
  366. package/lib/src/services/plans/plans.d.ts +11 -0
  367. package/lib/src/services/plans/plans.schema.d.ts +383 -0
  368. package/lib/src/services/plans/plans.shared.d.ts +13 -0
  369. package/lib/src/services/plans/plans.shared.js +13 -0
  370. package/lib/src/services/referrals/referrals.class.d.ts +11 -0
  371. package/lib/src/services/referrals/referrals.d.ts +11 -0
  372. package/lib/src/services/referrals/referrals.schema.d.ts +581 -0
  373. package/lib/src/services/referrals/referrals.shared.d.ts +13 -0
  374. package/lib/src/services/referrals/referrals.shared.js +13 -0
  375. package/lib/src/services/restricted/restricted.shared.d.ts +1 -1
  376. package/lib/src/services/security/events/security-events.class.d.ts +11 -0
  377. package/lib/src/services/security/events/security-events.d.ts +11 -0
  378. package/lib/src/services/security/events/security-events.schema.d.ts +499 -0
  379. package/lib/src/services/security/events/security-events.shared.d.ts +8 -0
  380. package/lib/src/services/security/events/security-events.shared.js +13 -0
  381. package/lib/src/services/series/balance/balance.class.d.ts +11 -0
  382. package/lib/src/services/series/balance/balance.d.ts +11 -0
  383. package/lib/src/services/series/balance/balance.schema.d.ts +527 -0
  384. package/lib/src/services/series/balance/balance.shared.d.ts +13 -0
  385. package/lib/src/services/series/balance/balance.shared.js +13 -0
  386. package/lib/src/services/series/performance/performance.class.d.ts +11 -0
  387. package/lib/src/services/series/performance/performance.d.ts +11 -0
  388. package/lib/src/services/series/performance/performance.schema.d.ts +495 -0
  389. package/lib/src/services/series/performance/performance.shared.d.ts +13 -0
  390. package/lib/src/services/series/performance/performance.shared.js +19 -0
  391. package/lib/src/services/series/performance/performance.usage.examples.d.ts +81 -0
  392. package/lib/src/services/snapshot/snapshot.class.d.ts +11 -0
  393. package/lib/src/services/snapshot/snapshot.d.ts +11 -0
  394. package/lib/src/services/snapshot/snapshot.schema.d.ts +11963 -0
  395. package/lib/src/services/snapshot/snapshot.shared.d.ts +13 -0
  396. package/lib/src/services/snapshot/snapshot.shared.js +14 -0
  397. package/lib/src/services/store/items/items.class.d.ts +12 -0
  398. package/lib/src/services/store/items/items.d.ts +11 -0
  399. package/lib/src/services/store/items/items.schema.d.ts +1395 -0
  400. package/lib/src/services/store/items/items.shared.d.ts +13 -0
  401. package/lib/src/services/store/items/items.shared.js +13 -0
  402. package/lib/src/services/strategies/ai/ai.class.d.ts +3 -2
  403. package/lib/src/services/strategies/ai/ai.schema.d.ts +33 -33
  404. package/lib/src/services/strategies/ai/ai.shared.d.ts +1 -1
  405. package/lib/src/services/strategies/ai/stream/stream.shared.d.ts +1 -1
  406. package/lib/src/services/strategies/backtest/backtest.class.d.ts +3 -2
  407. package/lib/src/services/strategies/backtest/backtest.schema.d.ts +820 -288
  408. package/lib/src/services/strategies/backtest/backtest.shared.d.ts +1 -1
  409. package/lib/src/services/strategies/backtest/preflight/preflight.class.d.ts +46 -0
  410. package/lib/src/services/strategies/backtest/preflight/preflight.d.ts +11 -0
  411. package/lib/src/services/strategies/backtest/preflight/preflight.schema.d.ts +737 -0
  412. package/lib/src/services/strategies/backtest/preflight/preflight.shared.d.ts +13 -0
  413. package/lib/src/services/strategies/backtest/preflight/preflight.shared.js +13 -0
  414. package/lib/src/services/strategies/backtest/results/results.class.d.ts +2 -2
  415. package/lib/src/services/strategies/backtest/results/results.schema.d.ts +315 -315
  416. package/lib/src/services/strategies/backtest/results/results.shared.d.ts +1 -1
  417. package/lib/src/services/strategies/blob/blob.shared.d.ts +1 -1
  418. package/lib/src/services/strategies/follow/follow.class.d.ts +12 -0
  419. package/lib/src/services/strategies/follow/follow.d.ts +11 -0
  420. package/lib/src/services/strategies/follow/follow.schema.d.ts +711 -0
  421. package/lib/src/services/strategies/follow/follow.shared.d.ts +13 -0
  422. package/lib/src/services/strategies/follow/follow.shared.js +19 -0
  423. package/lib/src/services/strategies/generate/generate.class.d.ts +3 -2
  424. package/lib/src/services/strategies/generate/generate.schema.d.ts +534 -88
  425. package/lib/src/services/strategies/generate/generate.shared.d.ts +1 -1
  426. package/lib/src/services/strategies/history/history.class.d.ts +11 -0
  427. package/lib/src/services/strategies/history/history.d.ts +11 -0
  428. package/lib/src/services/strategies/history/history.schema.d.ts +714 -0
  429. package/lib/src/services/strategies/history/history.shared.d.ts +13 -0
  430. package/lib/src/services/strategies/history/history.shared.js +19 -0
  431. package/lib/src/services/strategies/hyperopt/hyperopt-generate-and-queue.hooks.d.ts +2 -0
  432. package/lib/src/services/strategies/hyperopt/hyperopt-generate-config-in-disk.hooks.d.ts +2 -0
  433. package/lib/src/services/strategies/hyperopt/hyperopt-generate-exchange-config.hooks.d.ts +8 -0
  434. package/lib/src/services/strategies/hyperopt/hyperopt-get-results.hooks.d.ts +2 -0
  435. package/lib/src/services/strategies/hyperopt/hyperopt-in-disk-clone-strategy.hooks.d.ts +2 -0
  436. package/lib/src/services/strategies/hyperopt/hyperopt-populate-exchange.hooks.d.ts +7 -0
  437. package/lib/src/services/strategies/hyperopt/hyperopt-promote-template.hooks.d.ts +9 -0
  438. package/lib/src/services/strategies/hyperopt/hyperopt-propagate-results.hooks.d.ts +2 -0
  439. package/lib/src/services/strategies/hyperopt/hyperopt-validate-exchange-whitelist.hooks.d.ts +10 -0
  440. package/lib/src/services/strategies/hyperopt/hyperopt-validate-historical-data.hooks.d.ts +9 -0
  441. package/lib/src/services/strategies/hyperopt/hyperopt-validate-stake-balance.hooks.d.ts +7 -0
  442. package/lib/src/services/strategies/hyperopt/hyperopt-validate-stake-currency.hooks.d.ts +9 -0
  443. package/lib/src/services/strategies/hyperopt/hyperopt-validate.hooks.d.ts +7 -0
  444. package/lib/src/services/strategies/hyperopt/hyperopt-verify-subscription-limits.hooks.d.ts +6 -0
  445. package/lib/src/services/strategies/hyperopt/hyperopt.class.d.ts +3 -2
  446. package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +2552 -278
  447. package/lib/src/services/strategies/hyperopt/hyperopt.shared.d.ts +1 -1
  448. package/lib/src/services/strategies/indicators/indicators.class.d.ts +2 -2
  449. package/lib/src/services/strategies/indicators/indicators.schema.d.ts +106 -106
  450. package/lib/src/services/strategies/indicators/indicators.shared.d.ts +1 -1
  451. package/lib/src/services/strategies/indicators/talib/talib.class.d.ts +2 -2
  452. package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +102 -102
  453. package/lib/src/services/strategies/indicators/talib/talib.shared.d.ts +1 -1
  454. package/lib/src/services/strategies/research/research.class.d.ts +11 -0
  455. package/lib/src/services/strategies/research/research.d.ts +12 -0
  456. package/lib/src/services/strategies/research/research.schema.d.ts +1006 -0
  457. package/lib/src/services/strategies/research/research.shared.d.ts +13 -0
  458. package/lib/src/services/strategies/research/research.shared.js +19 -0
  459. package/lib/src/services/strategies/strategies.class.d.ts +3 -2
  460. package/lib/src/services/strategies/strategies.schema.d.ts +3694 -3322
  461. package/lib/src/services/strategies/strategies.shared.d.ts +1 -1
  462. package/lib/src/services/strategies/templates/templates.class.d.ts +2 -2
  463. package/lib/src/services/strategies/templates/templates.schema.d.ts +8062 -950
  464. package/lib/src/services/strategies/templates/templates.shared.d.ts +1 -1
  465. package/lib/src/services/stripe/charges/charges.shared.d.ts +1 -1
  466. package/lib/src/services/stripe/customers/cards/cards.shared.d.ts +1 -1
  467. package/lib/src/services/stripe/customers/customers.shared.d.ts +1 -1
  468. package/lib/src/services/stripe/customers/paymentintent/paymentintent.shared.d.ts +1 -1
  469. package/lib/src/services/stripe/customers/paymentmethods/paymentmethods.shared.d.ts +1 -1
  470. package/lib/src/services/stripe/customers/subscriptions/subscriptions.shared.d.ts +1 -1
  471. package/lib/src/services/stripe/products/products.shared.d.ts +1 -1
  472. package/lib/src/services/stripe/webhooks/webhooks.shared.d.ts +1 -1
  473. package/lib/src/services/support/support.class.d.ts +18 -0
  474. package/lib/src/services/support/support.d.ts +11 -0
  475. package/lib/src/services/support/support.schema.d.ts +507 -0
  476. package/lib/src/services/support/support.shared.d.ts +13 -0
  477. package/lib/src/services/support/support.shared.js +13 -0
  478. package/lib/src/services/tasks/comments/comments.class.d.ts +11 -0
  479. package/lib/src/services/tasks/comments/comments.d.ts +11 -0
  480. package/lib/src/services/tasks/comments/comments.schema.d.ts +771 -0
  481. package/lib/src/services/tasks/comments/comments.shared.d.ts +13 -0
  482. package/lib/src/services/tasks/comments/comments.shared.js +13 -0
  483. package/lib/src/services/tasks/tasks.class.d.ts +14 -0
  484. package/lib/src/services/tasks/tasks.d.ts +11 -0
  485. package/lib/src/services/tasks/tasks.hooks.d.ts +90 -0
  486. package/lib/src/services/tasks/tasks.schema.d.ts +1281 -0
  487. package/lib/src/services/tasks/tasks.shared.d.ts +13 -0
  488. package/lib/src/services/tasks/tasks.shared.js +13 -0
  489. package/lib/src/services/tax/research/research.class.d.ts +11 -0
  490. package/lib/src/services/tax/research/research.d.ts +11 -0
  491. package/lib/src/services/tax/research/research.schema.d.ts +237 -0
  492. package/lib/src/services/tax/research/research.shared.d.ts +13 -0
  493. package/lib/src/services/tax/research/research.shared.js +13 -0
  494. package/lib/src/services/tax/sessions/conversations/conversations.class.d.ts +12 -0
  495. package/lib/src/services/tax/sessions/conversations/conversations.d.ts +11 -0
  496. package/lib/src/services/tax/sessions/conversations/conversations.hooks.d.ts +11 -0
  497. package/lib/src/services/tax/sessions/conversations/conversations.schema.d.ts +2923 -0
  498. package/lib/src/services/tax/sessions/conversations/conversations.shared.d.ts +13 -0
  499. package/lib/src/services/tax/sessions/conversations/conversations.shared.js +13 -0
  500. package/lib/src/services/tax/sessions/conversations/invoke-tax-bedrock-agent.hooks.d.ts +2 -0
  501. package/lib/src/services/tax/sessions/create-tax-bedrock-session.hooks.d.ts +2 -0
  502. package/lib/src/services/tax/sessions/delete-tax-bedrock-session.hooks.d.ts +2 -0
  503. package/lib/src/services/tax/sessions/sessions.class.d.ts +12 -0
  504. package/lib/src/services/tax/sessions/sessions.d.ts +11 -0
  505. package/lib/src/services/tax/sessions/sessions.hooks.d.ts +11 -0
  506. package/lib/src/services/tax/sessions/sessions.schema.d.ts +803 -0
  507. package/lib/src/services/tax/sessions/sessions.shared.d.ts +13 -0
  508. package/lib/src/services/tax/sessions/sessions.shared.js +13 -0
  509. package/lib/src/services/tax/sessions/sync-tax-bedrock-sessions.hooks.d.ts +2 -0
  510. package/lib/src/services/tax/sessions/update-tax-bedrock-session.hooks.d.ts +2 -0
  511. package/lib/src/services/telegram/link/link.class.d.ts +26 -0
  512. package/lib/src/services/telegram/link/link.d.ts +11 -0
  513. package/lib/src/services/telegram/link/link.schema.d.ts +174 -0
  514. package/lib/src/services/telegram/link/link.shared.d.ts +13 -0
  515. package/lib/src/services/telegram/link/link.shared.js +13 -0
  516. package/lib/src/services/telegram/telegram.class.d.ts +34 -0
  517. package/lib/src/services/telegram/telegram.d.ts +11 -0
  518. package/lib/src/services/telegram/telegram.schema.d.ts +152 -0
  519. package/lib/src/services/telegram/telegram.shared.d.ts +13 -0
  520. package/lib/src/services/telegram/telegram.shared.js +13 -0
  521. package/lib/src/services/toggles/toggles.class.d.ts +19 -0
  522. package/lib/src/services/toggles/toggles.d.ts +11 -0
  523. package/lib/src/services/toggles/toggles.schema.d.ts +335 -0
  524. package/lib/src/services/toggles/toggles.shared.d.ts +13 -0
  525. package/lib/src/services/toggles/toggles.shared.js +13 -0
  526. package/lib/src/services/tokens/tokens.class.d.ts +11 -0
  527. package/lib/src/services/tokens/tokens.d.ts +11 -0
  528. package/lib/src/services/tokens/tokens.schema.d.ts +941 -0
  529. package/lib/src/services/tokens/tokens.shared.d.ts +13 -0
  530. package/lib/src/services/tokens/tokens.shared.js +13 -0
  531. package/lib/src/services/traders/pods/api/api.class.d.ts +3 -2
  532. package/lib/src/services/traders/pods/api/api.schema.d.ts +12055 -3967
  533. package/lib/src/services/traders/pods/api/api.shared.d.ts +1 -1
  534. package/lib/src/services/traders/pods/blob/blob.shared.d.ts +1 -1
  535. package/lib/src/services/traders/pods/events/events.class.d.ts +2 -2
  536. package/lib/src/services/traders/pods/events/events.schema.d.ts +388 -332
  537. package/lib/src/services/traders/pods/events/events.shared.d.ts +1 -1
  538. package/lib/src/services/traders/pods/pods.class.d.ts +3 -2
  539. package/lib/src/services/traders/pods/pods.schema.d.ts +9909 -2945
  540. package/lib/src/services/traders/pods/pods.shared.d.ts +1 -1
  541. package/lib/src/services/traders/pods/webhooks/webhooks.class.d.ts +2 -2
  542. package/lib/src/services/traders/pods/webhooks/webhooks.schema.d.ts +105 -105
  543. package/lib/src/services/traders/pods/webhooks/webhooks.shared.d.ts +1 -1
  544. package/lib/src/services/traders/traders.class.d.ts +4 -2
  545. package/lib/src/services/traders/traders.schema.d.ts +2923 -2450
  546. package/lib/src/services/traders/traders.shared.d.ts +1 -1
  547. package/lib/src/services/trades/trades.class.d.ts +11 -0
  548. package/lib/src/services/trades/trades.d.ts +11 -0
  549. package/lib/src/services/trades/trades.schema.d.ts +16969 -0
  550. package/lib/src/services/trades/trades.shared.d.ts +13 -0
  551. package/lib/src/services/trades/trades.shared.js +13 -0
  552. package/lib/src/services/users/access/access.class.d.ts +11 -0
  553. package/lib/src/services/users/access/access.d.ts +11 -0
  554. package/lib/src/services/users/access/access.schema.d.ts +393 -0
  555. package/lib/src/services/users/access/access.shared.d.ts +13 -0
  556. package/lib/src/services/users/access/access.shared.js +13 -0
  557. package/lib/src/services/users/cancel-subscription.class.d.ts +13 -0
  558. package/lib/src/services/users/cancel-subscription.d.ts +9 -0
  559. package/lib/src/services/users/marketing/campaigns/01-welcome.campaign.d.ts +3 -0
  560. package/lib/src/services/users/marketing/campaigns/02-first-bot-running.campaign.d.ts +3 -0
  561. package/lib/src/services/users/marketing/campaigns/03-ai-strategy.campaign.d.ts +3 -0
  562. package/lib/src/services/users/marketing/campaigns/04-hyperopt.campaign.d.ts +3 -0
  563. package/lib/src/services/users/marketing/campaigns/05-safety-tips.campaign.d.ts +3 -0
  564. package/lib/src/services/users/marketing/campaigns/06-humor.campaign.d.ts +3 -0
  565. package/lib/src/services/users/marketing/campaigns/07-paper-vs-real.campaign.d.ts +3 -0
  566. package/lib/src/services/users/marketing/campaigns/08-trial-summary.campaign.d.ts +3 -0
  567. package/lib/src/services/users/marketing/campaigns/09-trial-ending.campaign.d.ts +3 -0
  568. package/lib/src/services/users/marketing/campaigns/10-reactivation.campaign.d.ts +3 -0
  569. package/lib/src/services/users/marketing/campaigns/11-onboarding-incomplete.campaign.d.ts +6 -0
  570. package/lib/src/services/users/marketing/campaigns/index.d.ts +10 -0
  571. package/lib/src/services/users/marketing/campaigns/supervisor-welcome.campaign.d.ts +6 -0
  572. package/lib/src/services/users/marketing/campaigns/trial.context.d.ts +27 -0
  573. package/lib/src/services/users/marketing/marketing.class.d.ts +26 -0
  574. package/lib/src/services/users/marketing/marketing.d.ts +11 -0
  575. package/lib/src/services/users/marketing/marketing.engine.d.ts +36 -0
  576. package/lib/src/services/users/marketing/marketing.schema.d.ts +515 -0
  577. package/lib/src/services/users/marketing/marketing.shared.d.ts +13 -0
  578. package/lib/src/services/users/marketing/marketing.shared.js +20 -0
  579. package/lib/src/services/users/onboarding/onboarding.class.d.ts +11 -0
  580. package/lib/src/services/users/onboarding/onboarding.d.ts +11 -0
  581. package/lib/src/services/users/onboarding/onboarding.hooks.d.ts +60 -0
  582. package/lib/src/services/users/onboarding/onboarding.schema.d.ts +768 -0
  583. package/lib/src/services/users/onboarding/onboarding.shared.d.ts +13 -0
  584. package/lib/src/services/users/onboarding/onboarding.shared.js +13 -0
  585. package/lib/src/services/users/onboarding/steps/exchanges.processor.d.ts +15 -0
  586. package/lib/src/services/users/onboarding/steps/index.d.ts +32 -0
  587. package/lib/src/services/users/onboarding/steps/notifications.processor.d.ts +15 -0
  588. package/lib/src/services/users/onboarding/steps/preferences.processor.d.ts +16 -0
  589. package/lib/src/services/users/onboarding/steps/strategy.processor.d.ts +15 -0
  590. package/lib/src/services/users/onboarding/steps/traders.processor.d.ts +16 -0
  591. package/lib/src/services/users/reset-account.class.d.ts +11 -0
  592. package/lib/src/services/users/reset-account.d.ts +9 -0
  593. package/lib/src/services/users/sessions/sessions.class.d.ts +18 -0
  594. package/lib/src/services/users/sessions/sessions.d.ts +11 -0
  595. package/lib/src/services/users/sessions/sessions.schema.d.ts +698 -0
  596. package/lib/src/services/users/sessions/sessions.shared.d.ts +13 -0
  597. package/lib/src/services/users/sessions/sessions.shared.js +13 -0
  598. package/lib/src/services/users/setup-trial.class.d.ts +21 -0
  599. package/lib/src/services/users/setup-trial.d.ts +9 -0
  600. package/lib/src/services/users/stripe-check-subscription.hooks.d.ts +2 -0
  601. package/lib/src/services/users/stripe-create-payment-intent.hooks.d.ts +2 -0
  602. package/lib/src/services/users/stripe-is-subscription-active.hooks.d.ts +2 -0
  603. package/lib/src/services/users/stripe-sync-customer-data.hooks.d.ts +2 -0
  604. package/lib/src/services/users/users.class.d.ts +298 -59
  605. package/lib/src/services/users/users.schema.d.ts +1942 -350
  606. package/lib/src/services/users/users.shared.d.ts +2 -2
  607. package/lib/src/services/users/users.shared.js +1 -1
  608. package/lib/src/services/version/version.shared.d.ts +1 -1
  609. package/package.json +9 -3
  610. package/lib/src/services/tools/openapi/openapi.class.d.ts +0 -34
  611. package/lib/src/services/tools/openapi/openapi.d.ts +0 -10
  612. package/lib/src/services/tools/openapi/openapi.shared.d.ts +0 -13
  613. package/lib/src/services/tools/openapi/openapi.shared.js +0 -13
  614. package/lib/src/services/tools/tools.class.d.ts +0 -11
  615. package/lib/src/services/tools/tools.d.ts +0 -11
  616. package/lib/src/services/tools/tools.shared.d.ts +0 -13
  617. package/lib/src/services/tools/tools.shared.js +0 -13
@@ -32,6 +32,14 @@ export declare const agentsSchema: import("@feathersjs/typebox").TObject<{
32
32
  knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
33
33
  bedrockAgentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
34
34
  bedrockStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
35
+ provider: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
36
+ agnoModelId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
37
+ providerStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
38
+ systemAgent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
39
+ systemAgentType: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
40
+ toolRegistry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
41
+ contextTemplate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
42
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
35
43
  securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
36
44
  apiKeyId: import("@feathersjs/typebox").TString<string>;
37
45
  apiKeyName: import("@feathersjs/typebox").TString<string>;
@@ -44,72 +52,88 @@ export declare const agentsSchema: import("@feathersjs/typebox").TObject<{
44
52
  export type Agents = Static<typeof agentsSchema>;
45
53
  export declare const agentsValidator: import("@feathersjs/schema").Validator<any, any>;
46
54
  export declare const agentsResolver: import("@feathersjs/schema").Resolver<{
47
- model?: string | undefined;
48
- createdAt?: any;
49
- updatedAt?: any;
50
- timeout?: number | undefined;
51
- knowledgeBases?: string[] | undefined;
52
- bedrockAgentId?: string | undefined;
53
- bedrockStatus?: string | undefined;
54
- securityAttributes?: {
55
- rawApiKey?: string | undefined;
56
- apiKeyId: string;
57
- apiKeyName: string;
58
- scopes: string[];
59
- } | undefined;
60
- name: string;
61
- memory: boolean;
62
55
  _id: string | {};
63
- description: string;
56
+ name: string;
64
57
  role: string;
58
+ description: string;
65
59
  instruction: string;
60
+ memory: boolean;
66
61
  coding: boolean;
67
62
  autonomously: boolean;
68
63
  collaboration: {
69
64
  enabled: boolean;
70
65
  agents: {
71
- name: string;
72
66
  _id: string;
73
- memoryType: "shared" | "private";
67
+ name: string;
68
+ memoryType: "private" | "shared";
74
69
  instructions: string;
75
70
  }[];
76
71
  };
77
72
  actions: any[];
78
73
  triggers: string[];
79
- }, HookContext<AgentsService<import("./agents.class").AgentsParams>>>;
80
- export declare const agentsExternalResolver: import("@feathersjs/schema").Resolver<{
81
74
  model?: string | undefined;
82
- createdAt?: any;
83
- updatedAt?: any;
84
75
  timeout?: number | undefined;
85
76
  knowledgeBases?: string[] | undefined;
86
77
  bedrockAgentId?: string | undefined;
87
78
  bedrockStatus?: string | undefined;
79
+ provider?: "agno" | "bedrock" | undefined;
80
+ agnoModelId?: string | undefined;
81
+ providerStatus?: "error" | "preparing" | "ready" | undefined;
82
+ systemAgent?: boolean | undefined;
83
+ systemAgentType?: string | undefined;
84
+ toolRegistry?: string | undefined;
85
+ contextTemplate?: string | undefined;
86
+ userId?: string | {} | undefined;
88
87
  securityAttributes?: {
89
- rawApiKey?: string | undefined;
90
88
  apiKeyId: string;
91
89
  apiKeyName: string;
92
90
  scopes: string[];
91
+ rawApiKey?: string | undefined;
93
92
  } | undefined;
94
- name: string;
95
- memory: boolean;
93
+ createdAt?: any;
94
+ updatedAt?: any;
95
+ }, HookContext<AgentsService<import("./agents.class").AgentsParams>>>;
96
+ export declare const agentsExternalResolver: import("@feathersjs/schema").Resolver<{
96
97
  _id: string | {};
97
- description: string;
98
+ name: string;
98
99
  role: string;
100
+ description: string;
99
101
  instruction: string;
102
+ memory: boolean;
100
103
  coding: boolean;
101
104
  autonomously: boolean;
102
105
  collaboration: {
103
106
  enabled: boolean;
104
107
  agents: {
105
- name: string;
106
108
  _id: string;
107
- memoryType: "shared" | "private";
109
+ name: string;
110
+ memoryType: "private" | "shared";
108
111
  instructions: string;
109
112
  }[];
110
113
  };
111
114
  actions: any[];
112
115
  triggers: string[];
116
+ model?: string | undefined;
117
+ timeout?: number | undefined;
118
+ knowledgeBases?: string[] | undefined;
119
+ bedrockAgentId?: string | undefined;
120
+ bedrockStatus?: string | undefined;
121
+ provider?: "agno" | "bedrock" | undefined;
122
+ agnoModelId?: string | undefined;
123
+ providerStatus?: "error" | "preparing" | "ready" | undefined;
124
+ systemAgent?: boolean | undefined;
125
+ systemAgentType?: string | undefined;
126
+ toolRegistry?: string | undefined;
127
+ contextTemplate?: string | undefined;
128
+ userId?: string | {} | undefined;
129
+ securityAttributes?: {
130
+ apiKeyId: string;
131
+ apiKeyName: string;
132
+ scopes: string[];
133
+ rawApiKey?: string | undefined;
134
+ } | undefined;
135
+ createdAt?: any;
136
+ updatedAt?: any;
113
137
  }, HookContext<AgentsService<import("./agents.class").AgentsParams>>>;
114
138
  export declare const agentsDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
115
139
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -136,6 +160,14 @@ export declare const agentsDataSchema: import("@feathersjs/typebox").TPick<impor
136
160
  knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
137
161
  bedrockAgentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
138
162
  bedrockStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
163
+ provider: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
164
+ agnoModelId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
165
+ providerStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
166
+ systemAgent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
167
+ systemAgentType: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
168
+ toolRegistry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
169
+ contextTemplate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
170
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
139
171
  securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
140
172
  apiKeyId: import("@feathersjs/typebox").TString<string>;
141
173
  apiKeyName: import("@feathersjs/typebox").TString<string>;
@@ -144,42 +176,50 @@ export declare const agentsDataSchema: import("@feathersjs/typebox").TPick<impor
144
176
  }>>;
145
177
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
146
178
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
147
- }>, ["name", "role", "description", "instruction", "memory", "coding", "autonomously", "collaboration", "actions", "triggers", "model", "timeout", "knowledgeBases", "createdAt", "updatedAt"]>;
179
+ }>, ["name", "role", "description", "instruction", "memory", "coding", "autonomously", "collaboration", "actions", "triggers", "model", "timeout", "knowledgeBases", "provider", "agnoModelId", "createdAt", "updatedAt"]>;
148
180
  export type AgentsData = Static<typeof agentsDataSchema>;
149
181
  export declare const agentsDataValidator: import("@feathersjs/schema").Validator<any, any>;
150
182
  export declare const agentsDataResolver: import("@feathersjs/schema").Resolver<{
151
- model?: string | undefined;
152
- createdAt?: any;
153
- updatedAt?: any;
154
- timeout?: number | undefined;
155
- knowledgeBases?: string[] | undefined;
156
- bedrockAgentId?: string | undefined;
157
- bedrockStatus?: string | undefined;
158
- securityAttributes?: {
159
- rawApiKey?: string | undefined;
160
- apiKeyId: string;
161
- apiKeyName: string;
162
- scopes: string[];
163
- } | undefined;
164
- name: string;
165
- memory: boolean;
166
183
  _id: string | {};
167
- description: string;
184
+ name: string;
168
185
  role: string;
186
+ description: string;
169
187
  instruction: string;
188
+ memory: boolean;
170
189
  coding: boolean;
171
190
  autonomously: boolean;
172
191
  collaboration: {
173
192
  enabled: boolean;
174
193
  agents: {
175
- name: string;
176
194
  _id: string;
177
- memoryType: "shared" | "private";
195
+ name: string;
196
+ memoryType: "private" | "shared";
178
197
  instructions: string;
179
198
  }[];
180
199
  };
181
200
  actions: any[];
182
201
  triggers: string[];
202
+ model?: string | undefined;
203
+ timeout?: number | undefined;
204
+ knowledgeBases?: string[] | undefined;
205
+ bedrockAgentId?: string | undefined;
206
+ bedrockStatus?: string | undefined;
207
+ provider?: "agno" | "bedrock" | undefined;
208
+ agnoModelId?: string | undefined;
209
+ providerStatus?: "error" | "preparing" | "ready" | undefined;
210
+ systemAgent?: boolean | undefined;
211
+ systemAgentType?: string | undefined;
212
+ toolRegistry?: string | undefined;
213
+ contextTemplate?: string | undefined;
214
+ userId?: string | {} | undefined;
215
+ securityAttributes?: {
216
+ apiKeyId: string;
217
+ apiKeyName: string;
218
+ scopes: string[];
219
+ rawApiKey?: string | undefined;
220
+ } | undefined;
221
+ createdAt?: any;
222
+ updatedAt?: any;
183
223
  }, HookContext<AgentsService<import("./agents.class").AgentsParams>>>;
184
224
  export declare const agentsPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
185
225
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -206,6 +246,14 @@ export declare const agentsPatchSchema: import("@feathersjs/typebox").TPartial<i
206
246
  knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
207
247
  bedrockAgentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
208
248
  bedrockStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
249
+ provider: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
250
+ agnoModelId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
251
+ providerStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
252
+ systemAgent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
253
+ systemAgentType: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
254
+ toolRegistry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
255
+ contextTemplate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
256
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
209
257
  securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
210
258
  apiKeyId: import("@feathersjs/typebox").TString<string>;
211
259
  apiKeyName: import("@feathersjs/typebox").TString<string>;
@@ -218,38 +266,46 @@ export declare const agentsPatchSchema: import("@feathersjs/typebox").TPartial<i
218
266
  export type AgentsPatch = Static<typeof agentsPatchSchema>;
219
267
  export declare const agentsPatchValidator: import("@feathersjs/schema").Validator<any, any>;
220
268
  export declare const agentsPatchResolver: import("@feathersjs/schema").Resolver<{
221
- model?: string | undefined;
222
- createdAt?: any;
223
- updatedAt?: any;
224
- timeout?: number | undefined;
225
- knowledgeBases?: string[] | undefined;
226
- bedrockAgentId?: string | undefined;
227
- bedrockStatus?: string | undefined;
228
- securityAttributes?: {
229
- rawApiKey?: string | undefined;
230
- apiKeyId: string;
231
- apiKeyName: string;
232
- scopes: string[];
233
- } | undefined;
234
- name: string;
235
- memory: boolean;
236
269
  _id: string | {};
237
- description: string;
270
+ name: string;
238
271
  role: string;
272
+ description: string;
239
273
  instruction: string;
274
+ memory: boolean;
240
275
  coding: boolean;
241
276
  autonomously: boolean;
242
277
  collaboration: {
243
278
  enabled: boolean;
244
279
  agents: {
245
- name: string;
246
280
  _id: string;
247
- memoryType: "shared" | "private";
281
+ name: string;
282
+ memoryType: "private" | "shared";
248
283
  instructions: string;
249
284
  }[];
250
285
  };
251
286
  actions: any[];
252
287
  triggers: string[];
288
+ model?: string | undefined;
289
+ timeout?: number | undefined;
290
+ knowledgeBases?: string[] | undefined;
291
+ bedrockAgentId?: string | undefined;
292
+ bedrockStatus?: string | undefined;
293
+ provider?: "agno" | "bedrock" | undefined;
294
+ agnoModelId?: string | undefined;
295
+ providerStatus?: "error" | "preparing" | "ready" | undefined;
296
+ systemAgent?: boolean | undefined;
297
+ systemAgentType?: string | undefined;
298
+ toolRegistry?: string | undefined;
299
+ contextTemplate?: string | undefined;
300
+ userId?: string | {} | undefined;
301
+ securityAttributes?: {
302
+ apiKeyId: string;
303
+ apiKeyName: string;
304
+ scopes: string[];
305
+ rawApiKey?: string | undefined;
306
+ } | undefined;
307
+ createdAt?: any;
308
+ updatedAt?: any;
253
309
  }, HookContext<AgentsService<import("./agents.class").AgentsParams>>>;
254
310
  export declare const agentsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
255
311
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -276,6 +332,14 @@ export declare const agentsQueryProperties: import("@feathersjs/typebox").TPick<
276
332
  knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
277
333
  bedrockAgentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
278
334
  bedrockStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
335
+ provider: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
336
+ agnoModelId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
337
+ providerStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
338
+ systemAgent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
339
+ systemAgentType: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
340
+ toolRegistry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
341
+ contextTemplate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
342
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
279
343
  securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
280
344
  apiKeyId: import("@feathersjs/typebox").TString<string>;
281
345
  apiKeyName: import("@feathersjs/typebox").TString<string>;
@@ -284,128 +348,104 @@ export declare const agentsQueryProperties: import("@feathersjs/typebox").TPick<
284
348
  }>>;
285
349
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
286
350
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
287
- }>, ["_id", "name", "role", "description", "instruction", "memory", "coding", "autonomously", "collaboration", "actions", "triggers", "model", "timeout", "knowledgeBases", "bedrockAgentId", "bedrockStatus", "createdAt", "updatedAt"]>;
351
+ }>, ["_id", "name", "role", "description", "instruction", "memory", "coding", "autonomously", "collaboration", "actions", "triggers", "model", "timeout", "knowledgeBases", "bedrockAgentId", "bedrockStatus", "provider", "agnoModelId", "providerStatus", "systemAgent", "systemAgentType", "toolRegistry", "contextTemplate", "userId", "securityAttributes", "createdAt", "updatedAt"]>;
288
352
  export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
289
353
  $limit: import("@feathersjs/typebox").TNumber;
290
354
  $skip: import("@feathersjs/typebox").TNumber;
291
355
  $sort: import("@feathersjs/typebox").TObject<{
292
- name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
293
- memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
294
- model: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
295
356
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
357
+ actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
358
+ agnoModelId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
359
+ autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
360
+ bedrockAgentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
361
+ bedrockStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
362
+ coding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
363
+ collaboration: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
364
+ contextTemplate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
296
365
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
297
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
298
366
  description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
299
- role: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
300
367
  instruction: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
301
- coding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
302
- autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
303
- collaboration: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
304
- actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
305
- triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
306
- timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
307
368
  knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
308
- bedrockAgentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
309
- bedrockStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
369
+ memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
370
+ model: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
371
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
372
+ provider: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
373
+ providerStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
374
+ role: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
375
+ securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
376
+ systemAgent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
377
+ systemAgentType: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
378
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
379
+ toolRegistry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
380
+ triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
381
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
382
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
310
383
  }>;
311
- $select: import("@feathersjs/typebox").TUnsafe<("name" | "memory" | "model" | "_id" | "createdAt" | "updatedAt" | "description" | "role" | "instruction" | "coding" | "autonomously" | "collaboration" | "actions" | "triggers" | "timeout" | "knowledgeBases" | "bedrockAgentId" | "bedrockStatus")[]>;
384
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "actions" | "agnoModelId" | "autonomously" | "bedrockAgentId" | "bedrockStatus" | "coding" | "collaboration" | "contextTemplate" | "createdAt" | "description" | "instruction" | "knowledgeBases" | "memory" | "model" | "name" | "provider" | "providerStatus" | "role" | "securityAttributes" | "systemAgent" | "systemAgentType" | "timeout" | "toolRegistry" | "triggers" | "updatedAt" | "userId")[]>;
312
385
  $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
313
- name: 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<{
314
- $gt: import("@feathersjs/typebox").TString<string>;
315
- $gte: import("@feathersjs/typebox").TString<string>;
316
- $lt: import("@feathersjs/typebox").TString<string>;
317
- $lte: import("@feathersjs/typebox").TString<string>;
318
- $ne: import("@feathersjs/typebox").TString<string>;
319
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
320
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
321
- }>, import("@feathersjs/typebox").TObject<{
322
- [key: string]: import("@feathersjs/typebox").TSchema;
323
- } | undefined>]>>]>>;
324
- memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
325
- $gt: import("@feathersjs/typebox").TBoolean;
326
- $gte: import("@feathersjs/typebox").TBoolean;
327
- $lt: import("@feathersjs/typebox").TBoolean;
328
- $lte: import("@feathersjs/typebox").TBoolean;
329
- $ne: import("@feathersjs/typebox").TBoolean;
330
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
331
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
332
- }>, import("@feathersjs/typebox").TObject<{
333
- [key: string]: import("@feathersjs/typebox").TSchema;
334
- } | undefined>]>>]>>;
335
- model: 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<{
336
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
337
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
338
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
339
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
340
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
341
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
342
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
343
- }>, import("@feathersjs/typebox").TObject<{
344
- [key: string]: import("@feathersjs/typebox").TSchema;
345
- } | undefined>]>>]>>;
346
386
  _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<{
347
387
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
348
388
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
349
389
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
350
390
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
351
391
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
352
- $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<{}>]>>;
353
- $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<{}>]>>;
392
+ $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<{}>]>;
393
+ $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<{}>]>;
354
394
  }>, import("@feathersjs/typebox").TObject<{
355
395
  [key: string]: import("@feathersjs/typebox").TSchema;
356
396
  } | undefined>]>>]>>;
357
- 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<{
358
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
359
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
360
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
361
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
362
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
363
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
364
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
397
+ actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
398
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
399
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
400
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
401
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
402
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
403
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
404
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
365
405
  }>, import("@feathersjs/typebox").TObject<{
366
406
  [key: string]: import("@feathersjs/typebox").TSchema;
367
407
  } | undefined>]>>]>>;
368
- 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<{
369
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
370
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
371
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
372
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
373
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
374
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
375
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
408
+ agnoModelId: 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<{
409
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
410
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
411
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
412
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
413
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
414
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
415
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
376
416
  }>, import("@feathersjs/typebox").TObject<{
377
417
  [key: string]: import("@feathersjs/typebox").TSchema;
378
418
  } | undefined>]>>]>>;
379
- description: 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<{
380
- $gt: import("@feathersjs/typebox").TString<string>;
381
- $gte: import("@feathersjs/typebox").TString<string>;
382
- $lt: import("@feathersjs/typebox").TString<string>;
383
- $lte: import("@feathersjs/typebox").TString<string>;
384
- $ne: import("@feathersjs/typebox").TString<string>;
385
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
386
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
419
+ autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
420
+ $gt: import("@feathersjs/typebox").TBoolean;
421
+ $gte: import("@feathersjs/typebox").TBoolean;
422
+ $lt: import("@feathersjs/typebox").TBoolean;
423
+ $lte: import("@feathersjs/typebox").TBoolean;
424
+ $ne: import("@feathersjs/typebox").TBoolean;
425
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
426
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
387
427
  }>, import("@feathersjs/typebox").TObject<{
388
428
  [key: string]: import("@feathersjs/typebox").TSchema;
389
429
  } | undefined>]>>]>>;
390
- role: 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<{
391
- $gt: import("@feathersjs/typebox").TString<string>;
392
- $gte: import("@feathersjs/typebox").TString<string>;
393
- $lt: import("@feathersjs/typebox").TString<string>;
394
- $lte: import("@feathersjs/typebox").TString<string>;
395
- $ne: import("@feathersjs/typebox").TString<string>;
396
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
397
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
430
+ bedrockAgentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
431
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
432
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
433
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
434
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
435
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
436
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
437
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
398
438
  }>, import("@feathersjs/typebox").TObject<{
399
439
  [key: string]: import("@feathersjs/typebox").TSchema;
400
440
  } | undefined>]>>]>>;
401
- instruction: 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<{
402
- $gt: import("@feathersjs/typebox").TString<string>;
403
- $gte: import("@feathersjs/typebox").TString<string>;
404
- $lt: import("@feathersjs/typebox").TString<string>;
405
- $lte: import("@feathersjs/typebox").TString<string>;
406
- $ne: import("@feathersjs/typebox").TString<string>;
407
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
408
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
441
+ bedrockStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
442
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
443
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
444
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
445
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
446
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
447
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
448
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
409
449
  }>, import("@feathersjs/typebox").TObject<{
410
450
  [key: string]: import("@feathersjs/typebox").TSchema;
411
451
  } | undefined>]>>]>>;
@@ -415,19 +455,8 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
415
455
  $lt: import("@feathersjs/typebox").TBoolean;
416
456
  $lte: import("@feathersjs/typebox").TBoolean;
417
457
  $ne: import("@feathersjs/typebox").TBoolean;
418
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
419
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
420
- }>, import("@feathersjs/typebox").TObject<{
421
- [key: string]: import("@feathersjs/typebox").TSchema;
422
- } | undefined>]>>]>>;
423
- autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
424
- $gt: import("@feathersjs/typebox").TBoolean;
425
- $gte: import("@feathersjs/typebox").TBoolean;
426
- $lt: import("@feathersjs/typebox").TBoolean;
427
- $lte: import("@feathersjs/typebox").TBoolean;
428
- $ne: import("@feathersjs/typebox").TBoolean;
429
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
430
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
458
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
459
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
431
460
  }>, import("@feathersjs/typebox").TObject<{
432
461
  [key: string]: import("@feathersjs/typebox").TSchema;
433
462
  } | undefined>]>>]>>;
@@ -485,7 +514,7 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
485
514
  instructions: import("@feathersjs/typebox").TString<string>;
486
515
  }>>;
487
516
  }>;
488
- $in: import("@feathersjs/typebox").TObject<{
517
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
489
518
  enabled: import("@feathersjs/typebox").TBoolean;
490
519
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
491
520
  _id: import("@feathersjs/typebox").TString<string>;
@@ -493,7 +522,7 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
493
522
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
494
523
  instructions: import("@feathersjs/typebox").TString<string>;
495
524
  }>>;
496
- }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
525
+ }>> | import("@feathersjs/typebox").TObject<{
497
526
  enabled: import("@feathersjs/typebox").TBoolean;
498
527
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
499
528
  _id: import("@feathersjs/typebox").TString<string>;
@@ -501,8 +530,8 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
501
530
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
502
531
  instructions: import("@feathersjs/typebox").TString<string>;
503
532
  }>>;
504
- }>>;
505
- $nin: import("@feathersjs/typebox").TObject<{
533
+ }>;
534
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
506
535
  enabled: import("@feathersjs/typebox").TBoolean;
507
536
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
508
537
  _id: import("@feathersjs/typebox").TString<string>;
@@ -510,7 +539,7 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
510
539
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
511
540
  instructions: import("@feathersjs/typebox").TString<string>;
512
541
  }>>;
513
- }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
542
+ }>> | import("@feathersjs/typebox").TObject<{
514
543
  enabled: import("@feathersjs/typebox").TBoolean;
515
544
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
516
545
  _id: import("@feathersjs/typebox").TString<string>;
@@ -518,40 +547,51 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
518
547
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
519
548
  instructions: import("@feathersjs/typebox").TString<string>;
520
549
  }>>;
521
- }>>;
550
+ }>;
522
551
  }>, import("@feathersjs/typebox").TObject<{
523
552
  [key: string]: import("@feathersjs/typebox").TSchema;
524
553
  } | undefined>]>>]>>;
525
- actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
526
- $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
527
- $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
528
- $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
529
- $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
530
- $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
531
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
532
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
533
- }>, import("@feathersjs/typebox").TObject<{
554
+ contextTemplate: 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<{
555
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
556
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
557
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
558
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
559
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
560
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
561
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
562
+ }>, import("@feathersjs/typebox").TObject<{
534
563
  [key: string]: import("@feathersjs/typebox").TSchema;
535
564
  } | undefined>]>>]>>;
536
- triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
537
- $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
538
- $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
539
- $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
540
- $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
541
- $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
542
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
543
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
565
+ 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<{
566
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
567
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
568
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
569
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
570
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
571
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
572
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
544
573
  }>, import("@feathersjs/typebox").TObject<{
545
574
  [key: string]: import("@feathersjs/typebox").TSchema;
546
575
  } | undefined>]>>]>>;
547
- timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
548
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
549
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
550
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
551
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
552
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
553
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
554
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
576
+ description: 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<{
577
+ $gt: import("@feathersjs/typebox").TString<string>;
578
+ $gte: import("@feathersjs/typebox").TString<string>;
579
+ $lt: import("@feathersjs/typebox").TString<string>;
580
+ $lte: import("@feathersjs/typebox").TString<string>;
581
+ $ne: import("@feathersjs/typebox").TString<string>;
582
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
583
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
584
+ }>, import("@feathersjs/typebox").TObject<{
585
+ [key: string]: import("@feathersjs/typebox").TSchema;
586
+ } | undefined>]>>]>>;
587
+ instruction: 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<{
588
+ $gt: import("@feathersjs/typebox").TString<string>;
589
+ $gte: import("@feathersjs/typebox").TString<string>;
590
+ $lt: import("@feathersjs/typebox").TString<string>;
591
+ $lte: import("@feathersjs/typebox").TString<string>;
592
+ $ne: import("@feathersjs/typebox").TString<string>;
593
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
594
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
555
595
  }>, import("@feathersjs/typebox").TObject<{
556
596
  [key: string]: import("@feathersjs/typebox").TSchema;
557
597
  } | undefined>]>>]>>;
@@ -561,131 +601,280 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
561
601
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
562
602
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
563
603
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
564
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
565
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
604
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
605
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
566
606
  }>, import("@feathersjs/typebox").TObject<{
567
607
  [key: string]: import("@feathersjs/typebox").TSchema;
568
608
  } | undefined>]>>]>>;
569
- bedrockAgentId: 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<{
609
+ memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
610
+ $gt: import("@feathersjs/typebox").TBoolean;
611
+ $gte: import("@feathersjs/typebox").TBoolean;
612
+ $lt: import("@feathersjs/typebox").TBoolean;
613
+ $lte: import("@feathersjs/typebox").TBoolean;
614
+ $ne: import("@feathersjs/typebox").TBoolean;
615
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
616
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
617
+ }>, import("@feathersjs/typebox").TObject<{
618
+ [key: string]: import("@feathersjs/typebox").TSchema;
619
+ } | undefined>]>>]>>;
620
+ model: 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<{
570
621
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
571
622
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
572
623
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
573
624
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
574
625
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
575
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
576
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
626
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
627
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
577
628
  }>, import("@feathersjs/typebox").TObject<{
578
629
  [key: string]: import("@feathersjs/typebox").TSchema;
579
630
  } | undefined>]>>]>>;
580
- bedrockStatus: 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<{
631
+ name: 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<{
632
+ $gt: import("@feathersjs/typebox").TString<string>;
633
+ $gte: import("@feathersjs/typebox").TString<string>;
634
+ $lt: import("@feathersjs/typebox").TString<string>;
635
+ $lte: import("@feathersjs/typebox").TString<string>;
636
+ $ne: import("@feathersjs/typebox").TString<string>;
637
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
638
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
639
+ }>, import("@feathersjs/typebox").TObject<{
640
+ [key: string]: import("@feathersjs/typebox").TSchema;
641
+ } | undefined>]>>]>>;
642
+ provider: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
643
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
644
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
645
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
646
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
647
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
648
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
649
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
650
+ }>, import("@feathersjs/typebox").TObject<{
651
+ [key: string]: import("@feathersjs/typebox").TSchema;
652
+ } | undefined>]>>]>>;
653
+ providerStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
654
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
655
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
656
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
657
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
658
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
659
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
660
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
661
+ }>, import("@feathersjs/typebox").TObject<{
662
+ [key: string]: import("@feathersjs/typebox").TSchema;
663
+ } | undefined>]>>]>>;
664
+ role: 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<{
665
+ $gt: import("@feathersjs/typebox").TString<string>;
666
+ $gte: import("@feathersjs/typebox").TString<string>;
667
+ $lt: import("@feathersjs/typebox").TString<string>;
668
+ $lte: import("@feathersjs/typebox").TString<string>;
669
+ $ne: import("@feathersjs/typebox").TString<string>;
670
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
671
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
672
+ }>, import("@feathersjs/typebox").TObject<{
673
+ [key: string]: import("@feathersjs/typebox").TSchema;
674
+ } | undefined>]>>]>>;
675
+ securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
676
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
677
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
678
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
679
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
680
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
681
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
682
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
683
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
684
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
685
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
686
+ }>>;
687
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
688
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
689
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
690
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
691
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
692
+ }>>;
693
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
694
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
695
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
696
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
697
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
698
+ }>>;
699
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
700
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
701
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
702
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
703
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
704
+ }>>;
705
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
706
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
707
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
708
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
709
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
710
+ }>>;
711
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
712
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
713
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
714
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
715
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
716
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
717
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
718
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
719
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
720
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
721
+ }>>;
722
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
723
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
724
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
725
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
726
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
727
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
728
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
729
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
730
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
731
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
732
+ }>>;
733
+ }>, import("@feathersjs/typebox").TObject<{
734
+ [key: string]: import("@feathersjs/typebox").TSchema;
735
+ } | undefined>]>>]>>;
736
+ systemAgent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
737
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
738
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
739
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
740
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
741
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
742
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
743
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
744
+ }>, import("@feathersjs/typebox").TObject<{
745
+ [key: string]: import("@feathersjs/typebox").TSchema;
746
+ } | undefined>]>>]>>;
747
+ systemAgentType: 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<{
748
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
749
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
750
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
751
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
752
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
753
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
754
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
755
+ }>, import("@feathersjs/typebox").TObject<{
756
+ [key: string]: import("@feathersjs/typebox").TSchema;
757
+ } | undefined>]>>]>>;
758
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
759
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
760
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
761
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
762
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
763
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
764
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
765
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
766
+ }>, import("@feathersjs/typebox").TObject<{
767
+ [key: string]: import("@feathersjs/typebox").TSchema;
768
+ } | undefined>]>>]>>;
769
+ toolRegistry: 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<{
581
770
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
582
771
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
583
772
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
584
773
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
585
774
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
586
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
587
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
775
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
776
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
777
+ }>, import("@feathersjs/typebox").TObject<{
778
+ [key: string]: import("@feathersjs/typebox").TSchema;
779
+ } | undefined>]>>]>>;
780
+ triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
781
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
782
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
783
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
784
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
785
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
786
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
787
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
788
+ }>, import("@feathersjs/typebox").TObject<{
789
+ [key: string]: import("@feathersjs/typebox").TSchema;
790
+ } | undefined>]>>]>>;
791
+ 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<{
792
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
793
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
794
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
795
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
796
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
797
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
798
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
799
+ }>, import("@feathersjs/typebox").TObject<{
800
+ [key: string]: import("@feathersjs/typebox").TSchema;
801
+ } | undefined>]>>]>>;
802
+ userId: 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<{
803
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
804
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
805
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
806
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
807
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
808
+ $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<{}>]>>;
809
+ $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<{}>]>>;
588
810
  }>, import("@feathersjs/typebox").TObject<{
589
811
  [key: string]: import("@feathersjs/typebox").TSchema;
590
812
  } | undefined>]>>]>>;
591
813
  }>>, import("@feathersjs/typebox").TObject<{
592
814
  $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
593
- name: 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<{
594
- $gt: import("@feathersjs/typebox").TString<string>;
595
- $gte: import("@feathersjs/typebox").TString<string>;
596
- $lt: import("@feathersjs/typebox").TString<string>;
597
- $lte: import("@feathersjs/typebox").TString<string>;
598
- $ne: import("@feathersjs/typebox").TString<string>;
599
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
600
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
601
- }>, import("@feathersjs/typebox").TObject<{
602
- [key: string]: import("@feathersjs/typebox").TSchema;
603
- } | undefined>]>>]>>;
604
- memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
605
- $gt: import("@feathersjs/typebox").TBoolean;
606
- $gte: import("@feathersjs/typebox").TBoolean;
607
- $lt: import("@feathersjs/typebox").TBoolean;
608
- $lte: import("@feathersjs/typebox").TBoolean;
609
- $ne: import("@feathersjs/typebox").TBoolean;
610
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
611
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
612
- }>, import("@feathersjs/typebox").TObject<{
613
- [key: string]: import("@feathersjs/typebox").TSchema;
614
- } | undefined>]>>]>>;
615
- model: 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<{
616
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
617
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
618
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
619
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
620
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
621
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
622
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
623
- }>, import("@feathersjs/typebox").TObject<{
624
- [key: string]: import("@feathersjs/typebox").TSchema;
625
- } | undefined>]>>]>>;
626
815
  _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<{
627
816
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
628
817
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
629
818
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
630
819
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
631
820
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
632
- $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<{}>]>>;
633
- $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<{}>]>>;
821
+ $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<{}>]>;
822
+ $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<{}>]>;
634
823
  }>, import("@feathersjs/typebox").TObject<{
635
824
  [key: string]: import("@feathersjs/typebox").TSchema;
636
825
  } | undefined>]>>]>>;
637
- 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<{
638
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
639
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
640
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
641
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
642
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
643
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
644
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
826
+ actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
827
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
828
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
829
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
830
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
831
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
832
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
833
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
645
834
  }>, import("@feathersjs/typebox").TObject<{
646
835
  [key: string]: import("@feathersjs/typebox").TSchema;
647
836
  } | undefined>]>>]>>;
648
- 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<{
649
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
650
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
651
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
652
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
653
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
654
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
655
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
837
+ agnoModelId: 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<{
838
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
839
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
840
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
841
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
842
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
843
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
844
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
656
845
  }>, import("@feathersjs/typebox").TObject<{
657
846
  [key: string]: import("@feathersjs/typebox").TSchema;
658
847
  } | undefined>]>>]>>;
659
- description: 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<{
660
- $gt: import("@feathersjs/typebox").TString<string>;
661
- $gte: import("@feathersjs/typebox").TString<string>;
662
- $lt: import("@feathersjs/typebox").TString<string>;
663
- $lte: import("@feathersjs/typebox").TString<string>;
664
- $ne: import("@feathersjs/typebox").TString<string>;
665
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
666
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
848
+ autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
849
+ $gt: import("@feathersjs/typebox").TBoolean;
850
+ $gte: import("@feathersjs/typebox").TBoolean;
851
+ $lt: import("@feathersjs/typebox").TBoolean;
852
+ $lte: import("@feathersjs/typebox").TBoolean;
853
+ $ne: import("@feathersjs/typebox").TBoolean;
854
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
855
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
667
856
  }>, import("@feathersjs/typebox").TObject<{
668
857
  [key: string]: import("@feathersjs/typebox").TSchema;
669
858
  } | undefined>]>>]>>;
670
- role: 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<{
671
- $gt: import("@feathersjs/typebox").TString<string>;
672
- $gte: import("@feathersjs/typebox").TString<string>;
673
- $lt: import("@feathersjs/typebox").TString<string>;
674
- $lte: import("@feathersjs/typebox").TString<string>;
675
- $ne: import("@feathersjs/typebox").TString<string>;
676
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
677
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
859
+ bedrockAgentId: 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<{
860
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
861
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
862
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
863
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
864
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
865
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
866
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
678
867
  }>, import("@feathersjs/typebox").TObject<{
679
868
  [key: string]: import("@feathersjs/typebox").TSchema;
680
869
  } | undefined>]>>]>>;
681
- instruction: 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<{
682
- $gt: import("@feathersjs/typebox").TString<string>;
683
- $gte: import("@feathersjs/typebox").TString<string>;
684
- $lt: import("@feathersjs/typebox").TString<string>;
685
- $lte: import("@feathersjs/typebox").TString<string>;
686
- $ne: import("@feathersjs/typebox").TString<string>;
687
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
688
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
870
+ bedrockStatus: 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<{
871
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
872
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
873
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
874
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
875
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
876
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
877
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
689
878
  }>, import("@feathersjs/typebox").TObject<{
690
879
  [key: string]: import("@feathersjs/typebox").TSchema;
691
880
  } | undefined>]>>]>>;
@@ -695,19 +884,8 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
695
884
  $lt: import("@feathersjs/typebox").TBoolean;
696
885
  $lte: import("@feathersjs/typebox").TBoolean;
697
886
  $ne: import("@feathersjs/typebox").TBoolean;
698
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
699
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
700
- }>, import("@feathersjs/typebox").TObject<{
701
- [key: string]: import("@feathersjs/typebox").TSchema;
702
- } | undefined>]>>]>>;
703
- autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
704
- $gt: import("@feathersjs/typebox").TBoolean;
705
- $gte: import("@feathersjs/typebox").TBoolean;
706
- $lt: import("@feathersjs/typebox").TBoolean;
707
- $lte: import("@feathersjs/typebox").TBoolean;
708
- $ne: import("@feathersjs/typebox").TBoolean;
709
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
710
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
887
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
888
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
711
889
  }>, import("@feathersjs/typebox").TObject<{
712
890
  [key: string]: import("@feathersjs/typebox").TSchema;
713
891
  } | undefined>]>>]>>;
@@ -765,7 +943,7 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
765
943
  instructions: import("@feathersjs/typebox").TString<string>;
766
944
  }>>;
767
945
  }>;
768
- $in: import("@feathersjs/typebox").TObject<{
946
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
769
947
  enabled: import("@feathersjs/typebox").TBoolean;
770
948
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
771
949
  _id: import("@feathersjs/typebox").TString<string>;
@@ -773,7 +951,7 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
773
951
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
774
952
  instructions: import("@feathersjs/typebox").TString<string>;
775
953
  }>>;
776
- }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
954
+ }>> | import("@feathersjs/typebox").TObject<{
777
955
  enabled: import("@feathersjs/typebox").TBoolean;
778
956
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
779
957
  _id: import("@feathersjs/typebox").TString<string>;
@@ -781,8 +959,8 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
781
959
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
782
960
  instructions: import("@feathersjs/typebox").TString<string>;
783
961
  }>>;
784
- }>>;
785
- $nin: import("@feathersjs/typebox").TObject<{
962
+ }>;
963
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
786
964
  enabled: import("@feathersjs/typebox").TBoolean;
787
965
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
788
966
  _id: import("@feathersjs/typebox").TString<string>;
@@ -790,7 +968,7 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
790
968
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
791
969
  instructions: import("@feathersjs/typebox").TString<string>;
792
970
  }>>;
793
- }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
971
+ }>> | import("@feathersjs/typebox").TObject<{
794
972
  enabled: import("@feathersjs/typebox").TBoolean;
795
973
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
796
974
  _id: import("@feathersjs/typebox").TString<string>;
@@ -798,40 +976,51 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
798
976
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
799
977
  instructions: import("@feathersjs/typebox").TString<string>;
800
978
  }>>;
801
- }>>;
979
+ }>;
802
980
  }>, import("@feathersjs/typebox").TObject<{
803
981
  [key: string]: import("@feathersjs/typebox").TSchema;
804
982
  } | undefined>]>>]>>;
805
- actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
806
- $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
807
- $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
808
- $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
809
- $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
810
- $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
811
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
812
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
983
+ contextTemplate: 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<{
984
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
985
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
986
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
987
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
988
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
989
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
990
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
813
991
  }>, import("@feathersjs/typebox").TObject<{
814
992
  [key: string]: import("@feathersjs/typebox").TSchema;
815
993
  } | undefined>]>>]>>;
816
- triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
817
- $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
818
- $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
819
- $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
820
- $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
821
- $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
822
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
823
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
994
+ 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<{
995
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
996
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
997
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
998
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
999
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1000
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1001
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
824
1002
  }>, import("@feathersjs/typebox").TObject<{
825
1003
  [key: string]: import("@feathersjs/typebox").TSchema;
826
1004
  } | undefined>]>>]>>;
827
- timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
828
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
829
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
830
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
831
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
832
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
833
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
834
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
1005
+ description: 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<{
1006
+ $gt: import("@feathersjs/typebox").TString<string>;
1007
+ $gte: import("@feathersjs/typebox").TString<string>;
1008
+ $lt: import("@feathersjs/typebox").TString<string>;
1009
+ $lte: import("@feathersjs/typebox").TString<string>;
1010
+ $ne: import("@feathersjs/typebox").TString<string>;
1011
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1012
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1013
+ }>, import("@feathersjs/typebox").TObject<{
1014
+ [key: string]: import("@feathersjs/typebox").TSchema;
1015
+ } | undefined>]>>]>>;
1016
+ instruction: 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<{
1017
+ $gt: import("@feathersjs/typebox").TString<string>;
1018
+ $gte: import("@feathersjs/typebox").TString<string>;
1019
+ $lt: import("@feathersjs/typebox").TString<string>;
1020
+ $lte: import("@feathersjs/typebox").TString<string>;
1021
+ $ne: import("@feathersjs/typebox").TString<string>;
1022
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1023
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
835
1024
  }>, import("@feathersjs/typebox").TObject<{
836
1025
  [key: string]: import("@feathersjs/typebox").TSchema;
837
1026
  } | undefined>]>>]>>;
@@ -841,132 +1030,281 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
841
1030
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
842
1031
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
843
1032
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
844
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
845
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
1033
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1034
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
846
1035
  }>, import("@feathersjs/typebox").TObject<{
847
1036
  [key: string]: import("@feathersjs/typebox").TSchema;
848
1037
  } | undefined>]>>]>>;
849
- bedrockAgentId: 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<{
1038
+ memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1039
+ $gt: import("@feathersjs/typebox").TBoolean;
1040
+ $gte: import("@feathersjs/typebox").TBoolean;
1041
+ $lt: import("@feathersjs/typebox").TBoolean;
1042
+ $lte: import("@feathersjs/typebox").TBoolean;
1043
+ $ne: import("@feathersjs/typebox").TBoolean;
1044
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
1045
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
1046
+ }>, import("@feathersjs/typebox").TObject<{
1047
+ [key: string]: import("@feathersjs/typebox").TSchema;
1048
+ } | undefined>]>>]>>;
1049
+ model: 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<{
850
1050
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
851
1051
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
852
1052
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
853
1053
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
854
1054
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
855
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
856
- $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>>;
857
1057
  }>, import("@feathersjs/typebox").TObject<{
858
1058
  [key: string]: import("@feathersjs/typebox").TSchema;
859
1059
  } | undefined>]>>]>>;
860
- bedrockStatus: 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<{
1060
+ name: 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>;
1068
+ }>, import("@feathersjs/typebox").TObject<{
1069
+ [key: string]: import("@feathersjs/typebox").TSchema;
1070
+ } | undefined>]>>]>>;
1071
+ provider: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1072
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1073
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1074
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1075
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1076
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1077
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1078
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1079
+ }>, import("@feathersjs/typebox").TObject<{
1080
+ [key: string]: import("@feathersjs/typebox").TSchema;
1081
+ } | undefined>]>>]>>;
1082
+ providerStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1083
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1084
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1085
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1086
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1087
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1088
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1089
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1090
+ }>, import("@feathersjs/typebox").TObject<{
1091
+ [key: string]: import("@feathersjs/typebox").TSchema;
1092
+ } | undefined>]>>]>>;
1093
+ role: 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<{
1094
+ $gt: import("@feathersjs/typebox").TString<string>;
1095
+ $gte: import("@feathersjs/typebox").TString<string>;
1096
+ $lt: import("@feathersjs/typebox").TString<string>;
1097
+ $lte: import("@feathersjs/typebox").TString<string>;
1098
+ $ne: import("@feathersjs/typebox").TString<string>;
1099
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1100
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1101
+ }>, import("@feathersjs/typebox").TObject<{
1102
+ [key: string]: import("@feathersjs/typebox").TSchema;
1103
+ } | undefined>]>>]>>;
1104
+ securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1105
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1106
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1107
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1108
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1109
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1110
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1111
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1112
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1113
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1114
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1115
+ }>>;
1116
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1117
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1118
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1119
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1120
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1121
+ }>>;
1122
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1123
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1124
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1125
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1126
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1127
+ }>>;
1128
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1129
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1130
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1131
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1132
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1133
+ }>>;
1134
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1135
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1136
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1137
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1138
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1139
+ }>>;
1140
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1141
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1142
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1143
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1144
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1145
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1146
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1147
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1148
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1149
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1150
+ }>>;
1151
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1152
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1153
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1154
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1155
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1156
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1157
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1158
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1159
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1160
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1161
+ }>>;
1162
+ }>, import("@feathersjs/typebox").TObject<{
1163
+ [key: string]: import("@feathersjs/typebox").TSchema;
1164
+ } | undefined>]>>]>>;
1165
+ systemAgent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1166
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1167
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1168
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1169
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1170
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1171
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1172
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1173
+ }>, import("@feathersjs/typebox").TObject<{
1174
+ [key: string]: import("@feathersjs/typebox").TSchema;
1175
+ } | undefined>]>>]>>;
1176
+ systemAgentType: 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<{
1177
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1178
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1179
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1180
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1181
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1182
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1183
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1184
+ }>, import("@feathersjs/typebox").TObject<{
1185
+ [key: string]: import("@feathersjs/typebox").TSchema;
1186
+ } | undefined>]>>]>>;
1187
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1188
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1189
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1190
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1191
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1192
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1193
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1194
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1195
+ }>, import("@feathersjs/typebox").TObject<{
1196
+ [key: string]: import("@feathersjs/typebox").TSchema;
1197
+ } | undefined>]>>]>>;
1198
+ toolRegistry: 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<{
861
1199
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
862
1200
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
863
1201
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
864
1202
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
865
1203
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
866
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
867
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1204
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1205
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1206
+ }>, import("@feathersjs/typebox").TObject<{
1207
+ [key: string]: import("@feathersjs/typebox").TSchema;
1208
+ } | undefined>]>>]>>;
1209
+ triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1210
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1211
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1212
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1213
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1214
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1215
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1216
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1217
+ }>, import("@feathersjs/typebox").TObject<{
1218
+ [key: string]: import("@feathersjs/typebox").TSchema;
1219
+ } | undefined>]>>]>>;
1220
+ 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<{
1221
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1222
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1223
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1224
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1225
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1226
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1227
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1228
+ }>, import("@feathersjs/typebox").TObject<{
1229
+ [key: string]: import("@feathersjs/typebox").TSchema;
1230
+ } | undefined>]>>]>>;
1231
+ userId: 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<{
1232
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1233
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1234
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1235
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1236
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1237
+ $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<{}>]>>;
1238
+ $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<{}>]>>;
868
1239
  }>, import("@feathersjs/typebox").TObject<{
869
1240
  [key: string]: import("@feathersjs/typebox").TSchema;
870
1241
  } | undefined>]>>]>>;
871
1242
  }>>>;
872
1243
  }>]>>;
873
1244
  $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
874
- name: 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<{
875
- $gt: import("@feathersjs/typebox").TString<string>;
876
- $gte: import("@feathersjs/typebox").TString<string>;
877
- $lt: import("@feathersjs/typebox").TString<string>;
878
- $lte: import("@feathersjs/typebox").TString<string>;
879
- $ne: import("@feathersjs/typebox").TString<string>;
880
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
881
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
882
- }>, import("@feathersjs/typebox").TObject<{
883
- [key: string]: import("@feathersjs/typebox").TSchema;
884
- } | undefined>]>>]>>;
885
- memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
886
- $gt: import("@feathersjs/typebox").TBoolean;
887
- $gte: import("@feathersjs/typebox").TBoolean;
888
- $lt: import("@feathersjs/typebox").TBoolean;
889
- $lte: import("@feathersjs/typebox").TBoolean;
890
- $ne: import("@feathersjs/typebox").TBoolean;
891
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
892
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
893
- }>, import("@feathersjs/typebox").TObject<{
894
- [key: string]: import("@feathersjs/typebox").TSchema;
895
- } | undefined>]>>]>>;
896
- model: 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<{
897
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
898
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
899
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
900
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
901
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
902
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
903
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
904
- }>, import("@feathersjs/typebox").TObject<{
905
- [key: string]: import("@feathersjs/typebox").TSchema;
906
- } | undefined>]>>]>>;
907
1245
  _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<{
908
1246
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
909
1247
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
910
1248
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
911
1249
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
912
1250
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
913
- $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<{}>]>>;
914
- $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<{}>]>>;
1251
+ $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<{}>]>;
1252
+ $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<{}>]>;
915
1253
  }>, import("@feathersjs/typebox").TObject<{
916
1254
  [key: string]: import("@feathersjs/typebox").TSchema;
917
1255
  } | undefined>]>>]>>;
918
- 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<{
919
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
920
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
921
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
922
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
923
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
924
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
925
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1256
+ actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1257
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1258
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1259
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1260
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1261
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1262
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1263
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
926
1264
  }>, import("@feathersjs/typebox").TObject<{
927
1265
  [key: string]: import("@feathersjs/typebox").TSchema;
928
1266
  } | undefined>]>>]>>;
929
- 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<{
930
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
931
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
932
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
933
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
934
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
935
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
936
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1267
+ agnoModelId: 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<{
1268
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1269
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1270
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1271
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1272
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1273
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1274
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
937
1275
  }>, import("@feathersjs/typebox").TObject<{
938
1276
  [key: string]: import("@feathersjs/typebox").TSchema;
939
1277
  } | undefined>]>>]>>;
940
- description: 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<{
941
- $gt: import("@feathersjs/typebox").TString<string>;
942
- $gte: import("@feathersjs/typebox").TString<string>;
943
- $lt: import("@feathersjs/typebox").TString<string>;
944
- $lte: import("@feathersjs/typebox").TString<string>;
945
- $ne: import("@feathersjs/typebox").TString<string>;
946
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
947
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1278
+ autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1279
+ $gt: import("@feathersjs/typebox").TBoolean;
1280
+ $gte: import("@feathersjs/typebox").TBoolean;
1281
+ $lt: import("@feathersjs/typebox").TBoolean;
1282
+ $lte: import("@feathersjs/typebox").TBoolean;
1283
+ $ne: import("@feathersjs/typebox").TBoolean;
1284
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
1285
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
948
1286
  }>, import("@feathersjs/typebox").TObject<{
949
1287
  [key: string]: import("@feathersjs/typebox").TSchema;
950
1288
  } | undefined>]>>]>>;
951
- role: 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<{
952
- $gt: import("@feathersjs/typebox").TString<string>;
953
- $gte: import("@feathersjs/typebox").TString<string>;
954
- $lt: import("@feathersjs/typebox").TString<string>;
955
- $lte: import("@feathersjs/typebox").TString<string>;
956
- $ne: import("@feathersjs/typebox").TString<string>;
957
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
958
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1289
+ bedrockAgentId: 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<{
1290
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1291
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1292
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1293
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1294
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1295
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1296
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
959
1297
  }>, import("@feathersjs/typebox").TObject<{
960
1298
  [key: string]: import("@feathersjs/typebox").TSchema;
961
1299
  } | undefined>]>>]>>;
962
- instruction: 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<{
963
- $gt: import("@feathersjs/typebox").TString<string>;
964
- $gte: import("@feathersjs/typebox").TString<string>;
965
- $lt: import("@feathersjs/typebox").TString<string>;
966
- $lte: import("@feathersjs/typebox").TString<string>;
967
- $ne: import("@feathersjs/typebox").TString<string>;
968
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
969
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1300
+ bedrockStatus: 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<{
1301
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1302
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1303
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1304
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1305
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1306
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1307
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
970
1308
  }>, import("@feathersjs/typebox").TObject<{
971
1309
  [key: string]: import("@feathersjs/typebox").TSchema;
972
1310
  } | undefined>]>>]>>;
@@ -976,19 +1314,8 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
976
1314
  $lt: import("@feathersjs/typebox").TBoolean;
977
1315
  $lte: import("@feathersjs/typebox").TBoolean;
978
1316
  $ne: import("@feathersjs/typebox").TBoolean;
979
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
980
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
981
- }>, import("@feathersjs/typebox").TObject<{
982
- [key: string]: import("@feathersjs/typebox").TSchema;
983
- } | undefined>]>>]>>;
984
- autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
985
- $gt: import("@feathersjs/typebox").TBoolean;
986
- $gte: import("@feathersjs/typebox").TBoolean;
987
- $lt: import("@feathersjs/typebox").TBoolean;
988
- $lte: import("@feathersjs/typebox").TBoolean;
989
- $ne: import("@feathersjs/typebox").TBoolean;
990
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
991
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1317
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
1318
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
992
1319
  }>, import("@feathersjs/typebox").TObject<{
993
1320
  [key: string]: import("@feathersjs/typebox").TSchema;
994
1321
  } | undefined>]>>]>>;
@@ -1046,7 +1373,7 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1046
1373
  instructions: import("@feathersjs/typebox").TString<string>;
1047
1374
  }>>;
1048
1375
  }>;
1049
- $in: import("@feathersjs/typebox").TObject<{
1376
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1050
1377
  enabled: import("@feathersjs/typebox").TBoolean;
1051
1378
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1052
1379
  _id: import("@feathersjs/typebox").TString<string>;
@@ -1054,7 +1381,7 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1054
1381
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1055
1382
  instructions: import("@feathersjs/typebox").TString<string>;
1056
1383
  }>>;
1057
- }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1384
+ }>> | import("@feathersjs/typebox").TObject<{
1058
1385
  enabled: import("@feathersjs/typebox").TBoolean;
1059
1386
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1060
1387
  _id: import("@feathersjs/typebox").TString<string>;
@@ -1062,8 +1389,8 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1062
1389
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1063
1390
  instructions: import("@feathersjs/typebox").TString<string>;
1064
1391
  }>>;
1065
- }>>;
1066
- $nin: import("@feathersjs/typebox").TObject<{
1392
+ }>;
1393
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1067
1394
  enabled: import("@feathersjs/typebox").TBoolean;
1068
1395
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1069
1396
  _id: import("@feathersjs/typebox").TString<string>;
@@ -1071,7 +1398,7 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1071
1398
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1072
1399
  instructions: import("@feathersjs/typebox").TString<string>;
1073
1400
  }>>;
1074
- }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1401
+ }>> | import("@feathersjs/typebox").TObject<{
1075
1402
  enabled: import("@feathersjs/typebox").TBoolean;
1076
1403
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1077
1404
  _id: import("@feathersjs/typebox").TString<string>;
@@ -1079,40 +1406,51 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1079
1406
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1080
1407
  instructions: import("@feathersjs/typebox").TString<string>;
1081
1408
  }>>;
1082
- }>>;
1409
+ }>;
1083
1410
  }>, import("@feathersjs/typebox").TObject<{
1084
1411
  [key: string]: import("@feathersjs/typebox").TSchema;
1085
1412
  } | undefined>]>>]>>;
1086
- actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1087
- $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1088
- $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1089
- $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1090
- $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1091
- $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1092
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1093
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1413
+ contextTemplate: 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<{
1414
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1415
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1416
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1417
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1418
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1419
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1420
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1094
1421
  }>, import("@feathersjs/typebox").TObject<{
1095
1422
  [key: string]: import("@feathersjs/typebox").TSchema;
1096
1423
  } | undefined>]>>]>>;
1097
- triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1098
- $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1099
- $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1100
- $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1101
- $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1102
- $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1103
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1104
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1424
+ 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<{
1425
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1426
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1427
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1428
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1429
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1430
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1431
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1105
1432
  }>, import("@feathersjs/typebox").TObject<{
1106
1433
  [key: string]: import("@feathersjs/typebox").TSchema;
1107
1434
  } | undefined>]>>]>>;
1108
- timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1109
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1110
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1111
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1112
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1113
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1114
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
1115
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
1435
+ description: 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<{
1436
+ $gt: import("@feathersjs/typebox").TString<string>;
1437
+ $gte: import("@feathersjs/typebox").TString<string>;
1438
+ $lt: import("@feathersjs/typebox").TString<string>;
1439
+ $lte: import("@feathersjs/typebox").TString<string>;
1440
+ $ne: import("@feathersjs/typebox").TString<string>;
1441
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1442
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1443
+ }>, import("@feathersjs/typebox").TObject<{
1444
+ [key: string]: import("@feathersjs/typebox").TSchema;
1445
+ } | undefined>]>>]>>;
1446
+ instruction: 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<{
1447
+ $gt: import("@feathersjs/typebox").TString<string>;
1448
+ $gte: import("@feathersjs/typebox").TString<string>;
1449
+ $lt: import("@feathersjs/typebox").TString<string>;
1450
+ $lte: import("@feathersjs/typebox").TString<string>;
1451
+ $ne: import("@feathersjs/typebox").TString<string>;
1452
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1453
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1116
1454
  }>, import("@feathersjs/typebox").TObject<{
1117
1455
  [key: string]: import("@feathersjs/typebox").TSchema;
1118
1456
  } | undefined>]>>]>>;
@@ -1122,131 +1460,280 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1122
1460
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1123
1461
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1124
1462
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1125
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
1126
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
1463
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1464
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1127
1465
  }>, import("@feathersjs/typebox").TObject<{
1128
1466
  [key: string]: import("@feathersjs/typebox").TSchema;
1129
1467
  } | undefined>]>>]>>;
1130
- bedrockAgentId: 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<{
1131
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1132
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1133
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1134
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1468
+ memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1469
+ $gt: import("@feathersjs/typebox").TBoolean;
1470
+ $gte: import("@feathersjs/typebox").TBoolean;
1471
+ $lt: import("@feathersjs/typebox").TBoolean;
1472
+ $lte: import("@feathersjs/typebox").TBoolean;
1473
+ $ne: import("@feathersjs/typebox").TBoolean;
1474
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
1475
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
1476
+ }>, import("@feathersjs/typebox").TObject<{
1477
+ [key: string]: import("@feathersjs/typebox").TSchema;
1478
+ } | undefined>]>>]>>;
1479
+ model: 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<{
1480
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1481
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1482
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1483
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1135
1484
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1136
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1137
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1485
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1486
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1138
1487
  }>, import("@feathersjs/typebox").TObject<{
1139
1488
  [key: string]: import("@feathersjs/typebox").TSchema;
1140
1489
  } | undefined>]>>]>>;
1141
- bedrockStatus: 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<{
1490
+ name: 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<{
1491
+ $gt: import("@feathersjs/typebox").TString<string>;
1492
+ $gte: import("@feathersjs/typebox").TString<string>;
1493
+ $lt: import("@feathersjs/typebox").TString<string>;
1494
+ $lte: import("@feathersjs/typebox").TString<string>;
1495
+ $ne: import("@feathersjs/typebox").TString<string>;
1496
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1497
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1498
+ }>, import("@feathersjs/typebox").TObject<{
1499
+ [key: string]: import("@feathersjs/typebox").TSchema;
1500
+ } | undefined>]>>]>>;
1501
+ provider: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1502
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1503
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1504
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1505
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1506
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1507
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1508
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1509
+ }>, import("@feathersjs/typebox").TObject<{
1510
+ [key: string]: import("@feathersjs/typebox").TSchema;
1511
+ } | undefined>]>>]>>;
1512
+ providerStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1513
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1514
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1515
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1516
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1517
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1518
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1519
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1520
+ }>, import("@feathersjs/typebox").TObject<{
1521
+ [key: string]: import("@feathersjs/typebox").TSchema;
1522
+ } | undefined>]>>]>>;
1523
+ role: 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<{
1524
+ $gt: import("@feathersjs/typebox").TString<string>;
1525
+ $gte: import("@feathersjs/typebox").TString<string>;
1526
+ $lt: import("@feathersjs/typebox").TString<string>;
1527
+ $lte: import("@feathersjs/typebox").TString<string>;
1528
+ $ne: import("@feathersjs/typebox").TString<string>;
1529
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1530
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1531
+ }>, import("@feathersjs/typebox").TObject<{
1532
+ [key: string]: import("@feathersjs/typebox").TSchema;
1533
+ } | undefined>]>>]>>;
1534
+ securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1535
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1536
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1537
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1538
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1539
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1540
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1541
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1542
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1543
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1544
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1545
+ }>>;
1546
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1547
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1548
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1549
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1550
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1551
+ }>>;
1552
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1553
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1554
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1555
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1556
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1557
+ }>>;
1558
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1559
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1560
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1561
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1562
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1563
+ }>>;
1564
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1565
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1566
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1567
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1568
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1569
+ }>>;
1570
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1571
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1572
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1573
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1574
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1575
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1576
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1577
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1578
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1579
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1580
+ }>>;
1581
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1582
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1583
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1584
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1585
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1586
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1587
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1588
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1589
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1590
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1591
+ }>>;
1592
+ }>, import("@feathersjs/typebox").TObject<{
1593
+ [key: string]: import("@feathersjs/typebox").TSchema;
1594
+ } | undefined>]>>]>>;
1595
+ systemAgent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1596
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1597
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1598
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1599
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1600
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1601
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1602
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1603
+ }>, import("@feathersjs/typebox").TObject<{
1604
+ [key: string]: import("@feathersjs/typebox").TSchema;
1605
+ } | undefined>]>>]>>;
1606
+ systemAgentType: 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<{
1607
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1608
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1609
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1610
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1611
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1612
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1613
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1614
+ }>, import("@feathersjs/typebox").TObject<{
1615
+ [key: string]: import("@feathersjs/typebox").TSchema;
1616
+ } | undefined>]>>]>>;
1617
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1618
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1619
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1620
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1621
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1622
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1623
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1624
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1625
+ }>, import("@feathersjs/typebox").TObject<{
1626
+ [key: string]: import("@feathersjs/typebox").TSchema;
1627
+ } | undefined>]>>]>>;
1628
+ toolRegistry: 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<{
1142
1629
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1143
1630
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1144
1631
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1145
1632
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1146
1633
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1147
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1148
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1634
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1635
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1636
+ }>, import("@feathersjs/typebox").TObject<{
1637
+ [key: string]: import("@feathersjs/typebox").TSchema;
1638
+ } | undefined>]>>]>>;
1639
+ triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1640
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1641
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1642
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1643
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1644
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1645
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1646
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1647
+ }>, import("@feathersjs/typebox").TObject<{
1648
+ [key: string]: import("@feathersjs/typebox").TSchema;
1649
+ } | undefined>]>>]>>;
1650
+ 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<{
1651
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1652
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1653
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1654
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1655
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1656
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1657
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1658
+ }>, import("@feathersjs/typebox").TObject<{
1659
+ [key: string]: import("@feathersjs/typebox").TSchema;
1660
+ } | undefined>]>>]>>;
1661
+ userId: 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<{
1662
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1663
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1664
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1665
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1666
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1667
+ $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<{}>]>>;
1668
+ $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<{}>]>>;
1149
1669
  }>, import("@feathersjs/typebox").TObject<{
1150
1670
  [key: string]: import("@feathersjs/typebox").TSchema;
1151
1671
  } | undefined>]>>]>>;
1152
1672
  }>>>;
1153
1673
  }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1154
- name: 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<{
1155
- $gt: import("@feathersjs/typebox").TString<string>;
1156
- $gte: import("@feathersjs/typebox").TString<string>;
1157
- $lt: import("@feathersjs/typebox").TString<string>;
1158
- $lte: import("@feathersjs/typebox").TString<string>;
1159
- $ne: import("@feathersjs/typebox").TString<string>;
1160
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1161
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1162
- }>, import("@feathersjs/typebox").TObject<{
1163
- [key: string]: import("@feathersjs/typebox").TSchema;
1164
- } | undefined>]>>]>>;
1165
- memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1166
- $gt: import("@feathersjs/typebox").TBoolean;
1167
- $gte: import("@feathersjs/typebox").TBoolean;
1168
- $lt: import("@feathersjs/typebox").TBoolean;
1169
- $lte: import("@feathersjs/typebox").TBoolean;
1170
- $ne: import("@feathersjs/typebox").TBoolean;
1171
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1172
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1173
- }>, import("@feathersjs/typebox").TObject<{
1174
- [key: string]: import("@feathersjs/typebox").TSchema;
1175
- } | undefined>]>>]>>;
1176
- model: 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<{
1177
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1178
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1179
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1180
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1181
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1182
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1183
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1184
- }>, import("@feathersjs/typebox").TObject<{
1185
- [key: string]: import("@feathersjs/typebox").TSchema;
1186
- } | undefined>]>>]>>;
1187
1674
  _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<{
1188
1675
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1189
1676
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1190
1677
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1191
1678
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1192
1679
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1193
- $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<{}>]>>;
1194
- $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<{}>]>>;
1680
+ $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<{}>]>;
1681
+ $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<{}>]>;
1195
1682
  }>, import("@feathersjs/typebox").TObject<{
1196
1683
  [key: string]: import("@feathersjs/typebox").TSchema;
1197
1684
  } | undefined>]>>]>>;
1198
- 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<{
1199
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1200
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1201
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1202
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1203
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1204
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1205
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1685
+ actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1686
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1687
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1688
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1689
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1690
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1691
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1692
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1206
1693
  }>, import("@feathersjs/typebox").TObject<{
1207
1694
  [key: string]: import("@feathersjs/typebox").TSchema;
1208
1695
  } | undefined>]>>]>>;
1209
- 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<{
1210
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1211
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1212
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1213
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1214
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1215
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1216
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1696
+ agnoModelId: 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<{
1697
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1698
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1699
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1700
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1701
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1702
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1703
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1217
1704
  }>, import("@feathersjs/typebox").TObject<{
1218
1705
  [key: string]: import("@feathersjs/typebox").TSchema;
1219
1706
  } | undefined>]>>]>>;
1220
- description: 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<{
1221
- $gt: import("@feathersjs/typebox").TString<string>;
1222
- $gte: import("@feathersjs/typebox").TString<string>;
1223
- $lt: import("@feathersjs/typebox").TString<string>;
1224
- $lte: import("@feathersjs/typebox").TString<string>;
1225
- $ne: import("@feathersjs/typebox").TString<string>;
1226
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1227
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1707
+ autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1708
+ $gt: import("@feathersjs/typebox").TBoolean;
1709
+ $gte: import("@feathersjs/typebox").TBoolean;
1710
+ $lt: import("@feathersjs/typebox").TBoolean;
1711
+ $lte: import("@feathersjs/typebox").TBoolean;
1712
+ $ne: import("@feathersjs/typebox").TBoolean;
1713
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
1714
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
1228
1715
  }>, import("@feathersjs/typebox").TObject<{
1229
1716
  [key: string]: import("@feathersjs/typebox").TSchema;
1230
1717
  } | undefined>]>>]>>;
1231
- role: 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<{
1232
- $gt: import("@feathersjs/typebox").TString<string>;
1233
- $gte: import("@feathersjs/typebox").TString<string>;
1234
- $lt: import("@feathersjs/typebox").TString<string>;
1235
- $lte: import("@feathersjs/typebox").TString<string>;
1236
- $ne: import("@feathersjs/typebox").TString<string>;
1237
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1238
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1718
+ bedrockAgentId: 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<{
1719
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1720
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1721
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1722
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1723
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1724
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1725
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1239
1726
  }>, import("@feathersjs/typebox").TObject<{
1240
1727
  [key: string]: import("@feathersjs/typebox").TSchema;
1241
1728
  } | undefined>]>>]>>;
1242
- instruction: 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<{
1243
- $gt: import("@feathersjs/typebox").TString<string>;
1244
- $gte: import("@feathersjs/typebox").TString<string>;
1245
- $lt: import("@feathersjs/typebox").TString<string>;
1246
- $lte: import("@feathersjs/typebox").TString<string>;
1247
- $ne: import("@feathersjs/typebox").TString<string>;
1248
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1249
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1729
+ bedrockStatus: 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<{
1730
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1731
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1732
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1733
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1734
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1735
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1736
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1250
1737
  }>, import("@feathersjs/typebox").TObject<{
1251
1738
  [key: string]: import("@feathersjs/typebox").TSchema;
1252
1739
  } | undefined>]>>]>>;
@@ -1256,19 +1743,8 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1256
1743
  $lt: import("@feathersjs/typebox").TBoolean;
1257
1744
  $lte: import("@feathersjs/typebox").TBoolean;
1258
1745
  $ne: import("@feathersjs/typebox").TBoolean;
1259
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1260
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1261
- }>, import("@feathersjs/typebox").TObject<{
1262
- [key: string]: import("@feathersjs/typebox").TSchema;
1263
- } | undefined>]>>]>>;
1264
- autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1265
- $gt: import("@feathersjs/typebox").TBoolean;
1266
- $gte: import("@feathersjs/typebox").TBoolean;
1267
- $lt: import("@feathersjs/typebox").TBoolean;
1268
- $lte: import("@feathersjs/typebox").TBoolean;
1269
- $ne: import("@feathersjs/typebox").TBoolean;
1270
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1271
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1746
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
1747
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
1272
1748
  }>, import("@feathersjs/typebox").TObject<{
1273
1749
  [key: string]: import("@feathersjs/typebox").TSchema;
1274
1750
  } | undefined>]>>]>>;
@@ -1326,7 +1802,7 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1326
1802
  instructions: import("@feathersjs/typebox").TString<string>;
1327
1803
  }>>;
1328
1804
  }>;
1329
- $in: import("@feathersjs/typebox").TObject<{
1805
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1330
1806
  enabled: import("@feathersjs/typebox").TBoolean;
1331
1807
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1332
1808
  _id: import("@feathersjs/typebox").TString<string>;
@@ -1334,7 +1810,7 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1334
1810
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1335
1811
  instructions: import("@feathersjs/typebox").TString<string>;
1336
1812
  }>>;
1337
- }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1813
+ }>> | import("@feathersjs/typebox").TObject<{
1338
1814
  enabled: import("@feathersjs/typebox").TBoolean;
1339
1815
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1340
1816
  _id: import("@feathersjs/typebox").TString<string>;
@@ -1342,8 +1818,8 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1342
1818
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1343
1819
  instructions: import("@feathersjs/typebox").TString<string>;
1344
1820
  }>>;
1345
- }>>;
1346
- $nin: import("@feathersjs/typebox").TObject<{
1821
+ }>;
1822
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1347
1823
  enabled: import("@feathersjs/typebox").TBoolean;
1348
1824
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1349
1825
  _id: import("@feathersjs/typebox").TString<string>;
@@ -1351,7 +1827,7 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1351
1827
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1352
1828
  instructions: import("@feathersjs/typebox").TString<string>;
1353
1829
  }>>;
1354
- }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1830
+ }>> | import("@feathersjs/typebox").TObject<{
1355
1831
  enabled: import("@feathersjs/typebox").TBoolean;
1356
1832
  agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1357
1833
  _id: import("@feathersjs/typebox").TString<string>;
@@ -1359,40 +1835,51 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1359
1835
  memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1360
1836
  instructions: import("@feathersjs/typebox").TString<string>;
1361
1837
  }>>;
1362
- }>>;
1838
+ }>;
1363
1839
  }>, import("@feathersjs/typebox").TObject<{
1364
1840
  [key: string]: import("@feathersjs/typebox").TSchema;
1365
1841
  } | undefined>]>>]>>;
1366
- actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1367
- $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1368
- $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1369
- $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1370
- $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1371
- $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1372
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1373
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1842
+ contextTemplate: 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<{
1843
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1844
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1845
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1846
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1847
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1848
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1849
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1374
1850
  }>, import("@feathersjs/typebox").TObject<{
1375
1851
  [key: string]: import("@feathersjs/typebox").TSchema;
1376
1852
  } | undefined>]>>]>>;
1377
- triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1378
- $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1379
- $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1380
- $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1381
- $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1382
- $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1383
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1384
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1853
+ 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<{
1854
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1855
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1856
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1857
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1858
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1859
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1860
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1385
1861
  }>, import("@feathersjs/typebox").TObject<{
1386
1862
  [key: string]: import("@feathersjs/typebox").TSchema;
1387
1863
  } | undefined>]>>]>>;
1388
- timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1389
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1390
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1391
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1392
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1393
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1394
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
1395
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
1864
+ description: 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<{
1865
+ $gt: import("@feathersjs/typebox").TString<string>;
1866
+ $gte: import("@feathersjs/typebox").TString<string>;
1867
+ $lt: import("@feathersjs/typebox").TString<string>;
1868
+ $lte: import("@feathersjs/typebox").TString<string>;
1869
+ $ne: import("@feathersjs/typebox").TString<string>;
1870
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1871
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1872
+ }>, import("@feathersjs/typebox").TObject<{
1873
+ [key: string]: import("@feathersjs/typebox").TSchema;
1874
+ } | undefined>]>>]>>;
1875
+ instruction: 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<{
1876
+ $gt: import("@feathersjs/typebox").TString<string>;
1877
+ $gte: import("@feathersjs/typebox").TString<string>;
1878
+ $lt: import("@feathersjs/typebox").TString<string>;
1879
+ $lte: import("@feathersjs/typebox").TString<string>;
1880
+ $ne: import("@feathersjs/typebox").TString<string>;
1881
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1882
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1396
1883
  }>, import("@feathersjs/typebox").TObject<{
1397
1884
  [key: string]: import("@feathersjs/typebox").TSchema;
1398
1885
  } | undefined>]>>]>>;
@@ -1402,71 +1889,280 @@ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect
1402
1889
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1403
1890
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1404
1891
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1405
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
1406
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
1892
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1893
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1407
1894
  }>, import("@feathersjs/typebox").TObject<{
1408
1895
  [key: string]: import("@feathersjs/typebox").TSchema;
1409
1896
  } | undefined>]>>]>>;
1410
- bedrockAgentId: 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<{
1411
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1412
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1413
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1414
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1415
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1416
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1417
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1897
+ memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1898
+ $gt: import("@feathersjs/typebox").TBoolean;
1899
+ $gte: import("@feathersjs/typebox").TBoolean;
1900
+ $lt: import("@feathersjs/typebox").TBoolean;
1901
+ $lte: import("@feathersjs/typebox").TBoolean;
1902
+ $ne: import("@feathersjs/typebox").TBoolean;
1903
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
1904
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
1418
1905
  }>, import("@feathersjs/typebox").TObject<{
1419
1906
  [key: string]: import("@feathersjs/typebox").TSchema;
1420
1907
  } | undefined>]>>]>>;
1421
- bedrockStatus: 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<{
1908
+ model: 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<{
1422
1909
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1423
1910
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1424
1911
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1425
1912
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1426
1913
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1427
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1428
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1914
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1915
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1429
1916
  }>, import("@feathersjs/typebox").TObject<{
1430
1917
  [key: string]: import("@feathersjs/typebox").TSchema;
1431
1918
  } | undefined>]>>]>>;
1432
- }>>]>, import("@feathersjs/typebox").TObject<{}>]>;
1433
- export type AgentsQuery = Static<typeof agentsQuerySchema>;
1434
- export declare const agentsQueryValidator: import("@feathersjs/schema").Validator<any, any>;
1435
- export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<Partial<{
1436
- $limit: number;
1919
+ name: 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<{
1920
+ $gt: import("@feathersjs/typebox").TString<string>;
1921
+ $gte: import("@feathersjs/typebox").TString<string>;
1922
+ $lt: import("@feathersjs/typebox").TString<string>;
1923
+ $lte: import("@feathersjs/typebox").TString<string>;
1924
+ $ne: import("@feathersjs/typebox").TString<string>;
1925
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1926
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1927
+ }>, import("@feathersjs/typebox").TObject<{
1928
+ [key: string]: import("@feathersjs/typebox").TSchema;
1929
+ } | undefined>]>>]>>;
1930
+ provider: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1931
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1932
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1933
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1934
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1935
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1936
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1937
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bedrock">, import("@feathersjs/typebox").TLiteral<"agno">]>>;
1938
+ }>, import("@feathersjs/typebox").TObject<{
1939
+ [key: string]: import("@feathersjs/typebox").TSchema;
1940
+ } | undefined>]>>]>>;
1941
+ providerStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1942
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1943
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1944
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1945
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1946
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1947
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1948
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ready">, import("@feathersjs/typebox").TLiteral<"preparing">, import("@feathersjs/typebox").TLiteral<"error">]>>;
1949
+ }>, import("@feathersjs/typebox").TObject<{
1950
+ [key: string]: import("@feathersjs/typebox").TSchema;
1951
+ } | undefined>]>>]>>;
1952
+ role: 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<{
1953
+ $gt: import("@feathersjs/typebox").TString<string>;
1954
+ $gte: import("@feathersjs/typebox").TString<string>;
1955
+ $lt: import("@feathersjs/typebox").TString<string>;
1956
+ $lte: import("@feathersjs/typebox").TString<string>;
1957
+ $ne: import("@feathersjs/typebox").TString<string>;
1958
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1959
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1960
+ }>, import("@feathersjs/typebox").TObject<{
1961
+ [key: string]: import("@feathersjs/typebox").TSchema;
1962
+ } | undefined>]>>]>>;
1963
+ securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1964
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1965
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1966
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1967
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1968
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1969
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1970
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1971
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1972
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1973
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1974
+ }>>;
1975
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1976
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1977
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1978
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1979
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1980
+ }>>;
1981
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1982
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1983
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1984
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1985
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1986
+ }>>;
1987
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1988
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1989
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1990
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1991
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1992
+ }>>;
1993
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1994
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
1995
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
1996
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1997
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1998
+ }>>;
1999
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
2000
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
2001
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
2002
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2003
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2004
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
2005
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
2006
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
2007
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2008
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2009
+ }>>;
2010
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
2011
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
2012
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
2013
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2014
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2015
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
2016
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
2017
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
2018
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2019
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2020
+ }>>;
2021
+ }>, import("@feathersjs/typebox").TObject<{
2022
+ [key: string]: import("@feathersjs/typebox").TSchema;
2023
+ } | undefined>]>>]>>;
2024
+ systemAgent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
2025
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2026
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2027
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2028
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2029
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2030
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2031
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2032
+ }>, import("@feathersjs/typebox").TObject<{
2033
+ [key: string]: import("@feathersjs/typebox").TSchema;
2034
+ } | undefined>]>>]>>;
2035
+ systemAgentType: 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<{
2036
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2037
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2038
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2039
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2040
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2041
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2042
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2043
+ }>, import("@feathersjs/typebox").TObject<{
2044
+ [key: string]: import("@feathersjs/typebox").TSchema;
2045
+ } | undefined>]>>]>>;
2046
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
2047
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
2048
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
2049
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
2050
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
2051
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
2052
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
2053
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
2054
+ }>, import("@feathersjs/typebox").TObject<{
2055
+ [key: string]: import("@feathersjs/typebox").TSchema;
2056
+ } | undefined>]>>]>>;
2057
+ toolRegistry: 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<{
2058
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2059
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2060
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2061
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2062
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2063
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2064
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2065
+ }>, import("@feathersjs/typebox").TObject<{
2066
+ [key: string]: import("@feathersjs/typebox").TSchema;
2067
+ } | undefined>]>>]>>;
2068
+ triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
2069
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2070
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2071
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2072
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2073
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2074
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2075
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2076
+ }>, import("@feathersjs/typebox").TObject<{
2077
+ [key: string]: import("@feathersjs/typebox").TSchema;
2078
+ } | undefined>]>>]>>;
2079
+ 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<{
2080
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2081
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2082
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2083
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2084
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2085
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2086
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2087
+ }>, import("@feathersjs/typebox").TObject<{
2088
+ [key: string]: import("@feathersjs/typebox").TSchema;
2089
+ } | undefined>]>>]>>;
2090
+ userId: 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<{
2091
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2092
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2093
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2094
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2095
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2096
+ $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<{}>]>>;
2097
+ $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<{}>]>>;
2098
+ }>, import("@feathersjs/typebox").TObject<{
2099
+ [key: string]: import("@feathersjs/typebox").TSchema;
2100
+ } | undefined>]>>]>>;
2101
+ }>>]>, import("@feathersjs/typebox").TObject<{}>]>;
2102
+ export type AgentsQuery = Static<typeof agentsQuerySchema>;
2103
+ export declare const agentsQueryValidator: import("@feathersjs/schema").Validator<any, any>;
2104
+ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<Partial<{
2105
+ $limit: number;
1437
2106
  $skip: number;
1438
2107
  $sort: {
1439
- name?: number | undefined;
1440
- memory?: number | undefined;
1441
- model?: number | undefined;
1442
2108
  _id?: number | undefined;
2109
+ actions?: number | undefined;
2110
+ agnoModelId?: number | undefined;
2111
+ autonomously?: number | undefined;
2112
+ bedrockAgentId?: number | undefined;
2113
+ bedrockStatus?: number | undefined;
2114
+ coding?: number | undefined;
2115
+ collaboration?: number | undefined;
2116
+ contextTemplate?: number | undefined;
1443
2117
  createdAt?: number | undefined;
1444
- updatedAt?: number | undefined;
1445
2118
  description?: number | undefined;
1446
- role?: number | undefined;
1447
2119
  instruction?: number | undefined;
1448
- coding?: number | undefined;
1449
- autonomously?: number | undefined;
1450
- collaboration?: number | undefined;
1451
- actions?: number | undefined;
1452
- triggers?: number | undefined;
1453
- timeout?: number | undefined;
1454
2120
  knowledgeBases?: number | undefined;
1455
- bedrockAgentId?: number | undefined;
1456
- bedrockStatus?: number | undefined;
2121
+ memory?: number | undefined;
2122
+ model?: number | undefined;
2123
+ name?: number | undefined;
2124
+ provider?: number | undefined;
2125
+ providerStatus?: number | undefined;
2126
+ role?: number | undefined;
2127
+ securityAttributes?: number | undefined;
2128
+ systemAgent?: number | undefined;
2129
+ systemAgentType?: number | undefined;
2130
+ timeout?: number | undefined;
2131
+ toolRegistry?: number | undefined;
2132
+ triggers?: number | undefined;
2133
+ updatedAt?: number | undefined;
2134
+ userId?: number | undefined;
1457
2135
  };
1458
- $select: ("name" | "memory" | "model" | "_id" | "createdAt" | "updatedAt" | "description" | "role" | "instruction" | "coding" | "autonomously" | "collaboration" | "actions" | "triggers" | "timeout" | "knowledgeBases" | "bedrockAgentId" | "bedrockStatus")[];
2136
+ $select: ("_id" | "actions" | "agnoModelId" | "autonomously" | "bedrockAgentId" | "bedrockStatus" | "coding" | "collaboration" | "contextTemplate" | "createdAt" | "description" | "instruction" | "knowledgeBases" | "memory" | "model" | "name" | "provider" | "providerStatus" | "role" | "securityAttributes" | "systemAgent" | "systemAgentType" | "timeout" | "toolRegistry" | "triggers" | "updatedAt" | "userId")[];
1459
2137
  $and: ({
1460
- name?: string | Partial<{
1461
- $gt: string;
1462
- $gte: string;
1463
- $lt: string;
1464
- $lte: string;
1465
- $ne: string;
2138
+ _id?: string | Partial<{
2139
+ $gt: string | {};
2140
+ $gte: string | {};
2141
+ $lt: string | {};
2142
+ $lte: string | {};
2143
+ $ne: string | {};
2144
+ $in: string | (string | {})[] | {};
2145
+ $nin: string | (string | {})[] | {};
2146
+ } & {}> | {} | undefined;
2147
+ actions?: any[] | Partial<{
2148
+ $gt: any[];
2149
+ $gte: any[];
2150
+ $lt: any[];
2151
+ $lte: any[];
2152
+ $ne: any[];
2153
+ $in: any[] | any[][];
2154
+ $nin: any[] | any[][];
2155
+ } & {}> | undefined;
2156
+ agnoModelId?: string | Partial<{
2157
+ $gt?: string | undefined;
2158
+ $gte?: string | undefined;
2159
+ $lt?: string | undefined;
2160
+ $lte?: string | undefined;
2161
+ $ne?: string | undefined;
1466
2162
  $in: string | string[];
1467
2163
  $nin: string | string[];
1468
2164
  } & {}> | undefined;
1469
- memory?: boolean | Partial<{
2165
+ autonomously?: boolean | Partial<{
1470
2166
  $gt: boolean;
1471
2167
  $gte: boolean;
1472
2168
  $lt: boolean;
@@ -1475,7 +2171,7 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1475
2171
  $in: boolean | boolean[];
1476
2172
  $nin: boolean | boolean[];
1477
2173
  } & {}> | undefined;
1478
- model?: string | Partial<{
2174
+ bedrockAgentId?: string | Partial<{
1479
2175
  $gt?: string | undefined;
1480
2176
  $gte?: string | undefined;
1481
2177
  $lt?: string | undefined;
@@ -1484,41 +2180,12 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1484
2180
  $in: string | string[];
1485
2181
  $nin: string | string[];
1486
2182
  } & {}> | undefined;
1487
- _id?: string | {} | Partial<{
1488
- $gt: string | {};
1489
- $gte: string | {};
1490
- $lt: string | {};
1491
- $lte: string | {};
1492
- $ne: string | {};
1493
- $in: string | {} | (string | {})[];
1494
- $nin: string | {} | (string | {})[];
1495
- } & {}> | undefined;
1496
- createdAt?: any;
1497
- updatedAt?: any;
1498
- description?: string | Partial<{
1499
- $gt: string;
1500
- $gte: string;
1501
- $lt: string;
1502
- $lte: string;
1503
- $ne: string;
1504
- $in: string | string[];
1505
- $nin: string | string[];
1506
- } & {}> | undefined;
1507
- role?: string | Partial<{
1508
- $gt: string;
1509
- $gte: string;
1510
- $lt: string;
1511
- $lte: string;
1512
- $ne: string;
1513
- $in: string | string[];
1514
- $nin: string | string[];
1515
- } & {}> | undefined;
1516
- instruction?: string | Partial<{
1517
- $gt: string;
1518
- $gte: string;
1519
- $lt: string;
1520
- $lte: string;
1521
- $ne: string;
2183
+ bedrockStatus?: string | Partial<{
2184
+ $gt?: string | undefined;
2185
+ $gte?: string | undefined;
2186
+ $lt?: string | undefined;
2187
+ $lte?: string | undefined;
2188
+ $ne?: string | undefined;
1522
2189
  $in: string | string[];
1523
2190
  $nin: string | string[];
1524
2191
  } & {}> | undefined;
@@ -1531,130 +2198,122 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1531
2198
  $in: boolean | boolean[];
1532
2199
  $nin: boolean | boolean[];
1533
2200
  } & {}> | undefined;
1534
- autonomously?: boolean | Partial<{
1535
- $gt: boolean;
1536
- $gte: boolean;
1537
- $lt: boolean;
1538
- $lte: boolean;
1539
- $ne: boolean;
1540
- $in: boolean | boolean[];
1541
- $nin: boolean | boolean[];
1542
- } & {}> | undefined;
1543
- collaboration?: {
1544
- enabled: boolean;
1545
- agents: {
1546
- name: string;
1547
- _id: string;
1548
- memoryType: "shared" | "private";
1549
- instructions: string;
1550
- }[];
1551
- } | Partial<{
2201
+ collaboration?: Partial<{
1552
2202
  $gt: {
1553
2203
  enabled: boolean;
1554
2204
  agents: {
1555
- name: string;
1556
2205
  _id: string;
1557
- memoryType: "shared" | "private";
2206
+ name: string;
2207
+ memoryType: "private" | "shared";
1558
2208
  instructions: string;
1559
2209
  }[];
1560
2210
  };
1561
2211
  $gte: {
1562
2212
  enabled: boolean;
1563
2213
  agents: {
1564
- name: string;
1565
2214
  _id: string;
1566
- memoryType: "shared" | "private";
2215
+ name: string;
2216
+ memoryType: "private" | "shared";
1567
2217
  instructions: string;
1568
2218
  }[];
1569
2219
  };
1570
2220
  $lt: {
1571
2221
  enabled: boolean;
1572
2222
  agents: {
1573
- name: string;
1574
2223
  _id: string;
1575
- memoryType: "shared" | "private";
2224
+ name: string;
2225
+ memoryType: "private" | "shared";
1576
2226
  instructions: string;
1577
2227
  }[];
1578
2228
  };
1579
2229
  $lte: {
1580
2230
  enabled: boolean;
1581
2231
  agents: {
1582
- name: string;
1583
2232
  _id: string;
1584
- memoryType: "shared" | "private";
2233
+ name: string;
2234
+ memoryType: "private" | "shared";
1585
2235
  instructions: string;
1586
2236
  }[];
1587
2237
  };
1588
2238
  $ne: {
1589
2239
  enabled: boolean;
1590
2240
  agents: {
1591
- name: string;
1592
2241
  _id: string;
1593
- memoryType: "shared" | "private";
2242
+ name: string;
2243
+ memoryType: "private" | "shared";
1594
2244
  instructions: string;
1595
2245
  }[];
1596
2246
  };
1597
2247
  $in: {
1598
2248
  enabled: boolean;
1599
2249
  agents: {
1600
- name: string;
1601
2250
  _id: string;
1602
- memoryType: "shared" | "private";
2251
+ name: string;
2252
+ memoryType: "private" | "shared";
1603
2253
  instructions: string;
1604
2254
  }[];
1605
- } | {
2255
+ }[] | {
1606
2256
  enabled: boolean;
1607
2257
  agents: {
1608
- name: string;
1609
2258
  _id: string;
1610
- memoryType: "shared" | "private";
2259
+ name: string;
2260
+ memoryType: "private" | "shared";
1611
2261
  instructions: string;
1612
2262
  }[];
1613
- }[];
2263
+ };
1614
2264
  $nin: {
1615
2265
  enabled: boolean;
1616
2266
  agents: {
1617
- name: string;
1618
2267
  _id: string;
1619
- memoryType: "shared" | "private";
2268
+ name: string;
2269
+ memoryType: "private" | "shared";
1620
2270
  instructions: string;
1621
2271
  }[];
1622
- } | {
2272
+ }[] | {
1623
2273
  enabled: boolean;
1624
2274
  agents: {
1625
- name: string;
1626
2275
  _id: string;
1627
- memoryType: "shared" | "private";
2276
+ name: string;
2277
+ memoryType: "private" | "shared";
1628
2278
  instructions: string;
1629
2279
  }[];
2280
+ };
2281
+ } & {}> | {
2282
+ enabled: boolean;
2283
+ agents: {
2284
+ _id: string;
2285
+ name: string;
2286
+ memoryType: "private" | "shared";
2287
+ instructions: string;
1630
2288
  }[];
2289
+ } | undefined;
2290
+ contextTemplate?: string | Partial<{
2291
+ $gt?: string | undefined;
2292
+ $gte?: string | undefined;
2293
+ $lt?: string | undefined;
2294
+ $lte?: string | undefined;
2295
+ $ne?: string | undefined;
2296
+ $in: string | string[];
2297
+ $nin: string | string[];
1631
2298
  } & {}> | undefined;
1632
- actions?: any[] | Partial<{
1633
- $gt: any[];
1634
- $gte: any[];
1635
- $lt: any[];
1636
- $lte: any[];
1637
- $ne: any[];
1638
- $in: any[] | any[][];
1639
- $nin: any[] | any[][];
1640
- } & {}> | undefined;
1641
- triggers?: string[] | Partial<{
1642
- $gt: string[];
1643
- $gte: string[];
1644
- $lt: string[];
1645
- $lte: string[];
1646
- $ne: string[];
1647
- $in: string[] | string[][];
1648
- $nin: string[] | string[][];
2299
+ createdAt?: any;
2300
+ description?: string | Partial<{
2301
+ $gt: string;
2302
+ $gte: string;
2303
+ $lt: string;
2304
+ $lte: string;
2305
+ $ne: string;
2306
+ $in: string | string[];
2307
+ $nin: string | string[];
1649
2308
  } & {}> | undefined;
1650
- timeout?: number | Partial<{
1651
- $gt?: number | undefined;
1652
- $gte?: number | undefined;
1653
- $lt?: number | undefined;
1654
- $lte?: number | undefined;
1655
- $ne?: number | undefined;
1656
- $in: number | number[];
1657
- $nin: number | number[];
2309
+ instruction?: string | Partial<{
2310
+ $gt: string;
2311
+ $gte: string;
2312
+ $lt: string;
2313
+ $lte: string;
2314
+ $ne: string;
2315
+ $in: string | string[];
2316
+ $nin: string | string[];
1658
2317
  } & {}> | undefined;
1659
2318
  knowledgeBases?: string[] | Partial<{
1660
2319
  $gt?: string[] | undefined;
@@ -1665,7 +2324,16 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1665
2324
  $in: string[] | string[][];
1666
2325
  $nin: string[] | string[][];
1667
2326
  } & {}> | undefined;
1668
- bedrockAgentId?: string | Partial<{
2327
+ memory?: boolean | Partial<{
2328
+ $gt: boolean;
2329
+ $gte: boolean;
2330
+ $lt: boolean;
2331
+ $lte: boolean;
2332
+ $ne: boolean;
2333
+ $in: boolean | boolean[];
2334
+ $nin: boolean | boolean[];
2335
+ } & {}> | undefined;
2336
+ model?: string | Partial<{
1669
2337
  $gt?: string | undefined;
1670
2338
  $gte?: string | undefined;
1671
2339
  $lt?: string | undefined;
@@ -1674,7 +2342,129 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1674
2342
  $in: string | string[];
1675
2343
  $nin: string | string[];
1676
2344
  } & {}> | undefined;
1677
- bedrockStatus?: string | Partial<{
2345
+ name?: string | Partial<{
2346
+ $gt: string;
2347
+ $gte: string;
2348
+ $lt: string;
2349
+ $lte: string;
2350
+ $ne: string;
2351
+ $in: string | string[];
2352
+ $nin: string | string[];
2353
+ } & {}> | undefined;
2354
+ provider?: "agno" | "bedrock" | Partial<{
2355
+ $gt?: "agno" | "bedrock" | undefined;
2356
+ $gte?: "agno" | "bedrock" | undefined;
2357
+ $lt?: "agno" | "bedrock" | undefined;
2358
+ $lte?: "agno" | "bedrock" | undefined;
2359
+ $ne?: "agno" | "bedrock" | undefined;
2360
+ $in: "agno" | "bedrock" | ("agno" | "bedrock")[];
2361
+ $nin: "agno" | "bedrock" | ("agno" | "bedrock")[];
2362
+ } & {}> | undefined;
2363
+ providerStatus?: "error" | "preparing" | "ready" | Partial<{
2364
+ $gt?: "error" | "preparing" | "ready" | undefined;
2365
+ $gte?: "error" | "preparing" | "ready" | undefined;
2366
+ $lt?: "error" | "preparing" | "ready" | undefined;
2367
+ $lte?: "error" | "preparing" | "ready" | undefined;
2368
+ $ne?: "error" | "preparing" | "ready" | undefined;
2369
+ $in: "error" | "preparing" | "ready" | ("error" | "preparing" | "ready")[];
2370
+ $nin: "error" | "preparing" | "ready" | ("error" | "preparing" | "ready")[];
2371
+ } & {}> | undefined;
2372
+ role?: string | Partial<{
2373
+ $gt: string;
2374
+ $gte: string;
2375
+ $lt: string;
2376
+ $lte: string;
2377
+ $ne: string;
2378
+ $in: string | string[];
2379
+ $nin: string | string[];
2380
+ } & {}> | undefined;
2381
+ securityAttributes?: Partial<{
2382
+ $gt?: {
2383
+ apiKeyId: string;
2384
+ apiKeyName: string;
2385
+ scopes: string[];
2386
+ rawApiKey?: string | undefined;
2387
+ } | undefined;
2388
+ $gte?: {
2389
+ apiKeyId: string;
2390
+ apiKeyName: string;
2391
+ scopes: string[];
2392
+ rawApiKey?: string | undefined;
2393
+ } | undefined;
2394
+ $lt?: {
2395
+ apiKeyId: string;
2396
+ apiKeyName: string;
2397
+ scopes: string[];
2398
+ rawApiKey?: string | undefined;
2399
+ } | undefined;
2400
+ $lte?: {
2401
+ apiKeyId: string;
2402
+ apiKeyName: string;
2403
+ scopes: string[];
2404
+ rawApiKey?: string | undefined;
2405
+ } | undefined;
2406
+ $ne?: {
2407
+ apiKeyId: string;
2408
+ apiKeyName: string;
2409
+ scopes: string[];
2410
+ rawApiKey?: string | undefined;
2411
+ } | undefined;
2412
+ $in: {
2413
+ apiKeyId: string;
2414
+ apiKeyName: string;
2415
+ scopes: string[];
2416
+ rawApiKey?: string | undefined;
2417
+ }[] | {
2418
+ apiKeyId: string;
2419
+ apiKeyName: string;
2420
+ scopes: string[];
2421
+ rawApiKey?: string | undefined;
2422
+ };
2423
+ $nin: {
2424
+ apiKeyId: string;
2425
+ apiKeyName: string;
2426
+ scopes: string[];
2427
+ rawApiKey?: string | undefined;
2428
+ }[] | {
2429
+ apiKeyId: string;
2430
+ apiKeyName: string;
2431
+ scopes: string[];
2432
+ rawApiKey?: string | undefined;
2433
+ };
2434
+ } & {}> | {
2435
+ apiKeyId: string;
2436
+ apiKeyName: string;
2437
+ scopes: string[];
2438
+ rawApiKey?: string | undefined;
2439
+ } | undefined;
2440
+ systemAgent?: boolean | Partial<{
2441
+ $gt?: boolean | undefined;
2442
+ $gte?: boolean | undefined;
2443
+ $lt?: boolean | undefined;
2444
+ $lte?: boolean | undefined;
2445
+ $ne?: boolean | undefined;
2446
+ $in: boolean | boolean[];
2447
+ $nin: boolean | boolean[];
2448
+ } & {}> | undefined;
2449
+ systemAgentType?: string | Partial<{
2450
+ $gt?: string | undefined;
2451
+ $gte?: string | undefined;
2452
+ $lt?: string | undefined;
2453
+ $lte?: string | undefined;
2454
+ $ne?: string | undefined;
2455
+ $in: string | string[];
2456
+ $nin: string | string[];
2457
+ } & {}> | undefined;
2458
+ timeout?: number | Partial<{
2459
+ $gt?: number | undefined;
2460
+ $gte?: number | undefined;
2461
+ $lt?: number | undefined;
2462
+ $lte?: number | undefined;
2463
+ $ne?: number | undefined;
2464
+ $in: number | number[];
2465
+ $nin: number | number[];
2466
+ } & {}> | undefined;
2467
+ toolRegistry?: string | Partial<{
1678
2468
  $gt?: string | undefined;
1679
2469
  $gte?: string | undefined;
1680
2470
  $lt?: string | undefined;
@@ -1683,18 +2473,55 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1683
2473
  $in: string | string[];
1684
2474
  $nin: string | string[];
1685
2475
  } & {}> | undefined;
2476
+ triggers?: string[] | Partial<{
2477
+ $gt: string[];
2478
+ $gte: string[];
2479
+ $lt: string[];
2480
+ $lte: string[];
2481
+ $ne: string[];
2482
+ $in: string[] | string[][];
2483
+ $nin: string[] | string[][];
2484
+ } & {}> | undefined;
2485
+ updatedAt?: any;
2486
+ userId?: string | Partial<{
2487
+ $gt?: string | {} | undefined;
2488
+ $gte?: string | {} | undefined;
2489
+ $lt?: string | {} | undefined;
2490
+ $lte?: string | {} | undefined;
2491
+ $ne?: string | {} | undefined;
2492
+ $in: string | (string | {})[] | {};
2493
+ $nin: string | (string | {})[] | {};
2494
+ } & {}> | {} | undefined;
1686
2495
  } | {
1687
2496
  $or: {
1688
- name?: string | Partial<{
1689
- $gt: string;
1690
- $gte: string;
1691
- $lt: string;
1692
- $lte: string;
1693
- $ne: string;
2497
+ _id?: string | Partial<{
2498
+ $gt: string | {};
2499
+ $gte: string | {};
2500
+ $lt: string | {};
2501
+ $lte: string | {};
2502
+ $ne: string | {};
2503
+ $in: string | (string | {})[] | {};
2504
+ $nin: string | (string | {})[] | {};
2505
+ } & {}> | {} | undefined;
2506
+ actions?: any[] | Partial<{
2507
+ $gt: any[];
2508
+ $gte: any[];
2509
+ $lt: any[];
2510
+ $lte: any[];
2511
+ $ne: any[];
2512
+ $in: any[] | any[][];
2513
+ $nin: any[] | any[][];
2514
+ } & {}> | undefined;
2515
+ agnoModelId?: string | Partial<{
2516
+ $gt?: string | undefined;
2517
+ $gte?: string | undefined;
2518
+ $lt?: string | undefined;
2519
+ $lte?: string | undefined;
2520
+ $ne?: string | undefined;
1694
2521
  $in: string | string[];
1695
2522
  $nin: string | string[];
1696
2523
  } & {}> | undefined;
1697
- memory?: boolean | Partial<{
2524
+ autonomously?: boolean | Partial<{
1698
2525
  $gt: boolean;
1699
2526
  $gte: boolean;
1700
2527
  $lt: boolean;
@@ -1703,7 +2530,7 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1703
2530
  $in: boolean | boolean[];
1704
2531
  $nin: boolean | boolean[];
1705
2532
  } & {}> | undefined;
1706
- model?: string | Partial<{
2533
+ bedrockAgentId?: string | Partial<{
1707
2534
  $gt?: string | undefined;
1708
2535
  $gte?: string | undefined;
1709
2536
  $lt?: string | undefined;
@@ -1712,41 +2539,12 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1712
2539
  $in: string | string[];
1713
2540
  $nin: string | string[];
1714
2541
  } & {}> | undefined;
1715
- _id?: string | {} | Partial<{
1716
- $gt: string | {};
1717
- $gte: string | {};
1718
- $lt: string | {};
1719
- $lte: string | {};
1720
- $ne: string | {};
1721
- $in: string | {} | (string | {})[];
1722
- $nin: string | {} | (string | {})[];
1723
- } & {}> | undefined;
1724
- createdAt?: any;
1725
- updatedAt?: any;
1726
- description?: string | Partial<{
1727
- $gt: string;
1728
- $gte: string;
1729
- $lt: string;
1730
- $lte: string;
1731
- $ne: string;
1732
- $in: string | string[];
1733
- $nin: string | string[];
1734
- } & {}> | undefined;
1735
- role?: string | Partial<{
1736
- $gt: string;
1737
- $gte: string;
1738
- $lt: string;
1739
- $lte: string;
1740
- $ne: string;
1741
- $in: string | string[];
1742
- $nin: string | string[];
1743
- } & {}> | undefined;
1744
- instruction?: string | Partial<{
1745
- $gt: string;
1746
- $gte: string;
1747
- $lt: string;
1748
- $lte: string;
1749
- $ne: string;
2542
+ bedrockStatus?: string | Partial<{
2543
+ $gt?: string | undefined;
2544
+ $gte?: string | undefined;
2545
+ $lt?: string | undefined;
2546
+ $lte?: string | undefined;
2547
+ $ne?: string | undefined;
1750
2548
  $in: string | string[];
1751
2549
  $nin: string | string[];
1752
2550
  } & {}> | undefined;
@@ -1759,121 +2557,262 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1759
2557
  $in: boolean | boolean[];
1760
2558
  $nin: boolean | boolean[];
1761
2559
  } & {}> | undefined;
1762
- autonomously?: boolean | Partial<{
1763
- $gt: boolean;
1764
- $gte: boolean;
1765
- $lt: boolean;
1766
- $lte: boolean;
1767
- $ne: boolean;
1768
- $in: boolean | boolean[];
1769
- $nin: boolean | boolean[];
1770
- } & {}> | undefined;
1771
- collaboration?: {
1772
- enabled: boolean;
1773
- agents: {
1774
- name: string;
1775
- _id: string;
1776
- memoryType: "shared" | "private";
1777
- instructions: string;
1778
- }[];
1779
- } | Partial<{
2560
+ collaboration?: Partial<{
1780
2561
  $gt: {
1781
2562
  enabled: boolean;
1782
2563
  agents: {
1783
- name: string;
1784
2564
  _id: string;
1785
- memoryType: "shared" | "private";
2565
+ name: string;
2566
+ memoryType: "private" | "shared";
1786
2567
  instructions: string;
1787
2568
  }[];
1788
2569
  };
1789
2570
  $gte: {
1790
2571
  enabled: boolean;
1791
2572
  agents: {
1792
- name: string;
1793
2573
  _id: string;
1794
- memoryType: "shared" | "private";
2574
+ name: string;
2575
+ memoryType: "private" | "shared";
1795
2576
  instructions: string;
1796
2577
  }[];
1797
2578
  };
1798
2579
  $lt: {
1799
2580
  enabled: boolean;
1800
2581
  agents: {
1801
- name: string;
1802
2582
  _id: string;
1803
- memoryType: "shared" | "private";
2583
+ name: string;
2584
+ memoryType: "private" | "shared";
1804
2585
  instructions: string;
1805
2586
  }[];
1806
2587
  };
1807
2588
  $lte: {
1808
2589
  enabled: boolean;
1809
2590
  agents: {
1810
- name: string;
1811
2591
  _id: string;
1812
- memoryType: "shared" | "private";
2592
+ name: string;
2593
+ memoryType: "private" | "shared";
1813
2594
  instructions: string;
1814
2595
  }[];
1815
2596
  };
1816
2597
  $ne: {
1817
2598
  enabled: boolean;
1818
2599
  agents: {
1819
- name: string;
1820
2600
  _id: string;
1821
- memoryType: "shared" | "private";
2601
+ name: string;
2602
+ memoryType: "private" | "shared";
1822
2603
  instructions: string;
1823
2604
  }[];
1824
2605
  };
1825
2606
  $in: {
1826
2607
  enabled: boolean;
1827
2608
  agents: {
1828
- name: string;
1829
2609
  _id: string;
1830
- memoryType: "shared" | "private";
2610
+ name: string;
2611
+ memoryType: "private" | "shared";
1831
2612
  instructions: string;
1832
2613
  }[];
1833
- } | {
2614
+ }[] | {
1834
2615
  enabled: boolean;
1835
2616
  agents: {
1836
- name: string;
1837
2617
  _id: string;
1838
- memoryType: "shared" | "private";
2618
+ name: string;
2619
+ memoryType: "private" | "shared";
1839
2620
  instructions: string;
1840
2621
  }[];
1841
- }[];
2622
+ };
1842
2623
  $nin: {
1843
2624
  enabled: boolean;
1844
2625
  agents: {
1845
- name: string;
1846
2626
  _id: string;
1847
- memoryType: "shared" | "private";
2627
+ name: string;
2628
+ memoryType: "private" | "shared";
1848
2629
  instructions: string;
1849
2630
  }[];
1850
- } | {
2631
+ }[] | {
1851
2632
  enabled: boolean;
1852
2633
  agents: {
1853
- name: string;
1854
2634
  _id: string;
1855
- memoryType: "shared" | "private";
2635
+ name: string;
2636
+ memoryType: "private" | "shared";
1856
2637
  instructions: string;
1857
2638
  }[];
2639
+ };
2640
+ } & {}> | {
2641
+ enabled: boolean;
2642
+ agents: {
2643
+ _id: string;
2644
+ name: string;
2645
+ memoryType: "private" | "shared";
2646
+ instructions: string;
1858
2647
  }[];
2648
+ } | undefined;
2649
+ contextTemplate?: string | Partial<{
2650
+ $gt?: string | undefined;
2651
+ $gte?: string | undefined;
2652
+ $lt?: string | undefined;
2653
+ $lte?: string | undefined;
2654
+ $ne?: string | undefined;
2655
+ $in: string | string[];
2656
+ $nin: string | string[];
1859
2657
  } & {}> | undefined;
1860
- actions?: any[] | Partial<{
1861
- $gt: any[];
1862
- $gte: any[];
1863
- $lt: any[];
1864
- $lte: any[];
1865
- $ne: any[];
1866
- $in: any[] | any[][];
1867
- $nin: any[] | any[][];
2658
+ createdAt?: any;
2659
+ description?: string | Partial<{
2660
+ $gt: string;
2661
+ $gte: string;
2662
+ $lt: string;
2663
+ $lte: string;
2664
+ $ne: string;
2665
+ $in: string | string[];
2666
+ $nin: string | string[];
2667
+ } & {}> | undefined;
2668
+ instruction?: string | Partial<{
2669
+ $gt: string;
2670
+ $gte: string;
2671
+ $lt: string;
2672
+ $lte: string;
2673
+ $ne: string;
2674
+ $in: string | string[];
2675
+ $nin: string | string[];
2676
+ } & {}> | undefined;
2677
+ knowledgeBases?: string[] | Partial<{
2678
+ $gt?: string[] | undefined;
2679
+ $gte?: string[] | undefined;
2680
+ $lt?: string[] | undefined;
2681
+ $lte?: string[] | undefined;
2682
+ $ne?: string[] | undefined;
2683
+ $in: string[] | string[][];
2684
+ $nin: string[] | string[][];
2685
+ } & {}> | undefined;
2686
+ memory?: boolean | Partial<{
2687
+ $gt: boolean;
2688
+ $gte: boolean;
2689
+ $lt: boolean;
2690
+ $lte: boolean;
2691
+ $ne: boolean;
2692
+ $in: boolean | boolean[];
2693
+ $nin: boolean | boolean[];
2694
+ } & {}> | undefined;
2695
+ model?: string | Partial<{
2696
+ $gt?: string | undefined;
2697
+ $gte?: string | undefined;
2698
+ $lt?: string | undefined;
2699
+ $lte?: string | undefined;
2700
+ $ne?: string | undefined;
2701
+ $in: string | string[];
2702
+ $nin: string | string[];
2703
+ } & {}> | undefined;
2704
+ name?: string | Partial<{
2705
+ $gt: string;
2706
+ $gte: string;
2707
+ $lt: string;
2708
+ $lte: string;
2709
+ $ne: string;
2710
+ $in: string | string[];
2711
+ $nin: string | string[];
2712
+ } & {}> | undefined;
2713
+ provider?: "agno" | "bedrock" | Partial<{
2714
+ $gt?: "agno" | "bedrock" | undefined;
2715
+ $gte?: "agno" | "bedrock" | undefined;
2716
+ $lt?: "agno" | "bedrock" | undefined;
2717
+ $lte?: "agno" | "bedrock" | undefined;
2718
+ $ne?: "agno" | "bedrock" | undefined;
2719
+ $in: "agno" | "bedrock" | ("agno" | "bedrock")[];
2720
+ $nin: "agno" | "bedrock" | ("agno" | "bedrock")[];
2721
+ } & {}> | undefined;
2722
+ providerStatus?: "error" | "preparing" | "ready" | Partial<{
2723
+ $gt?: "error" | "preparing" | "ready" | undefined;
2724
+ $gte?: "error" | "preparing" | "ready" | undefined;
2725
+ $lt?: "error" | "preparing" | "ready" | undefined;
2726
+ $lte?: "error" | "preparing" | "ready" | undefined;
2727
+ $ne?: "error" | "preparing" | "ready" | undefined;
2728
+ $in: "error" | "preparing" | "ready" | ("error" | "preparing" | "ready")[];
2729
+ $nin: "error" | "preparing" | "ready" | ("error" | "preparing" | "ready")[];
2730
+ } & {}> | undefined;
2731
+ role?: string | Partial<{
2732
+ $gt: string;
2733
+ $gte: string;
2734
+ $lt: string;
2735
+ $lte: string;
2736
+ $ne: string;
2737
+ $in: string | string[];
2738
+ $nin: string | string[];
1868
2739
  } & {}> | undefined;
1869
- triggers?: string[] | Partial<{
1870
- $gt: string[];
1871
- $gte: string[];
1872
- $lt: string[];
1873
- $lte: string[];
1874
- $ne: string[];
1875
- $in: string[] | string[][];
1876
- $nin: string[] | string[][];
2740
+ securityAttributes?: Partial<{
2741
+ $gt?: {
2742
+ apiKeyId: string;
2743
+ apiKeyName: string;
2744
+ scopes: string[];
2745
+ rawApiKey?: string | undefined;
2746
+ } | undefined;
2747
+ $gte?: {
2748
+ apiKeyId: string;
2749
+ apiKeyName: string;
2750
+ scopes: string[];
2751
+ rawApiKey?: string | undefined;
2752
+ } | undefined;
2753
+ $lt?: {
2754
+ apiKeyId: string;
2755
+ apiKeyName: string;
2756
+ scopes: string[];
2757
+ rawApiKey?: string | undefined;
2758
+ } | undefined;
2759
+ $lte?: {
2760
+ apiKeyId: string;
2761
+ apiKeyName: string;
2762
+ scopes: string[];
2763
+ rawApiKey?: string | undefined;
2764
+ } | undefined;
2765
+ $ne?: {
2766
+ apiKeyId: string;
2767
+ apiKeyName: string;
2768
+ scopes: string[];
2769
+ rawApiKey?: string | undefined;
2770
+ } | undefined;
2771
+ $in: {
2772
+ apiKeyId: string;
2773
+ apiKeyName: string;
2774
+ scopes: string[];
2775
+ rawApiKey?: string | undefined;
2776
+ }[] | {
2777
+ apiKeyId: string;
2778
+ apiKeyName: string;
2779
+ scopes: string[];
2780
+ rawApiKey?: string | undefined;
2781
+ };
2782
+ $nin: {
2783
+ apiKeyId: string;
2784
+ apiKeyName: string;
2785
+ scopes: string[];
2786
+ rawApiKey?: string | undefined;
2787
+ }[] | {
2788
+ apiKeyId: string;
2789
+ apiKeyName: string;
2790
+ scopes: string[];
2791
+ rawApiKey?: string | undefined;
2792
+ };
2793
+ } & {}> | {
2794
+ apiKeyId: string;
2795
+ apiKeyName: string;
2796
+ scopes: string[];
2797
+ rawApiKey?: string | undefined;
2798
+ } | undefined;
2799
+ systemAgent?: boolean | Partial<{
2800
+ $gt?: boolean | undefined;
2801
+ $gte?: boolean | undefined;
2802
+ $lt?: boolean | undefined;
2803
+ $lte?: boolean | undefined;
2804
+ $ne?: boolean | undefined;
2805
+ $in: boolean | boolean[];
2806
+ $nin: boolean | boolean[];
2807
+ } & {}> | undefined;
2808
+ systemAgentType?: string | Partial<{
2809
+ $gt?: string | undefined;
2810
+ $gte?: string | undefined;
2811
+ $lt?: string | undefined;
2812
+ $lte?: string | undefined;
2813
+ $ne?: string | undefined;
2814
+ $in: string | string[];
2815
+ $nin: string | string[];
1877
2816
  } & {}> | undefined;
1878
2817
  timeout?: number | Partial<{
1879
2818
  $gt?: number | undefined;
@@ -1884,16 +2823,7 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1884
2823
  $in: number | number[];
1885
2824
  $nin: number | number[];
1886
2825
  } & {}> | undefined;
1887
- knowledgeBases?: string[] | Partial<{
1888
- $gt?: string[] | undefined;
1889
- $gte?: string[] | undefined;
1890
- $lt?: string[] | undefined;
1891
- $lte?: string[] | undefined;
1892
- $ne?: string[] | undefined;
1893
- $in: string[] | string[][];
1894
- $nin: string[] | string[][];
1895
- } & {}> | undefined;
1896
- bedrockAgentId?: string | Partial<{
2826
+ toolRegistry?: string | Partial<{
1897
2827
  $gt?: string | undefined;
1898
2828
  $gte?: string | undefined;
1899
2829
  $lt?: string | undefined;
@@ -1902,28 +2832,56 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1902
2832
  $in: string | string[];
1903
2833
  $nin: string | string[];
1904
2834
  } & {}> | undefined;
1905
- bedrockStatus?: string | Partial<{
1906
- $gt?: string | undefined;
1907
- $gte?: string | undefined;
1908
- $lt?: string | undefined;
1909
- $lte?: string | undefined;
1910
- $ne?: string | undefined;
1911
- $in: string | string[];
1912
- $nin: string | string[];
2835
+ triggers?: string[] | Partial<{
2836
+ $gt: string[];
2837
+ $gte: string[];
2838
+ $lt: string[];
2839
+ $lte: string[];
2840
+ $ne: string[];
2841
+ $in: string[] | string[][];
2842
+ $nin: string[] | string[][];
1913
2843
  } & {}> | undefined;
2844
+ updatedAt?: any;
2845
+ userId?: string | Partial<{
2846
+ $gt?: string | {} | undefined;
2847
+ $gte?: string | {} | undefined;
2848
+ $lt?: string | {} | undefined;
2849
+ $lte?: string | {} | undefined;
2850
+ $ne?: string | {} | undefined;
2851
+ $in: string | (string | {})[] | {};
2852
+ $nin: string | (string | {})[] | {};
2853
+ } & {}> | {} | undefined;
1914
2854
  }[];
1915
2855
  })[];
1916
2856
  $or: {
1917
- name?: string | Partial<{
1918
- $gt: string;
1919
- $gte: string;
1920
- $lt: string;
1921
- $lte: string;
1922
- $ne: string;
2857
+ _id?: string | Partial<{
2858
+ $gt: string | {};
2859
+ $gte: string | {};
2860
+ $lt: string | {};
2861
+ $lte: string | {};
2862
+ $ne: string | {};
2863
+ $in: string | (string | {})[] | {};
2864
+ $nin: string | (string | {})[] | {};
2865
+ } & {}> | {} | undefined;
2866
+ actions?: any[] | Partial<{
2867
+ $gt: any[];
2868
+ $gte: any[];
2869
+ $lt: any[];
2870
+ $lte: any[];
2871
+ $ne: any[];
2872
+ $in: any[] | any[][];
2873
+ $nin: any[] | any[][];
2874
+ } & {}> | undefined;
2875
+ agnoModelId?: string | Partial<{
2876
+ $gt?: string | undefined;
2877
+ $gte?: string | undefined;
2878
+ $lt?: string | undefined;
2879
+ $lte?: string | undefined;
2880
+ $ne?: string | undefined;
1923
2881
  $in: string | string[];
1924
2882
  $nin: string | string[];
1925
2883
  } & {}> | undefined;
1926
- memory?: boolean | Partial<{
2884
+ autonomously?: boolean | Partial<{
1927
2885
  $gt: boolean;
1928
2886
  $gte: boolean;
1929
2887
  $lt: boolean;
@@ -1932,7 +2890,7 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1932
2890
  $in: boolean | boolean[];
1933
2891
  $nin: boolean | boolean[];
1934
2892
  } & {}> | undefined;
1935
- model?: string | Partial<{
2893
+ bedrockAgentId?: string | Partial<{
1936
2894
  $gt?: string | undefined;
1937
2895
  $gte?: string | undefined;
1938
2896
  $lt?: string | undefined;
@@ -1941,41 +2899,12 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1941
2899
  $in: string | string[];
1942
2900
  $nin: string | string[];
1943
2901
  } & {}> | undefined;
1944
- _id?: string | {} | Partial<{
1945
- $gt: string | {};
1946
- $gte: string | {};
1947
- $lt: string | {};
1948
- $lte: string | {};
1949
- $ne: string | {};
1950
- $in: string | {} | (string | {})[];
1951
- $nin: string | {} | (string | {})[];
1952
- } & {}> | undefined;
1953
- createdAt?: any;
1954
- updatedAt?: any;
1955
- description?: string | Partial<{
1956
- $gt: string;
1957
- $gte: string;
1958
- $lt: string;
1959
- $lte: string;
1960
- $ne: string;
1961
- $in: string | string[];
1962
- $nin: string | string[];
1963
- } & {}> | undefined;
1964
- role?: string | Partial<{
1965
- $gt: string;
1966
- $gte: string;
1967
- $lt: string;
1968
- $lte: string;
1969
- $ne: string;
1970
- $in: string | string[];
1971
- $nin: string | string[];
1972
- } & {}> | undefined;
1973
- instruction?: string | Partial<{
1974
- $gt: string;
1975
- $gte: string;
1976
- $lt: string;
1977
- $lte: string;
1978
- $ne: string;
2902
+ bedrockStatus?: string | Partial<{
2903
+ $gt?: string | undefined;
2904
+ $gte?: string | undefined;
2905
+ $lt?: string | undefined;
2906
+ $lte?: string | undefined;
2907
+ $ne?: string | undefined;
1979
2908
  $in: string | string[];
1980
2909
  $nin: string | string[];
1981
2910
  } & {}> | undefined;
@@ -1988,122 +2917,263 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
1988
2917
  $in: boolean | boolean[];
1989
2918
  $nin: boolean | boolean[];
1990
2919
  } & {}> | undefined;
1991
- autonomously?: boolean | Partial<{
1992
- $gt: boolean;
1993
- $gte: boolean;
1994
- $lt: boolean;
1995
- $lte: boolean;
1996
- $ne: boolean;
1997
- $in: boolean | boolean[];
1998
- $nin: boolean | boolean[];
1999
- } & {}> | undefined;
2000
- collaboration?: {
2001
- enabled: boolean;
2002
- agents: {
2003
- name: string;
2004
- _id: string;
2005
- memoryType: "shared" | "private";
2006
- instructions: string;
2007
- }[];
2008
- } | Partial<{
2920
+ collaboration?: Partial<{
2009
2921
  $gt: {
2010
2922
  enabled: boolean;
2011
2923
  agents: {
2012
- name: string;
2013
2924
  _id: string;
2014
- memoryType: "shared" | "private";
2925
+ name: string;
2926
+ memoryType: "private" | "shared";
2015
2927
  instructions: string;
2016
2928
  }[];
2017
2929
  };
2018
2930
  $gte: {
2019
2931
  enabled: boolean;
2020
2932
  agents: {
2021
- name: string;
2022
2933
  _id: string;
2023
- memoryType: "shared" | "private";
2934
+ name: string;
2935
+ memoryType: "private" | "shared";
2024
2936
  instructions: string;
2025
2937
  }[];
2026
2938
  };
2027
2939
  $lt: {
2028
2940
  enabled: boolean;
2029
2941
  agents: {
2030
- name: string;
2031
2942
  _id: string;
2032
- memoryType: "shared" | "private";
2943
+ name: string;
2944
+ memoryType: "private" | "shared";
2033
2945
  instructions: string;
2034
2946
  }[];
2035
2947
  };
2036
2948
  $lte: {
2037
2949
  enabled: boolean;
2038
2950
  agents: {
2039
- name: string;
2040
2951
  _id: string;
2041
- memoryType: "shared" | "private";
2952
+ name: string;
2953
+ memoryType: "private" | "shared";
2042
2954
  instructions: string;
2043
2955
  }[];
2044
2956
  };
2045
2957
  $ne: {
2046
2958
  enabled: boolean;
2047
2959
  agents: {
2048
- name: string;
2049
2960
  _id: string;
2050
- memoryType: "shared" | "private";
2961
+ name: string;
2962
+ memoryType: "private" | "shared";
2051
2963
  instructions: string;
2052
2964
  }[];
2053
2965
  };
2054
2966
  $in: {
2055
2967
  enabled: boolean;
2056
2968
  agents: {
2057
- name: string;
2058
2969
  _id: string;
2059
- memoryType: "shared" | "private";
2970
+ name: string;
2971
+ memoryType: "private" | "shared";
2060
2972
  instructions: string;
2061
2973
  }[];
2062
- } | {
2974
+ }[] | {
2063
2975
  enabled: boolean;
2064
2976
  agents: {
2065
- name: string;
2066
2977
  _id: string;
2067
- memoryType: "shared" | "private";
2978
+ name: string;
2979
+ memoryType: "private" | "shared";
2068
2980
  instructions: string;
2069
2981
  }[];
2070
- }[];
2982
+ };
2071
2983
  $nin: {
2072
2984
  enabled: boolean;
2073
2985
  agents: {
2074
- name: string;
2075
2986
  _id: string;
2076
- memoryType: "shared" | "private";
2987
+ name: string;
2988
+ memoryType: "private" | "shared";
2077
2989
  instructions: string;
2078
2990
  }[];
2079
- } | {
2991
+ }[] | {
2080
2992
  enabled: boolean;
2081
2993
  agents: {
2082
- name: string;
2083
2994
  _id: string;
2084
- memoryType: "shared" | "private";
2995
+ name: string;
2996
+ memoryType: "private" | "shared";
2085
2997
  instructions: string;
2086
2998
  }[];
2999
+ };
3000
+ } & {}> | {
3001
+ enabled: boolean;
3002
+ agents: {
3003
+ _id: string;
3004
+ name: string;
3005
+ memoryType: "private" | "shared";
3006
+ instructions: string;
2087
3007
  }[];
3008
+ } | undefined;
3009
+ contextTemplate?: string | Partial<{
3010
+ $gt?: string | undefined;
3011
+ $gte?: string | undefined;
3012
+ $lt?: string | undefined;
3013
+ $lte?: string | undefined;
3014
+ $ne?: string | undefined;
3015
+ $in: string | string[];
3016
+ $nin: string | string[];
2088
3017
  } & {}> | undefined;
2089
- actions?: any[] | Partial<{
2090
- $gt: any[];
2091
- $gte: any[];
2092
- $lt: any[];
2093
- $lte: any[];
2094
- $ne: any[];
2095
- $in: any[] | any[][];
2096
- $nin: any[] | any[][];
3018
+ createdAt?: any;
3019
+ description?: string | Partial<{
3020
+ $gt: string;
3021
+ $gte: string;
3022
+ $lt: string;
3023
+ $lte: string;
3024
+ $ne: string;
3025
+ $in: string | string[];
3026
+ $nin: string | string[];
2097
3027
  } & {}> | undefined;
2098
- triggers?: string[] | Partial<{
2099
- $gt: string[];
2100
- $gte: string[];
2101
- $lt: string[];
2102
- $lte: string[];
2103
- $ne: string[];
3028
+ instruction?: string | Partial<{
3029
+ $gt: string;
3030
+ $gte: string;
3031
+ $lt: string;
3032
+ $lte: string;
3033
+ $ne: string;
3034
+ $in: string | string[];
3035
+ $nin: string | string[];
3036
+ } & {}> | undefined;
3037
+ knowledgeBases?: string[] | Partial<{
3038
+ $gt?: string[] | undefined;
3039
+ $gte?: string[] | undefined;
3040
+ $lt?: string[] | undefined;
3041
+ $lte?: string[] | undefined;
3042
+ $ne?: string[] | undefined;
2104
3043
  $in: string[] | string[][];
2105
3044
  $nin: string[] | string[][];
2106
3045
  } & {}> | undefined;
3046
+ memory?: boolean | Partial<{
3047
+ $gt: boolean;
3048
+ $gte: boolean;
3049
+ $lt: boolean;
3050
+ $lte: boolean;
3051
+ $ne: boolean;
3052
+ $in: boolean | boolean[];
3053
+ $nin: boolean | boolean[];
3054
+ } & {}> | undefined;
3055
+ model?: string | Partial<{
3056
+ $gt?: string | undefined;
3057
+ $gte?: string | undefined;
3058
+ $lt?: string | undefined;
3059
+ $lte?: string | undefined;
3060
+ $ne?: string | undefined;
3061
+ $in: string | string[];
3062
+ $nin: string | string[];
3063
+ } & {}> | undefined;
3064
+ name?: string | Partial<{
3065
+ $gt: string;
3066
+ $gte: string;
3067
+ $lt: string;
3068
+ $lte: string;
3069
+ $ne: string;
3070
+ $in: string | string[];
3071
+ $nin: string | string[];
3072
+ } & {}> | undefined;
3073
+ provider?: "agno" | "bedrock" | Partial<{
3074
+ $gt?: "agno" | "bedrock" | undefined;
3075
+ $gte?: "agno" | "bedrock" | undefined;
3076
+ $lt?: "agno" | "bedrock" | undefined;
3077
+ $lte?: "agno" | "bedrock" | undefined;
3078
+ $ne?: "agno" | "bedrock" | undefined;
3079
+ $in: "agno" | "bedrock" | ("agno" | "bedrock")[];
3080
+ $nin: "agno" | "bedrock" | ("agno" | "bedrock")[];
3081
+ } & {}> | undefined;
3082
+ providerStatus?: "error" | "preparing" | "ready" | Partial<{
3083
+ $gt?: "error" | "preparing" | "ready" | undefined;
3084
+ $gte?: "error" | "preparing" | "ready" | undefined;
3085
+ $lt?: "error" | "preparing" | "ready" | undefined;
3086
+ $lte?: "error" | "preparing" | "ready" | undefined;
3087
+ $ne?: "error" | "preparing" | "ready" | undefined;
3088
+ $in: "error" | "preparing" | "ready" | ("error" | "preparing" | "ready")[];
3089
+ $nin: "error" | "preparing" | "ready" | ("error" | "preparing" | "ready")[];
3090
+ } & {}> | undefined;
3091
+ role?: string | Partial<{
3092
+ $gt: string;
3093
+ $gte: string;
3094
+ $lt: string;
3095
+ $lte: string;
3096
+ $ne: string;
3097
+ $in: string | string[];
3098
+ $nin: string | string[];
3099
+ } & {}> | undefined;
3100
+ securityAttributes?: Partial<{
3101
+ $gt?: {
3102
+ apiKeyId: string;
3103
+ apiKeyName: string;
3104
+ scopes: string[];
3105
+ rawApiKey?: string | undefined;
3106
+ } | undefined;
3107
+ $gte?: {
3108
+ apiKeyId: string;
3109
+ apiKeyName: string;
3110
+ scopes: string[];
3111
+ rawApiKey?: string | undefined;
3112
+ } | undefined;
3113
+ $lt?: {
3114
+ apiKeyId: string;
3115
+ apiKeyName: string;
3116
+ scopes: string[];
3117
+ rawApiKey?: string | undefined;
3118
+ } | undefined;
3119
+ $lte?: {
3120
+ apiKeyId: string;
3121
+ apiKeyName: string;
3122
+ scopes: string[];
3123
+ rawApiKey?: string | undefined;
3124
+ } | undefined;
3125
+ $ne?: {
3126
+ apiKeyId: string;
3127
+ apiKeyName: string;
3128
+ scopes: string[];
3129
+ rawApiKey?: string | undefined;
3130
+ } | undefined;
3131
+ $in: {
3132
+ apiKeyId: string;
3133
+ apiKeyName: string;
3134
+ scopes: string[];
3135
+ rawApiKey?: string | undefined;
3136
+ }[] | {
3137
+ apiKeyId: string;
3138
+ apiKeyName: string;
3139
+ scopes: string[];
3140
+ rawApiKey?: string | undefined;
3141
+ };
3142
+ $nin: {
3143
+ apiKeyId: string;
3144
+ apiKeyName: string;
3145
+ scopes: string[];
3146
+ rawApiKey?: string | undefined;
3147
+ }[] | {
3148
+ apiKeyId: string;
3149
+ apiKeyName: string;
3150
+ scopes: string[];
3151
+ rawApiKey?: string | undefined;
3152
+ };
3153
+ } & {}> | {
3154
+ apiKeyId: string;
3155
+ apiKeyName: string;
3156
+ scopes: string[];
3157
+ rawApiKey?: string | undefined;
3158
+ } | undefined;
3159
+ systemAgent?: boolean | Partial<{
3160
+ $gt?: boolean | undefined;
3161
+ $gte?: boolean | undefined;
3162
+ $lt?: boolean | undefined;
3163
+ $lte?: boolean | undefined;
3164
+ $ne?: boolean | undefined;
3165
+ $in: boolean | boolean[];
3166
+ $nin: boolean | boolean[];
3167
+ } & {}> | undefined;
3168
+ systemAgentType?: string | Partial<{
3169
+ $gt?: string | undefined;
3170
+ $gte?: string | undefined;
3171
+ $lt?: string | undefined;
3172
+ $lte?: string | undefined;
3173
+ $ne?: string | undefined;
3174
+ $in: string | string[];
3175
+ $nin: string | string[];
3176
+ } & {}> | undefined;
2107
3177
  timeout?: number | Partial<{
2108
3178
  $gt?: number | undefined;
2109
3179
  $gte?: number | undefined;
@@ -2113,16 +3183,7 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
2113
3183
  $in: number | number[];
2114
3184
  $nin: number | number[];
2115
3185
  } & {}> | undefined;
2116
- knowledgeBases?: string[] | Partial<{
2117
- $gt?: string[] | undefined;
2118
- $gte?: string[] | undefined;
2119
- $lt?: string[] | undefined;
2120
- $lte?: string[] | undefined;
2121
- $ne?: string[] | undefined;
2122
- $in: string[] | string[][];
2123
- $nin: string[] | string[][];
2124
- } & {}> | undefined;
2125
- bedrockAgentId?: string | Partial<{
3186
+ toolRegistry?: string | Partial<{
2126
3187
  $gt?: string | undefined;
2127
3188
  $gte?: string | undefined;
2128
3189
  $lt?: string | undefined;
@@ -2131,27 +3192,55 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
2131
3192
  $in: string | string[];
2132
3193
  $nin: string | string[];
2133
3194
  } & {}> | undefined;
2134
- bedrockStatus?: string | Partial<{
2135
- $gt?: string | undefined;
2136
- $gte?: string | undefined;
2137
- $lt?: string | undefined;
2138
- $lte?: string | undefined;
2139
- $ne?: string | undefined;
2140
- $in: string | string[];
2141
- $nin: string | string[];
3195
+ triggers?: string[] | Partial<{
3196
+ $gt: string[];
3197
+ $gte: string[];
3198
+ $lt: string[];
3199
+ $lte: string[];
3200
+ $ne: string[];
3201
+ $in: string[] | string[][];
3202
+ $nin: string[] | string[][];
2142
3203
  } & {}> | undefined;
3204
+ updatedAt?: any;
3205
+ userId?: string | Partial<{
3206
+ $gt?: string | {} | undefined;
3207
+ $gte?: string | {} | undefined;
3208
+ $lt?: string | {} | undefined;
3209
+ $lte?: string | {} | undefined;
3210
+ $ne?: string | {} | undefined;
3211
+ $in: string | (string | {})[] | {};
3212
+ $nin: string | (string | {})[] | {};
3213
+ } & {}> | {} | undefined;
2143
3214
  }[];
2144
3215
  }> & {
2145
- name?: string | Partial<{
2146
- $gt: string;
2147
- $gte: string;
2148
- $lt: string;
2149
- $lte: string;
2150
- $ne: string;
3216
+ _id?: string | Partial<{
3217
+ $gt: string | {};
3218
+ $gte: string | {};
3219
+ $lt: string | {};
3220
+ $lte: string | {};
3221
+ $ne: string | {};
3222
+ $in: string | (string | {})[] | {};
3223
+ $nin: string | (string | {})[] | {};
3224
+ } & {}> | {} | undefined;
3225
+ actions?: any[] | Partial<{
3226
+ $gt: any[];
3227
+ $gte: any[];
3228
+ $lt: any[];
3229
+ $lte: any[];
3230
+ $ne: any[];
3231
+ $in: any[] | any[][];
3232
+ $nin: any[] | any[][];
3233
+ } & {}> | undefined;
3234
+ agnoModelId?: string | Partial<{
3235
+ $gt?: string | undefined;
3236
+ $gte?: string | undefined;
3237
+ $lt?: string | undefined;
3238
+ $lte?: string | undefined;
3239
+ $ne?: string | undefined;
2151
3240
  $in: string | string[];
2152
3241
  $nin: string | string[];
2153
3242
  } & {}> | undefined;
2154
- memory?: boolean | Partial<{
3243
+ autonomously?: boolean | Partial<{
2155
3244
  $gt: boolean;
2156
3245
  $gte: boolean;
2157
3246
  $lt: boolean;
@@ -2160,7 +3249,7 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
2160
3249
  $in: boolean | boolean[];
2161
3250
  $nin: boolean | boolean[];
2162
3251
  } & {}> | undefined;
2163
- model?: string | Partial<{
3252
+ bedrockAgentId?: string | Partial<{
2164
3253
  $gt?: string | undefined;
2165
3254
  $gte?: string | undefined;
2166
3255
  $lt?: string | undefined;
@@ -2169,41 +3258,12 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
2169
3258
  $in: string | string[];
2170
3259
  $nin: string | string[];
2171
3260
  } & {}> | undefined;
2172
- _id?: string | {} | Partial<{
2173
- $gt: string | {};
2174
- $gte: string | {};
2175
- $lt: string | {};
2176
- $lte: string | {};
2177
- $ne: string | {};
2178
- $in: string | {} | (string | {})[];
2179
- $nin: string | {} | (string | {})[];
2180
- } & {}> | undefined;
2181
- createdAt?: any;
2182
- updatedAt?: any;
2183
- description?: string | Partial<{
2184
- $gt: string;
2185
- $gte: string;
2186
- $lt: string;
2187
- $lte: string;
2188
- $ne: string;
2189
- $in: string | string[];
2190
- $nin: string | string[];
2191
- } & {}> | undefined;
2192
- role?: string | Partial<{
2193
- $gt: string;
2194
- $gte: string;
2195
- $lt: string;
2196
- $lte: string;
2197
- $ne: string;
2198
- $in: string | string[];
2199
- $nin: string | string[];
2200
- } & {}> | undefined;
2201
- instruction?: string | Partial<{
2202
- $gt: string;
2203
- $gte: string;
2204
- $lt: string;
2205
- $lte: string;
2206
- $ne: string;
3261
+ bedrockStatus?: string | Partial<{
3262
+ $gt?: string | undefined;
3263
+ $gte?: string | undefined;
3264
+ $lt?: string | undefined;
3265
+ $lte?: string | undefined;
3266
+ $ne?: string | undefined;
2207
3267
  $in: string | string[];
2208
3268
  $nin: string | string[];
2209
3269
  } & {}> | undefined;
@@ -2216,130 +3276,122 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
2216
3276
  $in: boolean | boolean[];
2217
3277
  $nin: boolean | boolean[];
2218
3278
  } & {}> | undefined;
2219
- autonomously?: boolean | Partial<{
2220
- $gt: boolean;
2221
- $gte: boolean;
2222
- $lt: boolean;
2223
- $lte: boolean;
2224
- $ne: boolean;
2225
- $in: boolean | boolean[];
2226
- $nin: boolean | boolean[];
2227
- } & {}> | undefined;
2228
- collaboration?: {
2229
- enabled: boolean;
2230
- agents: {
2231
- name: string;
2232
- _id: string;
2233
- memoryType: "shared" | "private";
2234
- instructions: string;
2235
- }[];
2236
- } | Partial<{
3279
+ collaboration?: Partial<{
2237
3280
  $gt: {
2238
3281
  enabled: boolean;
2239
3282
  agents: {
2240
- name: string;
2241
3283
  _id: string;
2242
- memoryType: "shared" | "private";
3284
+ name: string;
3285
+ memoryType: "private" | "shared";
2243
3286
  instructions: string;
2244
3287
  }[];
2245
3288
  };
2246
3289
  $gte: {
2247
3290
  enabled: boolean;
2248
3291
  agents: {
2249
- name: string;
2250
3292
  _id: string;
2251
- memoryType: "shared" | "private";
3293
+ name: string;
3294
+ memoryType: "private" | "shared";
2252
3295
  instructions: string;
2253
3296
  }[];
2254
3297
  };
2255
3298
  $lt: {
2256
3299
  enabled: boolean;
2257
3300
  agents: {
2258
- name: string;
2259
3301
  _id: string;
2260
- memoryType: "shared" | "private";
3302
+ name: string;
3303
+ memoryType: "private" | "shared";
2261
3304
  instructions: string;
2262
3305
  }[];
2263
3306
  };
2264
3307
  $lte: {
2265
3308
  enabled: boolean;
2266
3309
  agents: {
2267
- name: string;
2268
3310
  _id: string;
2269
- memoryType: "shared" | "private";
3311
+ name: string;
3312
+ memoryType: "private" | "shared";
2270
3313
  instructions: string;
2271
3314
  }[];
2272
3315
  };
2273
3316
  $ne: {
2274
3317
  enabled: boolean;
2275
3318
  agents: {
2276
- name: string;
2277
3319
  _id: string;
2278
- memoryType: "shared" | "private";
3320
+ name: string;
3321
+ memoryType: "private" | "shared";
2279
3322
  instructions: string;
2280
3323
  }[];
2281
3324
  };
2282
3325
  $in: {
2283
3326
  enabled: boolean;
2284
3327
  agents: {
2285
- name: string;
2286
3328
  _id: string;
2287
- memoryType: "shared" | "private";
3329
+ name: string;
3330
+ memoryType: "private" | "shared";
2288
3331
  instructions: string;
2289
3332
  }[];
2290
- } | {
3333
+ }[] | {
2291
3334
  enabled: boolean;
2292
3335
  agents: {
2293
- name: string;
2294
3336
  _id: string;
2295
- memoryType: "shared" | "private";
3337
+ name: string;
3338
+ memoryType: "private" | "shared";
2296
3339
  instructions: string;
2297
3340
  }[];
2298
- }[];
3341
+ };
2299
3342
  $nin: {
2300
3343
  enabled: boolean;
2301
3344
  agents: {
2302
- name: string;
2303
3345
  _id: string;
2304
- memoryType: "shared" | "private";
3346
+ name: string;
3347
+ memoryType: "private" | "shared";
2305
3348
  instructions: string;
2306
3349
  }[];
2307
- } | {
3350
+ }[] | {
2308
3351
  enabled: boolean;
2309
3352
  agents: {
2310
- name: string;
2311
3353
  _id: string;
2312
- memoryType: "shared" | "private";
3354
+ name: string;
3355
+ memoryType: "private" | "shared";
2313
3356
  instructions: string;
2314
3357
  }[];
3358
+ };
3359
+ } & {}> | {
3360
+ enabled: boolean;
3361
+ agents: {
3362
+ _id: string;
3363
+ name: string;
3364
+ memoryType: "private" | "shared";
3365
+ instructions: string;
2315
3366
  }[];
3367
+ } | undefined;
3368
+ contextTemplate?: string | Partial<{
3369
+ $gt?: string | undefined;
3370
+ $gte?: string | undefined;
3371
+ $lt?: string | undefined;
3372
+ $lte?: string | undefined;
3373
+ $ne?: string | undefined;
3374
+ $in: string | string[];
3375
+ $nin: string | string[];
2316
3376
  } & {}> | undefined;
2317
- actions?: any[] | Partial<{
2318
- $gt: any[];
2319
- $gte: any[];
2320
- $lt: any[];
2321
- $lte: any[];
2322
- $ne: any[];
2323
- $in: any[] | any[][];
2324
- $nin: any[] | any[][];
2325
- } & {}> | undefined;
2326
- triggers?: string[] | Partial<{
2327
- $gt: string[];
2328
- $gte: string[];
2329
- $lt: string[];
2330
- $lte: string[];
2331
- $ne: string[];
2332
- $in: string[] | string[][];
2333
- $nin: string[] | string[][];
3377
+ createdAt?: any;
3378
+ description?: string | Partial<{
3379
+ $gt: string;
3380
+ $gte: string;
3381
+ $lt: string;
3382
+ $lte: string;
3383
+ $ne: string;
3384
+ $in: string | string[];
3385
+ $nin: string | string[];
2334
3386
  } & {}> | undefined;
2335
- timeout?: number | Partial<{
2336
- $gt?: number | undefined;
2337
- $gte?: number | undefined;
2338
- $lt?: number | undefined;
2339
- $lte?: number | undefined;
2340
- $ne?: number | undefined;
2341
- $in: number | number[];
2342
- $nin: number | number[];
3387
+ instruction?: string | Partial<{
3388
+ $gt: string;
3389
+ $gte: string;
3390
+ $lt: string;
3391
+ $lte: string;
3392
+ $ne: string;
3393
+ $in: string | string[];
3394
+ $nin: string | string[];
2343
3395
  } & {}> | undefined;
2344
3396
  knowledgeBases?: string[] | Partial<{
2345
3397
  $gt?: string[] | undefined;
@@ -2350,7 +3402,16 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
2350
3402
  $in: string[] | string[][];
2351
3403
  $nin: string[] | string[][];
2352
3404
  } & {}> | undefined;
2353
- bedrockAgentId?: string | Partial<{
3405
+ memory?: boolean | Partial<{
3406
+ $gt: boolean;
3407
+ $gte: boolean;
3408
+ $lt: boolean;
3409
+ $lte: boolean;
3410
+ $ne: boolean;
3411
+ $in: boolean | boolean[];
3412
+ $nin: boolean | boolean[];
3413
+ } & {}> | undefined;
3414
+ model?: string | Partial<{
2354
3415
  $gt?: string | undefined;
2355
3416
  $gte?: string | undefined;
2356
3417
  $lt?: string | undefined;
@@ -2359,7 +3420,129 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
2359
3420
  $in: string | string[];
2360
3421
  $nin: string | string[];
2361
3422
  } & {}> | undefined;
2362
- bedrockStatus?: string | Partial<{
3423
+ name?: string | Partial<{
3424
+ $gt: string;
3425
+ $gte: string;
3426
+ $lt: string;
3427
+ $lte: string;
3428
+ $ne: string;
3429
+ $in: string | string[];
3430
+ $nin: string | string[];
3431
+ } & {}> | undefined;
3432
+ provider?: "agno" | "bedrock" | Partial<{
3433
+ $gt?: "agno" | "bedrock" | undefined;
3434
+ $gte?: "agno" | "bedrock" | undefined;
3435
+ $lt?: "agno" | "bedrock" | undefined;
3436
+ $lte?: "agno" | "bedrock" | undefined;
3437
+ $ne?: "agno" | "bedrock" | undefined;
3438
+ $in: "agno" | "bedrock" | ("agno" | "bedrock")[];
3439
+ $nin: "agno" | "bedrock" | ("agno" | "bedrock")[];
3440
+ } & {}> | undefined;
3441
+ providerStatus?: "error" | "preparing" | "ready" | Partial<{
3442
+ $gt?: "error" | "preparing" | "ready" | undefined;
3443
+ $gte?: "error" | "preparing" | "ready" | undefined;
3444
+ $lt?: "error" | "preparing" | "ready" | undefined;
3445
+ $lte?: "error" | "preparing" | "ready" | undefined;
3446
+ $ne?: "error" | "preparing" | "ready" | undefined;
3447
+ $in: "error" | "preparing" | "ready" | ("error" | "preparing" | "ready")[];
3448
+ $nin: "error" | "preparing" | "ready" | ("error" | "preparing" | "ready")[];
3449
+ } & {}> | undefined;
3450
+ role?: string | Partial<{
3451
+ $gt: string;
3452
+ $gte: string;
3453
+ $lt: string;
3454
+ $lte: string;
3455
+ $ne: string;
3456
+ $in: string | string[];
3457
+ $nin: string | string[];
3458
+ } & {}> | undefined;
3459
+ securityAttributes?: Partial<{
3460
+ $gt?: {
3461
+ apiKeyId: string;
3462
+ apiKeyName: string;
3463
+ scopes: string[];
3464
+ rawApiKey?: string | undefined;
3465
+ } | undefined;
3466
+ $gte?: {
3467
+ apiKeyId: string;
3468
+ apiKeyName: string;
3469
+ scopes: string[];
3470
+ rawApiKey?: string | undefined;
3471
+ } | undefined;
3472
+ $lt?: {
3473
+ apiKeyId: string;
3474
+ apiKeyName: string;
3475
+ scopes: string[];
3476
+ rawApiKey?: string | undefined;
3477
+ } | undefined;
3478
+ $lte?: {
3479
+ apiKeyId: string;
3480
+ apiKeyName: string;
3481
+ scopes: string[];
3482
+ rawApiKey?: string | undefined;
3483
+ } | undefined;
3484
+ $ne?: {
3485
+ apiKeyId: string;
3486
+ apiKeyName: string;
3487
+ scopes: string[];
3488
+ rawApiKey?: string | undefined;
3489
+ } | undefined;
3490
+ $in: {
3491
+ apiKeyId: string;
3492
+ apiKeyName: string;
3493
+ scopes: string[];
3494
+ rawApiKey?: string | undefined;
3495
+ }[] | {
3496
+ apiKeyId: string;
3497
+ apiKeyName: string;
3498
+ scopes: string[];
3499
+ rawApiKey?: string | undefined;
3500
+ };
3501
+ $nin: {
3502
+ apiKeyId: string;
3503
+ apiKeyName: string;
3504
+ scopes: string[];
3505
+ rawApiKey?: string | undefined;
3506
+ }[] | {
3507
+ apiKeyId: string;
3508
+ apiKeyName: string;
3509
+ scopes: string[];
3510
+ rawApiKey?: string | undefined;
3511
+ };
3512
+ } & {}> | {
3513
+ apiKeyId: string;
3514
+ apiKeyName: string;
3515
+ scopes: string[];
3516
+ rawApiKey?: string | undefined;
3517
+ } | undefined;
3518
+ systemAgent?: boolean | Partial<{
3519
+ $gt?: boolean | undefined;
3520
+ $gte?: boolean | undefined;
3521
+ $lt?: boolean | undefined;
3522
+ $lte?: boolean | undefined;
3523
+ $ne?: boolean | undefined;
3524
+ $in: boolean | boolean[];
3525
+ $nin: boolean | boolean[];
3526
+ } & {}> | undefined;
3527
+ systemAgentType?: string | Partial<{
3528
+ $gt?: string | undefined;
3529
+ $gte?: string | undefined;
3530
+ $lt?: string | undefined;
3531
+ $lte?: string | undefined;
3532
+ $ne?: string | undefined;
3533
+ $in: string | string[];
3534
+ $nin: string | string[];
3535
+ } & {}> | undefined;
3536
+ timeout?: number | Partial<{
3537
+ $gt?: number | undefined;
3538
+ $gte?: number | undefined;
3539
+ $lt?: number | undefined;
3540
+ $lte?: number | undefined;
3541
+ $ne?: number | undefined;
3542
+ $in: number | number[];
3543
+ $nin: number | number[];
3544
+ } & {}> | undefined;
3545
+ toolRegistry?: string | Partial<{
2363
3546
  $gt?: string | undefined;
2364
3547
  $gte?: string | undefined;
2365
3548
  $lt?: string | undefined;
@@ -2368,4 +3551,23 @@ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<
2368
3551
  $in: string | string[];
2369
3552
  $nin: string | string[];
2370
3553
  } & {}> | undefined;
3554
+ triggers?: string[] | Partial<{
3555
+ $gt: string[];
3556
+ $gte: string[];
3557
+ $lt: string[];
3558
+ $lte: string[];
3559
+ $ne: string[];
3560
+ $in: string[] | string[][];
3561
+ $nin: string[] | string[][];
3562
+ } & {}> | undefined;
3563
+ updatedAt?: any;
3564
+ userId?: string | Partial<{
3565
+ $gt?: string | {} | undefined;
3566
+ $gte?: string | {} | undefined;
3567
+ $lt?: string | {} | undefined;
3568
+ $lte?: string | {} | undefined;
3569
+ $ne?: string | {} | undefined;
3570
+ $in: string | (string | {})[] | {};
3571
+ $nin: string | (string | {})[] | {};
3572
+ } & {}> | {} | undefined;
2371
3573
  } & {}, HookContext<AgentsService<import("./agents.class").AgentsParams>>>;