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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (617) hide show
  1. package/lib/src/client.d.ts +260 -0
  2. package/lib/src/client.js +165 -23
  3. package/lib/src/services/advisor/advisor.class.d.ts +12 -0
  4. package/lib/src/services/advisor/advisor.d.ts +11 -0
  5. package/lib/src/services/advisor/advisor.hooks.d.ts +9 -0
  6. package/lib/src/services/advisor/advisor.schema.d.ts +2744 -0
  7. package/lib/src/services/advisor/advisor.shared.d.ts +13 -0
  8. package/lib/src/services/advisor/advisor.shared.js +13 -0
  9. package/lib/src/services/advisor/messages/messages.class.d.ts +11 -0
  10. package/lib/src/services/advisor/messages/messages.d.ts +11 -0
  11. package/lib/src/services/advisor/messages/messages.schema.d.ts +575 -0
  12. package/lib/src/services/advisor/messages/messages.shared.d.ts +13 -0
  13. package/lib/src/services/advisor/messages/messages.shared.js +13 -0
  14. package/lib/src/services/affiliates/affiliates.class.d.ts +18 -0
  15. package/lib/src/services/affiliates/affiliates.d.ts +11 -0
  16. package/lib/src/services/affiliates/affiliates.schema.d.ts +579 -0
  17. package/lib/src/services/affiliates/affiliates.shared.d.ts +13 -0
  18. package/lib/src/services/affiliates/affiliates.shared.js +20 -0
  19. package/lib/src/services/affiliates/clicks/clicks.class.d.ts +11 -0
  20. package/lib/src/services/affiliates/clicks/clicks.d.ts +11 -0
  21. package/lib/src/services/affiliates/clicks/clicks.schema.d.ts +507 -0
  22. package/lib/src/services/affiliates/clicks/clicks.shared.d.ts +13 -0
  23. package/lib/src/services/affiliates/clicks/clicks.shared.js +19 -0
  24. package/lib/src/services/affiliates/comissions/comissions.class.d.ts +11 -0
  25. package/lib/src/services/affiliates/comissions/comissions.d.ts +11 -0
  26. package/lib/src/services/affiliates/comissions/comissions.schema.d.ts +841 -0
  27. package/lib/src/services/affiliates/comissions/comissions.shared.d.ts +13 -0
  28. package/lib/src/services/affiliates/comissions/comissions.shared.js +19 -0
  29. package/lib/src/services/affiliates/contracts/contracts.class.d.ts +11 -0
  30. package/lib/src/services/affiliates/contracts/contracts.d.ts +11 -0
  31. package/lib/src/services/affiliates/contracts/contracts.schema.d.ts +667 -0
  32. package/lib/src/services/affiliates/contracts/contracts.shared.d.ts +13 -0
  33. package/lib/src/services/affiliates/contracts/contracts.shared.js +19 -0
  34. package/lib/src/services/affiliates/coupons/coupons.class.d.ts +11 -0
  35. package/lib/src/services/affiliates/coupons/coupons.d.ts +11 -0
  36. package/lib/src/services/affiliates/coupons/coupons.schema.d.ts +523 -0
  37. package/lib/src/services/affiliates/coupons/coupons.shared.d.ts +13 -0
  38. package/lib/src/services/affiliates/coupons/coupons.shared.js +19 -0
  39. package/lib/src/services/affiliates/links/links.class.d.ts +11 -0
  40. package/lib/src/services/affiliates/links/links.d.ts +11 -0
  41. package/lib/src/services/affiliates/links/links.schema.d.ts +515 -0
  42. package/lib/src/services/affiliates/links/links.shared.d.ts +13 -0
  43. package/lib/src/services/affiliates/links/links.shared.js +13 -0
  44. package/lib/src/services/affiliates/payouts/payouts.class.d.ts +11 -0
  45. package/lib/src/services/affiliates/payouts/payouts.d.ts +11 -0
  46. package/lib/src/services/affiliates/payouts/payouts.schema.d.ts +433 -0
  47. package/lib/src/services/affiliates/payouts/payouts.shared.d.ts +13 -0
  48. package/lib/src/services/affiliates/payouts/payouts.shared.js +19 -0
  49. package/lib/src/services/agents/agents.class.d.ts +3 -2
  50. package/lib/src/services/agents/agents.schema.d.ts +2263 -1061
  51. package/lib/src/services/agents/agents.shared.d.ts +1 -1
  52. package/lib/src/services/agents/configure-bedrock-features.hooks.d.ts +2 -0
  53. package/lib/src/services/agents/create-agent-api-key.hooks.d.ts +2 -0
  54. package/lib/src/services/agents/create-bedrock-agent.hooks.d.ts +2 -0
  55. package/lib/src/services/agents/delete-agent-api-key.hooks.d.ts +2 -0
  56. package/lib/src/services/agents/delete-agent-triggers.hooks.d.ts +5 -0
  57. package/lib/src/services/agents/delete-bedrock-agent.hooks.d.ts +2 -0
  58. package/lib/src/services/agents/manage-bedrock-action-groups.hooks.d.ts +2 -0
  59. package/lib/src/services/agents/prepare/agents/backtest-analyst.d.ts +2 -0
  60. package/lib/src/services/agents/prepare/agents/financial-manager.d.ts +16 -0
  61. package/lib/src/services/agents/prepare/agents/hyperopt-analyst.d.ts +2 -0
  62. package/lib/src/services/agents/prepare/agents/index.d.ts +13 -0
  63. package/lib/src/services/agents/prepare/agents/risk-critic.d.ts +2 -0
  64. package/lib/src/services/agents/prepare/agents/strategy-researcher.d.ts +2 -0
  65. package/lib/src/services/agents/prepare/prepare.schema.d.ts +24 -24
  66. package/lib/src/services/agents/prepare/prepare.shared.d.ts +1 -1
  67. package/lib/src/services/agents/refresh-bedrock-agent-status.hooks.d.ts +2 -0
  68. package/lib/src/services/agents/sessions/conversations/conversations.class.d.ts +3 -2
  69. package/lib/src/services/agents/sessions/conversations/conversations.hooks.d.ts +11 -0
  70. package/lib/src/services/agents/sessions/conversations/conversations.schema.d.ts +833 -463
  71. package/lib/src/services/agents/sessions/conversations/conversations.shared.d.ts +1 -1
  72. package/lib/src/services/agents/sessions/conversations/invoke-agent-provider.hooks.d.ts +2 -0
  73. package/lib/src/services/agents/sessions/conversations/invoke-bedrock-agent.hooks.d.ts +2 -0
  74. package/lib/src/services/agents/sessions/conversations/set-conversation-timestamps.hooks.d.ts +0 -0
  75. package/lib/src/services/agents/sessions/create-bedrock-session.hooks.d.ts +2 -0
  76. package/lib/src/services/agents/sessions/delete-bedrock-session.hooks.d.ts +2 -0
  77. package/lib/src/services/agents/sessions/sessions.class.d.ts +3 -2
  78. package/lib/src/services/agents/sessions/sessions.hooks.d.ts +11 -0
  79. package/lib/src/services/agents/sessions/sessions.schema.d.ts +450 -362
  80. package/lib/src/services/agents/sessions/sessions.shared.d.ts +1 -1
  81. package/lib/src/services/agents/sessions/sync-bedrock-sessions.hooks.d.ts +2 -0
  82. package/lib/src/services/agents/sessions/update-bedrock-session.hooks.d.ts +2 -0
  83. package/lib/src/services/agents/update-bedrock-agent.hooks.d.ts +2 -0
  84. package/lib/src/services/agents/update-trigger-rules-with-agent-info.hooks.d.ts +5 -0
  85. package/lib/src/services/agents/validate-agent-actions.hooks.d.ts +3 -0
  86. package/lib/src/services/autotune/apply-params.d.ts +44 -0
  87. package/lib/src/services/autotune/callback.d.ts +2 -0
  88. package/lib/src/services/autotune/compute/compute.d.ts +40 -0
  89. package/lib/src/services/autotune/optuna-bridge.d.ts +10 -0
  90. package/lib/src/services/autotune/score.d.ts +37 -0
  91. package/lib/src/services/autotune/storage.d.ts +6 -0
  92. package/lib/src/services/autotune/studies/studies.class.d.ts +12 -0
  93. package/lib/src/services/autotune/studies/studies.d.ts +12 -0
  94. package/lib/src/services/autotune/studies/studies.schema.d.ts +1229 -0
  95. package/lib/src/services/autotune/studies/studies.shared.d.ts +13 -0
  96. package/lib/src/services/autotune/studies/studies.shared.js +13 -0
  97. package/lib/src/services/autotune/trials/trials.class.d.ts +12 -0
  98. package/lib/src/services/autotune/trials/trials.d.ts +12 -0
  99. package/lib/src/services/autotune/trials/trials.schema.d.ts +790 -0
  100. package/lib/src/services/autotune/trials/trials.shared.d.ts +13 -0
  101. package/lib/src/services/autotune/trials/trials.shared.js +13 -0
  102. package/lib/src/services/autotune/usage/usage.class.d.ts +11 -0
  103. package/lib/src/services/autotune/usage/usage.d.ts +11 -0
  104. package/lib/src/services/autotune/usage/usage.schema.d.ts +1407 -0
  105. package/lib/src/services/autotune/usage/usage.shared.d.ts +13 -0
  106. package/lib/src/services/autotune/usage/usage.shared.js +13 -0
  107. package/lib/src/services/blog/actions/actions.class.d.ts +29 -0
  108. package/lib/src/services/blog/actions/actions.d.ts +10 -0
  109. package/lib/src/services/blog/actions/actions.shared.d.ts +13 -0
  110. package/lib/src/services/blog/actions/actions.shared.js +13 -0
  111. package/lib/src/services/blog/calendar/calendar.class.d.ts +11 -0
  112. package/lib/src/services/blog/calendar/calendar.d.ts +11 -0
  113. package/lib/src/services/blog/calendar/calendar.schema.d.ts +333 -0
  114. package/lib/src/services/blog/calendar/calendar.shared.d.ts +13 -0
  115. package/lib/src/services/blog/calendar/calendar.shared.js +13 -0
  116. package/lib/src/services/blog/integrations/integrations.class.d.ts +11 -0
  117. package/lib/src/services/blog/integrations/integrations.d.ts +11 -0
  118. package/lib/src/services/blog/integrations/integrations.schema.d.ts +391 -0
  119. package/lib/src/services/blog/integrations/integrations.shared.d.ts +13 -0
  120. package/lib/src/services/blog/integrations/integrations.shared.js +19 -0
  121. package/lib/src/services/blog/posts/posts.class.d.ts +11 -0
  122. package/lib/src/services/blog/posts/posts.d.ts +11 -0
  123. package/lib/src/services/blog/posts/posts.schema.d.ts +1295 -0
  124. package/lib/src/services/blog/posts/posts.shared.d.ts +13 -0
  125. package/lib/src/services/blog/posts/posts.shared.js +13 -0
  126. package/lib/src/services/blog/queries/queries.class.d.ts +11 -0
  127. package/lib/src/services/blog/queries/queries.d.ts +11 -0
  128. package/lib/src/services/blog/queries/queries.schema.d.ts +1187 -0
  129. package/lib/src/services/blog/queries/queries.shared.d.ts +13 -0
  130. package/lib/src/services/blog/queries/queries.shared.js +13 -0
  131. package/lib/src/services/blog/sitemaps/pages/pages.class.d.ts +11 -0
  132. package/lib/src/services/blog/sitemaps/pages/pages.d.ts +11 -0
  133. package/lib/src/services/blog/sitemaps/pages/pages.schema.d.ts +871 -0
  134. package/lib/src/services/blog/sitemaps/pages/pages.shared.d.ts +13 -0
  135. package/lib/src/services/blog/sitemaps/pages/pages.shared.js +13 -0
  136. package/lib/src/services/blog/sitemaps/sitemaps.class.d.ts +11 -0
  137. package/lib/src/services/blog/sitemaps/sitemaps.d.ts +11 -0
  138. package/lib/src/services/blog/sitemaps/sitemaps.schema.d.ts +770 -0
  139. package/lib/src/services/blog/sitemaps/sitemaps.shared.d.ts +13 -0
  140. package/lib/src/services/blog/sitemaps/sitemaps.shared.js +13 -0
  141. package/lib/src/services/blog/suggestions/suggestions.class.d.ts +11 -0
  142. package/lib/src/services/blog/suggestions/suggestions.d.ts +11 -0
  143. package/lib/src/services/blog/suggestions/suggestions.schema.d.ts +963 -0
  144. package/lib/src/services/blog/suggestions/suggestions.shared.d.ts +13 -0
  145. package/lib/src/services/blog/suggestions/suggestions.shared.js +13 -0
  146. package/lib/src/services/changelog/changelog.class.d.ts +34 -0
  147. package/lib/src/services/changelog/changelog.d.ts +11 -0
  148. package/lib/src/services/changelog/changelog.helper.d.ts +50 -0
  149. package/lib/src/services/changelog/changelog.schema.d.ts +456 -0
  150. package/lib/src/services/changelog/changelog.shared.d.ts +13 -0
  151. package/lib/src/services/changelog/changelog.shared.js +13 -0
  152. package/lib/src/services/changelog/hooks/parse-from-file.d.ts +8 -0
  153. package/lib/src/services/config/config.class.d.ts +2 -2
  154. package/lib/src/services/config/config.shared.d.ts +1 -1
  155. package/lib/src/services/copilot/concerns/concerns.class.d.ts +12 -0
  156. package/lib/src/services/copilot/concerns/concerns.d.ts +11 -0
  157. package/lib/src/services/copilot/concerns/concerns.schema.d.ts +727 -0
  158. package/lib/src/services/copilot/concerns/concerns.shared.d.ts +13 -0
  159. package/lib/src/services/copilot/concerns/concerns.shared.js +13 -0
  160. package/lib/src/services/copilot/decisions/decisions.class.d.ts +12 -0
  161. package/lib/src/services/copilot/decisions/decisions.d.ts +11 -0
  162. package/lib/src/services/copilot/decisions/decisions.schema.d.ts +728 -0
  163. package/lib/src/services/copilot/decisions/decisions.shared.d.ts +13 -0
  164. package/lib/src/services/copilot/decisions/decisions.shared.js +19 -0
  165. package/lib/src/services/copilot/help/help.class.d.ts +18 -0
  166. package/lib/src/services/copilot/help/help.d.ts +11 -0
  167. package/lib/src/services/copilot/help/help.schema.d.ts +237 -0
  168. package/lib/src/services/copilot/help/help.shared.d.ts +13 -0
  169. package/lib/src/services/copilot/help/help.shared.js +13 -0
  170. package/lib/src/services/copilot/recommendations/recommendations.class.d.ts +12 -0
  171. package/lib/src/services/copilot/recommendations/recommendations.d.ts +11 -0
  172. package/lib/src/services/copilot/recommendations/recommendations.schema.d.ts +949 -0
  173. package/lib/src/services/copilot/recommendations/recommendations.shared.d.ts +13 -0
  174. package/lib/src/services/copilot/recommendations/recommendations.shared.js +19 -0
  175. package/lib/src/services/currencies/currencies.class.d.ts +11 -0
  176. package/lib/src/services/currencies/currencies.d.ts +11 -0
  177. package/lib/src/services/currencies/currencies.schema.d.ts +769 -0
  178. package/lib/src/services/currencies/currencies.shared.d.ts +13 -0
  179. package/lib/src/services/currencies/currencies.shared.js +13 -0
  180. package/lib/src/services/custom/custom.shared.d.ts +1 -1
  181. package/lib/src/services/emails/emails.class.d.ts +11 -0
  182. package/lib/src/services/emails/emails.d.ts +11 -0
  183. package/lib/src/services/emails/emails.schema.d.ts +563 -0
  184. package/lib/src/services/emails/emails.shared.d.ts +13 -0
  185. package/lib/src/services/emails/emails.shared.js +13 -0
  186. package/lib/src/services/events/events.class.d.ts +3 -2
  187. package/lib/src/services/events/events.schema.d.ts +340 -340
  188. package/lib/src/services/events/events.shared.d.ts +1 -1
  189. package/lib/src/services/events/triggers/triggers.class.d.ts +3 -2
  190. package/lib/src/services/events/triggers/triggers.schema.d.ts +1022 -842
  191. package/lib/src/services/events/triggers/triggers.shared.d.ts +1 -1
  192. package/lib/src/services/events/types/types.class.d.ts +3 -2
  193. package/lib/src/services/events/types/types.schema.d.ts +350 -350
  194. package/lib/src/services/events/types/types.shared.d.ts +1 -1
  195. package/lib/src/services/exchanges/arb-signals/arb-signals.class.d.ts +29 -0
  196. package/lib/src/services/exchanges/arb-signals/arb-signals.d.ts +11 -0
  197. package/lib/src/services/exchanges/arb-signals/arb-signals.schema.d.ts +55 -0
  198. package/lib/src/services/exchanges/arb-signals/arb-signals.shared.d.ts +13 -0
  199. package/lib/src/services/exchanges/arb-signals/arb-signals.shared.js +13 -0
  200. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.class.d.ts +27 -0
  201. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.d.ts +11 -0
  202. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.schema.d.ts +148 -0
  203. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.shared.d.ts +13 -0
  204. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.shared.js +13 -0
  205. package/lib/src/services/exchanges/balance/balance.class.d.ts +3 -2
  206. package/lib/src/services/exchanges/balance/balance.schema.d.ts +141 -141
  207. package/lib/src/services/exchanges/balance/balance.shared.d.ts +1 -1
  208. package/lib/src/services/exchanges/deposits/deposits.class.d.ts +11 -0
  209. package/lib/src/services/exchanges/deposits/deposits.d.ts +11 -0
  210. package/lib/src/services/exchanges/deposits/deposits.schema.d.ts +905 -0
  211. package/lib/src/services/exchanges/deposits/deposits.shared.d.ts +13 -0
  212. package/lib/src/services/exchanges/deposits/deposits.shared.js +19 -0
  213. package/lib/src/services/exchanges/deposits/sync/sync.class.d.ts +11 -0
  214. package/lib/src/services/exchanges/deposits/sync/sync.d.ts +11 -0
  215. package/lib/src/services/exchanges/deposits/sync/sync.schema.d.ts +621 -0
  216. package/lib/src/services/exchanges/deposits/sync/sync.shared.d.ts +13 -0
  217. package/lib/src/services/exchanges/deposits/sync/sync.shared.js +19 -0
  218. package/lib/src/services/exchanges/download/download.class.d.ts +3 -2
  219. package/lib/src/services/exchanges/download/download.schema.d.ts +149 -149
  220. package/lib/src/services/exchanges/download/download.shared.d.ts +1 -1
  221. package/lib/src/services/exchanges/download/webhooks/webhooks.class.d.ts +2 -2
  222. package/lib/src/services/exchanges/download/webhooks/webhooks.schema.d.ts +171 -171
  223. package/lib/src/services/exchanges/download/webhooks/webhooks.shared.d.ts +1 -1
  224. package/lib/src/services/exchanges/exchanges.class.d.ts +3 -2
  225. package/lib/src/services/exchanges/exchanges.schema.d.ts +626 -359
  226. package/lib/src/services/exchanges/exchanges.shared.d.ts +1 -1
  227. package/lib/src/services/exchanges/ledger/ledger.class.d.ts +11 -0
  228. package/lib/src/services/exchanges/ledger/ledger.d.ts +11 -0
  229. package/lib/src/services/exchanges/ledger/ledger.schema.d.ts +1045 -0
  230. package/lib/src/services/exchanges/ledger/ledger.shared.d.ts +13 -0
  231. package/lib/src/services/exchanges/ledger/ledger.shared.js +13 -0
  232. package/lib/src/services/exchanges/ledger/sync/sync.class.d.ts +11 -0
  233. package/lib/src/services/exchanges/ledger/sync/sync.d.ts +11 -0
  234. package/lib/src/services/exchanges/ledger/sync/sync.schema.d.ts +621 -0
  235. package/lib/src/services/exchanges/ledger/sync/sync.shared.d.ts +13 -0
  236. package/lib/src/services/exchanges/ledger/sync/sync.shared.js +19 -0
  237. package/lib/src/services/exchanges/markets-stats/markets-stats.class.d.ts +23 -0
  238. package/lib/src/services/exchanges/markets-stats/markets-stats.d.ts +11 -0
  239. package/lib/src/services/exchanges/markets-stats/markets-stats.schema.d.ts +178 -0
  240. package/lib/src/services/exchanges/markets-stats/markets-stats.shared.d.ts +13 -0
  241. package/lib/src/services/exchanges/markets-stats/markets-stats.shared.js +13 -0
  242. package/lib/src/services/exchanges/ohlcv/history/history.class.d.ts +11 -0
  243. package/lib/src/services/exchanges/ohlcv/history/history.d.ts +11 -0
  244. package/lib/src/services/exchanges/ohlcv/history/history.schema.d.ts +473 -0
  245. package/lib/src/services/exchanges/ohlcv/history/history.shared.d.ts +13 -0
  246. package/lib/src/services/exchanges/ohlcv/history/history.shared.js +19 -0
  247. package/lib/src/services/exchanges/ohlcv/ohlcv.schema.d.ts +162 -162
  248. package/lib/src/services/exchanges/ohlcv/ohlcv.shared.d.ts +1 -1
  249. package/lib/src/services/exchanges/orderbook/orderbook.class.d.ts +30 -0
  250. package/lib/src/services/exchanges/orderbook/orderbook.d.ts +11 -0
  251. package/lib/src/services/exchanges/orderbook/orderbook.schema.d.ts +272 -0
  252. package/lib/src/services/exchanges/orderbook/orderbook.shared.d.ts +13 -0
  253. package/lib/src/services/exchanges/orderbook/orderbook.shared.js +13 -0
  254. package/lib/src/services/exchanges/ticker/ticker.class.d.ts +3 -2
  255. package/lib/src/services/exchanges/ticker/ticker.schema.d.ts +243 -243
  256. package/lib/src/services/exchanges/ticker/ticker.shared.d.ts +1 -1
  257. package/lib/src/services/exchanges/transactions/sync/sync.class.d.ts +11 -0
  258. package/lib/src/services/exchanges/transactions/sync/sync.d.ts +11 -0
  259. package/lib/src/services/exchanges/transactions/sync/sync.schema.d.ts +653 -0
  260. package/lib/src/services/exchanges/transactions/sync/sync.shared.d.ts +13 -0
  261. package/lib/src/services/exchanges/transactions/sync/sync.shared.js +19 -0
  262. package/lib/src/services/exchanges/transactions/transactions.class.d.ts +11 -0
  263. package/lib/src/services/exchanges/transactions/transactions.d.ts +11 -0
  264. package/lib/src/services/exchanges/transactions/transactions.schema.d.ts +1119 -0
  265. package/lib/src/services/exchanges/transactions/transactions.shared.d.ts +13 -0
  266. package/lib/src/services/exchanges/transactions/transactions.shared.js +19 -0
  267. package/lib/src/services/extensions/aggregate-extensions.hooks.d.ts +2 -0
  268. package/lib/src/services/extensions/extensions.class.d.ts +3 -2
  269. package/lib/src/services/extensions/extensions.schema.d.ts +641 -559
  270. package/lib/src/services/extensions/extensions.shared.d.ts +1 -1
  271. package/lib/src/services/homepage/homepage.schema.d.ts +17 -9
  272. package/lib/src/services/homepage/homepage.shared.d.ts +10 -2
  273. package/lib/src/services/homepage/homepage.shared.js +8 -1
  274. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.class.d.ts +52 -0
  275. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.d.ts +11 -0
  276. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.schema.d.ts +684 -0
  277. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.shared.d.ts +13 -0
  278. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.shared.js +14 -0
  279. package/lib/src/services/insights/etf-flow/etf-flow.class.d.ts +11 -0
  280. package/lib/src/services/insights/etf-flow/etf-flow.d.ts +11 -0
  281. package/lib/src/services/insights/etf-flow/etf-flow.schema.d.ts +237 -0
  282. package/lib/src/services/insights/etf-flow/etf-flow.shared.d.ts +13 -0
  283. package/lib/src/services/insights/etf-flow/etf-flow.shared.js +13 -0
  284. package/lib/src/services/insights/fear-and-greed/fear-and-greed.class.d.ts +11 -0
  285. package/lib/src/services/insights/fear-and-greed/fear-and-greed.d.ts +11 -0
  286. package/lib/src/services/insights/fear-and-greed/fear-and-greed.schema.d.ts +1831 -0
  287. package/lib/src/services/insights/fear-and-greed/fear-and-greed.shared.d.ts +13 -0
  288. package/lib/src/services/insights/fear-and-greed/fear-and-greed.shared.js +13 -0
  289. package/lib/src/services/insights/global/global.class.d.ts +11 -0
  290. package/lib/src/services/insights/global/global.d.ts +11 -0
  291. package/lib/src/services/insights/global/global.schema.d.ts +779 -0
  292. package/lib/src/services/insights/global/global.shared.d.ts +13 -0
  293. package/lib/src/services/insights/global/global.shared.js +13 -0
  294. package/lib/src/services/insights/insights.class.d.ts +11 -0
  295. package/lib/src/services/insights/insights.d.ts +11 -0
  296. package/lib/src/services/insights/insights.hooks.d.ts +20 -0
  297. package/lib/src/services/{tools/tools.schema.d.ts → insights/insights.schema.d.ts} +130 -162
  298. package/lib/src/services/insights/insights.shared.d.ts +13 -0
  299. package/lib/src/services/insights/insights.shared.js +13 -0
  300. package/lib/src/services/insights/news/news.class.d.ts +23 -0
  301. package/lib/src/services/insights/news/news.d.ts +11 -0
  302. package/lib/src/services/insights/news/news.schema.d.ts +857 -0
  303. package/lib/src/services/insights/news/news.shared.d.ts +23 -0
  304. package/lib/src/services/insights/news/news.shared.js +20 -0
  305. package/lib/src/services/keys/KeysService.d.ts +2 -2
  306. package/lib/src/services/keys/keys.class.d.ts +3 -2
  307. package/lib/src/services/keys/keys.schema.d.ts +364 -364
  308. package/lib/src/services/keys/keys.shared.d.ts +1 -1
  309. package/lib/src/services/knowledges/knowledges.class.d.ts +37 -0
  310. package/lib/src/services/knowledges/knowledges.d.ts +11 -0
  311. package/lib/src/services/knowledges/knowledges.schema.d.ts +566 -0
  312. package/lib/src/services/knowledges/knowledges.shared.d.ts +13 -0
  313. package/lib/src/services/knowledges/knowledges.shared.js +13 -0
  314. package/lib/src/services/mailer/mailer.shared.d.ts +1 -1
  315. package/lib/src/services/marketplaces/marketplaces.class.d.ts +2 -2
  316. package/lib/src/services/marketplaces/marketplaces.shared.d.ts +1 -1
  317. package/lib/src/services/markets/markets.class.d.ts +2 -2
  318. package/lib/src/services/markets/markets.schema.d.ts +112 -112
  319. package/lib/src/services/markets/markets.shared.d.ts +1 -1
  320. package/lib/src/services/messages/messages.class.d.ts +2 -2
  321. package/lib/src/services/messages/messages.schema.d.ts +1257 -353
  322. package/lib/src/services/messages/messages.shared.d.ts +1 -1
  323. package/lib/src/services/models/pods/events/events.class.d.ts +11 -0
  324. package/lib/src/services/models/pods/events/events.d.ts +11 -0
  325. package/lib/src/services/models/pods/events/events.schema.d.ts +669 -0
  326. package/lib/src/services/models/pods/events/events.shared.d.ts +13 -0
  327. package/lib/src/services/models/pods/events/events.shared.js +13 -0
  328. package/lib/src/services/models/pods/pods.class.d.ts +12 -0
  329. package/lib/src/services/models/pods/pods.d.ts +12 -0
  330. package/lib/src/services/models/pods/pods.schema.d.ts +1095 -0
  331. package/lib/src/services/models/pods/pods.shared.d.ts +13 -0
  332. package/lib/src/services/models/pods/pods.shared.js +13 -0
  333. package/lib/src/services/models/presets/presets-generate-and-queue.hooks.d.ts +2 -0
  334. package/lib/src/services/models/presets/presets-generate-freqai-config.hooks.d.ts +2 -0
  335. package/lib/src/services/models/presets/presets-generate-strategy.hooks.d.ts +2 -0
  336. package/lib/src/services/models/presets/presets-get-results.hooks.d.ts +2 -0
  337. package/lib/src/services/models/presets/presets-validate.hooks.d.ts +2 -0
  338. package/lib/src/services/models/presets/presets.class.d.ts +12 -0
  339. package/lib/src/services/models/presets/presets.d.ts +12 -0
  340. package/lib/src/services/models/presets/presets.schema.d.ts +2611 -0
  341. package/lib/src/services/models/presets/presets.shared.d.ts +13 -0
  342. package/lib/src/services/models/presets/presets.shared.js +13 -0
  343. package/lib/src/services/models/signals/history/history.class.d.ts +11 -0
  344. package/lib/src/services/models/signals/history/history.d.ts +11 -0
  345. package/lib/src/services/models/signals/history/history.schema.d.ts +513 -0
  346. package/lib/src/services/models/signals/history/history.shared.d.ts +13 -0
  347. package/lib/src/services/models/signals/history/history.shared.js +13 -0
  348. package/lib/src/services/models/signals/signals-proxy-router.d.ts +47 -0
  349. package/lib/src/services/models/signals/signals.class.d.ts +12 -0
  350. package/lib/src/services/models/signals/signals.d.ts +12 -0
  351. package/lib/src/services/models/signals/signals.schema.d.ts +976 -0
  352. package/lib/src/services/models/signals/signals.shared.d.ts +13 -0
  353. package/lib/src/services/models/signals/signals.shared.js +13 -0
  354. package/lib/src/services/models/signals/subscriptions/subscriptions.class.d.ts +11 -0
  355. package/lib/src/services/models/signals/subscriptions/subscriptions.d.ts +11 -0
  356. package/lib/src/services/models/signals/subscriptions/subscriptions.schema.d.ts +585 -0
  357. package/lib/src/services/models/signals/subscriptions/subscriptions.shared.d.ts +13 -0
  358. package/lib/src/services/models/signals/subscriptions/subscriptions.shared.js +15 -0
  359. package/lib/src/services/objectives/objectives.class.d.ts +11 -0
  360. package/lib/src/services/objectives/objectives.d.ts +11 -0
  361. package/lib/src/services/objectives/objectives.hooks.d.ts +12 -0
  362. package/lib/src/services/objectives/objectives.schema.d.ts +717 -0
  363. package/lib/src/services/objectives/objectives.shared.d.ts +13 -0
  364. package/lib/src/services/objectives/objectives.shared.js +13 -0
  365. package/lib/src/services/plans/plans.class.d.ts +20 -0
  366. package/lib/src/services/plans/plans.d.ts +11 -0
  367. package/lib/src/services/plans/plans.schema.d.ts +383 -0
  368. package/lib/src/services/plans/plans.shared.d.ts +13 -0
  369. package/lib/src/services/plans/plans.shared.js +13 -0
  370. package/lib/src/services/referrals/referrals.class.d.ts +11 -0
  371. package/lib/src/services/referrals/referrals.d.ts +11 -0
  372. package/lib/src/services/referrals/referrals.schema.d.ts +581 -0
  373. package/lib/src/services/referrals/referrals.shared.d.ts +13 -0
  374. package/lib/src/services/referrals/referrals.shared.js +13 -0
  375. package/lib/src/services/restricted/restricted.shared.d.ts +1 -1
  376. package/lib/src/services/security/events/security-events.class.d.ts +11 -0
  377. package/lib/src/services/security/events/security-events.d.ts +11 -0
  378. package/lib/src/services/security/events/security-events.schema.d.ts +499 -0
  379. package/lib/src/services/security/events/security-events.shared.d.ts +8 -0
  380. package/lib/src/services/security/events/security-events.shared.js +13 -0
  381. package/lib/src/services/series/balance/balance.class.d.ts +11 -0
  382. package/lib/src/services/series/balance/balance.d.ts +11 -0
  383. package/lib/src/services/series/balance/balance.schema.d.ts +527 -0
  384. package/lib/src/services/series/balance/balance.shared.d.ts +13 -0
  385. package/lib/src/services/series/balance/balance.shared.js +13 -0
  386. package/lib/src/services/series/performance/performance.class.d.ts +11 -0
  387. package/lib/src/services/series/performance/performance.d.ts +11 -0
  388. package/lib/src/services/series/performance/performance.schema.d.ts +495 -0
  389. package/lib/src/services/series/performance/performance.shared.d.ts +13 -0
  390. package/lib/src/services/series/performance/performance.shared.js +19 -0
  391. package/lib/src/services/series/performance/performance.usage.examples.d.ts +81 -0
  392. package/lib/src/services/snapshot/snapshot.class.d.ts +11 -0
  393. package/lib/src/services/snapshot/snapshot.d.ts +11 -0
  394. package/lib/src/services/snapshot/snapshot.schema.d.ts +11963 -0
  395. package/lib/src/services/snapshot/snapshot.shared.d.ts +13 -0
  396. package/lib/src/services/snapshot/snapshot.shared.js +14 -0
  397. package/lib/src/services/store/items/items.class.d.ts +12 -0
  398. package/lib/src/services/store/items/items.d.ts +11 -0
  399. package/lib/src/services/store/items/items.schema.d.ts +1395 -0
  400. package/lib/src/services/store/items/items.shared.d.ts +13 -0
  401. package/lib/src/services/store/items/items.shared.js +13 -0
  402. package/lib/src/services/strategies/ai/ai.class.d.ts +3 -2
  403. package/lib/src/services/strategies/ai/ai.schema.d.ts +33 -33
  404. package/lib/src/services/strategies/ai/ai.shared.d.ts +1 -1
  405. package/lib/src/services/strategies/ai/stream/stream.shared.d.ts +1 -1
  406. package/lib/src/services/strategies/backtest/backtest.class.d.ts +3 -2
  407. package/lib/src/services/strategies/backtest/backtest.schema.d.ts +820 -288
  408. package/lib/src/services/strategies/backtest/backtest.shared.d.ts +1 -1
  409. package/lib/src/services/strategies/backtest/preflight/preflight.class.d.ts +46 -0
  410. package/lib/src/services/strategies/backtest/preflight/preflight.d.ts +11 -0
  411. package/lib/src/services/strategies/backtest/preflight/preflight.schema.d.ts +737 -0
  412. package/lib/src/services/strategies/backtest/preflight/preflight.shared.d.ts +13 -0
  413. package/lib/src/services/strategies/backtest/preflight/preflight.shared.js +13 -0
  414. package/lib/src/services/strategies/backtest/results/results.class.d.ts +2 -2
  415. package/lib/src/services/strategies/backtest/results/results.schema.d.ts +315 -315
  416. package/lib/src/services/strategies/backtest/results/results.shared.d.ts +1 -1
  417. package/lib/src/services/strategies/blob/blob.shared.d.ts +1 -1
  418. package/lib/src/services/strategies/follow/follow.class.d.ts +12 -0
  419. package/lib/src/services/strategies/follow/follow.d.ts +11 -0
  420. package/lib/src/services/strategies/follow/follow.schema.d.ts +711 -0
  421. package/lib/src/services/strategies/follow/follow.shared.d.ts +13 -0
  422. package/lib/src/services/strategies/follow/follow.shared.js +19 -0
  423. package/lib/src/services/strategies/generate/generate.class.d.ts +3 -2
  424. package/lib/src/services/strategies/generate/generate.schema.d.ts +534 -88
  425. package/lib/src/services/strategies/generate/generate.shared.d.ts +1 -1
  426. package/lib/src/services/strategies/history/history.class.d.ts +11 -0
  427. package/lib/src/services/strategies/history/history.d.ts +11 -0
  428. package/lib/src/services/strategies/history/history.schema.d.ts +714 -0
  429. package/lib/src/services/strategies/history/history.shared.d.ts +13 -0
  430. package/lib/src/services/strategies/history/history.shared.js +19 -0
  431. package/lib/src/services/strategies/hyperopt/hyperopt-generate-and-queue.hooks.d.ts +2 -0
  432. package/lib/src/services/strategies/hyperopt/hyperopt-generate-config-in-disk.hooks.d.ts +2 -0
  433. package/lib/src/services/strategies/hyperopt/hyperopt-generate-exchange-config.hooks.d.ts +8 -0
  434. package/lib/src/services/strategies/hyperopt/hyperopt-get-results.hooks.d.ts +2 -0
  435. package/lib/src/services/strategies/hyperopt/hyperopt-in-disk-clone-strategy.hooks.d.ts +2 -0
  436. package/lib/src/services/strategies/hyperopt/hyperopt-populate-exchange.hooks.d.ts +7 -0
  437. package/lib/src/services/strategies/hyperopt/hyperopt-promote-template.hooks.d.ts +9 -0
  438. package/lib/src/services/strategies/hyperopt/hyperopt-propagate-results.hooks.d.ts +2 -0
  439. package/lib/src/services/strategies/hyperopt/hyperopt-validate-exchange-whitelist.hooks.d.ts +10 -0
  440. package/lib/src/services/strategies/hyperopt/hyperopt-validate-historical-data.hooks.d.ts +9 -0
  441. package/lib/src/services/strategies/hyperopt/hyperopt-validate-stake-balance.hooks.d.ts +7 -0
  442. package/lib/src/services/strategies/hyperopt/hyperopt-validate-stake-currency.hooks.d.ts +9 -0
  443. package/lib/src/services/strategies/hyperopt/hyperopt-validate.hooks.d.ts +7 -0
  444. package/lib/src/services/strategies/hyperopt/hyperopt-verify-subscription-limits.hooks.d.ts +6 -0
  445. package/lib/src/services/strategies/hyperopt/hyperopt.class.d.ts +3 -2
  446. package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +2552 -278
  447. package/lib/src/services/strategies/hyperopt/hyperopt.shared.d.ts +1 -1
  448. package/lib/src/services/strategies/indicators/indicators.class.d.ts +2 -2
  449. package/lib/src/services/strategies/indicators/indicators.schema.d.ts +106 -106
  450. package/lib/src/services/strategies/indicators/indicators.shared.d.ts +1 -1
  451. package/lib/src/services/strategies/indicators/talib/talib.class.d.ts +2 -2
  452. package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +102 -102
  453. package/lib/src/services/strategies/indicators/talib/talib.shared.d.ts +1 -1
  454. package/lib/src/services/strategies/research/research.class.d.ts +11 -0
  455. package/lib/src/services/strategies/research/research.d.ts +12 -0
  456. package/lib/src/services/strategies/research/research.schema.d.ts +1006 -0
  457. package/lib/src/services/strategies/research/research.shared.d.ts +13 -0
  458. package/lib/src/services/strategies/research/research.shared.js +19 -0
  459. package/lib/src/services/strategies/strategies.class.d.ts +3 -2
  460. package/lib/src/services/strategies/strategies.schema.d.ts +3694 -3322
  461. package/lib/src/services/strategies/strategies.shared.d.ts +1 -1
  462. package/lib/src/services/strategies/templates/templates.class.d.ts +2 -2
  463. package/lib/src/services/strategies/templates/templates.schema.d.ts +8062 -950
  464. package/lib/src/services/strategies/templates/templates.shared.d.ts +1 -1
  465. package/lib/src/services/stripe/charges/charges.shared.d.ts +1 -1
  466. package/lib/src/services/stripe/customers/cards/cards.shared.d.ts +1 -1
  467. package/lib/src/services/stripe/customers/customers.shared.d.ts +1 -1
  468. package/lib/src/services/stripe/customers/paymentintent/paymentintent.shared.d.ts +1 -1
  469. package/lib/src/services/stripe/customers/paymentmethods/paymentmethods.shared.d.ts +1 -1
  470. package/lib/src/services/stripe/customers/subscriptions/subscriptions.shared.d.ts +1 -1
  471. package/lib/src/services/stripe/products/products.shared.d.ts +1 -1
  472. package/lib/src/services/stripe/webhooks/webhooks.shared.d.ts +1 -1
  473. package/lib/src/services/support/support.class.d.ts +18 -0
  474. package/lib/src/services/support/support.d.ts +11 -0
  475. package/lib/src/services/support/support.schema.d.ts +507 -0
  476. package/lib/src/services/support/support.shared.d.ts +13 -0
  477. package/lib/src/services/support/support.shared.js +13 -0
  478. package/lib/src/services/tasks/comments/comments.class.d.ts +11 -0
  479. package/lib/src/services/tasks/comments/comments.d.ts +11 -0
  480. package/lib/src/services/tasks/comments/comments.schema.d.ts +771 -0
  481. package/lib/src/services/tasks/comments/comments.shared.d.ts +13 -0
  482. package/lib/src/services/tasks/comments/comments.shared.js +13 -0
  483. package/lib/src/services/tasks/tasks.class.d.ts +14 -0
  484. package/lib/src/services/tasks/tasks.d.ts +11 -0
  485. package/lib/src/services/tasks/tasks.hooks.d.ts +90 -0
  486. package/lib/src/services/tasks/tasks.schema.d.ts +1281 -0
  487. package/lib/src/services/tasks/tasks.shared.d.ts +13 -0
  488. package/lib/src/services/tasks/tasks.shared.js +13 -0
  489. package/lib/src/services/tax/research/research.class.d.ts +11 -0
  490. package/lib/src/services/tax/research/research.d.ts +11 -0
  491. package/lib/src/services/tax/research/research.schema.d.ts +237 -0
  492. package/lib/src/services/tax/research/research.shared.d.ts +13 -0
  493. package/lib/src/services/tax/research/research.shared.js +13 -0
  494. package/lib/src/services/tax/sessions/conversations/conversations.class.d.ts +12 -0
  495. package/lib/src/services/tax/sessions/conversations/conversations.d.ts +11 -0
  496. package/lib/src/services/tax/sessions/conversations/conversations.hooks.d.ts +11 -0
  497. package/lib/src/services/tax/sessions/conversations/conversations.schema.d.ts +2923 -0
  498. package/lib/src/services/tax/sessions/conversations/conversations.shared.d.ts +13 -0
  499. package/lib/src/services/tax/sessions/conversations/conversations.shared.js +13 -0
  500. package/lib/src/services/tax/sessions/conversations/invoke-tax-bedrock-agent.hooks.d.ts +2 -0
  501. package/lib/src/services/tax/sessions/create-tax-bedrock-session.hooks.d.ts +2 -0
  502. package/lib/src/services/tax/sessions/delete-tax-bedrock-session.hooks.d.ts +2 -0
  503. package/lib/src/services/tax/sessions/sessions.class.d.ts +12 -0
  504. package/lib/src/services/tax/sessions/sessions.d.ts +11 -0
  505. package/lib/src/services/tax/sessions/sessions.hooks.d.ts +11 -0
  506. package/lib/src/services/tax/sessions/sessions.schema.d.ts +803 -0
  507. package/lib/src/services/tax/sessions/sessions.shared.d.ts +13 -0
  508. package/lib/src/services/tax/sessions/sessions.shared.js +13 -0
  509. package/lib/src/services/tax/sessions/sync-tax-bedrock-sessions.hooks.d.ts +2 -0
  510. package/lib/src/services/tax/sessions/update-tax-bedrock-session.hooks.d.ts +2 -0
  511. package/lib/src/services/telegram/link/link.class.d.ts +26 -0
  512. package/lib/src/services/telegram/link/link.d.ts +11 -0
  513. package/lib/src/services/telegram/link/link.schema.d.ts +174 -0
  514. package/lib/src/services/telegram/link/link.shared.d.ts +13 -0
  515. package/lib/src/services/telegram/link/link.shared.js +13 -0
  516. package/lib/src/services/telegram/telegram.class.d.ts +34 -0
  517. package/lib/src/services/telegram/telegram.d.ts +11 -0
  518. package/lib/src/services/telegram/telegram.schema.d.ts +152 -0
  519. package/lib/src/services/telegram/telegram.shared.d.ts +13 -0
  520. package/lib/src/services/telegram/telegram.shared.js +13 -0
  521. package/lib/src/services/toggles/toggles.class.d.ts +19 -0
  522. package/lib/src/services/toggles/toggles.d.ts +11 -0
  523. package/lib/src/services/toggles/toggles.schema.d.ts +335 -0
  524. package/lib/src/services/toggles/toggles.shared.d.ts +13 -0
  525. package/lib/src/services/toggles/toggles.shared.js +13 -0
  526. package/lib/src/services/tokens/tokens.class.d.ts +11 -0
  527. package/lib/src/services/tokens/tokens.d.ts +11 -0
  528. package/lib/src/services/tokens/tokens.schema.d.ts +941 -0
  529. package/lib/src/services/tokens/tokens.shared.d.ts +13 -0
  530. package/lib/src/services/tokens/tokens.shared.js +13 -0
  531. package/lib/src/services/traders/pods/api/api.class.d.ts +3 -2
  532. package/lib/src/services/traders/pods/api/api.schema.d.ts +12055 -3967
  533. package/lib/src/services/traders/pods/api/api.shared.d.ts +1 -1
  534. package/lib/src/services/traders/pods/blob/blob.shared.d.ts +1 -1
  535. package/lib/src/services/traders/pods/events/events.class.d.ts +2 -2
  536. package/lib/src/services/traders/pods/events/events.schema.d.ts +388 -332
  537. package/lib/src/services/traders/pods/events/events.shared.d.ts +1 -1
  538. package/lib/src/services/traders/pods/pods.class.d.ts +3 -2
  539. package/lib/src/services/traders/pods/pods.schema.d.ts +9909 -2945
  540. package/lib/src/services/traders/pods/pods.shared.d.ts +1 -1
  541. package/lib/src/services/traders/pods/webhooks/webhooks.class.d.ts +2 -2
  542. package/lib/src/services/traders/pods/webhooks/webhooks.schema.d.ts +105 -105
  543. package/lib/src/services/traders/pods/webhooks/webhooks.shared.d.ts +1 -1
  544. package/lib/src/services/traders/traders.class.d.ts +4 -2
  545. package/lib/src/services/traders/traders.schema.d.ts +2923 -2450
  546. package/lib/src/services/traders/traders.shared.d.ts +1 -1
  547. package/lib/src/services/trades/trades.class.d.ts +11 -0
  548. package/lib/src/services/trades/trades.d.ts +11 -0
  549. package/lib/src/services/trades/trades.schema.d.ts +16969 -0
  550. package/lib/src/services/trades/trades.shared.d.ts +13 -0
  551. package/lib/src/services/trades/trades.shared.js +13 -0
  552. package/lib/src/services/users/access/access.class.d.ts +11 -0
  553. package/lib/src/services/users/access/access.d.ts +11 -0
  554. package/lib/src/services/users/access/access.schema.d.ts +393 -0
  555. package/lib/src/services/users/access/access.shared.d.ts +13 -0
  556. package/lib/src/services/users/access/access.shared.js +13 -0
  557. package/lib/src/services/users/cancel-subscription.class.d.ts +13 -0
  558. package/lib/src/services/users/cancel-subscription.d.ts +9 -0
  559. package/lib/src/services/users/marketing/campaigns/01-welcome.campaign.d.ts +3 -0
  560. package/lib/src/services/users/marketing/campaigns/02-first-bot-running.campaign.d.ts +3 -0
  561. package/lib/src/services/users/marketing/campaigns/03-ai-strategy.campaign.d.ts +3 -0
  562. package/lib/src/services/users/marketing/campaigns/04-hyperopt.campaign.d.ts +3 -0
  563. package/lib/src/services/users/marketing/campaigns/05-safety-tips.campaign.d.ts +3 -0
  564. package/lib/src/services/users/marketing/campaigns/06-humor.campaign.d.ts +3 -0
  565. package/lib/src/services/users/marketing/campaigns/07-paper-vs-real.campaign.d.ts +3 -0
  566. package/lib/src/services/users/marketing/campaigns/08-trial-summary.campaign.d.ts +3 -0
  567. package/lib/src/services/users/marketing/campaigns/09-trial-ending.campaign.d.ts +3 -0
  568. package/lib/src/services/users/marketing/campaigns/10-reactivation.campaign.d.ts +3 -0
  569. package/lib/src/services/users/marketing/campaigns/11-onboarding-incomplete.campaign.d.ts +6 -0
  570. package/lib/src/services/users/marketing/campaigns/index.d.ts +10 -0
  571. package/lib/src/services/users/marketing/campaigns/supervisor-welcome.campaign.d.ts +6 -0
  572. package/lib/src/services/users/marketing/campaigns/trial.context.d.ts +27 -0
  573. package/lib/src/services/users/marketing/marketing.class.d.ts +26 -0
  574. package/lib/src/services/users/marketing/marketing.d.ts +11 -0
  575. package/lib/src/services/users/marketing/marketing.engine.d.ts +36 -0
  576. package/lib/src/services/users/marketing/marketing.schema.d.ts +515 -0
  577. package/lib/src/services/users/marketing/marketing.shared.d.ts +13 -0
  578. package/lib/src/services/users/marketing/marketing.shared.js +20 -0
  579. package/lib/src/services/users/onboarding/onboarding.class.d.ts +11 -0
  580. package/lib/src/services/users/onboarding/onboarding.d.ts +11 -0
  581. package/lib/src/services/users/onboarding/onboarding.hooks.d.ts +60 -0
  582. package/lib/src/services/users/onboarding/onboarding.schema.d.ts +768 -0
  583. package/lib/src/services/users/onboarding/onboarding.shared.d.ts +13 -0
  584. package/lib/src/services/users/onboarding/onboarding.shared.js +13 -0
  585. package/lib/src/services/users/onboarding/steps/exchanges.processor.d.ts +15 -0
  586. package/lib/src/services/users/onboarding/steps/index.d.ts +32 -0
  587. package/lib/src/services/users/onboarding/steps/notifications.processor.d.ts +15 -0
  588. package/lib/src/services/users/onboarding/steps/preferences.processor.d.ts +16 -0
  589. package/lib/src/services/users/onboarding/steps/strategy.processor.d.ts +15 -0
  590. package/lib/src/services/users/onboarding/steps/traders.processor.d.ts +16 -0
  591. package/lib/src/services/users/reset-account.class.d.ts +11 -0
  592. package/lib/src/services/users/reset-account.d.ts +9 -0
  593. package/lib/src/services/users/sessions/sessions.class.d.ts +18 -0
  594. package/lib/src/services/users/sessions/sessions.d.ts +11 -0
  595. package/lib/src/services/users/sessions/sessions.schema.d.ts +698 -0
  596. package/lib/src/services/users/sessions/sessions.shared.d.ts +13 -0
  597. package/lib/src/services/users/sessions/sessions.shared.js +13 -0
  598. package/lib/src/services/users/setup-trial.class.d.ts +21 -0
  599. package/lib/src/services/users/setup-trial.d.ts +9 -0
  600. package/lib/src/services/users/stripe-check-subscription.hooks.d.ts +2 -0
  601. package/lib/src/services/users/stripe-create-payment-intent.hooks.d.ts +2 -0
  602. package/lib/src/services/users/stripe-is-subscription-active.hooks.d.ts +2 -0
  603. package/lib/src/services/users/stripe-sync-customer-data.hooks.d.ts +2 -0
  604. package/lib/src/services/users/users.class.d.ts +298 -59
  605. package/lib/src/services/users/users.schema.d.ts +1942 -350
  606. package/lib/src/services/users/users.shared.d.ts +2 -2
  607. package/lib/src/services/users/users.shared.js +1 -1
  608. package/lib/src/services/version/version.shared.d.ts +1 -1
  609. package/package.json +9 -3
  610. package/lib/src/services/tools/openapi/openapi.class.d.ts +0 -34
  611. package/lib/src/services/tools/openapi/openapi.d.ts +0 -10
  612. package/lib/src/services/tools/openapi/openapi.shared.d.ts +0 -13
  613. package/lib/src/services/tools/openapi/openapi.shared.js +0 -13
  614. package/lib/src/services/tools/tools.class.d.ts +0 -11
  615. package/lib/src/services/tools/tools.d.ts +0 -11
  616. package/lib/src/services/tools/tools.shared.d.ts +0 -13
  617. package/lib/src/services/tools/tools.shared.js +0 -13
