@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,1229 @@
1
+ import type { Static } from '@feathersjs/typebox';
2
+ import type { HookContext } from '../../../declarations';
3
+ import type { AutotuneStudiesService } from './studies.class';
4
+ export declare const autotuneStudySchema: import("@feathersjs/typebox").TObject<{
5
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
+ name: import("@feathersjs/typebox").TString<string>;
7
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
8
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TNull]>>;
9
+ active: import("@feathersjs/typebox").TBoolean;
10
+ searchSpaceVersion: import("@feathersjs/typebox").TNumber;
11
+ searchSpace: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
12
+ presetTemplate: import("@feathersjs/typebox").TAny;
13
+ optunaStorageUrl: import("@feathersjs/typebox").TString<string>;
14
+ promotionMargin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
15
+ championPresetId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
16
+ championScore: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
17
+ championPromotedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
18
+ bestPresetId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
19
+ bestScore: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
20
+ trialsCount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
21
+ continuous: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
22
+ maxLoops: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
23
+ loopsCompleted: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
24
+ loopBatchSize: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
25
+ concurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
26
+ infinite: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
27
+ exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
28
+ pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
29
+ corrPairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
30
+ lookbackDays: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
31
+ trainTimerange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
32
+ holdoutTimerange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
33
+ holdoutDays: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
34
+ runTarget: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"auto">, import("@feathersjs/typebox").TLiteral<"docker">, import("@feathersjs/typebox").TLiteral<"nomad">]>>;
35
+ datacenters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
36
+ createdAt: import("@feathersjs/typebox").TAny;
37
+ updatedAt: import("@feathersjs/typebox").TAny;
38
+ }>;
39
+ export type AutotuneStudy = Static<typeof autotuneStudySchema>;
40
+ export declare const autotuneStudyValidator: import("@feathersjs/schema").Validator<any, any>;
41
+ export declare const autotuneStudyResolver: import("@feathersjs/schema").Resolver<{
42
+ _id: string | {};
43
+ name: string;
44
+ description?: string | undefined;
45
+ userId?: string | {} | null | undefined;
46
+ active: boolean;
47
+ searchSpaceVersion: number;
48
+ searchSpace: any[];
49
+ presetTemplate: any;
50
+ optunaStorageUrl: string;
51
+ promotionMargin?: number | undefined;
52
+ championPresetId?: string | {} | undefined;
53
+ championScore?: number | undefined;
54
+ championPromotedAt?: any;
55
+ bestPresetId?: string | {} | undefined;
56
+ bestScore?: number | undefined;
57
+ trialsCount?: number | undefined;
58
+ continuous?: boolean | undefined;
59
+ maxLoops?: number | undefined;
60
+ loopsCompleted?: number | undefined;
61
+ loopBatchSize?: number | undefined;
62
+ concurrency?: number | undefined;
63
+ infinite?: boolean | undefined;
64
+ exchange?: string | undefined;
65
+ pairs?: string[] | undefined;
66
+ corrPairs?: string[] | undefined;
67
+ lookbackDays?: number | undefined;
68
+ trainTimerange?: string | undefined;
69
+ holdoutTimerange?: string | undefined;
70
+ holdoutDays?: number | undefined;
71
+ runTarget?: "auto" | "docker" | "nomad" | undefined;
72
+ datacenters?: string[] | undefined;
73
+ createdAt: any;
74
+ updatedAt: any;
75
+ }, HookContext<AutotuneStudiesService<import("./studies.class").AutotuneStudiesParams>>>;
76
+ export declare const autotuneStudyExternalResolver: import("@feathersjs/schema").Resolver<{
77
+ _id: string | {};
78
+ name: string;
79
+ description?: string | undefined;
80
+ userId?: string | {} | null | undefined;
81
+ active: boolean;
82
+ searchSpaceVersion: number;
83
+ searchSpace: any[];
84
+ presetTemplate: any;
85
+ optunaStorageUrl: string;
86
+ promotionMargin?: number | undefined;
87
+ championPresetId?: string | {} | undefined;
88
+ championScore?: number | undefined;
89
+ championPromotedAt?: any;
90
+ bestPresetId?: string | {} | undefined;
91
+ bestScore?: number | undefined;
92
+ trialsCount?: number | undefined;
93
+ continuous?: boolean | undefined;
94
+ maxLoops?: number | undefined;
95
+ loopsCompleted?: number | undefined;
96
+ loopBatchSize?: number | undefined;
97
+ concurrency?: number | undefined;
98
+ infinite?: boolean | undefined;
99
+ exchange?: string | undefined;
100
+ pairs?: string[] | undefined;
101
+ corrPairs?: string[] | undefined;
102
+ lookbackDays?: number | undefined;
103
+ trainTimerange?: string | undefined;
104
+ holdoutTimerange?: string | undefined;
105
+ holdoutDays?: number | undefined;
106
+ runTarget?: "auto" | "docker" | "nomad" | undefined;
107
+ datacenters?: string[] | undefined;
108
+ createdAt: any;
109
+ updatedAt: any;
110
+ }, HookContext<AutotuneStudiesService<import("./studies.class").AutotuneStudiesParams>>>;
111
+ export declare const autotuneStudyDataSchema: import("@feathersjs/typebox").TObject<{
112
+ name: import("@feathersjs/typebox").TString<string>;
113
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
114
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
115
+ active: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
116
+ searchSpaceVersion: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
117
+ searchSpace: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
118
+ presetTemplate: import("@feathersjs/typebox").TAny;
119
+ optunaStorageUrl: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
120
+ promotionMargin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
121
+ continuous: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
122
+ maxLoops: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
123
+ loopBatchSize: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
124
+ concurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
125
+ infinite: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
126
+ exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
127
+ pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
128
+ corrPairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
129
+ lookbackDays: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
130
+ holdoutDays: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
131
+ runTarget: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"auto">, import("@feathersjs/typebox").TLiteral<"docker">, import("@feathersjs/typebox").TLiteral<"nomad">]>>;
132
+ datacenters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
133
+ }>;
134
+ export type AutotuneStudyData = Static<typeof autotuneStudyDataSchema>;
135
+ export declare const autotuneStudyDataValidator: import("@feathersjs/schema").Validator<any, any>;
136
+ export declare const autotuneStudyDataResolver: import("@feathersjs/schema").Resolver<{
137
+ _id: string | {};
138
+ name: string;
139
+ description?: string | undefined;
140
+ userId?: string | {} | null | undefined;
141
+ active: boolean;
142
+ searchSpaceVersion: number;
143
+ searchSpace: any[];
144
+ presetTemplate: any;
145
+ optunaStorageUrl: string;
146
+ promotionMargin?: number | undefined;
147
+ championPresetId?: string | {} | undefined;
148
+ championScore?: number | undefined;
149
+ championPromotedAt?: any;
150
+ bestPresetId?: string | {} | undefined;
151
+ bestScore?: number | undefined;
152
+ trialsCount?: number | undefined;
153
+ continuous?: boolean | undefined;
154
+ maxLoops?: number | undefined;
155
+ loopsCompleted?: number | undefined;
156
+ loopBatchSize?: number | undefined;
157
+ concurrency?: number | undefined;
158
+ infinite?: boolean | undefined;
159
+ exchange?: string | undefined;
160
+ pairs?: string[] | undefined;
161
+ corrPairs?: string[] | undefined;
162
+ lookbackDays?: number | undefined;
163
+ trainTimerange?: string | undefined;
164
+ holdoutTimerange?: string | undefined;
165
+ holdoutDays?: number | undefined;
166
+ runTarget?: "auto" | "docker" | "nomad" | undefined;
167
+ datacenters?: string[] | undefined;
168
+ createdAt: any;
169
+ updatedAt: any;
170
+ }, HookContext<AutotuneStudiesService<import("./studies.class").AutotuneStudiesParams>>>;
171
+ export declare const autotuneStudyPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
172
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
173
+ name: import("@feathersjs/typebox").TString<string>;
174
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
175
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TNull]>>;
176
+ active: import("@feathersjs/typebox").TBoolean;
177
+ searchSpaceVersion: import("@feathersjs/typebox").TNumber;
178
+ searchSpace: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
179
+ presetTemplate: import("@feathersjs/typebox").TAny;
180
+ optunaStorageUrl: import("@feathersjs/typebox").TString<string>;
181
+ promotionMargin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
182
+ championPresetId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
183
+ championScore: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
184
+ championPromotedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
185
+ bestPresetId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
186
+ bestScore: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
187
+ trialsCount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
188
+ continuous: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
189
+ maxLoops: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
190
+ loopsCompleted: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
191
+ loopBatchSize: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
192
+ concurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
193
+ infinite: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
194
+ exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
195
+ pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
196
+ corrPairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
197
+ lookbackDays: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
198
+ trainTimerange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
199
+ holdoutTimerange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
200
+ holdoutDays: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
201
+ runTarget: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"auto">, import("@feathersjs/typebox").TLiteral<"docker">, import("@feathersjs/typebox").TLiteral<"nomad">]>>;
202
+ datacenters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
203
+ createdAt: import("@feathersjs/typebox").TAny;
204
+ updatedAt: import("@feathersjs/typebox").TAny;
205
+ }>>;
206
+ export type AutotuneStudyPatch = Static<typeof autotuneStudyPatchSchema>;
207
+ export declare const autotuneStudyPatchValidator: import("@feathersjs/schema").Validator<any, any>;
208
+ export declare const autotuneStudyPatchResolver: import("@feathersjs/schema").Resolver<{
209
+ _id: string | {};
210
+ name: string;
211
+ description?: string | undefined;
212
+ userId?: string | {} | null | undefined;
213
+ active: boolean;
214
+ searchSpaceVersion: number;
215
+ searchSpace: any[];
216
+ presetTemplate: any;
217
+ optunaStorageUrl: string;
218
+ promotionMargin?: number | undefined;
219
+ championPresetId?: string | {} | undefined;
220
+ championScore?: number | undefined;
221
+ championPromotedAt?: any;
222
+ bestPresetId?: string | {} | undefined;
223
+ bestScore?: number | undefined;
224
+ trialsCount?: number | undefined;
225
+ continuous?: boolean | undefined;
226
+ maxLoops?: number | undefined;
227
+ loopsCompleted?: number | undefined;
228
+ loopBatchSize?: number | undefined;
229
+ concurrency?: number | undefined;
230
+ infinite?: boolean | undefined;
231
+ exchange?: string | undefined;
232
+ pairs?: string[] | undefined;
233
+ corrPairs?: string[] | undefined;
234
+ lookbackDays?: number | undefined;
235
+ trainTimerange?: string | undefined;
236
+ holdoutTimerange?: string | undefined;
237
+ holdoutDays?: number | undefined;
238
+ runTarget?: "auto" | "docker" | "nomad" | undefined;
239
+ datacenters?: string[] | undefined;
240
+ createdAt: any;
241
+ updatedAt: any;
242
+ }, HookContext<AutotuneStudiesService<import("./studies.class").AutotuneStudiesParams>>>;
243
+ export declare const autotuneStudyQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
244
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
245
+ name: import("@feathersjs/typebox").TString<string>;
246
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
247
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TNull]>>;
248
+ active: import("@feathersjs/typebox").TBoolean;
249
+ searchSpaceVersion: import("@feathersjs/typebox").TNumber;
250
+ searchSpace: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
251
+ presetTemplate: import("@feathersjs/typebox").TAny;
252
+ optunaStorageUrl: import("@feathersjs/typebox").TString<string>;
253
+ promotionMargin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
254
+ championPresetId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
255
+ championScore: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
256
+ championPromotedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
257
+ bestPresetId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
258
+ bestScore: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
259
+ trialsCount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
260
+ continuous: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
261
+ maxLoops: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
262
+ loopsCompleted: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
263
+ loopBatchSize: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
264
+ concurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
265
+ infinite: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
266
+ exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
267
+ pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
268
+ corrPairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
269
+ lookbackDays: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
270
+ trainTimerange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
271
+ holdoutTimerange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
272
+ holdoutDays: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
273
+ runTarget: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"auto">, import("@feathersjs/typebox").TLiteral<"docker">, import("@feathersjs/typebox").TLiteral<"nomad">]>>;
274
+ datacenters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
275
+ createdAt: import("@feathersjs/typebox").TAny;
276
+ updatedAt: import("@feathersjs/typebox").TAny;
277
+ }>, ["_id", "name", "active", "searchSpaceVersion", "championPresetId", "championScore", "bestPresetId", "bestScore", "continuous", "infinite", "createdAt", "updatedAt"]>;
278
+ export declare const autotuneStudyQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
279
+ $limit: import("@feathersjs/typebox").TNumber;
280
+ $skip: import("@feathersjs/typebox").TNumber;
281
+ $sort: import("@feathersjs/typebox").TObject<{
282
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
283
+ active: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
284
+ bestPresetId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
285
+ bestScore: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
286
+ championPresetId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
287
+ championScore: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
288
+ continuous: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
289
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
290
+ infinite: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
291
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
292
+ searchSpaceVersion: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
293
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
294
+ }>;
295
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "active" | "bestPresetId" | "bestScore" | "championPresetId" | "championScore" | "continuous" | "createdAt" | "infinite" | "name" | "searchSpaceVersion" | "updatedAt")[]>;
296
+ $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
297
+ _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<{
298
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
299
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
300
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
301
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
302
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
303
+ $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<{}>]>;
304
+ $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<{}>]>;
305
+ }>, import("@feathersjs/typebox").TObject<{
306
+ [key: string]: import("@feathersjs/typebox").TSchema;
307
+ } | undefined>]>>]>>;
308
+ active: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
309
+ $gt: import("@feathersjs/typebox").TBoolean;
310
+ $gte: import("@feathersjs/typebox").TBoolean;
311
+ $lt: import("@feathersjs/typebox").TBoolean;
312
+ $lte: import("@feathersjs/typebox").TBoolean;
313
+ $ne: import("@feathersjs/typebox").TBoolean;
314
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
315
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
316
+ }>, import("@feathersjs/typebox").TObject<{
317
+ [key: string]: import("@feathersjs/typebox").TSchema;
318
+ } | undefined>]>>]>>;
319
+ bestPresetId: 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<{
320
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
321
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
322
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
323
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
324
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
325
+ $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<{}>]>>;
326
+ $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<{}>]>>;
327
+ }>, import("@feathersjs/typebox").TObject<{
328
+ [key: string]: import("@feathersjs/typebox").TSchema;
329
+ } | undefined>]>>]>>;
330
+ bestScore: 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<{
331
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
332
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
333
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
334
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
335
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
336
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
337
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
338
+ }>, import("@feathersjs/typebox").TObject<{
339
+ [key: string]: import("@feathersjs/typebox").TSchema;
340
+ } | undefined>]>>]>>;
341
+ championPresetId: 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<{
342
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
343
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
344
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
345
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
346
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
347
+ $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<{}>]>>;
348
+ $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<{}>]>>;
349
+ }>, import("@feathersjs/typebox").TObject<{
350
+ [key: string]: import("@feathersjs/typebox").TSchema;
351
+ } | undefined>]>>]>>;
352
+ championScore: 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<{
353
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
354
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
355
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
356
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
357
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
358
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
359
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
360
+ }>, import("@feathersjs/typebox").TObject<{
361
+ [key: string]: import("@feathersjs/typebox").TSchema;
362
+ } | undefined>]>>]>>;
363
+ continuous: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
364
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
365
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
366
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
367
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
368
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
369
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
370
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
371
+ }>, import("@feathersjs/typebox").TObject<{
372
+ [key: string]: import("@feathersjs/typebox").TSchema;
373
+ } | undefined>]>>]>>;
374
+ 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<{
375
+ $gt: import("@feathersjs/typebox").TAny;
376
+ $gte: import("@feathersjs/typebox").TAny;
377
+ $lt: import("@feathersjs/typebox").TAny;
378
+ $lte: import("@feathersjs/typebox").TAny;
379
+ $ne: import("@feathersjs/typebox").TAny;
380
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
381
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
382
+ }>, import("@feathersjs/typebox").TObject<{
383
+ [key: string]: import("@feathersjs/typebox").TSchema;
384
+ } | undefined>]>>]>>;
385
+ infinite: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
386
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
387
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
388
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
389
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
390
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
391
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
392
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
393
+ }>, import("@feathersjs/typebox").TObject<{
394
+ [key: string]: import("@feathersjs/typebox").TSchema;
395
+ } | undefined>]>>]>>;
396
+ 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<{
397
+ $gt: import("@feathersjs/typebox").TString<string>;
398
+ $gte: import("@feathersjs/typebox").TString<string>;
399
+ $lt: import("@feathersjs/typebox").TString<string>;
400
+ $lte: import("@feathersjs/typebox").TString<string>;
401
+ $ne: import("@feathersjs/typebox").TString<string>;
402
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
403
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
404
+ }>, import("@feathersjs/typebox").TObject<{
405
+ [key: string]: import("@feathersjs/typebox").TSchema;
406
+ } | undefined>]>>]>>;
407
+ searchSpaceVersion: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
408
+ $gt: import("@feathersjs/typebox").TNumber;
409
+ $gte: import("@feathersjs/typebox").TNumber;
410
+ $lt: import("@feathersjs/typebox").TNumber;
411
+ $lte: import("@feathersjs/typebox").TNumber;
412
+ $ne: import("@feathersjs/typebox").TNumber;
413
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
414
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
415
+ }>, import("@feathersjs/typebox").TObject<{
416
+ [key: string]: import("@feathersjs/typebox").TSchema;
417
+ } | undefined>]>>]>>;
418
+ 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<{
419
+ $gt: import("@feathersjs/typebox").TAny;
420
+ $gte: import("@feathersjs/typebox").TAny;
421
+ $lt: import("@feathersjs/typebox").TAny;
422
+ $lte: import("@feathersjs/typebox").TAny;
423
+ $ne: import("@feathersjs/typebox").TAny;
424
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
425
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
426
+ }>, import("@feathersjs/typebox").TObject<{
427
+ [key: string]: import("@feathersjs/typebox").TSchema;
428
+ } | undefined>]>>]>>;
429
+ }>>, import("@feathersjs/typebox").TObject<{
430
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
431
+ _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<{
432
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
433
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
434
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
435
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
436
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
437
+ $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<{}>]>;
438
+ $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<{}>]>;
439
+ }>, import("@feathersjs/typebox").TObject<{
440
+ [key: string]: import("@feathersjs/typebox").TSchema;
441
+ } | undefined>]>>]>>;
442
+ active: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
443
+ $gt: import("@feathersjs/typebox").TBoolean;
444
+ $gte: import("@feathersjs/typebox").TBoolean;
445
+ $lt: import("@feathersjs/typebox").TBoolean;
446
+ $lte: import("@feathersjs/typebox").TBoolean;
447
+ $ne: import("@feathersjs/typebox").TBoolean;
448
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
449
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
450
+ }>, import("@feathersjs/typebox").TObject<{
451
+ [key: string]: import("@feathersjs/typebox").TSchema;
452
+ } | undefined>]>>]>>;
453
+ bestPresetId: 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<{
454
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
455
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
456
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
457
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
458
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
459
+ $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<{}>]>>;
460
+ $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<{}>]>>;
461
+ }>, import("@feathersjs/typebox").TObject<{
462
+ [key: string]: import("@feathersjs/typebox").TSchema;
463
+ } | undefined>]>>]>>;
464
+ bestScore: 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<{
465
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
466
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
467
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
468
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
469
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
470
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
471
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
472
+ }>, import("@feathersjs/typebox").TObject<{
473
+ [key: string]: import("@feathersjs/typebox").TSchema;
474
+ } | undefined>]>>]>>;
475
+ championPresetId: 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<{
476
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
477
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
478
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
479
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
480
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
481
+ $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<{}>]>>;
482
+ $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<{}>]>>;
483
+ }>, import("@feathersjs/typebox").TObject<{
484
+ [key: string]: import("@feathersjs/typebox").TSchema;
485
+ } | undefined>]>>]>>;
486
+ championScore: 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<{
487
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
488
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
489
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
490
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
491
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
492
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
493
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
494
+ }>, import("@feathersjs/typebox").TObject<{
495
+ [key: string]: import("@feathersjs/typebox").TSchema;
496
+ } | undefined>]>>]>>;
497
+ continuous: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
498
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
499
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
500
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
501
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
502
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
503
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
504
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
505
+ }>, import("@feathersjs/typebox").TObject<{
506
+ [key: string]: import("@feathersjs/typebox").TSchema;
507
+ } | undefined>]>>]>>;
508
+ 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<{
509
+ $gt: import("@feathersjs/typebox").TAny;
510
+ $gte: import("@feathersjs/typebox").TAny;
511
+ $lt: import("@feathersjs/typebox").TAny;
512
+ $lte: import("@feathersjs/typebox").TAny;
513
+ $ne: import("@feathersjs/typebox").TAny;
514
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
515
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
516
+ }>, import("@feathersjs/typebox").TObject<{
517
+ [key: string]: import("@feathersjs/typebox").TSchema;
518
+ } | undefined>]>>]>>;
519
+ infinite: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
520
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
521
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
522
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
523
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
524
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
525
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
526
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
527
+ }>, import("@feathersjs/typebox").TObject<{
528
+ [key: string]: import("@feathersjs/typebox").TSchema;
529
+ } | undefined>]>>]>>;
530
+ 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<{
531
+ $gt: import("@feathersjs/typebox").TString<string>;
532
+ $gte: import("@feathersjs/typebox").TString<string>;
533
+ $lt: import("@feathersjs/typebox").TString<string>;
534
+ $lte: import("@feathersjs/typebox").TString<string>;
535
+ $ne: import("@feathersjs/typebox").TString<string>;
536
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
537
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
538
+ }>, import("@feathersjs/typebox").TObject<{
539
+ [key: string]: import("@feathersjs/typebox").TSchema;
540
+ } | undefined>]>>]>>;
541
+ searchSpaceVersion: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
542
+ $gt: import("@feathersjs/typebox").TNumber;
543
+ $gte: import("@feathersjs/typebox").TNumber;
544
+ $lt: import("@feathersjs/typebox").TNumber;
545
+ $lte: import("@feathersjs/typebox").TNumber;
546
+ $ne: import("@feathersjs/typebox").TNumber;
547
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
548
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
549
+ }>, import("@feathersjs/typebox").TObject<{
550
+ [key: string]: import("@feathersjs/typebox").TSchema;
551
+ } | undefined>]>>]>>;
552
+ 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<{
553
+ $gt: import("@feathersjs/typebox").TAny;
554
+ $gte: import("@feathersjs/typebox").TAny;
555
+ $lt: import("@feathersjs/typebox").TAny;
556
+ $lte: import("@feathersjs/typebox").TAny;
557
+ $ne: import("@feathersjs/typebox").TAny;
558
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
559
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
560
+ }>, import("@feathersjs/typebox").TObject<{
561
+ [key: string]: import("@feathersjs/typebox").TSchema;
562
+ } | undefined>]>>]>>;
563
+ }>>>;
564
+ }>]>>;
565
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
566
+ _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<{
567
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
568
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
569
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
570
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
571
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
572
+ $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<{}>]>;
573
+ $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<{}>]>;
574
+ }>, import("@feathersjs/typebox").TObject<{
575
+ [key: string]: import("@feathersjs/typebox").TSchema;
576
+ } | undefined>]>>]>>;
577
+ active: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
578
+ $gt: import("@feathersjs/typebox").TBoolean;
579
+ $gte: import("@feathersjs/typebox").TBoolean;
580
+ $lt: import("@feathersjs/typebox").TBoolean;
581
+ $lte: import("@feathersjs/typebox").TBoolean;
582
+ $ne: import("@feathersjs/typebox").TBoolean;
583
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
584
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
585
+ }>, import("@feathersjs/typebox").TObject<{
586
+ [key: string]: import("@feathersjs/typebox").TSchema;
587
+ } | undefined>]>>]>>;
588
+ bestPresetId: 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<{
589
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
590
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
591
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
592
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
593
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
594
+ $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<{}>]>>;
595
+ $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<{}>]>>;
596
+ }>, import("@feathersjs/typebox").TObject<{
597
+ [key: string]: import("@feathersjs/typebox").TSchema;
598
+ } | undefined>]>>]>>;
599
+ bestScore: 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<{
600
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
601
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
602
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
603
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
604
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
605
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
606
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
607
+ }>, import("@feathersjs/typebox").TObject<{
608
+ [key: string]: import("@feathersjs/typebox").TSchema;
609
+ } | undefined>]>>]>>;
610
+ championPresetId: 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<{
611
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
612
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
613
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
614
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
615
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
616
+ $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<{}>]>>;
617
+ $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<{}>]>>;
618
+ }>, import("@feathersjs/typebox").TObject<{
619
+ [key: string]: import("@feathersjs/typebox").TSchema;
620
+ } | undefined>]>>]>>;
621
+ championScore: 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<{
622
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
623
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
624
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
625
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
626
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
627
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
628
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
629
+ }>, import("@feathersjs/typebox").TObject<{
630
+ [key: string]: import("@feathersjs/typebox").TSchema;
631
+ } | undefined>]>>]>>;
632
+ continuous: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
633
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
634
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
635
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
636
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
637
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
638
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
639
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
640
+ }>, import("@feathersjs/typebox").TObject<{
641
+ [key: string]: import("@feathersjs/typebox").TSchema;
642
+ } | undefined>]>>]>>;
643
+ 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<{
644
+ $gt: import("@feathersjs/typebox").TAny;
645
+ $gte: import("@feathersjs/typebox").TAny;
646
+ $lt: import("@feathersjs/typebox").TAny;
647
+ $lte: import("@feathersjs/typebox").TAny;
648
+ $ne: import("@feathersjs/typebox").TAny;
649
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
650
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
651
+ }>, import("@feathersjs/typebox").TObject<{
652
+ [key: string]: import("@feathersjs/typebox").TSchema;
653
+ } | undefined>]>>]>>;
654
+ infinite: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
655
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
656
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
657
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
658
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
659
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
660
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
661
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
662
+ }>, import("@feathersjs/typebox").TObject<{
663
+ [key: string]: import("@feathersjs/typebox").TSchema;
664
+ } | undefined>]>>]>>;
665
+ 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<{
666
+ $gt: import("@feathersjs/typebox").TString<string>;
667
+ $gte: import("@feathersjs/typebox").TString<string>;
668
+ $lt: import("@feathersjs/typebox").TString<string>;
669
+ $lte: import("@feathersjs/typebox").TString<string>;
670
+ $ne: import("@feathersjs/typebox").TString<string>;
671
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
672
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
673
+ }>, import("@feathersjs/typebox").TObject<{
674
+ [key: string]: import("@feathersjs/typebox").TSchema;
675
+ } | undefined>]>>]>>;
676
+ searchSpaceVersion: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
677
+ $gt: import("@feathersjs/typebox").TNumber;
678
+ $gte: import("@feathersjs/typebox").TNumber;
679
+ $lt: import("@feathersjs/typebox").TNumber;
680
+ $lte: import("@feathersjs/typebox").TNumber;
681
+ $ne: import("@feathersjs/typebox").TNumber;
682
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
683
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
684
+ }>, import("@feathersjs/typebox").TObject<{
685
+ [key: string]: import("@feathersjs/typebox").TSchema;
686
+ } | undefined>]>>]>>;
687
+ 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<{
688
+ $gt: import("@feathersjs/typebox").TAny;
689
+ $gte: import("@feathersjs/typebox").TAny;
690
+ $lt: import("@feathersjs/typebox").TAny;
691
+ $lte: import("@feathersjs/typebox").TAny;
692
+ $ne: import("@feathersjs/typebox").TAny;
693
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
694
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
695
+ }>, import("@feathersjs/typebox").TObject<{
696
+ [key: string]: import("@feathersjs/typebox").TSchema;
697
+ } | undefined>]>>]>>;
698
+ }>>>;
699
+ }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
700
+ _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<{
701
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
702
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
703
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
704
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
705
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
706
+ $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<{}>]>;
707
+ $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<{}>]>;
708
+ }>, import("@feathersjs/typebox").TObject<{
709
+ [key: string]: import("@feathersjs/typebox").TSchema;
710
+ } | undefined>]>>]>>;
711
+ active: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
712
+ $gt: import("@feathersjs/typebox").TBoolean;
713
+ $gte: import("@feathersjs/typebox").TBoolean;
714
+ $lt: import("@feathersjs/typebox").TBoolean;
715
+ $lte: import("@feathersjs/typebox").TBoolean;
716
+ $ne: import("@feathersjs/typebox").TBoolean;
717
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
718
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
719
+ }>, import("@feathersjs/typebox").TObject<{
720
+ [key: string]: import("@feathersjs/typebox").TSchema;
721
+ } | undefined>]>>]>>;
722
+ bestPresetId: 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<{
723
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
724
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
725
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
726
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
727
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
728
+ $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<{}>]>>;
729
+ $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<{}>]>>;
730
+ }>, import("@feathersjs/typebox").TObject<{
731
+ [key: string]: import("@feathersjs/typebox").TSchema;
732
+ } | undefined>]>>]>>;
733
+ bestScore: 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<{
734
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
735
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
736
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
737
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
738
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
739
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
740
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
741
+ }>, import("@feathersjs/typebox").TObject<{
742
+ [key: string]: import("@feathersjs/typebox").TSchema;
743
+ } | undefined>]>>]>>;
744
+ championPresetId: 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<{
745
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
746
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
747
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
748
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
749
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
750
+ $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<{}>]>>;
751
+ $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<{}>]>>;
752
+ }>, import("@feathersjs/typebox").TObject<{
753
+ [key: string]: import("@feathersjs/typebox").TSchema;
754
+ } | undefined>]>>]>>;
755
+ championScore: 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<{
756
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
757
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
758
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
759
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
760
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
761
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
762
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
763
+ }>, import("@feathersjs/typebox").TObject<{
764
+ [key: string]: import("@feathersjs/typebox").TSchema;
765
+ } | undefined>]>>]>>;
766
+ continuous: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
767
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
768
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
769
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
770
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
771
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
772
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
773
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
774
+ }>, import("@feathersjs/typebox").TObject<{
775
+ [key: string]: import("@feathersjs/typebox").TSchema;
776
+ } | undefined>]>>]>>;
777
+ 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<{
778
+ $gt: import("@feathersjs/typebox").TAny;
779
+ $gte: import("@feathersjs/typebox").TAny;
780
+ $lt: import("@feathersjs/typebox").TAny;
781
+ $lte: import("@feathersjs/typebox").TAny;
782
+ $ne: import("@feathersjs/typebox").TAny;
783
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
784
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
785
+ }>, import("@feathersjs/typebox").TObject<{
786
+ [key: string]: import("@feathersjs/typebox").TSchema;
787
+ } | undefined>]>>]>>;
788
+ infinite: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
789
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
790
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
791
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
792
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
793
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
794
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
795
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
796
+ }>, import("@feathersjs/typebox").TObject<{
797
+ [key: string]: import("@feathersjs/typebox").TSchema;
798
+ } | undefined>]>>]>>;
799
+ 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<{
800
+ $gt: import("@feathersjs/typebox").TString<string>;
801
+ $gte: import("@feathersjs/typebox").TString<string>;
802
+ $lt: import("@feathersjs/typebox").TString<string>;
803
+ $lte: import("@feathersjs/typebox").TString<string>;
804
+ $ne: import("@feathersjs/typebox").TString<string>;
805
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
806
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
807
+ }>, import("@feathersjs/typebox").TObject<{
808
+ [key: string]: import("@feathersjs/typebox").TSchema;
809
+ } | undefined>]>>]>>;
810
+ searchSpaceVersion: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
811
+ $gt: import("@feathersjs/typebox").TNumber;
812
+ $gte: import("@feathersjs/typebox").TNumber;
813
+ $lt: import("@feathersjs/typebox").TNumber;
814
+ $lte: import("@feathersjs/typebox").TNumber;
815
+ $ne: import("@feathersjs/typebox").TNumber;
816
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
817
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TNumber;
818
+ }>, import("@feathersjs/typebox").TObject<{
819
+ [key: string]: import("@feathersjs/typebox").TSchema;
820
+ } | undefined>]>>]>>;
821
+ 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<{
822
+ $gt: import("@feathersjs/typebox").TAny;
823
+ $gte: import("@feathersjs/typebox").TAny;
824
+ $lt: import("@feathersjs/typebox").TAny;
825
+ $lte: import("@feathersjs/typebox").TAny;
826
+ $ne: import("@feathersjs/typebox").TAny;
827
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
828
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
829
+ }>, import("@feathersjs/typebox").TObject<{
830
+ [key: string]: import("@feathersjs/typebox").TSchema;
831
+ } | undefined>]>>]>>;
832
+ }>>]>, import("@feathersjs/typebox").TObject<{}>]>;
833
+ export type AutotuneStudyQuery = Static<typeof autotuneStudyQuerySchema>;
834
+ export declare const autotuneStudyQueryValidator: import("@feathersjs/schema").Validator<any, any>;
835
+ export declare const autotuneStudyQueryResolver: import("@feathersjs/schema").Resolver<Partial<{
836
+ $limit: number;
837
+ $skip: number;
838
+ $sort: {
839
+ _id?: number | undefined;
840
+ active?: number | undefined;
841
+ bestPresetId?: number | undefined;
842
+ bestScore?: number | undefined;
843
+ championPresetId?: number | undefined;
844
+ championScore?: number | undefined;
845
+ continuous?: number | undefined;
846
+ createdAt?: number | undefined;
847
+ infinite?: number | undefined;
848
+ name?: number | undefined;
849
+ searchSpaceVersion?: number | undefined;
850
+ updatedAt?: number | undefined;
851
+ };
852
+ $select: ("_id" | "active" | "bestPresetId" | "bestScore" | "championPresetId" | "championScore" | "continuous" | "createdAt" | "infinite" | "name" | "searchSpaceVersion" | "updatedAt")[];
853
+ $and: ({
854
+ _id?: string | Partial<{
855
+ $gt: string | {};
856
+ $gte: string | {};
857
+ $lt: string | {};
858
+ $lte: string | {};
859
+ $ne: string | {};
860
+ $in: string | (string | {})[] | {};
861
+ $nin: string | (string | {})[] | {};
862
+ } & {}> | {} | undefined;
863
+ active?: boolean | Partial<{
864
+ $gt: boolean;
865
+ $gte: boolean;
866
+ $lt: boolean;
867
+ $lte: boolean;
868
+ $ne: boolean;
869
+ $in: boolean | boolean[];
870
+ $nin: boolean | boolean[];
871
+ } & {}> | undefined;
872
+ bestPresetId?: string | Partial<{
873
+ $gt?: string | {} | undefined;
874
+ $gte?: string | {} | undefined;
875
+ $lt?: string | {} | undefined;
876
+ $lte?: string | {} | undefined;
877
+ $ne?: string | {} | undefined;
878
+ $in: string | (string | {})[] | {};
879
+ $nin: string | (string | {})[] | {};
880
+ } & {}> | {} | undefined;
881
+ bestScore?: number | Partial<{
882
+ $gt?: number | undefined;
883
+ $gte?: number | undefined;
884
+ $lt?: number | undefined;
885
+ $lte?: number | undefined;
886
+ $ne?: number | undefined;
887
+ $in: number | number[];
888
+ $nin: number | number[];
889
+ } & {}> | undefined;
890
+ championPresetId?: string | Partial<{
891
+ $gt?: string | {} | undefined;
892
+ $gte?: string | {} | undefined;
893
+ $lt?: string | {} | undefined;
894
+ $lte?: string | {} | undefined;
895
+ $ne?: string | {} | undefined;
896
+ $in: string | (string | {})[] | {};
897
+ $nin: string | (string | {})[] | {};
898
+ } & {}> | {} | undefined;
899
+ championScore?: number | Partial<{
900
+ $gt?: number | undefined;
901
+ $gte?: number | undefined;
902
+ $lt?: number | undefined;
903
+ $lte?: number | undefined;
904
+ $ne?: number | undefined;
905
+ $in: number | number[];
906
+ $nin: number | number[];
907
+ } & {}> | undefined;
908
+ continuous?: boolean | Partial<{
909
+ $gt?: boolean | undefined;
910
+ $gte?: boolean | undefined;
911
+ $lt?: boolean | undefined;
912
+ $lte?: boolean | undefined;
913
+ $ne?: boolean | undefined;
914
+ $in: boolean | boolean[];
915
+ $nin: boolean | boolean[];
916
+ } & {}> | undefined;
917
+ createdAt?: any;
918
+ infinite?: boolean | Partial<{
919
+ $gt?: boolean | undefined;
920
+ $gte?: boolean | undefined;
921
+ $lt?: boolean | undefined;
922
+ $lte?: boolean | undefined;
923
+ $ne?: boolean | undefined;
924
+ $in: boolean | boolean[];
925
+ $nin: boolean | boolean[];
926
+ } & {}> | undefined;
927
+ name?: string | Partial<{
928
+ $gt: string;
929
+ $gte: string;
930
+ $lt: string;
931
+ $lte: string;
932
+ $ne: string;
933
+ $in: string | string[];
934
+ $nin: string | string[];
935
+ } & {}> | undefined;
936
+ searchSpaceVersion?: number | Partial<{
937
+ $gt: number;
938
+ $gte: number;
939
+ $lt: number;
940
+ $lte: number;
941
+ $ne: number;
942
+ $in: number | number[];
943
+ $nin: number | number[];
944
+ } & {}> | undefined;
945
+ updatedAt?: any;
946
+ } | {
947
+ $or: {
948
+ _id?: string | Partial<{
949
+ $gt: string | {};
950
+ $gte: string | {};
951
+ $lt: string | {};
952
+ $lte: string | {};
953
+ $ne: string | {};
954
+ $in: string | (string | {})[] | {};
955
+ $nin: string | (string | {})[] | {};
956
+ } & {}> | {} | undefined;
957
+ active?: boolean | Partial<{
958
+ $gt: boolean;
959
+ $gte: boolean;
960
+ $lt: boolean;
961
+ $lte: boolean;
962
+ $ne: boolean;
963
+ $in: boolean | boolean[];
964
+ $nin: boolean | boolean[];
965
+ } & {}> | undefined;
966
+ bestPresetId?: string | Partial<{
967
+ $gt?: string | {} | undefined;
968
+ $gte?: string | {} | undefined;
969
+ $lt?: string | {} | undefined;
970
+ $lte?: string | {} | undefined;
971
+ $ne?: string | {} | undefined;
972
+ $in: string | (string | {})[] | {};
973
+ $nin: string | (string | {})[] | {};
974
+ } & {}> | {} | undefined;
975
+ bestScore?: number | Partial<{
976
+ $gt?: number | undefined;
977
+ $gte?: number | undefined;
978
+ $lt?: number | undefined;
979
+ $lte?: number | undefined;
980
+ $ne?: number | undefined;
981
+ $in: number | number[];
982
+ $nin: number | number[];
983
+ } & {}> | undefined;
984
+ championPresetId?: string | Partial<{
985
+ $gt?: string | {} | undefined;
986
+ $gte?: string | {} | undefined;
987
+ $lt?: string | {} | undefined;
988
+ $lte?: string | {} | undefined;
989
+ $ne?: string | {} | undefined;
990
+ $in: string | (string | {})[] | {};
991
+ $nin: string | (string | {})[] | {};
992
+ } & {}> | {} | undefined;
993
+ championScore?: number | Partial<{
994
+ $gt?: number | undefined;
995
+ $gte?: number | undefined;
996
+ $lt?: number | undefined;
997
+ $lte?: number | undefined;
998
+ $ne?: number | undefined;
999
+ $in: number | number[];
1000
+ $nin: number | number[];
1001
+ } & {}> | undefined;
1002
+ continuous?: boolean | Partial<{
1003
+ $gt?: boolean | undefined;
1004
+ $gte?: boolean | undefined;
1005
+ $lt?: boolean | undefined;
1006
+ $lte?: boolean | undefined;
1007
+ $ne?: boolean | undefined;
1008
+ $in: boolean | boolean[];
1009
+ $nin: boolean | boolean[];
1010
+ } & {}> | undefined;
1011
+ createdAt?: any;
1012
+ infinite?: boolean | Partial<{
1013
+ $gt?: boolean | undefined;
1014
+ $gte?: boolean | undefined;
1015
+ $lt?: boolean | undefined;
1016
+ $lte?: boolean | undefined;
1017
+ $ne?: boolean | undefined;
1018
+ $in: boolean | boolean[];
1019
+ $nin: boolean | boolean[];
1020
+ } & {}> | undefined;
1021
+ name?: string | Partial<{
1022
+ $gt: string;
1023
+ $gte: string;
1024
+ $lt: string;
1025
+ $lte: string;
1026
+ $ne: string;
1027
+ $in: string | string[];
1028
+ $nin: string | string[];
1029
+ } & {}> | undefined;
1030
+ searchSpaceVersion?: number | Partial<{
1031
+ $gt: number;
1032
+ $gte: number;
1033
+ $lt: number;
1034
+ $lte: number;
1035
+ $ne: number;
1036
+ $in: number | number[];
1037
+ $nin: number | number[];
1038
+ } & {}> | undefined;
1039
+ updatedAt?: any;
1040
+ }[];
1041
+ })[];
1042
+ $or: {
1043
+ _id?: string | Partial<{
1044
+ $gt: string | {};
1045
+ $gte: string | {};
1046
+ $lt: string | {};
1047
+ $lte: string | {};
1048
+ $ne: string | {};
1049
+ $in: string | (string | {})[] | {};
1050
+ $nin: string | (string | {})[] | {};
1051
+ } & {}> | {} | undefined;
1052
+ active?: boolean | Partial<{
1053
+ $gt: boolean;
1054
+ $gte: boolean;
1055
+ $lt: boolean;
1056
+ $lte: boolean;
1057
+ $ne: boolean;
1058
+ $in: boolean | boolean[];
1059
+ $nin: boolean | boolean[];
1060
+ } & {}> | undefined;
1061
+ bestPresetId?: string | Partial<{
1062
+ $gt?: string | {} | undefined;
1063
+ $gte?: string | {} | undefined;
1064
+ $lt?: string | {} | undefined;
1065
+ $lte?: string | {} | undefined;
1066
+ $ne?: string | {} | undefined;
1067
+ $in: string | (string | {})[] | {};
1068
+ $nin: string | (string | {})[] | {};
1069
+ } & {}> | {} | undefined;
1070
+ bestScore?: number | Partial<{
1071
+ $gt?: number | undefined;
1072
+ $gte?: number | undefined;
1073
+ $lt?: number | undefined;
1074
+ $lte?: number | undefined;
1075
+ $ne?: number | undefined;
1076
+ $in: number | number[];
1077
+ $nin: number | number[];
1078
+ } & {}> | undefined;
1079
+ championPresetId?: string | Partial<{
1080
+ $gt?: string | {} | undefined;
1081
+ $gte?: string | {} | undefined;
1082
+ $lt?: string | {} | undefined;
1083
+ $lte?: string | {} | undefined;
1084
+ $ne?: string | {} | undefined;
1085
+ $in: string | (string | {})[] | {};
1086
+ $nin: string | (string | {})[] | {};
1087
+ } & {}> | {} | undefined;
1088
+ championScore?: number | Partial<{
1089
+ $gt?: number | undefined;
1090
+ $gte?: number | undefined;
1091
+ $lt?: number | undefined;
1092
+ $lte?: number | undefined;
1093
+ $ne?: number | undefined;
1094
+ $in: number | number[];
1095
+ $nin: number | number[];
1096
+ } & {}> | undefined;
1097
+ continuous?: boolean | Partial<{
1098
+ $gt?: boolean | undefined;
1099
+ $gte?: boolean | undefined;
1100
+ $lt?: boolean | undefined;
1101
+ $lte?: boolean | undefined;
1102
+ $ne?: boolean | undefined;
1103
+ $in: boolean | boolean[];
1104
+ $nin: boolean | boolean[];
1105
+ } & {}> | undefined;
1106
+ createdAt?: any;
1107
+ infinite?: boolean | Partial<{
1108
+ $gt?: boolean | undefined;
1109
+ $gte?: boolean | undefined;
1110
+ $lt?: boolean | undefined;
1111
+ $lte?: boolean | undefined;
1112
+ $ne?: boolean | undefined;
1113
+ $in: boolean | boolean[];
1114
+ $nin: boolean | boolean[];
1115
+ } & {}> | undefined;
1116
+ name?: string | Partial<{
1117
+ $gt: string;
1118
+ $gte: string;
1119
+ $lt: string;
1120
+ $lte: string;
1121
+ $ne: string;
1122
+ $in: string | string[];
1123
+ $nin: string | string[];
1124
+ } & {}> | undefined;
1125
+ searchSpaceVersion?: number | Partial<{
1126
+ $gt: number;
1127
+ $gte: number;
1128
+ $lt: number;
1129
+ $lte: number;
1130
+ $ne: number;
1131
+ $in: number | number[];
1132
+ $nin: number | number[];
1133
+ } & {}> | undefined;
1134
+ updatedAt?: any;
1135
+ }[];
1136
+ }> & {
1137
+ _id?: string | Partial<{
1138
+ $gt: string | {};
1139
+ $gte: string | {};
1140
+ $lt: string | {};
1141
+ $lte: string | {};
1142
+ $ne: string | {};
1143
+ $in: string | (string | {})[] | {};
1144
+ $nin: string | (string | {})[] | {};
1145
+ } & {}> | {} | undefined;
1146
+ active?: boolean | Partial<{
1147
+ $gt: boolean;
1148
+ $gte: boolean;
1149
+ $lt: boolean;
1150
+ $lte: boolean;
1151
+ $ne: boolean;
1152
+ $in: boolean | boolean[];
1153
+ $nin: boolean | boolean[];
1154
+ } & {}> | undefined;
1155
+ bestPresetId?: string | Partial<{
1156
+ $gt?: string | {} | undefined;
1157
+ $gte?: string | {} | undefined;
1158
+ $lt?: string | {} | undefined;
1159
+ $lte?: string | {} | undefined;
1160
+ $ne?: string | {} | undefined;
1161
+ $in: string | (string | {})[] | {};
1162
+ $nin: string | (string | {})[] | {};
1163
+ } & {}> | {} | undefined;
1164
+ bestScore?: number | Partial<{
1165
+ $gt?: number | undefined;
1166
+ $gte?: number | undefined;
1167
+ $lt?: number | undefined;
1168
+ $lte?: number | undefined;
1169
+ $ne?: number | undefined;
1170
+ $in: number | number[];
1171
+ $nin: number | number[];
1172
+ } & {}> | undefined;
1173
+ championPresetId?: string | Partial<{
1174
+ $gt?: string | {} | undefined;
1175
+ $gte?: string | {} | undefined;
1176
+ $lt?: string | {} | undefined;
1177
+ $lte?: string | {} | undefined;
1178
+ $ne?: string | {} | undefined;
1179
+ $in: string | (string | {})[] | {};
1180
+ $nin: string | (string | {})[] | {};
1181
+ } & {}> | {} | undefined;
1182
+ championScore?: number | Partial<{
1183
+ $gt?: number | undefined;
1184
+ $gte?: number | undefined;
1185
+ $lt?: number | undefined;
1186
+ $lte?: number | undefined;
1187
+ $ne?: number | undefined;
1188
+ $in: number | number[];
1189
+ $nin: number | number[];
1190
+ } & {}> | undefined;
1191
+ continuous?: boolean | Partial<{
1192
+ $gt?: boolean | undefined;
1193
+ $gte?: boolean | undefined;
1194
+ $lt?: boolean | undefined;
1195
+ $lte?: boolean | undefined;
1196
+ $ne?: boolean | undefined;
1197
+ $in: boolean | boolean[];
1198
+ $nin: boolean | boolean[];
1199
+ } & {}> | undefined;
1200
+ createdAt?: any;
1201
+ infinite?: boolean | Partial<{
1202
+ $gt?: boolean | undefined;
1203
+ $gte?: boolean | undefined;
1204
+ $lt?: boolean | undefined;
1205
+ $lte?: boolean | undefined;
1206
+ $ne?: boolean | undefined;
1207
+ $in: boolean | boolean[];
1208
+ $nin: boolean | boolean[];
1209
+ } & {}> | undefined;
1210
+ name?: string | Partial<{
1211
+ $gt: string;
1212
+ $gte: string;
1213
+ $lt: string;
1214
+ $lte: string;
1215
+ $ne: string;
1216
+ $in: string | string[];
1217
+ $nin: string | string[];
1218
+ } & {}> | undefined;
1219
+ searchSpaceVersion?: number | Partial<{
1220
+ $gt: number;
1221
+ $gte: number;
1222
+ $lt: number;
1223
+ $lte: number;
1224
+ $ne: number;
1225
+ $in: number | number[];
1226
+ $nin: number | number[];
1227
+ } & {}> | undefined;
1228
+ updatedAt?: any;
1229
+ } & {}, HookContext<AutotuneStudiesService<import("./studies.class").AutotuneStudiesParams>>>;