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