@@ -0,0 +1,2744 @@
1
+ import type { Static } from '@feathersjs/typebox';
2
+ import { type HookContext } from '../../declarations';
3
+ import type { AdvisorService } from './advisor.class';
4
+ export declare const advisorResultsSchema: import("@feathersjs/typebox").TObject<{
5
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
7
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
8
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
9
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
10
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
11
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
12
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
13
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
14
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
15
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
16
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
17
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
18
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
19
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
20
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
21
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
22
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
23
+ }>>;
24
+ }>;
25
+ export type AdvisorResults = Static<typeof advisorResultsSchema>;
26
+ export declare const advisorSchema: import("@feathersjs/typebox").TObject<{
27
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
28
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
29
+ query: import("@feathersjs/typebox").TString<string>;
30
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
31
+ fargateTaskArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
32
+ fargateTaskIp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
33
+ fargateClusterArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
34
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
35
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
36
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
37
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
38
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
39
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
40
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
41
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
42
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
43
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
44
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
45
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
46
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
47
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
48
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
49
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
50
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
51
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
52
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
53
+ }>>;
54
+ }>>;
55
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
56
+ _cancelProcessed: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
57
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
58
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
59
+ }>;
60
+ export type Advisor = Static<typeof advisorSchema>;
61
+ export declare const advisorValidator: import("@feathersjs/schema").Validator<any, any>;
62
+ export declare const advisorResolver: import("@feathersjs/schema").Resolver<{
63
+ _id: string | {};
64
+ userId?: string | {} | undefined;
65
+ query: string;
66
+ status: "canceled" | "failed" | "running" | "succeeded";
67
+ fargateTaskArn?: string | undefined;
68
+ fargateTaskIp?: string | undefined;
69
+ fargateClusterArn?: string | undefined;
70
+ results?: {
71
+ output_file?: string | undefined;
72
+ research_costs?: number | undefined;
73
+ num_sources?: number | undefined;
74
+ num_images?: number | undefined;
75
+ duration_seconds?: number | undefined;
76
+ completed_at?: string | undefined;
77
+ status?: string | undefined;
78
+ metadata?: {
79
+ advisor_id?: string | undefined;
80
+ query?: string | undefined;
81
+ report_type?: string | undefined;
82
+ output_format?: string | undefined;
83
+ output_dir?: string | undefined;
84
+ started_at?: number | undefined;
85
+ research_context?: any;
86
+ source_urls?: string[] | undefined;
87
+ research_sources?: any[] | undefined;
88
+ optional_params?: any;
89
+ } | undefined;
90
+ } | undefined;
91
+ error?: string | undefined;
92
+ _cancelProcessed?: boolean | undefined;
93
+ createdAt?: any;
94
+ updatedAt?: any;
95
+ }, HookContext<AdvisorService<import("./advisor.class").AdvisorParams>>>;
96
+ export declare const advisorExternalResolver: import("@feathersjs/schema").Resolver<{
97
+ _id: string | {};
98
+ userId?: string | {} | undefined;
99
+ query: string;
100
+ status: "canceled" | "failed" | "running" | "succeeded";
101
+ fargateTaskArn?: string | undefined;
102
+ fargateTaskIp?: string | undefined;
103
+ fargateClusterArn?: string | undefined;
104
+ results?: {
105
+ output_file?: string | undefined;
106
+ research_costs?: number | undefined;
107
+ num_sources?: number | undefined;
108
+ num_images?: number | undefined;
109
+ duration_seconds?: number | undefined;
110
+ completed_at?: string | undefined;
111
+ status?: string | undefined;
112
+ metadata?: {
113
+ advisor_id?: string | undefined;
114
+ query?: string | undefined;
115
+ report_type?: string | undefined;
116
+ output_format?: string | undefined;
117
+ output_dir?: string | undefined;
118
+ started_at?: number | undefined;
119
+ research_context?: any;
120
+ source_urls?: string[] | undefined;
121
+ research_sources?: any[] | undefined;
122
+ optional_params?: any;
123
+ } | undefined;
124
+ } | undefined;
125
+ error?: string | undefined;
126
+ _cancelProcessed?: boolean | undefined;
127
+ createdAt?: any;
128
+ updatedAt?: any;
129
+ }, HookContext<AdvisorService<import("./advisor.class").AdvisorParams>>>;
130
+ export declare const advisorDataSchema: import("@feathersjs/typebox").TObject<{
131
+ query: import("@feathersjs/typebox").TString<string>;
132
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>>;
133
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
134
+ }>;
135
+ export type AdvisorData = Static<typeof advisorDataSchema>;
136
+ export declare const advisorDataValidator: import("@feathersjs/schema").Validator<any, any>;
137
+ export declare const advisorDataResolver: import("@feathersjs/schema").Resolver<{
138
+ _id: string | {};
139
+ userId?: string | {} | undefined;
140
+ query: string;
141
+ status: "canceled" | "failed" | "running" | "succeeded";
142
+ fargateTaskArn?: string | undefined;
143
+ fargateTaskIp?: string | undefined;
144
+ fargateClusterArn?: string | undefined;
145
+ results?: {
146
+ output_file?: string | undefined;
147
+ research_costs?: number | undefined;
148
+ num_sources?: number | undefined;
149
+ num_images?: number | undefined;
150
+ duration_seconds?: number | undefined;
151
+ completed_at?: string | undefined;
152
+ status?: string | undefined;
153
+ metadata?: {
154
+ advisor_id?: string | undefined;
155
+ query?: string | undefined;
156
+ report_type?: string | undefined;
157
+ output_format?: string | undefined;
158
+ output_dir?: string | undefined;
159
+ started_at?: number | undefined;
160
+ research_context?: any;
161
+ source_urls?: string[] | undefined;
162
+ research_sources?: any[] | undefined;
163
+ optional_params?: any;
164
+ } | undefined;
165
+ } | undefined;
166
+ error?: string | undefined;
167
+ _cancelProcessed?: boolean | undefined;
168
+ createdAt?: any;
169
+ updatedAt?: any;
170
+ }, HookContext<AdvisorService<import("./advisor.class").AdvisorParams>>>;
171
+ export declare const advisorPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
172
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
173
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
174
+ query: import("@feathersjs/typebox").TString<string>;
175
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
176
+ fargateTaskArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
177
+ fargateTaskIp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
178
+ fargateClusterArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
179
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
180
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
181
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
182
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
183
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
184
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
185
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
186
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
187
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
188
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
189
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
190
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
191
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
192
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
193
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
194
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
195
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
196
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
197
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
198
+ }>>;
199
+ }>>;
200
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
201
+ _cancelProcessed: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
202
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
203
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
204
+ }>>;
205
+ export type AdvisorPatch = Static<typeof advisorPatchSchema>;
206
+ export declare const advisorPatchValidator: import("@feathersjs/schema").Validator<any, any>;
207
+ export declare const advisorPatchResolver: import("@feathersjs/schema").Resolver<{
208
+ _id: string | {};
209
+ userId?: string | {} | undefined;
210
+ query: string;
211
+ status: "canceled" | "failed" | "running" | "succeeded";
212
+ fargateTaskArn?: string | undefined;
213
+ fargateTaskIp?: string | undefined;
214
+ fargateClusterArn?: string | undefined;
215
+ results?: {
216
+ output_file?: string | undefined;
217
+ research_costs?: number | undefined;
218
+ num_sources?: number | undefined;
219
+ num_images?: number | undefined;
220
+ duration_seconds?: number | undefined;
221
+ completed_at?: string | undefined;
222
+ status?: string | undefined;
223
+ metadata?: {
224
+ advisor_id?: string | undefined;
225
+ query?: string | undefined;
226
+ report_type?: string | undefined;
227
+ output_format?: string | undefined;
228
+ output_dir?: string | undefined;
229
+ started_at?: number | undefined;
230
+ research_context?: any;
231
+ source_urls?: string[] | undefined;
232
+ research_sources?: any[] | undefined;
233
+ optional_params?: any;
234
+ } | undefined;
235
+ } | undefined;
236
+ error?: string | undefined;
237
+ _cancelProcessed?: boolean | undefined;
238
+ createdAt?: any;
239
+ updatedAt?: any;
240
+ }, HookContext<AdvisorService<import("./advisor.class").AdvisorParams>>>;
241
+ export declare const advisorQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
242
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
243
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
244
+ query: import("@feathersjs/typebox").TString<string>;
245
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
246
+ fargateTaskArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
247
+ fargateTaskIp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
248
+ fargateClusterArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
249
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
250
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
251
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
252
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
253
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
254
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
255
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
256
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
257
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
258
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
259
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
260
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
261
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
262
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
263
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
264
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
265
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
266
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
267
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
268
+ }>>;
269
+ }>>;
270
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
271
+ _cancelProcessed: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
272
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
273
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
274
+ }>, ["_id", "userId", "query", "status", "fargateTaskArn", "fargateTaskIp", "fargateClusterArn", "results", "error", "createdAt", "updatedAt"]>;
275
+ export declare const advisorQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
276
+ $limit: import("@feathersjs/typebox").TNumber;
277
+ $skip: import("@feathersjs/typebox").TNumber;
278
+ $sort: import("@feathersjs/typebox").TObject<{
279
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
280
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
281
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
282
+ fargateClusterArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
283
+ fargateTaskArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
284
+ fargateTaskIp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
285
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
286
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
287
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
288
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
289
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
290
+ }>;
291
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "error" | "fargateClusterArn" | "fargateTaskArn" | "fargateTaskIp" | "query" | "results" | "status" | "updatedAt" | "userId")[]>;
292
+ $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
293
+ _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<{
294
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
295
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
296
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
297
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
298
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
299
+ $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<{}>]>;
300
+ $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<{}>]>;
301
+ }>, import("@feathersjs/typebox").TObject<{
302
+ [key: string]: import("@feathersjs/typebox").TSchema;
303
+ } | undefined>]>>]>>;
304
+ 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<{
305
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
306
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
307
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
308
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
309
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
310
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
311
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
312
+ }>, import("@feathersjs/typebox").TObject<{
313
+ [key: string]: import("@feathersjs/typebox").TSchema;
314
+ } | undefined>]>>]>>;
315
+ error: 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<{
316
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
317
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
318
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
319
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
320
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
321
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
322
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
323
+ }>, import("@feathersjs/typebox").TObject<{
324
+ [key: string]: import("@feathersjs/typebox").TSchema;
325
+ } | undefined>]>>]>>;
326
+ fargateClusterArn: 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<{
327
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
328
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
329
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
330
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
331
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
332
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
333
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
334
+ }>, import("@feathersjs/typebox").TObject<{
335
+ [key: string]: import("@feathersjs/typebox").TSchema;
336
+ } | undefined>]>>]>>;
337
+ fargateTaskArn: 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<{
338
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
339
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
340
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
341
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
342
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
343
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
344
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
345
+ }>, import("@feathersjs/typebox").TObject<{
346
+ [key: string]: import("@feathersjs/typebox").TSchema;
347
+ } | undefined>]>>]>>;
348
+ fargateTaskIp: 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<{
349
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
350
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
351
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
352
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
353
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
354
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
355
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
356
+ }>, import("@feathersjs/typebox").TObject<{
357
+ [key: string]: import("@feathersjs/typebox").TSchema;
358
+ } | undefined>]>>]>>;
359
+ query: 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<{
360
+ $gt: import("@feathersjs/typebox").TString<string>;
361
+ $gte: import("@feathersjs/typebox").TString<string>;
362
+ $lt: import("@feathersjs/typebox").TString<string>;
363
+ $lte: import("@feathersjs/typebox").TString<string>;
364
+ $ne: import("@feathersjs/typebox").TString<string>;
365
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
366
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
367
+ }>, import("@feathersjs/typebox").TObject<{
368
+ [key: string]: import("@feathersjs/typebox").TSchema;
369
+ } | undefined>]>>]>>;
370
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
371
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
372
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
373
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
374
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
375
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
376
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
377
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
378
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
379
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
380
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
381
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
382
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
383
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
384
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
385
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
386
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
387
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
388
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
389
+ }>>;
390
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
391
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
392
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
393
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
394
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
395
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
396
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
397
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
398
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
399
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
400
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
401
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
402
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
403
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
404
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
405
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
406
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
407
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
408
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
409
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
410
+ }>>;
411
+ }>>;
412
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
413
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
414
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
415
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
416
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
417
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
418
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
419
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
420
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
421
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
422
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
423
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
424
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
425
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
426
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
427
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
428
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
429
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
430
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
431
+ }>>;
432
+ }>>;
433
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
434
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
435
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
436
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
437
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
438
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
439
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
440
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
441
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
442
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
443
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
444
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
445
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
446
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
447
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
448
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
449
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
450
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
451
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
452
+ }>>;
453
+ }>>;
454
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
455
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
456
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
457
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
458
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
459
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
460
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
461
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
462
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
463
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
464
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
465
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
466
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
467
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
468
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
469
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
470
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
471
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
472
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
473
+ }>>;
474
+ }>>;
475
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
476
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
477
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
478
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
479
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
480
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
481
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
482
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
483
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
484
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
485
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
486
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
487
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
488
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
489
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
490
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
491
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
492
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
493
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
494
+ }>>;
495
+ }>>;
496
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
497
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
498
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
499
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
500
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
501
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
502
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
503
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
504
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
505
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
506
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
507
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
508
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
509
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
510
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
511
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
512
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
513
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
514
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
515
+ }>>;
516
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
517
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
518
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
519
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
520
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
521
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
522
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
523
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
524
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
525
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
526
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
527
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
528
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
529
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
530
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
531
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
532
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
533
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
534
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
535
+ }>>;
536
+ }>>;
537
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
538
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
539
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
540
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
541
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
542
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
543
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
544
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
545
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
546
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
547
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
548
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
549
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
550
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
551
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
552
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
553
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
554
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
555
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
556
+ }>>;
557
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
558
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
559
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
560
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
561
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
562
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
563
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
564
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
565
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
566
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
567
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
568
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
569
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
570
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
571
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
572
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
573
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
574
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
575
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
576
+ }>>;
577
+ }>>;
578
+ }>, import("@feathersjs/typebox").TObject<{
579
+ [key: string]: import("@feathersjs/typebox").TSchema;
580
+ } | undefined>]>>]>>;
581
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
582
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
583
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
584
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
585
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
586
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
587
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
588
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
589
+ }>, import("@feathersjs/typebox").TObject<{
590
+ [key: string]: import("@feathersjs/typebox").TSchema;
591
+ } | undefined>]>>]>>;
592
+ 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<{
593
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
594
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
595
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
596
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
597
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
598
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
599
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
600
+ }>, import("@feathersjs/typebox").TObject<{
601
+ [key: string]: import("@feathersjs/typebox").TSchema;
602
+ } | undefined>]>>]>>;
603
+ 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<{
604
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
605
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
606
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
607
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
608
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
609
+ $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<{}>]>>;
610
+ $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<{}>]>>;
611
+ }>, import("@feathersjs/typebox").TObject<{
612
+ [key: string]: import("@feathersjs/typebox").TSchema;
613
+ } | undefined>]>>]>>;
614
+ }>>, import("@feathersjs/typebox").TObject<{
615
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
616
+ _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<{
617
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
618
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
619
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
620
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
621
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
622
+ $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<{}>]>;
623
+ $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<{}>]>;
624
+ }>, import("@feathersjs/typebox").TObject<{
625
+ [key: string]: import("@feathersjs/typebox").TSchema;
626
+ } | undefined>]>>]>>;
627
+ 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<{
628
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
629
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
630
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
631
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
632
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
633
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
634
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
635
+ }>, import("@feathersjs/typebox").TObject<{
636
+ [key: string]: import("@feathersjs/typebox").TSchema;
637
+ } | undefined>]>>]>>;
638
+ error: 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<{
639
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
640
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
641
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
642
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
643
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
644
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
645
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
646
+ }>, import("@feathersjs/typebox").TObject<{
647
+ [key: string]: import("@feathersjs/typebox").TSchema;
648
+ } | undefined>]>>]>>;
649
+ fargateClusterArn: 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<{
650
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
651
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
652
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
653
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
654
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
655
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
656
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
657
+ }>, import("@feathersjs/typebox").TObject<{
658
+ [key: string]: import("@feathersjs/typebox").TSchema;
659
+ } | undefined>]>>]>>;
660
+ fargateTaskArn: 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<{
661
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
662
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
663
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
664
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
665
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
666
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
667
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
668
+ }>, import("@feathersjs/typebox").TObject<{
669
+ [key: string]: import("@feathersjs/typebox").TSchema;
670
+ } | undefined>]>>]>>;
671
+ fargateTaskIp: 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<{
672
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
673
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
674
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
675
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
676
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
677
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
678
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
679
+ }>, import("@feathersjs/typebox").TObject<{
680
+ [key: string]: import("@feathersjs/typebox").TSchema;
681
+ } | undefined>]>>]>>;
682
+ query: 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<{
683
+ $gt: import("@feathersjs/typebox").TString<string>;
684
+ $gte: import("@feathersjs/typebox").TString<string>;
685
+ $lt: import("@feathersjs/typebox").TString<string>;
686
+ $lte: import("@feathersjs/typebox").TString<string>;
687
+ $ne: import("@feathersjs/typebox").TString<string>;
688
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
689
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
690
+ }>, import("@feathersjs/typebox").TObject<{
691
+ [key: string]: import("@feathersjs/typebox").TSchema;
692
+ } | undefined>]>>]>>;
693
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
694
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
695
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
696
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
697
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
698
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
699
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
700
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
701
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
702
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
703
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
704
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
705
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
706
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
707
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
708
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
709
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
710
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
711
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
712
+ }>>;
713
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
714
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
715
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
716
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
717
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
718
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
719
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
720
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
721
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
722
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
723
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
724
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
725
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
726
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
727
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
728
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
729
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
730
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
731
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
732
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
733
+ }>>;
734
+ }>>;
735
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
736
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
737
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
738
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
739
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
740
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
741
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
742
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
743
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
744
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
745
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
746
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
747
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
748
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
749
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
750
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
751
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
752
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
753
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
754
+ }>>;
755
+ }>>;
756
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
757
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
758
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
759
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
760
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
761
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
762
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
763
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
764
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
765
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
766
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
767
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
768
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
769
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
770
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
771
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
772
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
773
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
774
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
775
+ }>>;
776
+ }>>;
777
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
778
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
779
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
780
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
781
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
782
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
783
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
784
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
785
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
786
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
787
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
788
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
789
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
790
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
791
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
792
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
793
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
794
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
795
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
796
+ }>>;
797
+ }>>;
798
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
799
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
800
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
801
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
802
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
803
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
804
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
805
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
806
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
807
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
808
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
809
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
810
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
811
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
812
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
813
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
814
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
815
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
816
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
817
+ }>>;
818
+ }>>;
819
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
820
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
821
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
822
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
823
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
824
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
825
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
826
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
827
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
828
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
829
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
830
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
831
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
832
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
833
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
834
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
835
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
836
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
837
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
838
+ }>>;
839
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
840
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
841
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
842
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
843
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
844
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
845
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
846
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
847
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
848
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
849
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
850
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
851
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
852
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
853
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
854
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
855
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
856
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
857
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
858
+ }>>;
859
+ }>>;
860
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
861
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
862
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
863
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
864
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
865
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
866
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
867
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
868
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
869
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
870
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
871
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
872
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
873
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
874
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
875
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
876
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
877
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
878
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
879
+ }>>;
880
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
881
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
882
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
883
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
884
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
885
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
886
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
887
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
888
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
889
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
890
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
891
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
892
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
893
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
894
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
895
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
896
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
897
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
898
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
899
+ }>>;
900
+ }>>;
901
+ }>, import("@feathersjs/typebox").TObject<{
902
+ [key: string]: import("@feathersjs/typebox").TSchema;
903
+ } | undefined>]>>]>>;
904
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
905
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
906
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
907
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
908
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
909
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
910
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
911
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
912
+ }>, import("@feathersjs/typebox").TObject<{
913
+ [key: string]: import("@feathersjs/typebox").TSchema;
914
+ } | undefined>]>>]>>;
915
+ 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<{
916
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
917
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
918
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
919
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
920
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
921
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
922
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
923
+ }>, import("@feathersjs/typebox").TObject<{
924
+ [key: string]: import("@feathersjs/typebox").TSchema;
925
+ } | undefined>]>>]>>;
926
+ 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<{
927
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
928
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
929
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
930
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
931
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
932
+ $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<{}>]>>;
933
+ $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<{}>]>>;
934
+ }>, import("@feathersjs/typebox").TObject<{
935
+ [key: string]: import("@feathersjs/typebox").TSchema;
936
+ } | undefined>]>>]>>;
937
+ }>>>;
938
+ }>]>>;
939
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
940
+ _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<{
941
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
942
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
943
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
944
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
945
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
946
+ $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<{}>]>;
947
+ $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<{}>]>;
948
+ }>, import("@feathersjs/typebox").TObject<{
949
+ [key: string]: import("@feathersjs/typebox").TSchema;
950
+ } | undefined>]>>]>>;
951
+ 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<{
952
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
953
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
954
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
955
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
956
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
957
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
958
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
959
+ }>, import("@feathersjs/typebox").TObject<{
960
+ [key: string]: import("@feathersjs/typebox").TSchema;
961
+ } | undefined>]>>]>>;
962
+ error: 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<{
963
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
964
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
965
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
966
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
967
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
968
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
969
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
970
+ }>, import("@feathersjs/typebox").TObject<{
971
+ [key: string]: import("@feathersjs/typebox").TSchema;
972
+ } | undefined>]>>]>>;
973
+ fargateClusterArn: 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<{
974
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
975
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
976
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
977
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
978
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
979
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
980
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
981
+ }>, import("@feathersjs/typebox").TObject<{
982
+ [key: string]: import("@feathersjs/typebox").TSchema;
983
+ } | undefined>]>>]>>;
984
+ fargateTaskArn: 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<{
985
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
986
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
987
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
988
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
989
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
990
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
991
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
992
+ }>, import("@feathersjs/typebox").TObject<{
993
+ [key: string]: import("@feathersjs/typebox").TSchema;
994
+ } | undefined>]>>]>>;
995
+ fargateTaskIp: 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<{
996
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
997
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
998
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
999
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1000
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1001
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1002
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1003
+ }>, import("@feathersjs/typebox").TObject<{
1004
+ [key: string]: import("@feathersjs/typebox").TSchema;
1005
+ } | undefined>]>>]>>;
1006
+ query: 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<{
1007
+ $gt: import("@feathersjs/typebox").TString<string>;
1008
+ $gte: import("@feathersjs/typebox").TString<string>;
1009
+ $lt: import("@feathersjs/typebox").TString<string>;
1010
+ $lte: import("@feathersjs/typebox").TString<string>;
1011
+ $ne: import("@feathersjs/typebox").TString<string>;
1012
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1013
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1014
+ }>, import("@feathersjs/typebox").TObject<{
1015
+ [key: string]: import("@feathersjs/typebox").TSchema;
1016
+ } | undefined>]>>]>>;
1017
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1018
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1019
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1020
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1021
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1022
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1023
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1024
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1025
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1026
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1027
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1028
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1029
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1030
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1031
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1032
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1033
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1034
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1035
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1036
+ }>>;
1037
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1038
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1039
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1040
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1041
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1042
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1043
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1044
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1045
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1046
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1047
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1048
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1049
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1050
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1051
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1052
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1053
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1054
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1055
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1056
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1057
+ }>>;
1058
+ }>>;
1059
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1060
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1061
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1062
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1063
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1064
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1065
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1066
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1067
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1068
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1069
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1070
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1071
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1072
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1073
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1074
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1075
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1076
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1077
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1078
+ }>>;
1079
+ }>>;
1080
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1081
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1082
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1083
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1084
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1085
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1086
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1087
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1088
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1089
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1090
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1091
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1092
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1093
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1094
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1095
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1096
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1097
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1098
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1099
+ }>>;
1100
+ }>>;
1101
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1102
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1103
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1104
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1105
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1106
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1107
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1108
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1109
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1110
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1111
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1112
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1113
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1114
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1115
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1116
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1117
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1118
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1119
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1120
+ }>>;
1121
+ }>>;
1122
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1123
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1124
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1125
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1126
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1127
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1128
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1129
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1130
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1131
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1132
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1133
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1134
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1135
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1136
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1137
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1138
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1139
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1140
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1141
+ }>>;
1142
+ }>>;
1143
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1144
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1145
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1146
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1147
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1148
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1149
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1150
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1151
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1152
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1153
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1154
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1155
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1156
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1157
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1158
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1159
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1160
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1161
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1162
+ }>>;
1163
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1164
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1165
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1166
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1167
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1168
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1169
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1170
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1171
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1172
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1173
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1174
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1175
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1176
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1177
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1178
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1179
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1180
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1181
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1182
+ }>>;
1183
+ }>>;
1184
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1185
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1186
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1187
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1188
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1189
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1190
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1191
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1192
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1193
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1194
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1195
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1196
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1197
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1198
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1199
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1200
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1201
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1202
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1203
+ }>>;
1204
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1205
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1206
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1207
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1208
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1209
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1210
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1211
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1212
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1213
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1214
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1215
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1216
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1217
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1218
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1219
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1220
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1221
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1222
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1223
+ }>>;
1224
+ }>>;
1225
+ }>, import("@feathersjs/typebox").TObject<{
1226
+ [key: string]: import("@feathersjs/typebox").TSchema;
1227
+ } | undefined>]>>]>>;
1228
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1229
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1230
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1231
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1232
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1233
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1234
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1235
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1236
+ }>, import("@feathersjs/typebox").TObject<{
1237
+ [key: string]: import("@feathersjs/typebox").TSchema;
1238
+ } | undefined>]>>]>>;
1239
+ 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<{
1240
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1241
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1242
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1243
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1244
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1245
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1246
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1247
+ }>, import("@feathersjs/typebox").TObject<{
1248
+ [key: string]: import("@feathersjs/typebox").TSchema;
1249
+ } | undefined>]>>]>>;
1250
+ 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<{
1251
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1252
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1253
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1254
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1255
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1256
+ $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<{}>]>>;
1257
+ $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<{}>]>>;
1258
+ }>, import("@feathersjs/typebox").TObject<{
1259
+ [key: string]: import("@feathersjs/typebox").TSchema;
1260
+ } | undefined>]>>]>>;
1261
+ }>>>;
1262
+ }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1263
+ _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<{
1264
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1265
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1266
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1267
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1268
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1269
+ $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<{}>]>;
1270
+ $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<{}>]>;
1271
+ }>, import("@feathersjs/typebox").TObject<{
1272
+ [key: string]: import("@feathersjs/typebox").TSchema;
1273
+ } | undefined>]>>]>>;
1274
+ 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<{
1275
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1276
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1277
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1278
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1279
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1280
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1281
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1282
+ }>, import("@feathersjs/typebox").TObject<{
1283
+ [key: string]: import("@feathersjs/typebox").TSchema;
1284
+ } | undefined>]>>]>>;
1285
+ error: 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<{
1286
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1287
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1288
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1289
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1290
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1291
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1292
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1293
+ }>, import("@feathersjs/typebox").TObject<{
1294
+ [key: string]: import("@feathersjs/typebox").TSchema;
1295
+ } | undefined>]>>]>>;
1296
+ fargateClusterArn: 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<{
1297
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1298
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1299
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1300
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1301
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1302
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1303
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1304
+ }>, import("@feathersjs/typebox").TObject<{
1305
+ [key: string]: import("@feathersjs/typebox").TSchema;
1306
+ } | undefined>]>>]>>;
1307
+ fargateTaskArn: 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<{
1308
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1309
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1310
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1311
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1312
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1313
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1314
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1315
+ }>, import("@feathersjs/typebox").TObject<{
1316
+ [key: string]: import("@feathersjs/typebox").TSchema;
1317
+ } | undefined>]>>]>>;
1318
+ fargateTaskIp: 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<{
1319
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1320
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1321
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1322
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1323
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1324
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1325
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1326
+ }>, import("@feathersjs/typebox").TObject<{
1327
+ [key: string]: import("@feathersjs/typebox").TSchema;
1328
+ } | undefined>]>>]>>;
1329
+ query: 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<{
1330
+ $gt: import("@feathersjs/typebox").TString<string>;
1331
+ $gte: import("@feathersjs/typebox").TString<string>;
1332
+ $lt: import("@feathersjs/typebox").TString<string>;
1333
+ $lte: import("@feathersjs/typebox").TString<string>;
1334
+ $ne: import("@feathersjs/typebox").TString<string>;
1335
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1336
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1337
+ }>, import("@feathersjs/typebox").TObject<{
1338
+ [key: string]: import("@feathersjs/typebox").TSchema;
1339
+ } | undefined>]>>]>>;
1340
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1341
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1342
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1343
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1344
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1345
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1346
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1347
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1348
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1349
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1350
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1351
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1352
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1353
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1354
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1355
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1356
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1357
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1358
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1359
+ }>>;
1360
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1361
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1362
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1363
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1364
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1365
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1366
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1367
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1368
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1369
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1370
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1371
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1372
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1373
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1374
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1375
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1376
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1377
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1378
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1379
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1380
+ }>>;
1381
+ }>>;
1382
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1383
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1384
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1385
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1386
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1387
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1388
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1389
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1390
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1391
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1392
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1393
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1394
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1395
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1396
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1397
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1398
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1399
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1400
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1401
+ }>>;
1402
+ }>>;
1403
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1404
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1405
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1406
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1407
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1408
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1409
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1410
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1411
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1412
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1413
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1414
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1415
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1416
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1417
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1418
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1419
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1420
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1421
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1422
+ }>>;
1423
+ }>>;
1424
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1425
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1426
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1427
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1428
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1429
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1430
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1431
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1432
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1433
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1434
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1435
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1436
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1437
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1438
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1439
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1440
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1441
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1442
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1443
+ }>>;
1444
+ }>>;
1445
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1446
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1447
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1448
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1449
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1450
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1451
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1452
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1453
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1454
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1455
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1456
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1457
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1458
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1459
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1460
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1461
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1462
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1463
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1464
+ }>>;
1465
+ }>>;
1466
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1467
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1468
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1469
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1470
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1471
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1472
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1473
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1474
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1475
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1476
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1477
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1478
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1479
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1480
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1481
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1482
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1483
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1484
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1485
+ }>>;
1486
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1487
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1488
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1489
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1490
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1491
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1492
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1493
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1494
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1495
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1496
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1497
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1498
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1499
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1500
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1501
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1502
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1503
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1504
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1505
+ }>>;
1506
+ }>>;
1507
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1508
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1509
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1510
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1511
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1512
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1513
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1514
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1515
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1516
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1517
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1518
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1519
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1520
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1521
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1522
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1523
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1524
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1525
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1526
+ }>>;
1527
+ }>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1528
+ output_file: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1529
+ research_costs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1530
+ num_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1531
+ num_images: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1532
+ duration_seconds: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1533
+ completed_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1534
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1535
+ metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1536
+ advisor_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1537
+ query: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1538
+ report_type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1539
+ output_format: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1540
+ output_dir: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1541
+ started_at: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1542
+ research_context: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1543
+ source_urls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1544
+ research_sources: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1545
+ optional_params: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1546
+ }>>;
1547
+ }>>;
1548
+ }>, import("@feathersjs/typebox").TObject<{
1549
+ [key: string]: import("@feathersjs/typebox").TSchema;
1550
+ } | undefined>]>>]>>;
1551
+ status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1552
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1553
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1554
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1555
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1556
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1557
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1558
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"running">, import("@feathersjs/typebox").TLiteral<"succeeded">, import("@feathersjs/typebox").TLiteral<"failed">, import("@feathersjs/typebox").TLiteral<"canceled">]>;
1559
+ }>, import("@feathersjs/typebox").TObject<{
1560
+ [key: string]: import("@feathersjs/typebox").TSchema;
1561
+ } | undefined>]>>]>>;
1562
+ 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<{
1563
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1564
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1565
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1566
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1567
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1568
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1569
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1570
+ }>, import("@feathersjs/typebox").TObject<{
1571
+ [key: string]: import("@feathersjs/typebox").TSchema;
1572
+ } | undefined>]>>]>>;
1573
+ 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<{
1574
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1575
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1576
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1577
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1578
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1579
+ $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<{}>]>>;
1580
+ $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<{}>]>>;
1581
+ }>, import("@feathersjs/typebox").TObject<{
1582
+ [key: string]: import("@feathersjs/typebox").TSchema;
1583
+ } | undefined>]>>]>>;
1584
+ }>>]>, import("@feathersjs/typebox").TObject<{}>]>;
1585
+ export type AdvisorQuery = Static<typeof advisorQuerySchema>;
1586
+ export declare const advisorQueryValidator: import("@feathersjs/schema").Validator<any, any>;
1587
+ export declare const advisorQueryResolver: import("@feathersjs/schema").Resolver<Partial<{
1588
+ $limit: number;
1589
+ $skip: number;
1590
+ $sort: {
1591
+ _id?: number | undefined;
1592
+ createdAt?: number | undefined;
1593
+ error?: number | undefined;
1594
+ fargateClusterArn?: number | undefined;
1595
+ fargateTaskArn?: number | undefined;
1596
+ fargateTaskIp?: number | undefined;
1597
+ query?: number | undefined;
1598
+ results?: number | undefined;
1599
+ status?: number | undefined;
1600
+ updatedAt?: number | undefined;
1601
+ userId?: number | undefined;
1602
+ };
1603
+ $select: ("_id" | "createdAt" | "error" | "fargateClusterArn" | "fargateTaskArn" | "fargateTaskIp" | "query" | "results" | "status" | "updatedAt" | "userId")[];
1604
+ $and: ({
1605
+ _id?: string | Partial<{
1606
+ $gt: string | {};
1607
+ $gte: string | {};
1608
+ $lt: string | {};
1609
+ $lte: string | {};
1610
+ $ne: string | {};
1611
+ $in: string | (string | {})[] | {};
1612
+ $nin: string | (string | {})[] | {};
1613
+ } & {}> | {} | undefined;
1614
+ createdAt?: any;
1615
+ error?: string | Partial<{
1616
+ $gt?: string | undefined;
1617
+ $gte?: string | undefined;
1618
+ $lt?: string | undefined;
1619
+ $lte?: string | undefined;
1620
+ $ne?: string | undefined;
1621
+ $in: string | string[];
1622
+ $nin: string | string[];
1623
+ } & {}> | undefined;
1624
+ fargateClusterArn?: string | Partial<{
1625
+ $gt?: string | undefined;
1626
+ $gte?: string | undefined;
1627
+ $lt?: string | undefined;
1628
+ $lte?: string | undefined;
1629
+ $ne?: string | undefined;
1630
+ $in: string | string[];
1631
+ $nin: string | string[];
1632
+ } & {}> | undefined;
1633
+ fargateTaskArn?: string | Partial<{
1634
+ $gt?: string | undefined;
1635
+ $gte?: string | undefined;
1636
+ $lt?: string | undefined;
1637
+ $lte?: string | undefined;
1638
+ $ne?: string | undefined;
1639
+ $in: string | string[];
1640
+ $nin: string | string[];
1641
+ } & {}> | undefined;
1642
+ fargateTaskIp?: string | Partial<{
1643
+ $gt?: string | undefined;
1644
+ $gte?: string | undefined;
1645
+ $lt?: string | undefined;
1646
+ $lte?: string | undefined;
1647
+ $ne?: string | undefined;
1648
+ $in: string | string[];
1649
+ $nin: string | string[];
1650
+ } & {}> | undefined;
1651
+ query?: string | Partial<{
1652
+ $gt: string;
1653
+ $gte: string;
1654
+ $lt: string;
1655
+ $lte: string;
1656
+ $ne: string;
1657
+ $in: string | string[];
1658
+ $nin: string | string[];
1659
+ } & {}> | undefined;
1660
+ results?: Partial<{
1661
+ $gt?: {
1662
+ output_file?: string | undefined;
1663
+ research_costs?: number | undefined;
1664
+ num_sources?: number | undefined;
1665
+ num_images?: number | undefined;
1666
+ duration_seconds?: number | undefined;
1667
+ completed_at?: string | undefined;
1668
+ status?: string | undefined;
1669
+ metadata?: {
1670
+ advisor_id?: string | undefined;
1671
+ query?: string | undefined;
1672
+ report_type?: string | undefined;
1673
+ output_format?: string | undefined;
1674
+ output_dir?: string | undefined;
1675
+ started_at?: number | undefined;
1676
+ research_context?: any;
1677
+ source_urls?: string[] | undefined;
1678
+ research_sources?: any[] | undefined;
1679
+ optional_params?: any;
1680
+ } | undefined;
1681
+ } | undefined;
1682
+ $gte?: {
1683
+ output_file?: string | undefined;
1684
+ research_costs?: number | undefined;
1685
+ num_sources?: number | undefined;
1686
+ num_images?: number | undefined;
1687
+ duration_seconds?: number | undefined;
1688
+ completed_at?: string | undefined;
1689
+ status?: string | undefined;
1690
+ metadata?: {
1691
+ advisor_id?: string | undefined;
1692
+ query?: string | undefined;
1693
+ report_type?: string | undefined;
1694
+ output_format?: string | undefined;
1695
+ output_dir?: string | undefined;
1696
+ started_at?: number | undefined;
1697
+ research_context?: any;
1698
+ source_urls?: string[] | undefined;
1699
+ research_sources?: any[] | undefined;
1700
+ optional_params?: any;
1701
+ } | undefined;
1702
+ } | undefined;
1703
+ $lt?: {
1704
+ output_file?: string | undefined;
1705
+ research_costs?: number | undefined;
1706
+ num_sources?: number | undefined;
1707
+ num_images?: number | undefined;
1708
+ duration_seconds?: number | undefined;
1709
+ completed_at?: string | undefined;
1710
+ status?: string | undefined;
1711
+ metadata?: {
1712
+ advisor_id?: string | undefined;
1713
+ query?: string | undefined;
1714
+ report_type?: string | undefined;
1715
+ output_format?: string | undefined;
1716
+ output_dir?: string | undefined;
1717
+ started_at?: number | undefined;
1718
+ research_context?: any;
1719
+ source_urls?: string[] | undefined;
1720
+ research_sources?: any[] | undefined;
1721
+ optional_params?: any;
1722
+ } | undefined;
1723
+ } | undefined;
1724
+ $lte?: {
1725
+ output_file?: string | undefined;
1726
+ research_costs?: number | undefined;
1727
+ num_sources?: number | undefined;
1728
+ num_images?: number | undefined;
1729
+ duration_seconds?: number | undefined;
1730
+ completed_at?: string | undefined;
1731
+ status?: string | undefined;
1732
+ metadata?: {
1733
+ advisor_id?: string | undefined;
1734
+ query?: string | undefined;
1735
+ report_type?: string | undefined;
1736
+ output_format?: string | undefined;
1737
+ output_dir?: string | undefined;
1738
+ started_at?: number | undefined;
1739
+ research_context?: any;
1740
+ source_urls?: string[] | undefined;
1741
+ research_sources?: any[] | undefined;
1742
+ optional_params?: any;
1743
+ } | undefined;
1744
+ } | undefined;
1745
+ $ne?: {
1746
+ output_file?: string | undefined;
1747
+ research_costs?: number | undefined;
1748
+ num_sources?: number | undefined;
1749
+ num_images?: number | undefined;
1750
+ duration_seconds?: number | undefined;
1751
+ completed_at?: string | undefined;
1752
+ status?: string | undefined;
1753
+ metadata?: {
1754
+ advisor_id?: string | undefined;
1755
+ query?: string | undefined;
1756
+ report_type?: string | undefined;
1757
+ output_format?: string | undefined;
1758
+ output_dir?: string | undefined;
1759
+ started_at?: number | undefined;
1760
+ research_context?: any;
1761
+ source_urls?: string[] | undefined;
1762
+ research_sources?: any[] | undefined;
1763
+ optional_params?: any;
1764
+ } | undefined;
1765
+ } | undefined;
1766
+ $in: {
1767
+ output_file?: string | undefined;
1768
+ research_costs?: number | undefined;
1769
+ num_sources?: number | undefined;
1770
+ num_images?: number | undefined;
1771
+ duration_seconds?: number | undefined;
1772
+ completed_at?: string | undefined;
1773
+ status?: string | undefined;
1774
+ metadata?: {
1775
+ advisor_id?: string | undefined;
1776
+ query?: string | undefined;
1777
+ report_type?: string | undefined;
1778
+ output_format?: string | undefined;
1779
+ output_dir?: string | undefined;
1780
+ started_at?: number | undefined;
1781
+ research_context?: any;
1782
+ source_urls?: string[] | undefined;
1783
+ research_sources?: any[] | undefined;
1784
+ optional_params?: any;
1785
+ } | undefined;
1786
+ }[] | {
1787
+ output_file?: string | undefined;
1788
+ research_costs?: number | undefined;
1789
+ num_sources?: number | undefined;
1790
+ num_images?: number | undefined;
1791
+ duration_seconds?: number | undefined;
1792
+ completed_at?: string | undefined;
1793
+ status?: string | undefined;
1794
+ metadata?: {
1795
+ advisor_id?: string | undefined;
1796
+ query?: string | undefined;
1797
+ report_type?: string | undefined;
1798
+ output_format?: string | undefined;
1799
+ output_dir?: string | undefined;
1800
+ started_at?: number | undefined;
1801
+ research_context?: any;
1802
+ source_urls?: string[] | undefined;
1803
+ research_sources?: any[] | undefined;
1804
+ optional_params?: any;
1805
+ } | undefined;
1806
+ };
1807
+ $nin: {
1808
+ output_file?: string | undefined;
1809
+ research_costs?: number | undefined;
1810
+ num_sources?: number | undefined;
1811
+ num_images?: number | undefined;
1812
+ duration_seconds?: number | undefined;
1813
+ completed_at?: string | undefined;
1814
+ status?: string | undefined;
1815
+ metadata?: {
1816
+ advisor_id?: string | undefined;
1817
+ query?: string | undefined;
1818
+ report_type?: string | undefined;
1819
+ output_format?: string | undefined;
1820
+ output_dir?: string | undefined;
1821
+ started_at?: number | undefined;
1822
+ research_context?: any;
1823
+ source_urls?: string[] | undefined;
1824
+ research_sources?: any[] | undefined;
1825
+ optional_params?: any;
1826
+ } | undefined;
1827
+ }[] | {
1828
+ output_file?: string | undefined;
1829
+ research_costs?: number | undefined;
1830
+ num_sources?: number | undefined;
1831
+ num_images?: number | undefined;
1832
+ duration_seconds?: number | undefined;
1833
+ completed_at?: string | undefined;
1834
+ status?: string | undefined;
1835
+ metadata?: {
1836
+ advisor_id?: string | undefined;
1837
+ query?: string | undefined;
1838
+ report_type?: string | undefined;
1839
+ output_format?: string | undefined;
1840
+ output_dir?: string | undefined;
1841
+ started_at?: number | undefined;
1842
+ research_context?: any;
1843
+ source_urls?: string[] | undefined;
1844
+ research_sources?: any[] | undefined;
1845
+ optional_params?: any;
1846
+ } | undefined;
1847
+ };
1848
+ } & {}> | {
1849
+ output_file?: string | undefined;
1850
+ research_costs?: number | undefined;
1851
+ num_sources?: number | undefined;
1852
+ num_images?: number | undefined;
1853
+ duration_seconds?: number | undefined;
1854
+ completed_at?: string | undefined;
1855
+ status?: string | undefined;
1856
+ metadata?: {
1857
+ advisor_id?: string | undefined;
1858
+ query?: string | undefined;
1859
+ report_type?: string | undefined;
1860
+ output_format?: string | undefined;
1861
+ output_dir?: string | undefined;
1862
+ started_at?: number | undefined;
1863
+ research_context?: any;
1864
+ source_urls?: string[] | undefined;
1865
+ research_sources?: any[] | undefined;
1866
+ optional_params?: any;
1867
+ } | undefined;
1868
+ } | undefined;
1869
+ status?: "canceled" | "failed" | "running" | "succeeded" | Partial<{
1870
+ $gt: "canceled" | "failed" | "running" | "succeeded";
1871
+ $gte: "canceled" | "failed" | "running" | "succeeded";
1872
+ $lt: "canceled" | "failed" | "running" | "succeeded";
1873
+ $lte: "canceled" | "failed" | "running" | "succeeded";
1874
+ $ne: "canceled" | "failed" | "running" | "succeeded";
1875
+ $in: "canceled" | "failed" | "running" | "succeeded" | ("canceled" | "failed" | "running" | "succeeded")[];
1876
+ $nin: "canceled" | "failed" | "running" | "succeeded" | ("canceled" | "failed" | "running" | "succeeded")[];
1877
+ } & {}> | undefined;
1878
+ updatedAt?: any;
1879
+ userId?: string | Partial<{
1880
+ $gt?: string | {} | undefined;
1881
+ $gte?: string | {} | undefined;
1882
+ $lt?: string | {} | undefined;
1883
+ $lte?: string | {} | undefined;
1884
+ $ne?: string | {} | undefined;
1885
+ $in: string | (string | {})[] | {};
1886
+ $nin: string | (string | {})[] | {};
1887
+ } & {}> | {} | undefined;
1888
+ } | {
1889
+ $or: {
1890
+ _id?: string | Partial<{
1891
+ $gt: string | {};
1892
+ $gte: string | {};
1893
+ $lt: string | {};
1894
+ $lte: string | {};
1895
+ $ne: string | {};
1896
+ $in: string | (string | {})[] | {};
1897
+ $nin: string | (string | {})[] | {};
1898
+ } & {}> | {} | undefined;
1899
+ createdAt?: any;
1900
+ error?: string | Partial<{
1901
+ $gt?: string | undefined;
1902
+ $gte?: string | undefined;
1903
+ $lt?: string | undefined;
1904
+ $lte?: string | undefined;
1905
+ $ne?: string | undefined;
1906
+ $in: string | string[];
1907
+ $nin: string | string[];
1908
+ } & {}> | undefined;
1909
+ fargateClusterArn?: string | Partial<{
1910
+ $gt?: string | undefined;
1911
+ $gte?: string | undefined;
1912
+ $lt?: string | undefined;
1913
+ $lte?: string | undefined;
1914
+ $ne?: string | undefined;
1915
+ $in: string | string[];
1916
+ $nin: string | string[];
1917
+ } & {}> | undefined;
1918
+ fargateTaskArn?: string | Partial<{
1919
+ $gt?: string | undefined;
1920
+ $gte?: string | undefined;
1921
+ $lt?: string | undefined;
1922
+ $lte?: string | undefined;
1923
+ $ne?: string | undefined;
1924
+ $in: string | string[];
1925
+ $nin: string | string[];
1926
+ } & {}> | undefined;
1927
+ fargateTaskIp?: string | Partial<{
1928
+ $gt?: string | undefined;
1929
+ $gte?: string | undefined;
1930
+ $lt?: string | undefined;
1931
+ $lte?: string | undefined;
1932
+ $ne?: string | undefined;
1933
+ $in: string | string[];
1934
+ $nin: string | string[];
1935
+ } & {}> | undefined;
1936
+ query?: string | Partial<{
1937
+ $gt: string;
1938
+ $gte: string;
1939
+ $lt: string;
1940
+ $lte: string;
1941
+ $ne: string;
1942
+ $in: string | string[];
1943
+ $nin: string | string[];
1944
+ } & {}> | undefined;
1945
+ results?: Partial<{
1946
+ $gt?: {
1947
+ output_file?: string | undefined;
1948
+ research_costs?: number | undefined;
1949
+ num_sources?: number | undefined;
1950
+ num_images?: number | undefined;
1951
+ duration_seconds?: number | undefined;
1952
+ completed_at?: string | undefined;
1953
+ status?: string | undefined;
1954
+ metadata?: {
1955
+ advisor_id?: string | undefined;
1956
+ query?: string | undefined;
1957
+ report_type?: string | undefined;
1958
+ output_format?: string | undefined;
1959
+ output_dir?: string | undefined;
1960
+ started_at?: number | undefined;
1961
+ research_context?: any;
1962
+ source_urls?: string[] | undefined;
1963
+ research_sources?: any[] | undefined;
1964
+ optional_params?: any;
1965
+ } | undefined;
1966
+ } | undefined;
1967
+ $gte?: {
1968
+ output_file?: string | undefined;
1969
+ research_costs?: number | undefined;
1970
+ num_sources?: number | undefined;
1971
+ num_images?: number | undefined;
1972
+ duration_seconds?: number | undefined;
1973
+ completed_at?: string | undefined;
1974
+ status?: string | undefined;
1975
+ metadata?: {
1976
+ advisor_id?: string | undefined;
1977
+ query?: string | undefined;
1978
+ report_type?: string | undefined;
1979
+ output_format?: string | undefined;
1980
+ output_dir?: string | undefined;
1981
+ started_at?: number | undefined;
1982
+ research_context?: any;
1983
+ source_urls?: string[] | undefined;
1984
+ research_sources?: any[] | undefined;
1985
+ optional_params?: any;
1986
+ } | undefined;
1987
+ } | undefined;
1988
+ $lt?: {
1989
+ output_file?: string | undefined;
1990
+ research_costs?: number | undefined;
1991
+ num_sources?: number | undefined;
1992
+ num_images?: number | undefined;
1993
+ duration_seconds?: number | undefined;
1994
+ completed_at?: string | undefined;
1995
+ status?: string | undefined;
1996
+ metadata?: {
1997
+ advisor_id?: string | undefined;
1998
+ query?: string | undefined;
1999
+ report_type?: string | undefined;
2000
+ output_format?: string | undefined;
2001
+ output_dir?: string | undefined;
2002
+ started_at?: number | undefined;
2003
+ research_context?: any;
2004
+ source_urls?: string[] | undefined;
2005
+ research_sources?: any[] | undefined;
2006
+ optional_params?: any;
2007
+ } | undefined;
2008
+ } | undefined;
2009
+ $lte?: {
2010
+ output_file?: string | undefined;
2011
+ research_costs?: number | undefined;
2012
+ num_sources?: number | undefined;
2013
+ num_images?: number | undefined;
2014
+ duration_seconds?: number | undefined;
2015
+ completed_at?: string | undefined;
2016
+ status?: string | undefined;
2017
+ metadata?: {
2018
+ advisor_id?: string | undefined;
2019
+ query?: string | undefined;
2020
+ report_type?: string | undefined;
2021
+ output_format?: string | undefined;
2022
+ output_dir?: string | undefined;
2023
+ started_at?: number | undefined;
2024
+ research_context?: any;
2025
+ source_urls?: string[] | undefined;
2026
+ research_sources?: any[] | undefined;
2027
+ optional_params?: any;
2028
+ } | undefined;
2029
+ } | undefined;
2030
+ $ne?: {
2031
+ output_file?: string | undefined;
2032
+ research_costs?: number | undefined;
2033
+ num_sources?: number | undefined;
2034
+ num_images?: number | undefined;
2035
+ duration_seconds?: number | undefined;
2036
+ completed_at?: string | undefined;
2037
+ status?: string | undefined;
2038
+ metadata?: {
2039
+ advisor_id?: string | undefined;
2040
+ query?: string | undefined;
2041
+ report_type?: string | undefined;
2042
+ output_format?: string | undefined;
2043
+ output_dir?: string | undefined;
2044
+ started_at?: number | undefined;
2045
+ research_context?: any;
2046
+ source_urls?: string[] | undefined;
2047
+ research_sources?: any[] | undefined;
2048
+ optional_params?: any;
2049
+ } | undefined;
2050
+ } | undefined;
2051
+ $in: {
2052
+ output_file?: string | undefined;
2053
+ research_costs?: number | undefined;
2054
+ num_sources?: number | undefined;
2055
+ num_images?: number | undefined;
2056
+ duration_seconds?: number | undefined;
2057
+ completed_at?: string | undefined;
2058
+ status?: string | undefined;
2059
+ metadata?: {
2060
+ advisor_id?: string | undefined;
2061
+ query?: string | undefined;
2062
+ report_type?: string | undefined;
2063
+ output_format?: string | undefined;
2064
+ output_dir?: string | undefined;
2065
+ started_at?: number | undefined;
2066
+ research_context?: any;
2067
+ source_urls?: string[] | undefined;
2068
+ research_sources?: any[] | undefined;
2069
+ optional_params?: any;
2070
+ } | undefined;
2071
+ }[] | {
2072
+ output_file?: string | undefined;
2073
+ research_costs?: number | undefined;
2074
+ num_sources?: number | undefined;
2075
+ num_images?: number | undefined;
2076
+ duration_seconds?: number | undefined;
2077
+ completed_at?: string | undefined;
2078
+ status?: string | undefined;
2079
+ metadata?: {
2080
+ advisor_id?: string | undefined;
2081
+ query?: string | undefined;
2082
+ report_type?: string | undefined;
2083
+ output_format?: string | undefined;
2084
+ output_dir?: string | undefined;
2085
+ started_at?: number | undefined;
2086
+ research_context?: any;
2087
+ source_urls?: string[] | undefined;
2088
+ research_sources?: any[] | undefined;
2089
+ optional_params?: any;
2090
+ } | undefined;
2091
+ };
2092
+ $nin: {
2093
+ output_file?: string | undefined;
2094
+ research_costs?: number | undefined;
2095
+ num_sources?: number | undefined;
2096
+ num_images?: number | undefined;
2097
+ duration_seconds?: number | undefined;
2098
+ completed_at?: string | undefined;
2099
+ status?: string | undefined;
2100
+ metadata?: {
2101
+ advisor_id?: string | undefined;
2102
+ query?: string | undefined;
2103
+ report_type?: string | undefined;
2104
+ output_format?: string | undefined;
2105
+ output_dir?: string | undefined;
2106
+ started_at?: number | undefined;
2107
+ research_context?: any;
2108
+ source_urls?: string[] | undefined;
2109
+ research_sources?: any[] | undefined;
2110
+ optional_params?: any;
2111
+ } | undefined;
2112
+ }[] | {
2113
+ output_file?: string | undefined;
2114
+ research_costs?: number | undefined;
2115
+ num_sources?: number | undefined;
2116
+ num_images?: number | undefined;
2117
+ duration_seconds?: number | undefined;
2118
+ completed_at?: string | undefined;
2119
+ status?: string | undefined;
2120
+ metadata?: {
2121
+ advisor_id?: string | undefined;
2122
+ query?: string | undefined;
2123
+ report_type?: string | undefined;
2124
+ output_format?: string | undefined;
2125
+ output_dir?: string | undefined;
2126
+ started_at?: number | undefined;
2127
+ research_context?: any;
2128
+ source_urls?: string[] | undefined;
2129
+ research_sources?: any[] | undefined;
2130
+ optional_params?: any;
2131
+ } | undefined;
2132
+ };
2133
+ } & {}> | {
2134
+ output_file?: string | undefined;
2135
+ research_costs?: number | undefined;
2136
+ num_sources?: number | undefined;
2137
+ num_images?: number | undefined;
2138
+ duration_seconds?: number | undefined;
2139
+ completed_at?: string | undefined;
2140
+ status?: string | undefined;
2141
+ metadata?: {
2142
+ advisor_id?: string | undefined;
2143
+ query?: string | undefined;
2144
+ report_type?: string | undefined;
2145
+ output_format?: string | undefined;
2146
+ output_dir?: string | undefined;
2147
+ started_at?: number | undefined;
2148
+ research_context?: any;
2149
+ source_urls?: string[] | undefined;
2150
+ research_sources?: any[] | undefined;
2151
+ optional_params?: any;
2152
+ } | undefined;
2153
+ } | undefined;
2154
+ status?: "canceled" | "failed" | "running" | "succeeded" | Partial<{
2155
+ $gt: "canceled" | "failed" | "running" | "succeeded";
2156
+ $gte: "canceled" | "failed" | "running" | "succeeded";
2157
+ $lt: "canceled" | "failed" | "running" | "succeeded";
2158
+ $lte: "canceled" | "failed" | "running" | "succeeded";
2159
+ $ne: "canceled" | "failed" | "running" | "succeeded";
2160
+ $in: "canceled" | "failed" | "running" | "succeeded" | ("canceled" | "failed" | "running" | "succeeded")[];
2161
+ $nin: "canceled" | "failed" | "running" | "succeeded" | ("canceled" | "failed" | "running" | "succeeded")[];
2162
+ } & {}> | undefined;
2163
+ updatedAt?: any;
2164
+ userId?: string | Partial<{
2165
+ $gt?: string | {} | undefined;
2166
+ $gte?: string | {} | undefined;
2167
+ $lt?: string | {} | undefined;
2168
+ $lte?: string | {} | undefined;
2169
+ $ne?: string | {} | undefined;
2170
+ $in: string | (string | {})[] | {};
2171
+ $nin: string | (string | {})[] | {};
2172
+ } & {}> | {} | undefined;
2173
+ }[];
2174
+ })[];
2175
+ $or: {
2176
+ _id?: string | Partial<{
2177
+ $gt: string | {};
2178
+ $gte: string | {};
2179
+ $lt: string | {};
2180
+ $lte: string | {};
2181
+ $ne: string | {};
2182
+ $in: string | (string | {})[] | {};
2183
+ $nin: string | (string | {})[] | {};
2184
+ } & {}> | {} | undefined;
2185
+ createdAt?: any;
2186
+ error?: string | Partial<{
2187
+ $gt?: string | undefined;
2188
+ $gte?: string | undefined;
2189
+ $lt?: string | undefined;
2190
+ $lte?: string | undefined;
2191
+ $ne?: string | undefined;
2192
+ $in: string | string[];
2193
+ $nin: string | string[];
2194
+ } & {}> | undefined;
2195
+ fargateClusterArn?: string | Partial<{
2196
+ $gt?: string | undefined;
2197
+ $gte?: string | undefined;
2198
+ $lt?: string | undefined;
2199
+ $lte?: string | undefined;
2200
+ $ne?: string | undefined;
2201
+ $in: string | string[];
2202
+ $nin: string | string[];
2203
+ } & {}> | undefined;
2204
+ fargateTaskArn?: string | Partial<{
2205
+ $gt?: string | undefined;
2206
+ $gte?: string | undefined;
2207
+ $lt?: string | undefined;
2208
+ $lte?: string | undefined;
2209
+ $ne?: string | undefined;
2210
+ $in: string | string[];
2211
+ $nin: string | string[];
2212
+ } & {}> | undefined;
2213
+ fargateTaskIp?: string | Partial<{
2214
+ $gt?: string | undefined;
2215
+ $gte?: string | undefined;
2216
+ $lt?: string | undefined;
2217
+ $lte?: string | undefined;
2218
+ $ne?: string | undefined;
2219
+ $in: string | string[];
2220
+ $nin: string | string[];
2221
+ } & {}> | undefined;
2222
+ query?: string | Partial<{
2223
+ $gt: string;
2224
+ $gte: string;
2225
+ $lt: string;
2226
+ $lte: string;
2227
+ $ne: string;
2228
+ $in: string | string[];
2229
+ $nin: string | string[];
2230
+ } & {}> | undefined;
2231
+ results?: Partial<{
2232
+ $gt?: {
2233
+ output_file?: string | undefined;
2234
+ research_costs?: number | undefined;
2235
+ num_sources?: number | undefined;
2236
+ num_images?: number | undefined;
2237
+ duration_seconds?: number | undefined;
2238
+ completed_at?: string | undefined;
2239
+ status?: string | undefined;
2240
+ metadata?: {
2241
+ advisor_id?: string | undefined;
2242
+ query?: string | undefined;
2243
+ report_type?: string | undefined;
2244
+ output_format?: string | undefined;
2245
+ output_dir?: string | undefined;
2246
+ started_at?: number | undefined;
2247
+ research_context?: any;
2248
+ source_urls?: string[] | undefined;
2249
+ research_sources?: any[] | undefined;
2250
+ optional_params?: any;
2251
+ } | undefined;
2252
+ } | undefined;
2253
+ $gte?: {
2254
+ output_file?: string | undefined;
2255
+ research_costs?: number | undefined;
2256
+ num_sources?: number | undefined;
2257
+ num_images?: number | undefined;
2258
+ duration_seconds?: number | undefined;
2259
+ completed_at?: string | undefined;
2260
+ status?: string | undefined;
2261
+ metadata?: {
2262
+ advisor_id?: string | undefined;
2263
+ query?: string | undefined;
2264
+ report_type?: string | undefined;
2265
+ output_format?: string | undefined;
2266
+ output_dir?: string | undefined;
2267
+ started_at?: number | undefined;
2268
+ research_context?: any;
2269
+ source_urls?: string[] | undefined;
2270
+ research_sources?: any[] | undefined;
2271
+ optional_params?: any;
2272
+ } | undefined;
2273
+ } | undefined;
2274
+ $lt?: {
2275
+ output_file?: string | undefined;
2276
+ research_costs?: number | undefined;
2277
+ num_sources?: number | undefined;
2278
+ num_images?: number | undefined;
2279
+ duration_seconds?: number | undefined;
2280
+ completed_at?: string | undefined;
2281
+ status?: string | undefined;
2282
+ metadata?: {
2283
+ advisor_id?: string | undefined;
2284
+ query?: string | undefined;
2285
+ report_type?: string | undefined;
2286
+ output_format?: string | undefined;
2287
+ output_dir?: string | undefined;
2288
+ started_at?: number | undefined;
2289
+ research_context?: any;
2290
+ source_urls?: string[] | undefined;
2291
+ research_sources?: any[] | undefined;
2292
+ optional_params?: any;
2293
+ } | undefined;
2294
+ } | undefined;
2295
+ $lte?: {
2296
+ output_file?: string | undefined;
2297
+ research_costs?: number | undefined;
2298
+ num_sources?: number | undefined;
2299
+ num_images?: number | undefined;
2300
+ duration_seconds?: number | undefined;
2301
+ completed_at?: string | undefined;
2302
+ status?: string | undefined;
2303
+ metadata?: {
2304
+ advisor_id?: string | undefined;
2305
+ query?: string | undefined;
2306
+ report_type?: string | undefined;
2307
+ output_format?: string | undefined;
2308
+ output_dir?: string | undefined;
2309
+ started_at?: number | undefined;
2310
+ research_context?: any;
2311
+ source_urls?: string[] | undefined;
2312
+ research_sources?: any[] | undefined;
2313
+ optional_params?: any;
2314
+ } | undefined;
2315
+ } | undefined;
2316
+ $ne?: {
2317
+ output_file?: string | undefined;
2318
+ research_costs?: number | undefined;
2319
+ num_sources?: number | undefined;
2320
+ num_images?: number | undefined;
2321
+ duration_seconds?: number | undefined;
2322
+ completed_at?: string | undefined;
2323
+ status?: string | undefined;
2324
+ metadata?: {
2325
+ advisor_id?: string | undefined;
2326
+ query?: string | undefined;
2327
+ report_type?: string | undefined;
2328
+ output_format?: string | undefined;
2329
+ output_dir?: string | undefined;
2330
+ started_at?: number | undefined;
2331
+ research_context?: any;
2332
+ source_urls?: string[] | undefined;
2333
+ research_sources?: any[] | undefined;
2334
+ optional_params?: any;
2335
+ } | undefined;
2336
+ } | undefined;
2337
+ $in: {
2338
+ output_file?: string | undefined;
2339
+ research_costs?: number | undefined;
2340
+ num_sources?: number | undefined;
2341
+ num_images?: number | undefined;
2342
+ duration_seconds?: number | undefined;
2343
+ completed_at?: string | undefined;
2344
+ status?: string | undefined;
2345
+ metadata?: {
2346
+ advisor_id?: string | undefined;
2347
+ query?: string | undefined;
2348
+ report_type?: string | undefined;
2349
+ output_format?: string | undefined;
2350
+ output_dir?: string | undefined;
2351
+ started_at?: number | undefined;
2352
+ research_context?: any;
2353
+ source_urls?: string[] | undefined;
2354
+ research_sources?: any[] | undefined;
2355
+ optional_params?: any;
2356
+ } | undefined;
2357
+ }[] | {
2358
+ output_file?: string | undefined;
2359
+ research_costs?: number | undefined;
2360
+ num_sources?: number | undefined;
2361
+ num_images?: number | undefined;
2362
+ duration_seconds?: number | undefined;
2363
+ completed_at?: string | undefined;
2364
+ status?: string | undefined;
2365
+ metadata?: {
2366
+ advisor_id?: string | undefined;
2367
+ query?: string | undefined;
2368
+ report_type?: string | undefined;
2369
+ output_format?: string | undefined;
2370
+ output_dir?: string | undefined;
2371
+ started_at?: number | undefined;
2372
+ research_context?: any;
2373
+ source_urls?: string[] | undefined;
2374
+ research_sources?: any[] | undefined;
2375
+ optional_params?: any;
2376
+ } | undefined;
2377
+ };
2378
+ $nin: {
2379
+ output_file?: string | undefined;
2380
+ research_costs?: number | undefined;
2381
+ num_sources?: number | undefined;
2382
+ num_images?: number | undefined;
2383
+ duration_seconds?: number | undefined;
2384
+ completed_at?: string | undefined;
2385
+ status?: string | undefined;
2386
+ metadata?: {
2387
+ advisor_id?: string | undefined;
2388
+ query?: string | undefined;
2389
+ report_type?: string | undefined;
2390
+ output_format?: string | undefined;
2391
+ output_dir?: string | undefined;
2392
+ started_at?: number | undefined;
2393
+ research_context?: any;
2394
+ source_urls?: string[] | undefined;
2395
+ research_sources?: any[] | undefined;
2396
+ optional_params?: any;
2397
+ } | undefined;
2398
+ }[] | {
2399
+ output_file?: string | undefined;
2400
+ research_costs?: number | undefined;
2401
+ num_sources?: number | undefined;
2402
+ num_images?: number | undefined;
2403
+ duration_seconds?: number | undefined;
2404
+ completed_at?: string | undefined;
2405
+ status?: string | undefined;
2406
+ metadata?: {
2407
+ advisor_id?: string | undefined;
2408
+ query?: string | undefined;
2409
+ report_type?: string | undefined;
2410
+ output_format?: string | undefined;
2411
+ output_dir?: string | undefined;
2412
+ started_at?: number | undefined;
2413
+ research_context?: any;
2414
+ source_urls?: string[] | undefined;
2415
+ research_sources?: any[] | undefined;
2416
+ optional_params?: any;
2417
+ } | undefined;
2418
+ };
2419
+ } & {}> | {
2420
+ output_file?: string | undefined;
2421
+ research_costs?: number | undefined;
2422
+ num_sources?: number | undefined;
2423
+ num_images?: number | undefined;
2424
+ duration_seconds?: number | undefined;
2425
+ completed_at?: string | undefined;
2426
+ status?: string | undefined;
2427
+ metadata?: {
2428
+ advisor_id?: string | undefined;
2429
+ query?: string | undefined;
2430
+ report_type?: string | undefined;
2431
+ output_format?: string | undefined;
2432
+ output_dir?: string | undefined;
2433
+ started_at?: number | undefined;
2434
+ research_context?: any;
2435
+ source_urls?: string[] | undefined;
2436
+ research_sources?: any[] | undefined;
2437
+ optional_params?: any;
2438
+ } | undefined;
2439
+ } | undefined;
2440
+ status?: "canceled" | "failed" | "running" | "succeeded" | Partial<{
2441
+ $gt: "canceled" | "failed" | "running" | "succeeded";
2442
+ $gte: "canceled" | "failed" | "running" | "succeeded";
2443
+ $lt: "canceled" | "failed" | "running" | "succeeded";
2444
+ $lte: "canceled" | "failed" | "running" | "succeeded";
2445
+ $ne: "canceled" | "failed" | "running" | "succeeded";
2446
+ $in: "canceled" | "failed" | "running" | "succeeded" | ("canceled" | "failed" | "running" | "succeeded")[];
2447
+ $nin: "canceled" | "failed" | "running" | "succeeded" | ("canceled" | "failed" | "running" | "succeeded")[];
2448
+ } & {}> | undefined;
2449
+ updatedAt?: any;
2450
+ userId?: string | Partial<{
2451
+ $gt?: string | {} | undefined;
2452
+ $gte?: string | {} | undefined;
2453
+ $lt?: string | {} | undefined;
2454
+ $lte?: string | {} | undefined;
2455
+ $ne?: string | {} | undefined;
2456
+ $in: string | (string | {})[] | {};
2457
+ $nin: string | (string | {})[] | {};
2458
+ } & {}> | {} | undefined;
2459
+ }[];
2460
+ }> & {
2461
+ _id?: string | Partial<{
2462
+ $gt: string | {};
2463
+ $gte: string | {};
2464
+ $lt: string | {};
2465
+ $lte: string | {};
2466
+ $ne: string | {};
2467
+ $in: string | (string | {})[] | {};
2468
+ $nin: string | (string | {})[] | {};
2469
+ } & {}> | {} | undefined;
2470
+ createdAt?: any;
2471
+ error?: string | Partial<{
2472
+ $gt?: string | undefined;
2473
+ $gte?: string | undefined;
2474
+ $lt?: string | undefined;
2475
+ $lte?: string | undefined;
2476
+ $ne?: string | undefined;
2477
+ $in: string | string[];
2478
+ $nin: string | string[];
2479
+ } & {}> | undefined;
2480
+ fargateClusterArn?: string | Partial<{
2481
+ $gt?: string | undefined;
2482
+ $gte?: string | undefined;
2483
+ $lt?: string | undefined;
2484
+ $lte?: string | undefined;
2485
+ $ne?: string | undefined;
2486
+ $in: string | string[];
2487
+ $nin: string | string[];
2488
+ } & {}> | undefined;
2489
+ fargateTaskArn?: string | Partial<{
2490
+ $gt?: string | undefined;
2491
+ $gte?: string | undefined;
2492
+ $lt?: string | undefined;
2493
+ $lte?: string | undefined;
2494
+ $ne?: string | undefined;
2495
+ $in: string | string[];
2496
+ $nin: string | string[];
2497
+ } & {}> | undefined;
2498
+ fargateTaskIp?: string | Partial<{
2499
+ $gt?: string | undefined;
2500
+ $gte?: string | undefined;
2501
+ $lt?: string | undefined;
2502
+ $lte?: string | undefined;
2503
+ $ne?: string | undefined;
2504
+ $in: string | string[];
2505
+ $nin: string | string[];
2506
+ } & {}> | undefined;
2507
+ query?: string | Partial<{
2508
+ $gt: string;
2509
+ $gte: string;
2510
+ $lt: string;
2511
+ $lte: string;
2512
+ $ne: string;
2513
+ $in: string | string[];
2514
+ $nin: string | string[];
2515
+ } & {}> | undefined;
2516
+ results?: Partial<{
2517
+ $gt?: {
2518
+ output_file?: string | undefined;
2519
+ research_costs?: number | undefined;
2520
+ num_sources?: number | undefined;
2521
+ num_images?: number | undefined;
2522
+ duration_seconds?: number | undefined;
2523
+ completed_at?: string | undefined;
2524
+ status?: string | undefined;
2525
+ metadata?: {
2526
+ advisor_id?: string | undefined;
2527
+ query?: string | undefined;
2528
+ report_type?: string | undefined;
2529
+ output_format?: string | undefined;
2530
+ output_dir?: string | undefined;
2531
+ started_at?: number | undefined;
2532
+ research_context?: any;
2533
+ source_urls?: string[] | undefined;
2534
+ research_sources?: any[] | undefined;
2535
+ optional_params?: any;
2536
+ } | undefined;
2537
+ } | undefined;
2538
+ $gte?: {
2539
+ output_file?: string | undefined;
2540
+ research_costs?: number | undefined;
2541
+ num_sources?: number | undefined;
2542
+ num_images?: number | undefined;
2543
+ duration_seconds?: number | undefined;
2544
+ completed_at?: string | undefined;
2545
+ status?: string | undefined;
2546
+ metadata?: {
2547
+ advisor_id?: string | undefined;
2548
+ query?: string | undefined;
2549
+ report_type?: string | undefined;
2550
+ output_format?: string | undefined;
2551
+ output_dir?: string | undefined;
2552
+ started_at?: number | undefined;
2553
+ research_context?: any;
2554
+ source_urls?: string[] | undefined;
2555
+ research_sources?: any[] | undefined;
2556
+ optional_params?: any;
2557
+ } | undefined;
2558
+ } | undefined;
2559
+ $lt?: {
2560
+ output_file?: string | undefined;
2561
+ research_costs?: number | undefined;
2562
+ num_sources?: number | undefined;
2563
+ num_images?: number | undefined;
2564
+ duration_seconds?: number | undefined;
2565
+ completed_at?: string | undefined;
2566
+ status?: string | undefined;
2567
+ metadata?: {
2568
+ advisor_id?: string | undefined;
2569
+ query?: string | undefined;
2570
+ report_type?: string | undefined;
2571
+ output_format?: string | undefined;
2572
+ output_dir?: string | undefined;
2573
+ started_at?: number | undefined;
2574
+ research_context?: any;
2575
+ source_urls?: string[] | undefined;
2576
+ research_sources?: any[] | undefined;
2577
+ optional_params?: any;
2578
+ } | undefined;
2579
+ } | undefined;
2580
+ $lte?: {
2581
+ output_file?: string | undefined;
2582
+ research_costs?: number | undefined;
2583
+ num_sources?: number | undefined;
2584
+ num_images?: number | undefined;
2585
+ duration_seconds?: number | undefined;
2586
+ completed_at?: string | undefined;
2587
+ status?: string | undefined;
2588
+ metadata?: {
2589
+ advisor_id?: string | undefined;
2590
+ query?: string | undefined;
2591
+ report_type?: string | undefined;
2592
+ output_format?: string | undefined;
2593
+ output_dir?: string | undefined;
2594
+ started_at?: number | undefined;
2595
+ research_context?: any;
2596
+ source_urls?: string[] | undefined;
2597
+ research_sources?: any[] | undefined;
2598
+ optional_params?: any;
2599
+ } | undefined;
2600
+ } | undefined;
2601
+ $ne?: {
2602
+ output_file?: string | undefined;
2603
+ research_costs?: number | undefined;
2604
+ num_sources?: number | undefined;
2605
+ num_images?: number | undefined;
2606
+ duration_seconds?: number | undefined;
2607
+ completed_at?: string | undefined;
2608
+ status?: string | undefined;
2609
+ metadata?: {
2610
+ advisor_id?: string | undefined;
2611
+ query?: string | undefined;
2612
+ report_type?: string | undefined;
2613
+ output_format?: string | undefined;
2614
+ output_dir?: string | undefined;
2615
+ started_at?: number | undefined;
2616
+ research_context?: any;
2617
+ source_urls?: string[] | undefined;
2618
+ research_sources?: any[] | undefined;
2619
+ optional_params?: any;
2620
+ } | undefined;
2621
+ } | undefined;
2622
+ $in: {
2623
+ output_file?: string | undefined;
2624
+ research_costs?: number | undefined;
2625
+ num_sources?: number | undefined;
2626
+ num_images?: number | undefined;
2627
+ duration_seconds?: number | undefined;
2628
+ completed_at?: string | undefined;
2629
+ status?: string | undefined;
2630
+ metadata?: {
2631
+ advisor_id?: string | undefined;
2632
+ query?: string | undefined;
2633
+ report_type?: string | undefined;
2634
+ output_format?: string | undefined;
2635
+ output_dir?: string | undefined;
2636
+ started_at?: number | undefined;
2637
+ research_context?: any;
2638
+ source_urls?: string[] | undefined;
2639
+ research_sources?: any[] | undefined;
2640
+ optional_params?: any;
2641
+ } | undefined;
2642
+ }[] | {
2643
+ output_file?: string | undefined;
2644
+ research_costs?: number | undefined;
2645
+ num_sources?: number | undefined;
2646
+ num_images?: number | undefined;
2647
+ duration_seconds?: number | undefined;
2648
+ completed_at?: string | undefined;
2649
+ status?: string | undefined;
2650
+ metadata?: {
2651
+ advisor_id?: string | undefined;
2652
+ query?: string | undefined;
2653
+ report_type?: string | undefined;
2654
+ output_format?: string | undefined;
2655
+ output_dir?: string | undefined;
2656
+ started_at?: number | undefined;
2657
+ research_context?: any;
2658
+ source_urls?: string[] | undefined;
2659
+ research_sources?: any[] | undefined;
2660
+ optional_params?: any;
2661
+ } | undefined;
2662
+ };
2663
+ $nin: {
2664
+ output_file?: string | undefined;
2665
+ research_costs?: number | undefined;
2666
+ num_sources?: number | undefined;
2667
+ num_images?: number | undefined;
2668
+ duration_seconds?: number | undefined;
2669
+ completed_at?: string | undefined;
2670
+ status?: string | undefined;
2671
+ metadata?: {
2672
+ advisor_id?: string | undefined;
2673
+ query?: string | undefined;
2674
+ report_type?: string | undefined;
2675
+ output_format?: string | undefined;
2676
+ output_dir?: string | undefined;
2677
+ started_at?: number | undefined;
2678
+ research_context?: any;
2679
+ source_urls?: string[] | undefined;
2680
+ research_sources?: any[] | undefined;
2681
+ optional_params?: any;
2682
+ } | undefined;
2683
+ }[] | {
2684
+ output_file?: string | undefined;
2685
+ research_costs?: number | undefined;
2686
+ num_sources?: number | undefined;
2687
+ num_images?: number | undefined;
2688
+ duration_seconds?: number | undefined;
2689
+ completed_at?: string | undefined;
2690
+ status?: string | undefined;
2691
+ metadata?: {
2692
+ advisor_id?: string | undefined;
2693
+ query?: string | undefined;
2694
+ report_type?: string | undefined;
2695
+ output_format?: string | undefined;
2696
+ output_dir?: string | undefined;
2697
+ started_at?: number | undefined;
2698
+ research_context?: any;
2699
+ source_urls?: string[] | undefined;
2700
+ research_sources?: any[] | undefined;
2701
+ optional_params?: any;
2702
+ } | undefined;
2703
+ };
2704
+ } & {}> | {
2705
+ output_file?: string | undefined;
2706
+ research_costs?: number | undefined;
2707
+ num_sources?: number | undefined;
2708
+ num_images?: number | undefined;
2709
+ duration_seconds?: number | undefined;
2710
+ completed_at?: string | undefined;
2711
+ status?: string | undefined;
2712
+ metadata?: {
2713
+ advisor_id?: string | undefined;
2714
+ query?: string | undefined;
2715
+ report_type?: string | undefined;
2716
+ output_format?: string | undefined;
2717
+ output_dir?: string | undefined;
2718
+ started_at?: number | undefined;
2719
+ research_context?: any;
2720
+ source_urls?: string[] | undefined;
2721
+ research_sources?: any[] | undefined;
2722
+ optional_params?: any;
2723
+ } | undefined;
2724
+ } | undefined;
2725
+ status?: "canceled" | "failed" | "running" | "succeeded" | Partial<{
2726
+ $gt: "canceled" | "failed" | "running" | "succeeded";
2727
+ $gte: "canceled" | "failed" | "running" | "succeeded";
2728
+ $lt: "canceled" | "failed" | "running" | "succeeded";
2729
+ $lte: "canceled" | "failed" | "running" | "succeeded";
2730
+ $ne: "canceled" | "failed" | "running" | "succeeded";
2731
+ $in: "canceled" | "failed" | "running" | "succeeded" | ("canceled" | "failed" | "running" | "succeeded")[];
2732
+ $nin: "canceled" | "failed" | "running" | "succeeded" | ("canceled" | "failed" | "running" | "succeeded")[];
2733
+ } & {}> | undefined;
2734
+ updatedAt?: any;
2735
+ userId?: string | Partial<{
2736
+ $gt?: string | {} | undefined;
2737
+ $gte?: string | {} | undefined;
2738
+ $lt?: string | {} | undefined;
2739
+ $lte?: string | {} | undefined;
2740
+ $ne?: string | {} | undefined;
2741
+ $in: string | (string | {})[] | {};
2742
+ $nin: string | (string | {})[] | {};
2743
+ } & {}> | {} | undefined;
2744
+ } & {}, HookContext<AdvisorService<import("./advisor.class").AdvisorParams>>>;