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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (617) hide show
  1. package/lib/src/client.d.ts +260 -0
  2. package/lib/src/client.js +165 -23
  3. package/lib/src/services/advisor/advisor.class.d.ts +12 -0
  4. package/lib/src/services/advisor/advisor.d.ts +11 -0
  5. package/lib/src/services/advisor/advisor.hooks.d.ts +9 -0
  6. package/lib/src/services/advisor/advisor.schema.d.ts +2744 -0
  7. package/lib/src/services/advisor/advisor.shared.d.ts +13 -0
  8. package/lib/src/services/advisor/advisor.shared.js +13 -0
  9. package/lib/src/services/advisor/messages/messages.class.d.ts +11 -0
  10. package/lib/src/services/advisor/messages/messages.d.ts +11 -0
  11. package/lib/src/services/advisor/messages/messages.schema.d.ts +575 -0
  12. package/lib/src/services/advisor/messages/messages.shared.d.ts +13 -0
  13. package/lib/src/services/advisor/messages/messages.shared.js +13 -0
  14. package/lib/src/services/affiliates/affiliates.class.d.ts +18 -0
  15. package/lib/src/services/affiliates/affiliates.d.ts +11 -0
  16. package/lib/src/services/affiliates/affiliates.schema.d.ts +579 -0
  17. package/lib/src/services/affiliates/affiliates.shared.d.ts +13 -0
  18. package/lib/src/services/affiliates/affiliates.shared.js +20 -0
  19. package/lib/src/services/affiliates/clicks/clicks.class.d.ts +11 -0
  20. package/lib/src/services/affiliates/clicks/clicks.d.ts +11 -0
  21. package/lib/src/services/affiliates/clicks/clicks.schema.d.ts +507 -0
  22. package/lib/src/services/affiliates/clicks/clicks.shared.d.ts +13 -0
  23. package/lib/src/services/affiliates/clicks/clicks.shared.js +19 -0
  24. package/lib/src/services/affiliates/comissions/comissions.class.d.ts +11 -0
  25. package/lib/src/services/affiliates/comissions/comissions.d.ts +11 -0
  26. package/lib/src/services/affiliates/comissions/comissions.schema.d.ts +841 -0
  27. package/lib/src/services/affiliates/comissions/comissions.shared.d.ts +13 -0
  28. package/lib/src/services/affiliates/comissions/comissions.shared.js +19 -0
  29. package/lib/src/services/affiliates/contracts/contracts.class.d.ts +11 -0
  30. package/lib/src/services/affiliates/contracts/contracts.d.ts +11 -0
  31. package/lib/src/services/affiliates/contracts/contracts.schema.d.ts +667 -0
  32. package/lib/src/services/affiliates/contracts/contracts.shared.d.ts +13 -0
  33. package/lib/src/services/affiliates/contracts/contracts.shared.js +19 -0
  34. package/lib/src/services/affiliates/coupons/coupons.class.d.ts +11 -0
  35. package/lib/src/services/affiliates/coupons/coupons.d.ts +11 -0
  36. package/lib/src/services/affiliates/coupons/coupons.schema.d.ts +523 -0
  37. package/lib/src/services/affiliates/coupons/coupons.shared.d.ts +13 -0
  38. package/lib/src/services/affiliates/coupons/coupons.shared.js +19 -0
  39. package/lib/src/services/affiliates/links/links.class.d.ts +11 -0
  40. package/lib/src/services/affiliates/links/links.d.ts +11 -0
  41. package/lib/src/services/affiliates/links/links.schema.d.ts +515 -0
  42. package/lib/src/services/affiliates/links/links.shared.d.ts +13 -0
  43. package/lib/src/services/affiliates/links/links.shared.js +13 -0
  44. package/lib/src/services/affiliates/payouts/payouts.class.d.ts +11 -0
  45. package/lib/src/services/affiliates/payouts/payouts.d.ts +11 -0
  46. package/lib/src/services/affiliates/payouts/payouts.schema.d.ts +433 -0
  47. package/lib/src/services/affiliates/payouts/payouts.shared.d.ts +13 -0
  48. package/lib/src/services/affiliates/payouts/payouts.shared.js +19 -0
  49. package/lib/src/services/agents/agents.class.d.ts +3 -2
  50. package/lib/src/services/agents/agents.schema.d.ts +2263 -1061
  51. package/lib/src/services/agents/agents.shared.d.ts +1 -1
  52. package/lib/src/services/agents/configure-bedrock-features.hooks.d.ts +2 -0
  53. package/lib/src/services/agents/create-agent-api-key.hooks.d.ts +2 -0
  54. package/lib/src/services/agents/create-bedrock-agent.hooks.d.ts +2 -0
  55. package/lib/src/services/agents/delete-agent-api-key.hooks.d.ts +2 -0
  56. package/lib/src/services/agents/delete-agent-triggers.hooks.d.ts +5 -0
  57. package/lib/src/services/agents/delete-bedrock-agent.hooks.d.ts +2 -0
  58. package/lib/src/services/agents/manage-bedrock-action-groups.hooks.d.ts +2 -0
  59. package/lib/src/services/agents/prepare/agents/backtest-analyst.d.ts +2 -0
  60. package/lib/src/services/agents/prepare/agents/financial-manager.d.ts +16 -0
  61. package/lib/src/services/agents/prepare/agents/hyperopt-analyst.d.ts +2 -0
  62. package/lib/src/services/agents/prepare/agents/index.d.ts +13 -0
  63. package/lib/src/services/agents/prepare/agents/risk-critic.d.ts +2 -0
  64. package/lib/src/services/agents/prepare/agents/strategy-researcher.d.ts +2 -0
  65. package/lib/src/services/agents/prepare/prepare.schema.d.ts +24 -24
  66. package/lib/src/services/agents/prepare/prepare.shared.d.ts +1 -1
  67. package/lib/src/services/agents/refresh-bedrock-agent-status.hooks.d.ts +2 -0
  68. package/lib/src/services/agents/sessions/conversations/conversations.class.d.ts +3 -2
  69. package/lib/src/services/agents/sessions/conversations/conversations.hooks.d.ts +11 -0
  70. package/lib/src/services/agents/sessions/conversations/conversations.schema.d.ts +833 -463
  71. package/lib/src/services/agents/sessions/conversations/conversations.shared.d.ts +1 -1
  72. package/lib/src/services/agents/sessions/conversations/invoke-agent-provider.hooks.d.ts +2 -0
  73. package/lib/src/services/agents/sessions/conversations/invoke-bedrock-agent.hooks.d.ts +2 -0
  74. package/lib/src/services/agents/sessions/conversations/set-conversation-timestamps.hooks.d.ts +0 -0
  75. package/lib/src/services/agents/sessions/create-bedrock-session.hooks.d.ts +2 -0
  76. package/lib/src/services/agents/sessions/delete-bedrock-session.hooks.d.ts +2 -0
  77. package/lib/src/services/agents/sessions/sessions.class.d.ts +3 -2
  78. package/lib/src/services/agents/sessions/sessions.hooks.d.ts +11 -0
  79. package/lib/src/services/agents/sessions/sessions.schema.d.ts +450 -362
  80. package/lib/src/services/agents/sessions/sessions.shared.d.ts +1 -1
  81. package/lib/src/services/agents/sessions/sync-bedrock-sessions.hooks.d.ts +2 -0
  82. package/lib/src/services/agents/sessions/update-bedrock-session.hooks.d.ts +2 -0
  83. package/lib/src/services/agents/update-bedrock-agent.hooks.d.ts +2 -0
  84. package/lib/src/services/agents/update-trigger-rules-with-agent-info.hooks.d.ts +5 -0
  85. package/lib/src/services/agents/validate-agent-actions.hooks.d.ts +3 -0
  86. package/lib/src/services/autotune/apply-params.d.ts +44 -0
  87. package/lib/src/services/autotune/callback.d.ts +2 -0
  88. package/lib/src/services/autotune/compute/compute.d.ts +40 -0
  89. package/lib/src/services/autotune/optuna-bridge.d.ts +10 -0
  90. package/lib/src/services/autotune/score.d.ts +37 -0
  91. package/lib/src/services/autotune/storage.d.ts +6 -0
  92. package/lib/src/services/autotune/studies/studies.class.d.ts +12 -0
  93. package/lib/src/services/autotune/studies/studies.d.ts +12 -0
  94. package/lib/src/services/autotune/studies/studies.schema.d.ts +1229 -0
  95. package/lib/src/services/autotune/studies/studies.shared.d.ts +13 -0
  96. package/lib/src/services/autotune/studies/studies.shared.js +13 -0
  97. package/lib/src/services/autotune/trials/trials.class.d.ts +12 -0
  98. package/lib/src/services/autotune/trials/trials.d.ts +12 -0
  99. package/lib/src/services/autotune/trials/trials.schema.d.ts +790 -0
  100. package/lib/src/services/autotune/trials/trials.shared.d.ts +13 -0
  101. package/lib/src/services/autotune/trials/trials.shared.js +13 -0
  102. package/lib/src/services/autotune/usage/usage.class.d.ts +11 -0
  103. package/lib/src/services/autotune/usage/usage.d.ts +11 -0
  104. package/lib/src/services/autotune/usage/usage.schema.d.ts +1407 -0
  105. package/lib/src/services/autotune/usage/usage.shared.d.ts +13 -0
  106. package/lib/src/services/autotune/usage/usage.shared.js +13 -0
  107. package/lib/src/services/blog/actions/actions.class.d.ts +29 -0
  108. package/lib/src/services/blog/actions/actions.d.ts +10 -0
  109. package/lib/src/services/blog/actions/actions.shared.d.ts +13 -0
  110. package/lib/src/services/blog/actions/actions.shared.js +13 -0
  111. package/lib/src/services/blog/calendar/calendar.class.d.ts +11 -0
  112. package/lib/src/services/blog/calendar/calendar.d.ts +11 -0
  113. package/lib/src/services/blog/calendar/calendar.schema.d.ts +333 -0
  114. package/lib/src/services/blog/calendar/calendar.shared.d.ts +13 -0
  115. package/lib/src/services/blog/calendar/calendar.shared.js +13 -0
  116. package/lib/src/services/blog/integrations/integrations.class.d.ts +11 -0
  117. package/lib/src/services/blog/integrations/integrations.d.ts +11 -0
  118. package/lib/src/services/blog/integrations/integrations.schema.d.ts +391 -0
  119. package/lib/src/services/blog/integrations/integrations.shared.d.ts +13 -0
  120. package/lib/src/services/blog/integrations/integrations.shared.js +19 -0
  121. package/lib/src/services/blog/posts/posts.class.d.ts +11 -0
  122. package/lib/src/services/blog/posts/posts.d.ts +11 -0
  123. package/lib/src/services/blog/posts/posts.schema.d.ts +1295 -0
  124. package/lib/src/services/blog/posts/posts.shared.d.ts +13 -0
  125. package/lib/src/services/blog/posts/posts.shared.js +13 -0
  126. package/lib/src/services/blog/queries/queries.class.d.ts +11 -0
  127. package/lib/src/services/blog/queries/queries.d.ts +11 -0
  128. package/lib/src/services/blog/queries/queries.schema.d.ts +1187 -0
  129. package/lib/src/services/blog/queries/queries.shared.d.ts +13 -0
  130. package/lib/src/services/blog/queries/queries.shared.js +13 -0
  131. package/lib/src/services/blog/sitemaps/pages/pages.class.d.ts +11 -0
  132. package/lib/src/services/blog/sitemaps/pages/pages.d.ts +11 -0
  133. package/lib/src/services/blog/sitemaps/pages/pages.schema.d.ts +871 -0
  134. package/lib/src/services/blog/sitemaps/pages/pages.shared.d.ts +13 -0
  135. package/lib/src/services/blog/sitemaps/pages/pages.shared.js +13 -0
  136. package/lib/src/services/blog/sitemaps/sitemaps.class.d.ts +11 -0
  137. package/lib/src/services/blog/sitemaps/sitemaps.d.ts +11 -0
  138. package/lib/src/services/blog/sitemaps/sitemaps.schema.d.ts +770 -0
  139. package/lib/src/services/blog/sitemaps/sitemaps.shared.d.ts +13 -0
  140. package/lib/src/services/blog/sitemaps/sitemaps.shared.js +13 -0
  141. package/lib/src/services/blog/suggestions/suggestions.class.d.ts +11 -0
  142. package/lib/src/services/blog/suggestions/suggestions.d.ts +11 -0
  143. package/lib/src/services/blog/suggestions/suggestions.schema.d.ts +963 -0
  144. package/lib/src/services/blog/suggestions/suggestions.shared.d.ts +13 -0
  145. package/lib/src/services/blog/suggestions/suggestions.shared.js +13 -0
  146. package/lib/src/services/changelog/changelog.class.d.ts +34 -0
  147. package/lib/src/services/changelog/changelog.d.ts +11 -0
  148. package/lib/src/services/changelog/changelog.helper.d.ts +50 -0
  149. package/lib/src/services/changelog/changelog.schema.d.ts +456 -0
  150. package/lib/src/services/changelog/changelog.shared.d.ts +13 -0
  151. package/lib/src/services/changelog/changelog.shared.js +13 -0
  152. package/lib/src/services/changelog/hooks/parse-from-file.d.ts +8 -0
  153. package/lib/src/services/config/config.class.d.ts +2 -2
  154. package/lib/src/services/config/config.shared.d.ts +1 -1
  155. package/lib/src/services/copilot/concerns/concerns.class.d.ts +12 -0
  156. package/lib/src/services/copilot/concerns/concerns.d.ts +11 -0
  157. package/lib/src/services/copilot/concerns/concerns.schema.d.ts +727 -0
  158. package/lib/src/services/copilot/concerns/concerns.shared.d.ts +13 -0
  159. package/lib/src/services/copilot/concerns/concerns.shared.js +13 -0
  160. package/lib/src/services/copilot/decisions/decisions.class.d.ts +12 -0
  161. package/lib/src/services/copilot/decisions/decisions.d.ts +11 -0
  162. package/lib/src/services/copilot/decisions/decisions.schema.d.ts +728 -0
  163. package/lib/src/services/copilot/decisions/decisions.shared.d.ts +13 -0
  164. package/lib/src/services/copilot/decisions/decisions.shared.js +19 -0
  165. package/lib/src/services/copilot/help/help.class.d.ts +18 -0
  166. package/lib/src/services/copilot/help/help.d.ts +11 -0
  167. package/lib/src/services/copilot/help/help.schema.d.ts +237 -0
  168. package/lib/src/services/copilot/help/help.shared.d.ts +13 -0
  169. package/lib/src/services/copilot/help/help.shared.js +13 -0
  170. package/lib/src/services/copilot/recommendations/recommendations.class.d.ts +12 -0
  171. package/lib/src/services/copilot/recommendations/recommendations.d.ts +11 -0
  172. package/lib/src/services/copilot/recommendations/recommendations.schema.d.ts +949 -0
  173. package/lib/src/services/copilot/recommendations/recommendations.shared.d.ts +13 -0
  174. package/lib/src/services/copilot/recommendations/recommendations.shared.js +19 -0
  175. package/lib/src/services/currencies/currencies.class.d.ts +11 -0
  176. package/lib/src/services/currencies/currencies.d.ts +11 -0
  177. package/lib/src/services/currencies/currencies.schema.d.ts +769 -0
  178. package/lib/src/services/currencies/currencies.shared.d.ts +13 -0
  179. package/lib/src/services/currencies/currencies.shared.js +13 -0
  180. package/lib/src/services/custom/custom.shared.d.ts +1 -1
  181. package/lib/src/services/emails/emails.class.d.ts +11 -0
  182. package/lib/src/services/emails/emails.d.ts +11 -0
  183. package/lib/src/services/emails/emails.schema.d.ts +563 -0
  184. package/lib/src/services/emails/emails.shared.d.ts +13 -0
  185. package/lib/src/services/emails/emails.shared.js +13 -0
  186. package/lib/src/services/events/events.class.d.ts +3 -2
  187. package/lib/src/services/events/events.schema.d.ts +340 -340
  188. package/lib/src/services/events/events.shared.d.ts +1 -1
  189. package/lib/src/services/events/triggers/triggers.class.d.ts +3 -2
  190. package/lib/src/services/events/triggers/triggers.schema.d.ts +1022 -842
  191. package/lib/src/services/events/triggers/triggers.shared.d.ts +1 -1
  192. package/lib/src/services/events/types/types.class.d.ts +3 -2
  193. package/lib/src/services/events/types/types.schema.d.ts +350 -350
  194. package/lib/src/services/events/types/types.shared.d.ts +1 -1
  195. package/lib/src/services/exchanges/arb-signals/arb-signals.class.d.ts +29 -0
  196. package/lib/src/services/exchanges/arb-signals/arb-signals.d.ts +11 -0
  197. package/lib/src/services/exchanges/arb-signals/arb-signals.schema.d.ts +55 -0
  198. package/lib/src/services/exchanges/arb-signals/arb-signals.shared.d.ts +13 -0
  199. package/lib/src/services/exchanges/arb-signals/arb-signals.shared.js +13 -0
  200. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.class.d.ts +27 -0
  201. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.d.ts +11 -0
  202. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.schema.d.ts +148 -0
  203. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.shared.d.ts +13 -0
  204. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.shared.js +13 -0
  205. package/lib/src/services/exchanges/balance/balance.class.d.ts +3 -2
  206. package/lib/src/services/exchanges/balance/balance.schema.d.ts +141 -141
  207. package/lib/src/services/exchanges/balance/balance.shared.d.ts +1 -1
  208. package/lib/src/services/exchanges/deposits/deposits.class.d.ts +11 -0
  209. package/lib/src/services/exchanges/deposits/deposits.d.ts +11 -0
  210. package/lib/src/services/exchanges/deposits/deposits.schema.d.ts +905 -0
  211. package/lib/src/services/exchanges/deposits/deposits.shared.d.ts +13 -0
  212. package/lib/src/services/exchanges/deposits/deposits.shared.js +19 -0
  213. package/lib/src/services/exchanges/deposits/sync/sync.class.d.ts +11 -0
  214. package/lib/src/services/exchanges/deposits/sync/sync.d.ts +11 -0
  215. package/lib/src/services/exchanges/deposits/sync/sync.schema.d.ts +621 -0
  216. package/lib/src/services/exchanges/deposits/sync/sync.shared.d.ts +13 -0
  217. package/lib/src/services/exchanges/deposits/sync/sync.shared.js +19 -0
  218. package/lib/src/services/exchanges/download/download.class.d.ts +3 -2
  219. package/lib/src/services/exchanges/download/download.schema.d.ts +149 -149
  220. package/lib/src/services/exchanges/download/download.shared.d.ts +1 -1
  221. package/lib/src/services/exchanges/download/webhooks/webhooks.class.d.ts +2 -2
  222. package/lib/src/services/exchanges/download/webhooks/webhooks.schema.d.ts +171 -171
  223. package/lib/src/services/exchanges/download/webhooks/webhooks.shared.d.ts +1 -1
  224. package/lib/src/services/exchanges/exchanges.class.d.ts +3 -2
  225. package/lib/src/services/exchanges/exchanges.schema.d.ts +626 -359
  226. package/lib/src/services/exchanges/exchanges.shared.d.ts +1 -1
  227. package/lib/src/services/exchanges/ledger/ledger.class.d.ts +11 -0
  228. package/lib/src/services/exchanges/ledger/ledger.d.ts +11 -0
  229. package/lib/src/services/exchanges/ledger/ledger.schema.d.ts +1045 -0
  230. package/lib/src/services/exchanges/ledger/ledger.shared.d.ts +13 -0
  231. package/lib/src/services/exchanges/ledger/ledger.shared.js +13 -0
  232. package/lib/src/services/exchanges/ledger/sync/sync.class.d.ts +11 -0
  233. package/lib/src/services/exchanges/ledger/sync/sync.d.ts +11 -0
  234. package/lib/src/services/exchanges/ledger/sync/sync.schema.d.ts +621 -0
  235. package/lib/src/services/exchanges/ledger/sync/sync.shared.d.ts +13 -0
  236. package/lib/src/services/exchanges/ledger/sync/sync.shared.js +19 -0
  237. package/lib/src/services/exchanges/markets-stats/markets-stats.class.d.ts +23 -0
  238. package/lib/src/services/exchanges/markets-stats/markets-stats.d.ts +11 -0
  239. package/lib/src/services/exchanges/markets-stats/markets-stats.schema.d.ts +178 -0
  240. package/lib/src/services/exchanges/markets-stats/markets-stats.shared.d.ts +13 -0
  241. package/lib/src/services/exchanges/markets-stats/markets-stats.shared.js +13 -0
  242. package/lib/src/services/exchanges/ohlcv/history/history.class.d.ts +11 -0
  243. package/lib/src/services/exchanges/ohlcv/history/history.d.ts +11 -0
  244. package/lib/src/services/exchanges/ohlcv/history/history.schema.d.ts +473 -0
  245. package/lib/src/services/exchanges/ohlcv/history/history.shared.d.ts +13 -0
  246. package/lib/src/services/exchanges/ohlcv/history/history.shared.js +19 -0
  247. package/lib/src/services/exchanges/ohlcv/ohlcv.schema.d.ts +162 -162
  248. package/lib/src/services/exchanges/ohlcv/ohlcv.shared.d.ts +1 -1
  249. package/lib/src/services/exchanges/orderbook/orderbook.class.d.ts +30 -0
  250. package/lib/src/services/exchanges/orderbook/orderbook.d.ts +11 -0
  251. package/lib/src/services/exchanges/orderbook/orderbook.schema.d.ts +272 -0
  252. package/lib/src/services/exchanges/orderbook/orderbook.shared.d.ts +13 -0
  253. package/lib/src/services/exchanges/orderbook/orderbook.shared.js +13 -0
  254. package/lib/src/services/exchanges/ticker/ticker.class.d.ts +3 -2
  255. package/lib/src/services/exchanges/ticker/ticker.schema.d.ts +243 -243
  256. package/lib/src/services/exchanges/ticker/ticker.shared.d.ts +1 -1
  257. package/lib/src/services/exchanges/transactions/sync/sync.class.d.ts +11 -0
  258. package/lib/src/services/exchanges/transactions/sync/sync.d.ts +11 -0
  259. package/lib/src/services/exchanges/transactions/sync/sync.schema.d.ts +653 -0
  260. package/lib/src/services/exchanges/transactions/sync/sync.shared.d.ts +13 -0
  261. package/lib/src/services/exchanges/transactions/sync/sync.shared.js +19 -0
  262. package/lib/src/services/exchanges/transactions/transactions.class.d.ts +11 -0
  263. package/lib/src/services/exchanges/transactions/transactions.d.ts +11 -0
  264. package/lib/src/services/exchanges/transactions/transactions.schema.d.ts +1119 -0
  265. package/lib/src/services/exchanges/transactions/transactions.shared.d.ts +13 -0
  266. package/lib/src/services/exchanges/transactions/transactions.shared.js +19 -0
  267. package/lib/src/services/extensions/aggregate-extensions.hooks.d.ts +2 -0
  268. package/lib/src/services/extensions/extensions.class.d.ts +3 -2
  269. package/lib/src/services/extensions/extensions.schema.d.ts +641 -559
  270. package/lib/src/services/extensions/extensions.shared.d.ts +1 -1
  271. package/lib/src/services/homepage/homepage.schema.d.ts +17 -9
  272. package/lib/src/services/homepage/homepage.shared.d.ts +10 -2
  273. package/lib/src/services/homepage/homepage.shared.js +8 -1
  274. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.class.d.ts +52 -0
  275. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.d.ts +11 -0
  276. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.schema.d.ts +684 -0
  277. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.shared.d.ts +13 -0
  278. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.shared.js +14 -0
  279. package/lib/src/services/insights/etf-flow/etf-flow.class.d.ts +11 -0
  280. package/lib/src/services/insights/etf-flow/etf-flow.d.ts +11 -0
  281. package/lib/src/services/insights/etf-flow/etf-flow.schema.d.ts +237 -0
  282. package/lib/src/services/insights/etf-flow/etf-flow.shared.d.ts +13 -0
  283. package/lib/src/services/insights/etf-flow/etf-flow.shared.js +13 -0
  284. package/lib/src/services/insights/fear-and-greed/fear-and-greed.class.d.ts +11 -0
  285. package/lib/src/services/insights/fear-and-greed/fear-and-greed.d.ts +11 -0
  286. package/lib/src/services/insights/fear-and-greed/fear-and-greed.schema.d.ts +1831 -0
  287. package/lib/src/services/insights/fear-and-greed/fear-and-greed.shared.d.ts +13 -0
  288. package/lib/src/services/insights/fear-and-greed/fear-and-greed.shared.js +13 -0
  289. package/lib/src/services/insights/global/global.class.d.ts +11 -0
  290. package/lib/src/services/insights/global/global.d.ts +11 -0
  291. package/lib/src/services/insights/global/global.schema.d.ts +779 -0
  292. package/lib/src/services/insights/global/global.shared.d.ts +13 -0
  293. package/lib/src/services/insights/global/global.shared.js +13 -0
  294. package/lib/src/services/insights/insights.class.d.ts +11 -0
  295. package/lib/src/services/insights/insights.d.ts +11 -0
  296. package/lib/src/services/insights/insights.hooks.d.ts +20 -0
  297. package/lib/src/services/{tools/tools.schema.d.ts → insights/insights.schema.d.ts} +130 -162
  298. package/lib/src/services/insights/insights.shared.d.ts +13 -0
  299. package/lib/src/services/insights/insights.shared.js +13 -0
  300. package/lib/src/services/insights/news/news.class.d.ts +23 -0
  301. package/lib/src/services/insights/news/news.d.ts +11 -0
  302. package/lib/src/services/insights/news/news.schema.d.ts +857 -0
  303. package/lib/src/services/insights/news/news.shared.d.ts +23 -0
  304. package/lib/src/services/insights/news/news.shared.js +20 -0
  305. package/lib/src/services/keys/KeysService.d.ts +2 -2
  306. package/lib/src/services/keys/keys.class.d.ts +3 -2
  307. package/lib/src/services/keys/keys.schema.d.ts +364 -364
  308. package/lib/src/services/keys/keys.shared.d.ts +1 -1
  309. package/lib/src/services/knowledges/knowledges.class.d.ts +37 -0
  310. package/lib/src/services/knowledges/knowledges.d.ts +11 -0
  311. package/lib/src/services/knowledges/knowledges.schema.d.ts +566 -0
  312. package/lib/src/services/knowledges/knowledges.shared.d.ts +13 -0
  313. package/lib/src/services/knowledges/knowledges.shared.js +13 -0
  314. package/lib/src/services/mailer/mailer.shared.d.ts +1 -1
  315. package/lib/src/services/marketplaces/marketplaces.class.d.ts +2 -2
  316. package/lib/src/services/marketplaces/marketplaces.shared.d.ts +1 -1
  317. package/lib/src/services/markets/markets.class.d.ts +2 -2
  318. package/lib/src/services/markets/markets.schema.d.ts +112 -112
  319. package/lib/src/services/markets/markets.shared.d.ts +1 -1
  320. package/lib/src/services/messages/messages.class.d.ts +2 -2
  321. package/lib/src/services/messages/messages.schema.d.ts +1257 -353
  322. package/lib/src/services/messages/messages.shared.d.ts +1 -1
  323. package/lib/src/services/models/pods/events/events.class.d.ts +11 -0
  324. package/lib/src/services/models/pods/events/events.d.ts +11 -0
  325. package/lib/src/services/models/pods/events/events.schema.d.ts +669 -0
  326. package/lib/src/services/models/pods/events/events.shared.d.ts +13 -0
  327. package/lib/src/services/models/pods/events/events.shared.js +13 -0
  328. package/lib/src/services/models/pods/pods.class.d.ts +12 -0
  329. package/lib/src/services/models/pods/pods.d.ts +12 -0
  330. package/lib/src/services/models/pods/pods.schema.d.ts +1095 -0
  331. package/lib/src/services/models/pods/pods.shared.d.ts +13 -0
  332. package/lib/src/services/models/pods/pods.shared.js +13 -0
  333. package/lib/src/services/models/presets/presets-generate-and-queue.hooks.d.ts +2 -0
  334. package/lib/src/services/models/presets/presets-generate-freqai-config.hooks.d.ts +2 -0
  335. package/lib/src/services/models/presets/presets-generate-strategy.hooks.d.ts +2 -0
  336. package/lib/src/services/models/presets/presets-get-results.hooks.d.ts +2 -0
  337. package/lib/src/services/models/presets/presets-validate.hooks.d.ts +2 -0
  338. package/lib/src/services/models/presets/presets.class.d.ts +12 -0
  339. package/lib/src/services/models/presets/presets.d.ts +12 -0
  340. package/lib/src/services/models/presets/presets.schema.d.ts +2611 -0
  341. package/lib/src/services/models/presets/presets.shared.d.ts +13 -0
  342. package/lib/src/services/models/presets/presets.shared.js +13 -0
  343. package/lib/src/services/models/signals/history/history.class.d.ts +11 -0
  344. package/lib/src/services/models/signals/history/history.d.ts +11 -0
  345. package/lib/src/services/models/signals/history/history.schema.d.ts +513 -0
  346. package/lib/src/services/models/signals/history/history.shared.d.ts +13 -0
  347. package/lib/src/services/models/signals/history/history.shared.js +13 -0
  348. package/lib/src/services/models/signals/signals-proxy-router.d.ts +47 -0
  349. package/lib/src/services/models/signals/signals.class.d.ts +12 -0
  350. package/lib/src/services/models/signals/signals.d.ts +12 -0
  351. package/lib/src/services/models/signals/signals.schema.d.ts +976 -0
  352. package/lib/src/services/models/signals/signals.shared.d.ts +13 -0
  353. package/lib/src/services/models/signals/signals.shared.js +13 -0
  354. package/lib/src/services/models/signals/subscriptions/subscriptions.class.d.ts +11 -0
  355. package/lib/src/services/models/signals/subscriptions/subscriptions.d.ts +11 -0
  356. package/lib/src/services/models/signals/subscriptions/subscriptions.schema.d.ts +585 -0
  357. package/lib/src/services/models/signals/subscriptions/subscriptions.shared.d.ts +13 -0
  358. package/lib/src/services/models/signals/subscriptions/subscriptions.shared.js +15 -0
  359. package/lib/src/services/objectives/objectives.class.d.ts +11 -0
  360. package/lib/src/services/objectives/objectives.d.ts +11 -0
  361. package/lib/src/services/objectives/objectives.hooks.d.ts +12 -0
  362. package/lib/src/services/objectives/objectives.schema.d.ts +717 -0
  363. package/lib/src/services/objectives/objectives.shared.d.ts +13 -0
  364. package/lib/src/services/objectives/objectives.shared.js +13 -0
  365. package/lib/src/services/plans/plans.class.d.ts +20 -0
  366. package/lib/src/services/plans/plans.d.ts +11 -0
  367. package/lib/src/services/plans/plans.schema.d.ts +383 -0
  368. package/lib/src/services/plans/plans.shared.d.ts +13 -0
  369. package/lib/src/services/plans/plans.shared.js +13 -0
  370. package/lib/src/services/referrals/referrals.class.d.ts +11 -0
  371. package/lib/src/services/referrals/referrals.d.ts +11 -0
  372. package/lib/src/services/referrals/referrals.schema.d.ts +581 -0
  373. package/lib/src/services/referrals/referrals.shared.d.ts +13 -0
  374. package/lib/src/services/referrals/referrals.shared.js +13 -0
  375. package/lib/src/services/restricted/restricted.shared.d.ts +1 -1
  376. package/lib/src/services/security/events/security-events.class.d.ts +11 -0
  377. package/lib/src/services/security/events/security-events.d.ts +11 -0
  378. package/lib/src/services/security/events/security-events.schema.d.ts +499 -0
  379. package/lib/src/services/security/events/security-events.shared.d.ts +8 -0
  380. package/lib/src/services/security/events/security-events.shared.js +13 -0
  381. package/lib/src/services/series/balance/balance.class.d.ts +11 -0
  382. package/lib/src/services/series/balance/balance.d.ts +11 -0
  383. package/lib/src/services/series/balance/balance.schema.d.ts +527 -0
  384. package/lib/src/services/series/balance/balance.shared.d.ts +13 -0
  385. package/lib/src/services/series/balance/balance.shared.js +13 -0
  386. package/lib/src/services/series/performance/performance.class.d.ts +11 -0
  387. package/lib/src/services/series/performance/performance.d.ts +11 -0
  388. package/lib/src/services/series/performance/performance.schema.d.ts +495 -0
  389. package/lib/src/services/series/performance/performance.shared.d.ts +13 -0
  390. package/lib/src/services/series/performance/performance.shared.js +19 -0
  391. package/lib/src/services/series/performance/performance.usage.examples.d.ts +81 -0
  392. package/lib/src/services/snapshot/snapshot.class.d.ts +11 -0
  393. package/lib/src/services/snapshot/snapshot.d.ts +11 -0
  394. package/lib/src/services/snapshot/snapshot.schema.d.ts +11963 -0
  395. package/lib/src/services/snapshot/snapshot.shared.d.ts +13 -0
  396. package/lib/src/services/snapshot/snapshot.shared.js +14 -0
  397. package/lib/src/services/store/items/items.class.d.ts +12 -0
  398. package/lib/src/services/store/items/items.d.ts +11 -0
  399. package/lib/src/services/store/items/items.schema.d.ts +1395 -0
  400. package/lib/src/services/store/items/items.shared.d.ts +13 -0
  401. package/lib/src/services/store/items/items.shared.js +13 -0
  402. package/lib/src/services/strategies/ai/ai.class.d.ts +3 -2
  403. package/lib/src/services/strategies/ai/ai.schema.d.ts +33 -33
  404. package/lib/src/services/strategies/ai/ai.shared.d.ts +1 -1
  405. package/lib/src/services/strategies/ai/stream/stream.shared.d.ts +1 -1
  406. package/lib/src/services/strategies/backtest/backtest.class.d.ts +3 -2
  407. package/lib/src/services/strategies/backtest/backtest.schema.d.ts +820 -288
  408. package/lib/src/services/strategies/backtest/backtest.shared.d.ts +1 -1
  409. package/lib/src/services/strategies/backtest/preflight/preflight.class.d.ts +46 -0
  410. package/lib/src/services/strategies/backtest/preflight/preflight.d.ts +11 -0
  411. package/lib/src/services/strategies/backtest/preflight/preflight.schema.d.ts +737 -0
  412. package/lib/src/services/strategies/backtest/preflight/preflight.shared.d.ts +13 -0
  413. package/lib/src/services/strategies/backtest/preflight/preflight.shared.js +13 -0
  414. package/lib/src/services/strategies/backtest/results/results.class.d.ts +2 -2
  415. package/lib/src/services/strategies/backtest/results/results.schema.d.ts +315 -315
  416. package/lib/src/services/strategies/backtest/results/results.shared.d.ts +1 -1
  417. package/lib/src/services/strategies/blob/blob.shared.d.ts +1 -1
  418. package/lib/src/services/strategies/follow/follow.class.d.ts +12 -0
  419. package/lib/src/services/strategies/follow/follow.d.ts +11 -0
  420. package/lib/src/services/strategies/follow/follow.schema.d.ts +711 -0
  421. package/lib/src/services/strategies/follow/follow.shared.d.ts +13 -0
  422. package/lib/src/services/strategies/follow/follow.shared.js +19 -0
  423. package/lib/src/services/strategies/generate/generate.class.d.ts +3 -2
  424. package/lib/src/services/strategies/generate/generate.schema.d.ts +534 -88
  425. package/lib/src/services/strategies/generate/generate.shared.d.ts +1 -1
  426. package/lib/src/services/strategies/history/history.class.d.ts +11 -0
  427. package/lib/src/services/strategies/history/history.d.ts +11 -0
  428. package/lib/src/services/strategies/history/history.schema.d.ts +714 -0
  429. package/lib/src/services/strategies/history/history.shared.d.ts +13 -0
  430. package/lib/src/services/strategies/history/history.shared.js +19 -0
  431. package/lib/src/services/strategies/hyperopt/hyperopt-generate-and-queue.hooks.d.ts +2 -0
  432. package/lib/src/services/strategies/hyperopt/hyperopt-generate-config-in-disk.hooks.d.ts +2 -0
  433. package/lib/src/services/strategies/hyperopt/hyperopt-generate-exchange-config.hooks.d.ts +8 -0
  434. package/lib/src/services/strategies/hyperopt/hyperopt-get-results.hooks.d.ts +2 -0
  435. package/lib/src/services/strategies/hyperopt/hyperopt-in-disk-clone-strategy.hooks.d.ts +2 -0
  436. package/lib/src/services/strategies/hyperopt/hyperopt-populate-exchange.hooks.d.ts +7 -0
  437. package/lib/src/services/strategies/hyperopt/hyperopt-promote-template.hooks.d.ts +9 -0
  438. package/lib/src/services/strategies/hyperopt/hyperopt-propagate-results.hooks.d.ts +2 -0
  439. package/lib/src/services/strategies/hyperopt/hyperopt-validate-exchange-whitelist.hooks.d.ts +10 -0
  440. package/lib/src/services/strategies/hyperopt/hyperopt-validate-historical-data.hooks.d.ts +9 -0
  441. package/lib/src/services/strategies/hyperopt/hyperopt-validate-stake-balance.hooks.d.ts +7 -0
  442. package/lib/src/services/strategies/hyperopt/hyperopt-validate-stake-currency.hooks.d.ts +9 -0
  443. package/lib/src/services/strategies/hyperopt/hyperopt-validate.hooks.d.ts +7 -0
  444. package/lib/src/services/strategies/hyperopt/hyperopt-verify-subscription-limits.hooks.d.ts +6 -0
  445. package/lib/src/services/strategies/hyperopt/hyperopt.class.d.ts +3 -2
  446. package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +2552 -278
  447. package/lib/src/services/strategies/hyperopt/hyperopt.shared.d.ts +1 -1
  448. package/lib/src/services/strategies/indicators/indicators.class.d.ts +2 -2
  449. package/lib/src/services/strategies/indicators/indicators.schema.d.ts +106 -106
  450. package/lib/src/services/strategies/indicators/indicators.shared.d.ts +1 -1
  451. package/lib/src/services/strategies/indicators/talib/talib.class.d.ts +2 -2
  452. package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +102 -102
  453. package/lib/src/services/strategies/indicators/talib/talib.shared.d.ts +1 -1
  454. package/lib/src/services/strategies/research/research.class.d.ts +11 -0
  455. package/lib/src/services/strategies/research/research.d.ts +12 -0
  456. package/lib/src/services/strategies/research/research.schema.d.ts +1006 -0
  457. package/lib/src/services/strategies/research/research.shared.d.ts +13 -0
  458. package/lib/src/services/strategies/research/research.shared.js +19 -0
  459. package/lib/src/services/strategies/strategies.class.d.ts +3 -2
  460. package/lib/src/services/strategies/strategies.schema.d.ts +3694 -3322
  461. package/lib/src/services/strategies/strategies.shared.d.ts +1 -1
  462. package/lib/src/services/strategies/templates/templates.class.d.ts +2 -2
  463. package/lib/src/services/strategies/templates/templates.schema.d.ts +8062 -950
  464. package/lib/src/services/strategies/templates/templates.shared.d.ts +1 -1
  465. package/lib/src/services/stripe/charges/charges.shared.d.ts +1 -1
  466. package/lib/src/services/stripe/customers/cards/cards.shared.d.ts +1 -1
  467. package/lib/src/services/stripe/customers/customers.shared.d.ts +1 -1
  468. package/lib/src/services/stripe/customers/paymentintent/paymentintent.shared.d.ts +1 -1
  469. package/lib/src/services/stripe/customers/paymentmethods/paymentmethods.shared.d.ts +1 -1
  470. package/lib/src/services/stripe/customers/subscriptions/subscriptions.shared.d.ts +1 -1
  471. package/lib/src/services/stripe/products/products.shared.d.ts +1 -1
  472. package/lib/src/services/stripe/webhooks/webhooks.shared.d.ts +1 -1
  473. package/lib/src/services/support/support.class.d.ts +18 -0
  474. package/lib/src/services/support/support.d.ts +11 -0
  475. package/lib/src/services/support/support.schema.d.ts +507 -0
  476. package/lib/src/services/support/support.shared.d.ts +13 -0
  477. package/lib/src/services/support/support.shared.js +13 -0
  478. package/lib/src/services/tasks/comments/comments.class.d.ts +11 -0
  479. package/lib/src/services/tasks/comments/comments.d.ts +11 -0
  480. package/lib/src/services/tasks/comments/comments.schema.d.ts +771 -0
  481. package/lib/src/services/tasks/comments/comments.shared.d.ts +13 -0
  482. package/lib/src/services/tasks/comments/comments.shared.js +13 -0
  483. package/lib/src/services/tasks/tasks.class.d.ts +14 -0
  484. package/lib/src/services/tasks/tasks.d.ts +11 -0
  485. package/lib/src/services/tasks/tasks.hooks.d.ts +90 -0
  486. package/lib/src/services/tasks/tasks.schema.d.ts +1281 -0
  487. package/lib/src/services/tasks/tasks.shared.d.ts +13 -0
  488. package/lib/src/services/tasks/tasks.shared.js +13 -0
  489. package/lib/src/services/tax/research/research.class.d.ts +11 -0
  490. package/lib/src/services/tax/research/research.d.ts +11 -0
  491. package/lib/src/services/tax/research/research.schema.d.ts +237 -0
  492. package/lib/src/services/tax/research/research.shared.d.ts +13 -0
  493. package/lib/src/services/tax/research/research.shared.js +13 -0
  494. package/lib/src/services/tax/sessions/conversations/conversations.class.d.ts +12 -0
  495. package/lib/src/services/tax/sessions/conversations/conversations.d.ts +11 -0
  496. package/lib/src/services/tax/sessions/conversations/conversations.hooks.d.ts +11 -0
  497. package/lib/src/services/tax/sessions/conversations/conversations.schema.d.ts +2923 -0
  498. package/lib/src/services/tax/sessions/conversations/conversations.shared.d.ts +13 -0
  499. package/lib/src/services/tax/sessions/conversations/conversations.shared.js +13 -0
  500. package/lib/src/services/tax/sessions/conversations/invoke-tax-bedrock-agent.hooks.d.ts +2 -0
  501. package/lib/src/services/tax/sessions/create-tax-bedrock-session.hooks.d.ts +2 -0
  502. package/lib/src/services/tax/sessions/delete-tax-bedrock-session.hooks.d.ts +2 -0
  503. package/lib/src/services/tax/sessions/sessions.class.d.ts +12 -0
  504. package/lib/src/services/tax/sessions/sessions.d.ts +11 -0
  505. package/lib/src/services/tax/sessions/sessions.hooks.d.ts +11 -0
  506. package/lib/src/services/tax/sessions/sessions.schema.d.ts +803 -0
  507. package/lib/src/services/tax/sessions/sessions.shared.d.ts +13 -0
  508. package/lib/src/services/tax/sessions/sessions.shared.js +13 -0
  509. package/lib/src/services/tax/sessions/sync-tax-bedrock-sessions.hooks.d.ts +2 -0
  510. package/lib/src/services/tax/sessions/update-tax-bedrock-session.hooks.d.ts +2 -0
  511. package/lib/src/services/telegram/link/link.class.d.ts +26 -0
  512. package/lib/src/services/telegram/link/link.d.ts +11 -0
  513. package/lib/src/services/telegram/link/link.schema.d.ts +174 -0
  514. package/lib/src/services/telegram/link/link.shared.d.ts +13 -0
  515. package/lib/src/services/telegram/link/link.shared.js +13 -0
  516. package/lib/src/services/telegram/telegram.class.d.ts +34 -0
  517. package/lib/src/services/telegram/telegram.d.ts +11 -0
  518. package/lib/src/services/telegram/telegram.schema.d.ts +152 -0
  519. package/lib/src/services/telegram/telegram.shared.d.ts +13 -0
  520. package/lib/src/services/telegram/telegram.shared.js +13 -0
  521. package/lib/src/services/toggles/toggles.class.d.ts +19 -0
  522. package/lib/src/services/toggles/toggles.d.ts +11 -0
  523. package/lib/src/services/toggles/toggles.schema.d.ts +335 -0
  524. package/lib/src/services/toggles/toggles.shared.d.ts +13 -0
  525. package/lib/src/services/toggles/toggles.shared.js +13 -0
  526. package/lib/src/services/tokens/tokens.class.d.ts +11 -0
  527. package/lib/src/services/tokens/tokens.d.ts +11 -0
  528. package/lib/src/services/tokens/tokens.schema.d.ts +941 -0
  529. package/lib/src/services/tokens/tokens.shared.d.ts +13 -0
  530. package/lib/src/services/tokens/tokens.shared.js +13 -0
  531. package/lib/src/services/traders/pods/api/api.class.d.ts +3 -2
  532. package/lib/src/services/traders/pods/api/api.schema.d.ts +12055 -3967
  533. package/lib/src/services/traders/pods/api/api.shared.d.ts +1 -1
  534. package/lib/src/services/traders/pods/blob/blob.shared.d.ts +1 -1
  535. package/lib/src/services/traders/pods/events/events.class.d.ts +2 -2
  536. package/lib/src/services/traders/pods/events/events.schema.d.ts +388 -332
  537. package/lib/src/services/traders/pods/events/events.shared.d.ts +1 -1
  538. package/lib/src/services/traders/pods/pods.class.d.ts +3 -2
  539. package/lib/src/services/traders/pods/pods.schema.d.ts +9909 -2945
  540. package/lib/src/services/traders/pods/pods.shared.d.ts +1 -1
  541. package/lib/src/services/traders/pods/webhooks/webhooks.class.d.ts +2 -2
  542. package/lib/src/services/traders/pods/webhooks/webhooks.schema.d.ts +105 -105
  543. package/lib/src/services/traders/pods/webhooks/webhooks.shared.d.ts +1 -1
  544. package/lib/src/services/traders/traders.class.d.ts +4 -2
  545. package/lib/src/services/traders/traders.schema.d.ts +2923 -2450
  546. package/lib/src/services/traders/traders.shared.d.ts +1 -1
  547. package/lib/src/services/trades/trades.class.d.ts +11 -0
  548. package/lib/src/services/trades/trades.d.ts +11 -0
  549. package/lib/src/services/trades/trades.schema.d.ts +16969 -0
  550. package/lib/src/services/trades/trades.shared.d.ts +13 -0
  551. package/lib/src/services/trades/trades.shared.js +13 -0
  552. package/lib/src/services/users/access/access.class.d.ts +11 -0
  553. package/lib/src/services/users/access/access.d.ts +11 -0
  554. package/lib/src/services/users/access/access.schema.d.ts +393 -0
  555. package/lib/src/services/users/access/access.shared.d.ts +13 -0
  556. package/lib/src/services/users/access/access.shared.js +13 -0
  557. package/lib/src/services/users/cancel-subscription.class.d.ts +13 -0
  558. package/lib/src/services/users/cancel-subscription.d.ts +9 -0
  559. package/lib/src/services/users/marketing/campaigns/01-welcome.campaign.d.ts +3 -0
  560. package/lib/src/services/users/marketing/campaigns/02-first-bot-running.campaign.d.ts +3 -0
  561. package/lib/src/services/users/marketing/campaigns/03-ai-strategy.campaign.d.ts +3 -0
  562. package/lib/src/services/users/marketing/campaigns/04-hyperopt.campaign.d.ts +3 -0
  563. package/lib/src/services/users/marketing/campaigns/05-safety-tips.campaign.d.ts +3 -0
  564. package/lib/src/services/users/marketing/campaigns/06-humor.campaign.d.ts +3 -0
  565. package/lib/src/services/users/marketing/campaigns/07-paper-vs-real.campaign.d.ts +3 -0
  566. package/lib/src/services/users/marketing/campaigns/08-trial-summary.campaign.d.ts +3 -0
  567. package/lib/src/services/users/marketing/campaigns/09-trial-ending.campaign.d.ts +3 -0
  568. package/lib/src/services/users/marketing/campaigns/10-reactivation.campaign.d.ts +3 -0
  569. package/lib/src/services/users/marketing/campaigns/11-onboarding-incomplete.campaign.d.ts +6 -0
  570. package/lib/src/services/users/marketing/campaigns/index.d.ts +10 -0
  571. package/lib/src/services/users/marketing/campaigns/supervisor-welcome.campaign.d.ts +6 -0
  572. package/lib/src/services/users/marketing/campaigns/trial.context.d.ts +27 -0
  573. package/lib/src/services/users/marketing/marketing.class.d.ts +26 -0
  574. package/lib/src/services/users/marketing/marketing.d.ts +11 -0
  575. package/lib/src/services/users/marketing/marketing.engine.d.ts +36 -0
  576. package/lib/src/services/users/marketing/marketing.schema.d.ts +515 -0
  577. package/lib/src/services/users/marketing/marketing.shared.d.ts +13 -0
  578. package/lib/src/services/users/marketing/marketing.shared.js +20 -0
  579. package/lib/src/services/users/onboarding/onboarding.class.d.ts +11 -0
  580. package/lib/src/services/users/onboarding/onboarding.d.ts +11 -0
  581. package/lib/src/services/users/onboarding/onboarding.hooks.d.ts +60 -0
  582. package/lib/src/services/users/onboarding/onboarding.schema.d.ts +768 -0
  583. package/lib/src/services/users/onboarding/onboarding.shared.d.ts +13 -0
  584. package/lib/src/services/users/onboarding/onboarding.shared.js +13 -0
  585. package/lib/src/services/users/onboarding/steps/exchanges.processor.d.ts +15 -0
  586. package/lib/src/services/users/onboarding/steps/index.d.ts +32 -0
  587. package/lib/src/services/users/onboarding/steps/notifications.processor.d.ts +15 -0
  588. package/lib/src/services/users/onboarding/steps/preferences.processor.d.ts +16 -0
  589. package/lib/src/services/users/onboarding/steps/strategy.processor.d.ts +15 -0
  590. package/lib/src/services/users/onboarding/steps/traders.processor.d.ts +16 -0
  591. package/lib/src/services/users/reset-account.class.d.ts +11 -0
  592. package/lib/src/services/users/reset-account.d.ts +9 -0
  593. package/lib/src/services/users/sessions/sessions.class.d.ts +18 -0
  594. package/lib/src/services/users/sessions/sessions.d.ts +11 -0
  595. package/lib/src/services/users/sessions/sessions.schema.d.ts +698 -0
  596. package/lib/src/services/users/sessions/sessions.shared.d.ts +13 -0
  597. package/lib/src/services/users/sessions/sessions.shared.js +13 -0
  598. package/lib/src/services/users/setup-trial.class.d.ts +21 -0
  599. package/lib/src/services/users/setup-trial.d.ts +9 -0
  600. package/lib/src/services/users/stripe-check-subscription.hooks.d.ts +2 -0
  601. package/lib/src/services/users/stripe-create-payment-intent.hooks.d.ts +2 -0
  602. package/lib/src/services/users/stripe-is-subscription-active.hooks.d.ts +2 -0
  603. package/lib/src/services/users/stripe-sync-customer-data.hooks.d.ts +2 -0
  604. package/lib/src/services/users/users.class.d.ts +298 -59
  605. package/lib/src/services/users/users.schema.d.ts +1942 -350
  606. package/lib/src/services/users/users.shared.d.ts +2 -2
  607. package/lib/src/services/users/users.shared.js +1 -1
  608. package/lib/src/services/version/version.shared.d.ts +1 -1
  609. package/package.json +9 -3
  610. package/lib/src/services/tools/openapi/openapi.class.d.ts +0 -34
  611. package/lib/src/services/tools/openapi/openapi.d.ts +0 -10
  612. package/lib/src/services/tools/openapi/openapi.shared.d.ts +0 -13
  613. package/lib/src/services/tools/openapi/openapi.shared.js +0 -13
  614. package/lib/src/services/tools/tools.class.d.ts +0 -11
  615. package/lib/src/services/tools/tools.d.ts +0 -11
  616. package/lib/src/services/tools/tools.shared.d.ts +0 -13
  617. package/lib/src/services/tools/tools.shared.js +0 -13
@@ -0,0 +1,1831 @@
1
+ import type { Static } from '@feathersjs/typebox';
2
+ import type { HookContext } from '../../../declarations';
3
+ import type { InsightsFearAndGreedService } from './fear-and-greed.class';
4
+ export declare const insightsFearAndGreedSchema: import("@feathersjs/typebox").TObject<{
5
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
+ timestamp: import("@feathersjs/typebox").TString<"date-time">;
7
+ name: import("@feathersjs/typebox").TString<string>;
8
+ now: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
9
+ value: import("@feathersjs/typebox").TNumber;
10
+ valueClassification: import("@feathersjs/typebox").TString<string>;
11
+ timestamp: import("@feathersjs/typebox").TNumber;
12
+ }>, import("@feathersjs/typebox").TObject<{
13
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
14
+ }>]>;
15
+ yesterday: import("@feathersjs/typebox").TObject<{
16
+ value: import("@feathersjs/typebox").TNumber;
17
+ valueClassification: import("@feathersjs/typebox").TString<string>;
18
+ timestamp: import("@feathersjs/typebox").TNumber;
19
+ }>;
20
+ lastWeek: import("@feathersjs/typebox").TObject<{
21
+ value: import("@feathersjs/typebox").TNumber;
22
+ valueClassification: import("@feathersjs/typebox").TString<string>;
23
+ timestamp: import("@feathersjs/typebox").TNumber;
24
+ }>;
25
+ }>;
26
+ export type InsightsFearAndGreed = Static<typeof insightsFearAndGreedSchema>;
27
+ export declare const insightsFearAndGreedValidator: import("@feathersjs/schema").Validator<any, any>;
28
+ export declare const insightsFearAndGreedResolver: import("@feathersjs/schema").Resolver<{
29
+ _id: string | {};
30
+ timestamp: string;
31
+ name: string;
32
+ now: {
33
+ value: number;
34
+ valueClassification: string;
35
+ timestamp: number;
36
+ } & {
37
+ updateTime: string;
38
+ };
39
+ yesterday: {
40
+ value: number;
41
+ valueClassification: string;
42
+ timestamp: number;
43
+ };
44
+ lastWeek: {
45
+ value: number;
46
+ valueClassification: string;
47
+ timestamp: number;
48
+ };
49
+ }, HookContext<InsightsFearAndGreedService<import("./fear-and-greed.class").InsightsFearAndGreedParams>>>;
50
+ export declare const insightsFearAndGreedExternalResolver: import("@feathersjs/schema").Resolver<{
51
+ _id: string | {};
52
+ timestamp: string;
53
+ name: string;
54
+ now: {
55
+ value: number;
56
+ valueClassification: string;
57
+ timestamp: number;
58
+ } & {
59
+ updateTime: string;
60
+ };
61
+ yesterday: {
62
+ value: number;
63
+ valueClassification: string;
64
+ timestamp: number;
65
+ };
66
+ lastWeek: {
67
+ value: number;
68
+ valueClassification: string;
69
+ timestamp: number;
70
+ };
71
+ }, HookContext<InsightsFearAndGreedService<import("./fear-and-greed.class").InsightsFearAndGreedParams>>>;
72
+ export declare const insightsFearAndGreedDataSchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
73
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
74
+ timestamp: import("@feathersjs/typebox").TString<"date-time">;
75
+ name: import("@feathersjs/typebox").TString<string>;
76
+ now: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
77
+ value: import("@feathersjs/typebox").TNumber;
78
+ valueClassification: import("@feathersjs/typebox").TString<string>;
79
+ timestamp: import("@feathersjs/typebox").TNumber;
80
+ }>, import("@feathersjs/typebox").TObject<{
81
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
82
+ }>]>;
83
+ yesterday: import("@feathersjs/typebox").TObject<{
84
+ value: import("@feathersjs/typebox").TNumber;
85
+ valueClassification: import("@feathersjs/typebox").TString<string>;
86
+ timestamp: import("@feathersjs/typebox").TNumber;
87
+ }>;
88
+ lastWeek: import("@feathersjs/typebox").TObject<{
89
+ value: import("@feathersjs/typebox").TNumber;
90
+ valueClassification: import("@feathersjs/typebox").TString<string>;
91
+ timestamp: import("@feathersjs/typebox").TNumber;
92
+ }>;
93
+ }>, ["name", "now", "yesterday", "lastWeek"]>, import("@feathersjs/typebox").TObject<{
94
+ timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<"date-time">>;
95
+ }>]>;
96
+ export type InsightsFearAndGreedData = Static<typeof insightsFearAndGreedDataSchema>;
97
+ export declare const insightsFearAndGreedDataValidator: import("@feathersjs/schema").Validator<any, any>;
98
+ export declare const insightsFearAndGreedDataResolver: import("@feathersjs/schema").Resolver<{
99
+ _id: string | {};
100
+ timestamp: string;
101
+ name: string;
102
+ now: {
103
+ value: number;
104
+ valueClassification: string;
105
+ timestamp: number;
106
+ } & {
107
+ updateTime: string;
108
+ };
109
+ yesterday: {
110
+ value: number;
111
+ valueClassification: string;
112
+ timestamp: number;
113
+ };
114
+ lastWeek: {
115
+ value: number;
116
+ valueClassification: string;
117
+ timestamp: number;
118
+ };
119
+ }, HookContext<InsightsFearAndGreedService<import("./fear-and-greed.class").InsightsFearAndGreedParams>>>;
120
+ export declare const insightsFearAndGreedPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
121
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
122
+ timestamp: import("@feathersjs/typebox").TString<"date-time">;
123
+ name: import("@feathersjs/typebox").TString<string>;
124
+ now: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
125
+ value: import("@feathersjs/typebox").TNumber;
126
+ valueClassification: import("@feathersjs/typebox").TString<string>;
127
+ timestamp: import("@feathersjs/typebox").TNumber;
128
+ }>, import("@feathersjs/typebox").TObject<{
129
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
130
+ }>]>;
131
+ yesterday: import("@feathersjs/typebox").TObject<{
132
+ value: import("@feathersjs/typebox").TNumber;
133
+ valueClassification: import("@feathersjs/typebox").TString<string>;
134
+ timestamp: import("@feathersjs/typebox").TNumber;
135
+ }>;
136
+ lastWeek: import("@feathersjs/typebox").TObject<{
137
+ value: import("@feathersjs/typebox").TNumber;
138
+ valueClassification: import("@feathersjs/typebox").TString<string>;
139
+ timestamp: import("@feathersjs/typebox").TNumber;
140
+ }>;
141
+ }>>;
142
+ export type InsightsFearAndGreedPatch = Static<typeof insightsFearAndGreedPatchSchema>;
143
+ export declare const insightsFearAndGreedPatchValidator: import("@feathersjs/schema").Validator<any, any>;
144
+ export declare const insightsFearAndGreedPatchResolver: import("@feathersjs/schema").Resolver<{
145
+ _id: string | {};
146
+ timestamp: string;
147
+ name: string;
148
+ now: {
149
+ value: number;
150
+ valueClassification: string;
151
+ timestamp: number;
152
+ } & {
153
+ updateTime: string;
154
+ };
155
+ yesterday: {
156
+ value: number;
157
+ valueClassification: string;
158
+ timestamp: number;
159
+ };
160
+ lastWeek: {
161
+ value: number;
162
+ valueClassification: string;
163
+ timestamp: number;
164
+ };
165
+ }, HookContext<InsightsFearAndGreedService<import("./fear-and-greed.class").InsightsFearAndGreedParams>>>;
166
+ export declare const insightsFearAndGreedQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
167
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
168
+ timestamp: import("@feathersjs/typebox").TString<"date-time">;
169
+ name: import("@feathersjs/typebox").TString<string>;
170
+ now: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
171
+ value: import("@feathersjs/typebox").TNumber;
172
+ valueClassification: import("@feathersjs/typebox").TString<string>;
173
+ timestamp: import("@feathersjs/typebox").TNumber;
174
+ }>, import("@feathersjs/typebox").TObject<{
175
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
176
+ }>]>;
177
+ yesterday: import("@feathersjs/typebox").TObject<{
178
+ value: import("@feathersjs/typebox").TNumber;
179
+ valueClassification: import("@feathersjs/typebox").TString<string>;
180
+ timestamp: import("@feathersjs/typebox").TNumber;
181
+ }>;
182
+ lastWeek: import("@feathersjs/typebox").TObject<{
183
+ value: import("@feathersjs/typebox").TNumber;
184
+ valueClassification: import("@feathersjs/typebox").TString<string>;
185
+ timestamp: import("@feathersjs/typebox").TNumber;
186
+ }>;
187
+ }>, ["_id", "timestamp", "name", "now", "yesterday", "lastWeek"]>;
188
+ export declare const insightsFearAndGreedQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
189
+ $limit: import("@feathersjs/typebox").TNumber;
190
+ $skip: import("@feathersjs/typebox").TNumber;
191
+ $sort: import("@feathersjs/typebox").TObject<{
192
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
193
+ lastWeek: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
194
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
195
+ now: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
196
+ timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
197
+ yesterday: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
198
+ }>;
199
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "lastWeek" | "name" | "now" | "timestamp" | "yesterday")[]>;
200
+ $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
201
+ _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<{
202
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
203
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
204
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
205
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
206
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
207
+ $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<{}>]>;
208
+ $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<{}>]>;
209
+ }>, import("@feathersjs/typebox").TObject<{
210
+ [key: string]: import("@feathersjs/typebox").TSchema;
211
+ } | undefined>]>>]>>;
212
+ lastWeek: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
213
+ value: import("@feathersjs/typebox").TNumber;
214
+ valueClassification: import("@feathersjs/typebox").TString<string>;
215
+ timestamp: import("@feathersjs/typebox").TNumber;
216
+ }>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
217
+ $gt: import("@feathersjs/typebox").TObject<{
218
+ value: import("@feathersjs/typebox").TNumber;
219
+ valueClassification: import("@feathersjs/typebox").TString<string>;
220
+ timestamp: import("@feathersjs/typebox").TNumber;
221
+ }>;
222
+ $gte: import("@feathersjs/typebox").TObject<{
223
+ value: import("@feathersjs/typebox").TNumber;
224
+ valueClassification: import("@feathersjs/typebox").TString<string>;
225
+ timestamp: import("@feathersjs/typebox").TNumber;
226
+ }>;
227
+ $lt: import("@feathersjs/typebox").TObject<{
228
+ value: import("@feathersjs/typebox").TNumber;
229
+ valueClassification: import("@feathersjs/typebox").TString<string>;
230
+ timestamp: import("@feathersjs/typebox").TNumber;
231
+ }>;
232
+ $lte: import("@feathersjs/typebox").TObject<{
233
+ value: import("@feathersjs/typebox").TNumber;
234
+ valueClassification: import("@feathersjs/typebox").TString<string>;
235
+ timestamp: import("@feathersjs/typebox").TNumber;
236
+ }>;
237
+ $ne: import("@feathersjs/typebox").TObject<{
238
+ value: import("@feathersjs/typebox").TNumber;
239
+ valueClassification: import("@feathersjs/typebox").TString<string>;
240
+ timestamp: import("@feathersjs/typebox").TNumber;
241
+ }>;
242
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
243
+ value: import("@feathersjs/typebox").TNumber;
244
+ valueClassification: import("@feathersjs/typebox").TString<string>;
245
+ timestamp: import("@feathersjs/typebox").TNumber;
246
+ }>> | import("@feathersjs/typebox").TObject<{
247
+ value: import("@feathersjs/typebox").TNumber;
248
+ valueClassification: import("@feathersjs/typebox").TString<string>;
249
+ timestamp: import("@feathersjs/typebox").TNumber;
250
+ }>;
251
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
252
+ value: import("@feathersjs/typebox").TNumber;
253
+ valueClassification: import("@feathersjs/typebox").TString<string>;
254
+ timestamp: import("@feathersjs/typebox").TNumber;
255
+ }>> | import("@feathersjs/typebox").TObject<{
256
+ value: import("@feathersjs/typebox").TNumber;
257
+ valueClassification: import("@feathersjs/typebox").TString<string>;
258
+ timestamp: import("@feathersjs/typebox").TNumber;
259
+ }>;
260
+ }>, import("@feathersjs/typebox").TObject<{
261
+ [key: string]: import("@feathersjs/typebox").TSchema;
262
+ } | undefined>]>>]>>;
263
+ 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<{
264
+ $gt: import("@feathersjs/typebox").TString<string>;
265
+ $gte: import("@feathersjs/typebox").TString<string>;
266
+ $lt: import("@feathersjs/typebox").TString<string>;
267
+ $lte: import("@feathersjs/typebox").TString<string>;
268
+ $ne: import("@feathersjs/typebox").TString<string>;
269
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
270
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
271
+ }>, import("@feathersjs/typebox").TObject<{
272
+ [key: string]: import("@feathersjs/typebox").TSchema;
273
+ } | undefined>]>>]>>;
274
+ now: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
275
+ value: import("@feathersjs/typebox").TNumber;
276
+ valueClassification: import("@feathersjs/typebox").TString<string>;
277
+ timestamp: import("@feathersjs/typebox").TNumber;
278
+ }>, import("@feathersjs/typebox").TObject<{
279
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
280
+ }>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
281
+ $gt: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
282
+ value: import("@feathersjs/typebox").TNumber;
283
+ valueClassification: import("@feathersjs/typebox").TString<string>;
284
+ timestamp: import("@feathersjs/typebox").TNumber;
285
+ }>, import("@feathersjs/typebox").TObject<{
286
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
287
+ }>]>;
288
+ $gte: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
289
+ value: import("@feathersjs/typebox").TNumber;
290
+ valueClassification: import("@feathersjs/typebox").TString<string>;
291
+ timestamp: import("@feathersjs/typebox").TNumber;
292
+ }>, import("@feathersjs/typebox").TObject<{
293
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
294
+ }>]>;
295
+ $lt: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
296
+ value: import("@feathersjs/typebox").TNumber;
297
+ valueClassification: import("@feathersjs/typebox").TString<string>;
298
+ timestamp: import("@feathersjs/typebox").TNumber;
299
+ }>, import("@feathersjs/typebox").TObject<{
300
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
301
+ }>]>;
302
+ $lte: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
303
+ value: import("@feathersjs/typebox").TNumber;
304
+ valueClassification: import("@feathersjs/typebox").TString<string>;
305
+ timestamp: import("@feathersjs/typebox").TNumber;
306
+ }>, import("@feathersjs/typebox").TObject<{
307
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
308
+ }>]>;
309
+ $ne: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
310
+ value: import("@feathersjs/typebox").TNumber;
311
+ valueClassification: import("@feathersjs/typebox").TString<string>;
312
+ timestamp: import("@feathersjs/typebox").TNumber;
313
+ }>, import("@feathersjs/typebox").TObject<{
314
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
315
+ }>]>;
316
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
317
+ value: import("@feathersjs/typebox").TNumber;
318
+ valueClassification: import("@feathersjs/typebox").TString<string>;
319
+ timestamp: import("@feathersjs/typebox").TNumber;
320
+ }>, import("@feathersjs/typebox").TObject<{
321
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
322
+ }>]>> | import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
323
+ value: import("@feathersjs/typebox").TNumber;
324
+ valueClassification: import("@feathersjs/typebox").TString<string>;
325
+ timestamp: import("@feathersjs/typebox").TNumber;
326
+ }>, import("@feathersjs/typebox").TObject<{
327
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
328
+ }>]>;
329
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
330
+ value: import("@feathersjs/typebox").TNumber;
331
+ valueClassification: import("@feathersjs/typebox").TString<string>;
332
+ timestamp: import("@feathersjs/typebox").TNumber;
333
+ }>, import("@feathersjs/typebox").TObject<{
334
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
335
+ }>]>> | import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
336
+ value: import("@feathersjs/typebox").TNumber;
337
+ valueClassification: import("@feathersjs/typebox").TString<string>;
338
+ timestamp: import("@feathersjs/typebox").TNumber;
339
+ }>, import("@feathersjs/typebox").TObject<{
340
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
341
+ }>]>;
342
+ }>, import("@feathersjs/typebox").TObject<{
343
+ [key: string]: import("@feathersjs/typebox").TSchema;
344
+ } | undefined>]>>]>>;
345
+ timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
346
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
347
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
348
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
349
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
350
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
351
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
352
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
353
+ }>, import("@feathersjs/typebox").TObject<{
354
+ [key: string]: import("@feathersjs/typebox").TSchema;
355
+ } | undefined>]>>]>>;
356
+ yesterday: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
357
+ value: import("@feathersjs/typebox").TNumber;
358
+ valueClassification: import("@feathersjs/typebox").TString<string>;
359
+ timestamp: import("@feathersjs/typebox").TNumber;
360
+ }>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
361
+ $gt: import("@feathersjs/typebox").TObject<{
362
+ value: import("@feathersjs/typebox").TNumber;
363
+ valueClassification: import("@feathersjs/typebox").TString<string>;
364
+ timestamp: import("@feathersjs/typebox").TNumber;
365
+ }>;
366
+ $gte: import("@feathersjs/typebox").TObject<{
367
+ value: import("@feathersjs/typebox").TNumber;
368
+ valueClassification: import("@feathersjs/typebox").TString<string>;
369
+ timestamp: import("@feathersjs/typebox").TNumber;
370
+ }>;
371
+ $lt: import("@feathersjs/typebox").TObject<{
372
+ value: import("@feathersjs/typebox").TNumber;
373
+ valueClassification: import("@feathersjs/typebox").TString<string>;
374
+ timestamp: import("@feathersjs/typebox").TNumber;
375
+ }>;
376
+ $lte: import("@feathersjs/typebox").TObject<{
377
+ value: import("@feathersjs/typebox").TNumber;
378
+ valueClassification: import("@feathersjs/typebox").TString<string>;
379
+ timestamp: import("@feathersjs/typebox").TNumber;
380
+ }>;
381
+ $ne: import("@feathersjs/typebox").TObject<{
382
+ value: import("@feathersjs/typebox").TNumber;
383
+ valueClassification: import("@feathersjs/typebox").TString<string>;
384
+ timestamp: import("@feathersjs/typebox").TNumber;
385
+ }>;
386
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
387
+ value: import("@feathersjs/typebox").TNumber;
388
+ valueClassification: import("@feathersjs/typebox").TString<string>;
389
+ timestamp: import("@feathersjs/typebox").TNumber;
390
+ }>> | import("@feathersjs/typebox").TObject<{
391
+ value: import("@feathersjs/typebox").TNumber;
392
+ valueClassification: import("@feathersjs/typebox").TString<string>;
393
+ timestamp: import("@feathersjs/typebox").TNumber;
394
+ }>;
395
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
396
+ value: import("@feathersjs/typebox").TNumber;
397
+ valueClassification: import("@feathersjs/typebox").TString<string>;
398
+ timestamp: import("@feathersjs/typebox").TNumber;
399
+ }>> | import("@feathersjs/typebox").TObject<{
400
+ value: import("@feathersjs/typebox").TNumber;
401
+ valueClassification: import("@feathersjs/typebox").TString<string>;
402
+ timestamp: import("@feathersjs/typebox").TNumber;
403
+ }>;
404
+ }>, import("@feathersjs/typebox").TObject<{
405
+ [key: string]: import("@feathersjs/typebox").TSchema;
406
+ } | undefined>]>>]>>;
407
+ }>>, import("@feathersjs/typebox").TObject<{
408
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
409
+ _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<{
410
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
411
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
412
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
413
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
414
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
415
+ $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<{}>]>;
416
+ $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<{}>]>;
417
+ }>, import("@feathersjs/typebox").TObject<{
418
+ [key: string]: import("@feathersjs/typebox").TSchema;
419
+ } | undefined>]>>]>>;
420
+ lastWeek: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
421
+ value: import("@feathersjs/typebox").TNumber;
422
+ valueClassification: import("@feathersjs/typebox").TString<string>;
423
+ timestamp: import("@feathersjs/typebox").TNumber;
424
+ }>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
425
+ $gt: import("@feathersjs/typebox").TObject<{
426
+ value: import("@feathersjs/typebox").TNumber;
427
+ valueClassification: import("@feathersjs/typebox").TString<string>;
428
+ timestamp: import("@feathersjs/typebox").TNumber;
429
+ }>;
430
+ $gte: import("@feathersjs/typebox").TObject<{
431
+ value: import("@feathersjs/typebox").TNumber;
432
+ valueClassification: import("@feathersjs/typebox").TString<string>;
433
+ timestamp: import("@feathersjs/typebox").TNumber;
434
+ }>;
435
+ $lt: import("@feathersjs/typebox").TObject<{
436
+ value: import("@feathersjs/typebox").TNumber;
437
+ valueClassification: import("@feathersjs/typebox").TString<string>;
438
+ timestamp: import("@feathersjs/typebox").TNumber;
439
+ }>;
440
+ $lte: import("@feathersjs/typebox").TObject<{
441
+ value: import("@feathersjs/typebox").TNumber;
442
+ valueClassification: import("@feathersjs/typebox").TString<string>;
443
+ timestamp: import("@feathersjs/typebox").TNumber;
444
+ }>;
445
+ $ne: import("@feathersjs/typebox").TObject<{
446
+ value: import("@feathersjs/typebox").TNumber;
447
+ valueClassification: import("@feathersjs/typebox").TString<string>;
448
+ timestamp: import("@feathersjs/typebox").TNumber;
449
+ }>;
450
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
451
+ value: import("@feathersjs/typebox").TNumber;
452
+ valueClassification: import("@feathersjs/typebox").TString<string>;
453
+ timestamp: import("@feathersjs/typebox").TNumber;
454
+ }>> | import("@feathersjs/typebox").TObject<{
455
+ value: import("@feathersjs/typebox").TNumber;
456
+ valueClassification: import("@feathersjs/typebox").TString<string>;
457
+ timestamp: import("@feathersjs/typebox").TNumber;
458
+ }>;
459
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
460
+ value: import("@feathersjs/typebox").TNumber;
461
+ valueClassification: import("@feathersjs/typebox").TString<string>;
462
+ timestamp: import("@feathersjs/typebox").TNumber;
463
+ }>> | import("@feathersjs/typebox").TObject<{
464
+ value: import("@feathersjs/typebox").TNumber;
465
+ valueClassification: import("@feathersjs/typebox").TString<string>;
466
+ timestamp: import("@feathersjs/typebox").TNumber;
467
+ }>;
468
+ }>, import("@feathersjs/typebox").TObject<{
469
+ [key: string]: import("@feathersjs/typebox").TSchema;
470
+ } | undefined>]>>]>>;
471
+ 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<{
472
+ $gt: import("@feathersjs/typebox").TString<string>;
473
+ $gte: import("@feathersjs/typebox").TString<string>;
474
+ $lt: import("@feathersjs/typebox").TString<string>;
475
+ $lte: import("@feathersjs/typebox").TString<string>;
476
+ $ne: import("@feathersjs/typebox").TString<string>;
477
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
478
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
479
+ }>, import("@feathersjs/typebox").TObject<{
480
+ [key: string]: import("@feathersjs/typebox").TSchema;
481
+ } | undefined>]>>]>>;
482
+ now: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
483
+ value: import("@feathersjs/typebox").TNumber;
484
+ valueClassification: import("@feathersjs/typebox").TString<string>;
485
+ timestamp: import("@feathersjs/typebox").TNumber;
486
+ }>, import("@feathersjs/typebox").TObject<{
487
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
488
+ }>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
489
+ $gt: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
490
+ value: import("@feathersjs/typebox").TNumber;
491
+ valueClassification: import("@feathersjs/typebox").TString<string>;
492
+ timestamp: import("@feathersjs/typebox").TNumber;
493
+ }>, import("@feathersjs/typebox").TObject<{
494
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
495
+ }>]>;
496
+ $gte: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
497
+ value: import("@feathersjs/typebox").TNumber;
498
+ valueClassification: import("@feathersjs/typebox").TString<string>;
499
+ timestamp: import("@feathersjs/typebox").TNumber;
500
+ }>, import("@feathersjs/typebox").TObject<{
501
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
502
+ }>]>;
503
+ $lt: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
504
+ value: import("@feathersjs/typebox").TNumber;
505
+ valueClassification: import("@feathersjs/typebox").TString<string>;
506
+ timestamp: import("@feathersjs/typebox").TNumber;
507
+ }>, import("@feathersjs/typebox").TObject<{
508
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
509
+ }>]>;
510
+ $lte: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
511
+ value: import("@feathersjs/typebox").TNumber;
512
+ valueClassification: import("@feathersjs/typebox").TString<string>;
513
+ timestamp: import("@feathersjs/typebox").TNumber;
514
+ }>, import("@feathersjs/typebox").TObject<{
515
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
516
+ }>]>;
517
+ $ne: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
518
+ value: import("@feathersjs/typebox").TNumber;
519
+ valueClassification: import("@feathersjs/typebox").TString<string>;
520
+ timestamp: import("@feathersjs/typebox").TNumber;
521
+ }>, import("@feathersjs/typebox").TObject<{
522
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
523
+ }>]>;
524
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
525
+ value: import("@feathersjs/typebox").TNumber;
526
+ valueClassification: import("@feathersjs/typebox").TString<string>;
527
+ timestamp: import("@feathersjs/typebox").TNumber;
528
+ }>, import("@feathersjs/typebox").TObject<{
529
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
530
+ }>]>> | import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
531
+ value: import("@feathersjs/typebox").TNumber;
532
+ valueClassification: import("@feathersjs/typebox").TString<string>;
533
+ timestamp: import("@feathersjs/typebox").TNumber;
534
+ }>, import("@feathersjs/typebox").TObject<{
535
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
536
+ }>]>;
537
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
538
+ value: import("@feathersjs/typebox").TNumber;
539
+ valueClassification: import("@feathersjs/typebox").TString<string>;
540
+ timestamp: import("@feathersjs/typebox").TNumber;
541
+ }>, import("@feathersjs/typebox").TObject<{
542
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
543
+ }>]>> | import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
544
+ value: import("@feathersjs/typebox").TNumber;
545
+ valueClassification: import("@feathersjs/typebox").TString<string>;
546
+ timestamp: import("@feathersjs/typebox").TNumber;
547
+ }>, import("@feathersjs/typebox").TObject<{
548
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
549
+ }>]>;
550
+ }>, import("@feathersjs/typebox").TObject<{
551
+ [key: string]: import("@feathersjs/typebox").TSchema;
552
+ } | undefined>]>>]>>;
553
+ timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
554
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
555
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
556
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
557
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
558
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
559
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
560
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
561
+ }>, import("@feathersjs/typebox").TObject<{
562
+ [key: string]: import("@feathersjs/typebox").TSchema;
563
+ } | undefined>]>>]>>;
564
+ yesterday: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
565
+ value: import("@feathersjs/typebox").TNumber;
566
+ valueClassification: import("@feathersjs/typebox").TString<string>;
567
+ timestamp: import("@feathersjs/typebox").TNumber;
568
+ }>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
569
+ $gt: import("@feathersjs/typebox").TObject<{
570
+ value: import("@feathersjs/typebox").TNumber;
571
+ valueClassification: import("@feathersjs/typebox").TString<string>;
572
+ timestamp: import("@feathersjs/typebox").TNumber;
573
+ }>;
574
+ $gte: import("@feathersjs/typebox").TObject<{
575
+ value: import("@feathersjs/typebox").TNumber;
576
+ valueClassification: import("@feathersjs/typebox").TString<string>;
577
+ timestamp: import("@feathersjs/typebox").TNumber;
578
+ }>;
579
+ $lt: import("@feathersjs/typebox").TObject<{
580
+ value: import("@feathersjs/typebox").TNumber;
581
+ valueClassification: import("@feathersjs/typebox").TString<string>;
582
+ timestamp: import("@feathersjs/typebox").TNumber;
583
+ }>;
584
+ $lte: import("@feathersjs/typebox").TObject<{
585
+ value: import("@feathersjs/typebox").TNumber;
586
+ valueClassification: import("@feathersjs/typebox").TString<string>;
587
+ timestamp: import("@feathersjs/typebox").TNumber;
588
+ }>;
589
+ $ne: import("@feathersjs/typebox").TObject<{
590
+ value: import("@feathersjs/typebox").TNumber;
591
+ valueClassification: import("@feathersjs/typebox").TString<string>;
592
+ timestamp: import("@feathersjs/typebox").TNumber;
593
+ }>;
594
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
595
+ value: import("@feathersjs/typebox").TNumber;
596
+ valueClassification: import("@feathersjs/typebox").TString<string>;
597
+ timestamp: import("@feathersjs/typebox").TNumber;
598
+ }>> | import("@feathersjs/typebox").TObject<{
599
+ value: import("@feathersjs/typebox").TNumber;
600
+ valueClassification: import("@feathersjs/typebox").TString<string>;
601
+ timestamp: import("@feathersjs/typebox").TNumber;
602
+ }>;
603
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
604
+ value: import("@feathersjs/typebox").TNumber;
605
+ valueClassification: import("@feathersjs/typebox").TString<string>;
606
+ timestamp: import("@feathersjs/typebox").TNumber;
607
+ }>> | import("@feathersjs/typebox").TObject<{
608
+ value: import("@feathersjs/typebox").TNumber;
609
+ valueClassification: import("@feathersjs/typebox").TString<string>;
610
+ timestamp: import("@feathersjs/typebox").TNumber;
611
+ }>;
612
+ }>, import("@feathersjs/typebox").TObject<{
613
+ [key: string]: import("@feathersjs/typebox").TSchema;
614
+ } | undefined>]>>]>>;
615
+ }>>>;
616
+ }>]>>;
617
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
618
+ _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<{
619
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
620
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
621
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
622
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
623
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
624
+ $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<{}>]>;
625
+ $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<{}>]>;
626
+ }>, import("@feathersjs/typebox").TObject<{
627
+ [key: string]: import("@feathersjs/typebox").TSchema;
628
+ } | undefined>]>>]>>;
629
+ lastWeek: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
630
+ value: import("@feathersjs/typebox").TNumber;
631
+ valueClassification: import("@feathersjs/typebox").TString<string>;
632
+ timestamp: import("@feathersjs/typebox").TNumber;
633
+ }>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
634
+ $gt: import("@feathersjs/typebox").TObject<{
635
+ value: import("@feathersjs/typebox").TNumber;
636
+ valueClassification: import("@feathersjs/typebox").TString<string>;
637
+ timestamp: import("@feathersjs/typebox").TNumber;
638
+ }>;
639
+ $gte: import("@feathersjs/typebox").TObject<{
640
+ value: import("@feathersjs/typebox").TNumber;
641
+ valueClassification: import("@feathersjs/typebox").TString<string>;
642
+ timestamp: import("@feathersjs/typebox").TNumber;
643
+ }>;
644
+ $lt: import("@feathersjs/typebox").TObject<{
645
+ value: import("@feathersjs/typebox").TNumber;
646
+ valueClassification: import("@feathersjs/typebox").TString<string>;
647
+ timestamp: import("@feathersjs/typebox").TNumber;
648
+ }>;
649
+ $lte: import("@feathersjs/typebox").TObject<{
650
+ value: import("@feathersjs/typebox").TNumber;
651
+ valueClassification: import("@feathersjs/typebox").TString<string>;
652
+ timestamp: import("@feathersjs/typebox").TNumber;
653
+ }>;
654
+ $ne: import("@feathersjs/typebox").TObject<{
655
+ value: import("@feathersjs/typebox").TNumber;
656
+ valueClassification: import("@feathersjs/typebox").TString<string>;
657
+ timestamp: import("@feathersjs/typebox").TNumber;
658
+ }>;
659
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
660
+ value: import("@feathersjs/typebox").TNumber;
661
+ valueClassification: import("@feathersjs/typebox").TString<string>;
662
+ timestamp: import("@feathersjs/typebox").TNumber;
663
+ }>> | import("@feathersjs/typebox").TObject<{
664
+ value: import("@feathersjs/typebox").TNumber;
665
+ valueClassification: import("@feathersjs/typebox").TString<string>;
666
+ timestamp: import("@feathersjs/typebox").TNumber;
667
+ }>;
668
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
669
+ value: import("@feathersjs/typebox").TNumber;
670
+ valueClassification: import("@feathersjs/typebox").TString<string>;
671
+ timestamp: import("@feathersjs/typebox").TNumber;
672
+ }>> | import("@feathersjs/typebox").TObject<{
673
+ value: import("@feathersjs/typebox").TNumber;
674
+ valueClassification: import("@feathersjs/typebox").TString<string>;
675
+ timestamp: import("@feathersjs/typebox").TNumber;
676
+ }>;
677
+ }>, import("@feathersjs/typebox").TObject<{
678
+ [key: string]: import("@feathersjs/typebox").TSchema;
679
+ } | undefined>]>>]>>;
680
+ 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<{
681
+ $gt: import("@feathersjs/typebox").TString<string>;
682
+ $gte: import("@feathersjs/typebox").TString<string>;
683
+ $lt: import("@feathersjs/typebox").TString<string>;
684
+ $lte: import("@feathersjs/typebox").TString<string>;
685
+ $ne: import("@feathersjs/typebox").TString<string>;
686
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
687
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
688
+ }>, import("@feathersjs/typebox").TObject<{
689
+ [key: string]: import("@feathersjs/typebox").TSchema;
690
+ } | undefined>]>>]>>;
691
+ now: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
692
+ value: import("@feathersjs/typebox").TNumber;
693
+ valueClassification: import("@feathersjs/typebox").TString<string>;
694
+ timestamp: import("@feathersjs/typebox").TNumber;
695
+ }>, import("@feathersjs/typebox").TObject<{
696
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
697
+ }>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
698
+ $gt: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
699
+ value: import("@feathersjs/typebox").TNumber;
700
+ valueClassification: import("@feathersjs/typebox").TString<string>;
701
+ timestamp: import("@feathersjs/typebox").TNumber;
702
+ }>, import("@feathersjs/typebox").TObject<{
703
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
704
+ }>]>;
705
+ $gte: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
706
+ value: import("@feathersjs/typebox").TNumber;
707
+ valueClassification: import("@feathersjs/typebox").TString<string>;
708
+ timestamp: import("@feathersjs/typebox").TNumber;
709
+ }>, import("@feathersjs/typebox").TObject<{
710
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
711
+ }>]>;
712
+ $lt: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
713
+ value: import("@feathersjs/typebox").TNumber;
714
+ valueClassification: import("@feathersjs/typebox").TString<string>;
715
+ timestamp: import("@feathersjs/typebox").TNumber;
716
+ }>, import("@feathersjs/typebox").TObject<{
717
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
718
+ }>]>;
719
+ $lte: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
720
+ value: import("@feathersjs/typebox").TNumber;
721
+ valueClassification: import("@feathersjs/typebox").TString<string>;
722
+ timestamp: import("@feathersjs/typebox").TNumber;
723
+ }>, import("@feathersjs/typebox").TObject<{
724
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
725
+ }>]>;
726
+ $ne: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
727
+ value: import("@feathersjs/typebox").TNumber;
728
+ valueClassification: import("@feathersjs/typebox").TString<string>;
729
+ timestamp: import("@feathersjs/typebox").TNumber;
730
+ }>, import("@feathersjs/typebox").TObject<{
731
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
732
+ }>]>;
733
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
734
+ value: import("@feathersjs/typebox").TNumber;
735
+ valueClassification: import("@feathersjs/typebox").TString<string>;
736
+ timestamp: import("@feathersjs/typebox").TNumber;
737
+ }>, import("@feathersjs/typebox").TObject<{
738
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
739
+ }>]>> | import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
740
+ value: import("@feathersjs/typebox").TNumber;
741
+ valueClassification: import("@feathersjs/typebox").TString<string>;
742
+ timestamp: import("@feathersjs/typebox").TNumber;
743
+ }>, import("@feathersjs/typebox").TObject<{
744
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
745
+ }>]>;
746
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
747
+ value: import("@feathersjs/typebox").TNumber;
748
+ valueClassification: import("@feathersjs/typebox").TString<string>;
749
+ timestamp: import("@feathersjs/typebox").TNumber;
750
+ }>, import("@feathersjs/typebox").TObject<{
751
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
752
+ }>]>> | import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
753
+ value: import("@feathersjs/typebox").TNumber;
754
+ valueClassification: import("@feathersjs/typebox").TString<string>;
755
+ timestamp: import("@feathersjs/typebox").TNumber;
756
+ }>, import("@feathersjs/typebox").TObject<{
757
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
758
+ }>]>;
759
+ }>, import("@feathersjs/typebox").TObject<{
760
+ [key: string]: import("@feathersjs/typebox").TSchema;
761
+ } | undefined>]>>]>>;
762
+ timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
763
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
764
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
765
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
766
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
767
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
768
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
769
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
770
+ }>, import("@feathersjs/typebox").TObject<{
771
+ [key: string]: import("@feathersjs/typebox").TSchema;
772
+ } | undefined>]>>]>>;
773
+ yesterday: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
774
+ value: import("@feathersjs/typebox").TNumber;
775
+ valueClassification: import("@feathersjs/typebox").TString<string>;
776
+ timestamp: import("@feathersjs/typebox").TNumber;
777
+ }>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
778
+ $gt: import("@feathersjs/typebox").TObject<{
779
+ value: import("@feathersjs/typebox").TNumber;
780
+ valueClassification: import("@feathersjs/typebox").TString<string>;
781
+ timestamp: import("@feathersjs/typebox").TNumber;
782
+ }>;
783
+ $gte: import("@feathersjs/typebox").TObject<{
784
+ value: import("@feathersjs/typebox").TNumber;
785
+ valueClassification: import("@feathersjs/typebox").TString<string>;
786
+ timestamp: import("@feathersjs/typebox").TNumber;
787
+ }>;
788
+ $lt: import("@feathersjs/typebox").TObject<{
789
+ value: import("@feathersjs/typebox").TNumber;
790
+ valueClassification: import("@feathersjs/typebox").TString<string>;
791
+ timestamp: import("@feathersjs/typebox").TNumber;
792
+ }>;
793
+ $lte: import("@feathersjs/typebox").TObject<{
794
+ value: import("@feathersjs/typebox").TNumber;
795
+ valueClassification: import("@feathersjs/typebox").TString<string>;
796
+ timestamp: import("@feathersjs/typebox").TNumber;
797
+ }>;
798
+ $ne: import("@feathersjs/typebox").TObject<{
799
+ value: import("@feathersjs/typebox").TNumber;
800
+ valueClassification: import("@feathersjs/typebox").TString<string>;
801
+ timestamp: import("@feathersjs/typebox").TNumber;
802
+ }>;
803
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
804
+ value: import("@feathersjs/typebox").TNumber;
805
+ valueClassification: import("@feathersjs/typebox").TString<string>;
806
+ timestamp: import("@feathersjs/typebox").TNumber;
807
+ }>> | import("@feathersjs/typebox").TObject<{
808
+ value: import("@feathersjs/typebox").TNumber;
809
+ valueClassification: import("@feathersjs/typebox").TString<string>;
810
+ timestamp: import("@feathersjs/typebox").TNumber;
811
+ }>;
812
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
813
+ value: import("@feathersjs/typebox").TNumber;
814
+ valueClassification: import("@feathersjs/typebox").TString<string>;
815
+ timestamp: import("@feathersjs/typebox").TNumber;
816
+ }>> | import("@feathersjs/typebox").TObject<{
817
+ value: import("@feathersjs/typebox").TNumber;
818
+ valueClassification: import("@feathersjs/typebox").TString<string>;
819
+ timestamp: import("@feathersjs/typebox").TNumber;
820
+ }>;
821
+ }>, import("@feathersjs/typebox").TObject<{
822
+ [key: string]: import("@feathersjs/typebox").TSchema;
823
+ } | undefined>]>>]>>;
824
+ }>>>;
825
+ }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
826
+ _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<{
827
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
828
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
829
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
830
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
831
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
832
+ $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<{}>]>;
833
+ $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<{}>]>;
834
+ }>, import("@feathersjs/typebox").TObject<{
835
+ [key: string]: import("@feathersjs/typebox").TSchema;
836
+ } | undefined>]>>]>>;
837
+ lastWeek: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
838
+ value: import("@feathersjs/typebox").TNumber;
839
+ valueClassification: import("@feathersjs/typebox").TString<string>;
840
+ timestamp: import("@feathersjs/typebox").TNumber;
841
+ }>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
842
+ $gt: import("@feathersjs/typebox").TObject<{
843
+ value: import("@feathersjs/typebox").TNumber;
844
+ valueClassification: import("@feathersjs/typebox").TString<string>;
845
+ timestamp: import("@feathersjs/typebox").TNumber;
846
+ }>;
847
+ $gte: import("@feathersjs/typebox").TObject<{
848
+ value: import("@feathersjs/typebox").TNumber;
849
+ valueClassification: import("@feathersjs/typebox").TString<string>;
850
+ timestamp: import("@feathersjs/typebox").TNumber;
851
+ }>;
852
+ $lt: import("@feathersjs/typebox").TObject<{
853
+ value: import("@feathersjs/typebox").TNumber;
854
+ valueClassification: import("@feathersjs/typebox").TString<string>;
855
+ timestamp: import("@feathersjs/typebox").TNumber;
856
+ }>;
857
+ $lte: import("@feathersjs/typebox").TObject<{
858
+ value: import("@feathersjs/typebox").TNumber;
859
+ valueClassification: import("@feathersjs/typebox").TString<string>;
860
+ timestamp: import("@feathersjs/typebox").TNumber;
861
+ }>;
862
+ $ne: import("@feathersjs/typebox").TObject<{
863
+ value: import("@feathersjs/typebox").TNumber;
864
+ valueClassification: import("@feathersjs/typebox").TString<string>;
865
+ timestamp: import("@feathersjs/typebox").TNumber;
866
+ }>;
867
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
868
+ value: import("@feathersjs/typebox").TNumber;
869
+ valueClassification: import("@feathersjs/typebox").TString<string>;
870
+ timestamp: import("@feathersjs/typebox").TNumber;
871
+ }>> | import("@feathersjs/typebox").TObject<{
872
+ value: import("@feathersjs/typebox").TNumber;
873
+ valueClassification: import("@feathersjs/typebox").TString<string>;
874
+ timestamp: import("@feathersjs/typebox").TNumber;
875
+ }>;
876
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
877
+ value: import("@feathersjs/typebox").TNumber;
878
+ valueClassification: import("@feathersjs/typebox").TString<string>;
879
+ timestamp: import("@feathersjs/typebox").TNumber;
880
+ }>> | import("@feathersjs/typebox").TObject<{
881
+ value: import("@feathersjs/typebox").TNumber;
882
+ valueClassification: import("@feathersjs/typebox").TString<string>;
883
+ timestamp: import("@feathersjs/typebox").TNumber;
884
+ }>;
885
+ }>, import("@feathersjs/typebox").TObject<{
886
+ [key: string]: import("@feathersjs/typebox").TSchema;
887
+ } | undefined>]>>]>>;
888
+ 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<{
889
+ $gt: import("@feathersjs/typebox").TString<string>;
890
+ $gte: import("@feathersjs/typebox").TString<string>;
891
+ $lt: import("@feathersjs/typebox").TString<string>;
892
+ $lte: import("@feathersjs/typebox").TString<string>;
893
+ $ne: import("@feathersjs/typebox").TString<string>;
894
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
895
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
896
+ }>, import("@feathersjs/typebox").TObject<{
897
+ [key: string]: import("@feathersjs/typebox").TSchema;
898
+ } | undefined>]>>]>>;
899
+ now: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
900
+ value: import("@feathersjs/typebox").TNumber;
901
+ valueClassification: import("@feathersjs/typebox").TString<string>;
902
+ timestamp: import("@feathersjs/typebox").TNumber;
903
+ }>, import("@feathersjs/typebox").TObject<{
904
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
905
+ }>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
906
+ $gt: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
907
+ value: import("@feathersjs/typebox").TNumber;
908
+ valueClassification: import("@feathersjs/typebox").TString<string>;
909
+ timestamp: import("@feathersjs/typebox").TNumber;
910
+ }>, import("@feathersjs/typebox").TObject<{
911
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
912
+ }>]>;
913
+ $gte: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
914
+ value: import("@feathersjs/typebox").TNumber;
915
+ valueClassification: import("@feathersjs/typebox").TString<string>;
916
+ timestamp: import("@feathersjs/typebox").TNumber;
917
+ }>, import("@feathersjs/typebox").TObject<{
918
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
919
+ }>]>;
920
+ $lt: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
921
+ value: import("@feathersjs/typebox").TNumber;
922
+ valueClassification: import("@feathersjs/typebox").TString<string>;
923
+ timestamp: import("@feathersjs/typebox").TNumber;
924
+ }>, import("@feathersjs/typebox").TObject<{
925
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
926
+ }>]>;
927
+ $lte: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
928
+ value: import("@feathersjs/typebox").TNumber;
929
+ valueClassification: import("@feathersjs/typebox").TString<string>;
930
+ timestamp: import("@feathersjs/typebox").TNumber;
931
+ }>, import("@feathersjs/typebox").TObject<{
932
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
933
+ }>]>;
934
+ $ne: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
935
+ value: import("@feathersjs/typebox").TNumber;
936
+ valueClassification: import("@feathersjs/typebox").TString<string>;
937
+ timestamp: import("@feathersjs/typebox").TNumber;
938
+ }>, import("@feathersjs/typebox").TObject<{
939
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
940
+ }>]>;
941
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
942
+ value: import("@feathersjs/typebox").TNumber;
943
+ valueClassification: import("@feathersjs/typebox").TString<string>;
944
+ timestamp: import("@feathersjs/typebox").TNumber;
945
+ }>, import("@feathersjs/typebox").TObject<{
946
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
947
+ }>]>> | import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
948
+ value: import("@feathersjs/typebox").TNumber;
949
+ valueClassification: import("@feathersjs/typebox").TString<string>;
950
+ timestamp: import("@feathersjs/typebox").TNumber;
951
+ }>, import("@feathersjs/typebox").TObject<{
952
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
953
+ }>]>;
954
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
955
+ value: import("@feathersjs/typebox").TNumber;
956
+ valueClassification: import("@feathersjs/typebox").TString<string>;
957
+ timestamp: import("@feathersjs/typebox").TNumber;
958
+ }>, import("@feathersjs/typebox").TObject<{
959
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
960
+ }>]>> | import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
961
+ value: import("@feathersjs/typebox").TNumber;
962
+ valueClassification: import("@feathersjs/typebox").TString<string>;
963
+ timestamp: import("@feathersjs/typebox").TNumber;
964
+ }>, import("@feathersjs/typebox").TObject<{
965
+ updateTime: import("@feathersjs/typebox").TString<"date-time">;
966
+ }>]>;
967
+ }>, import("@feathersjs/typebox").TObject<{
968
+ [key: string]: import("@feathersjs/typebox").TSchema;
969
+ } | undefined>]>>]>>;
970
+ timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
971
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
972
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
973
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
974
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
975
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
976
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
977
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
978
+ }>, import("@feathersjs/typebox").TObject<{
979
+ [key: string]: import("@feathersjs/typebox").TSchema;
980
+ } | undefined>]>>]>>;
981
+ yesterday: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
982
+ value: import("@feathersjs/typebox").TNumber;
983
+ valueClassification: import("@feathersjs/typebox").TString<string>;
984
+ timestamp: import("@feathersjs/typebox").TNumber;
985
+ }>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
986
+ $gt: import("@feathersjs/typebox").TObject<{
987
+ value: import("@feathersjs/typebox").TNumber;
988
+ valueClassification: import("@feathersjs/typebox").TString<string>;
989
+ timestamp: import("@feathersjs/typebox").TNumber;
990
+ }>;
991
+ $gte: import("@feathersjs/typebox").TObject<{
992
+ value: import("@feathersjs/typebox").TNumber;
993
+ valueClassification: import("@feathersjs/typebox").TString<string>;
994
+ timestamp: import("@feathersjs/typebox").TNumber;
995
+ }>;
996
+ $lt: import("@feathersjs/typebox").TObject<{
997
+ value: import("@feathersjs/typebox").TNumber;
998
+ valueClassification: import("@feathersjs/typebox").TString<string>;
999
+ timestamp: import("@feathersjs/typebox").TNumber;
1000
+ }>;
1001
+ $lte: import("@feathersjs/typebox").TObject<{
1002
+ value: import("@feathersjs/typebox").TNumber;
1003
+ valueClassification: import("@feathersjs/typebox").TString<string>;
1004
+ timestamp: import("@feathersjs/typebox").TNumber;
1005
+ }>;
1006
+ $ne: import("@feathersjs/typebox").TObject<{
1007
+ value: import("@feathersjs/typebox").TNumber;
1008
+ valueClassification: import("@feathersjs/typebox").TString<string>;
1009
+ timestamp: import("@feathersjs/typebox").TNumber;
1010
+ }>;
1011
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1012
+ value: import("@feathersjs/typebox").TNumber;
1013
+ valueClassification: import("@feathersjs/typebox").TString<string>;
1014
+ timestamp: import("@feathersjs/typebox").TNumber;
1015
+ }>> | import("@feathersjs/typebox").TObject<{
1016
+ value: import("@feathersjs/typebox").TNumber;
1017
+ valueClassification: import("@feathersjs/typebox").TString<string>;
1018
+ timestamp: import("@feathersjs/typebox").TNumber;
1019
+ }>;
1020
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1021
+ value: import("@feathersjs/typebox").TNumber;
1022
+ valueClassification: import("@feathersjs/typebox").TString<string>;
1023
+ timestamp: import("@feathersjs/typebox").TNumber;
1024
+ }>> | import("@feathersjs/typebox").TObject<{
1025
+ value: import("@feathersjs/typebox").TNumber;
1026
+ valueClassification: import("@feathersjs/typebox").TString<string>;
1027
+ timestamp: import("@feathersjs/typebox").TNumber;
1028
+ }>;
1029
+ }>, import("@feathersjs/typebox").TObject<{
1030
+ [key: string]: import("@feathersjs/typebox").TSchema;
1031
+ } | undefined>]>>]>>;
1032
+ }>>]>, import("@feathersjs/typebox").TObject<{}>]>;
1033
+ export type InsightsFearAndGreedQuery = Static<typeof insightsFearAndGreedQuerySchema>;
1034
+ export declare const insightsFearAndGreedQueryValidator: import("@feathersjs/schema").Validator<any, any>;
1035
+ export declare const insightsFearAndGreedQueryResolver: import("@feathersjs/schema").Resolver<Partial<{
1036
+ $limit: number;
1037
+ $skip: number;
1038
+ $sort: {
1039
+ _id?: number | undefined;
1040
+ lastWeek?: number | undefined;
1041
+ name?: number | undefined;
1042
+ now?: number | undefined;
1043
+ timestamp?: number | undefined;
1044
+ yesterday?: number | undefined;
1045
+ };
1046
+ $select: ("_id" | "lastWeek" | "name" | "now" | "timestamp" | "yesterday")[];
1047
+ $and: ({
1048
+ _id?: string | Partial<{
1049
+ $gt: string | {};
1050
+ $gte: string | {};
1051
+ $lt: string | {};
1052
+ $lte: string | {};
1053
+ $ne: string | {};
1054
+ $in: string | (string | {})[] | {};
1055
+ $nin: string | (string | {})[] | {};
1056
+ } & {}> | {} | undefined;
1057
+ lastWeek?: Partial<{
1058
+ $gt: {
1059
+ value: number;
1060
+ valueClassification: string;
1061
+ timestamp: number;
1062
+ };
1063
+ $gte: {
1064
+ value: number;
1065
+ valueClassification: string;
1066
+ timestamp: number;
1067
+ };
1068
+ $lt: {
1069
+ value: number;
1070
+ valueClassification: string;
1071
+ timestamp: number;
1072
+ };
1073
+ $lte: {
1074
+ value: number;
1075
+ valueClassification: string;
1076
+ timestamp: number;
1077
+ };
1078
+ $ne: {
1079
+ value: number;
1080
+ valueClassification: string;
1081
+ timestamp: number;
1082
+ };
1083
+ $in: {
1084
+ value: number;
1085
+ valueClassification: string;
1086
+ timestamp: number;
1087
+ }[] | {
1088
+ value: number;
1089
+ valueClassification: string;
1090
+ timestamp: number;
1091
+ };
1092
+ $nin: {
1093
+ value: number;
1094
+ valueClassification: string;
1095
+ timestamp: number;
1096
+ }[] | {
1097
+ value: number;
1098
+ valueClassification: string;
1099
+ timestamp: number;
1100
+ };
1101
+ } & {}> | {
1102
+ value: number;
1103
+ valueClassification: string;
1104
+ timestamp: number;
1105
+ } | undefined;
1106
+ name?: string | Partial<{
1107
+ $gt: string;
1108
+ $gte: string;
1109
+ $lt: string;
1110
+ $lte: string;
1111
+ $ne: string;
1112
+ $in: string | string[];
1113
+ $nin: string | string[];
1114
+ } & {}> | undefined;
1115
+ now?: Partial<{
1116
+ $gt: {
1117
+ value: number;
1118
+ valueClassification: string;
1119
+ timestamp: number;
1120
+ } & {
1121
+ updateTime: string;
1122
+ };
1123
+ $gte: {
1124
+ value: number;
1125
+ valueClassification: string;
1126
+ timestamp: number;
1127
+ } & {
1128
+ updateTime: string;
1129
+ };
1130
+ $lt: {
1131
+ value: number;
1132
+ valueClassification: string;
1133
+ timestamp: number;
1134
+ } & {
1135
+ updateTime: string;
1136
+ };
1137
+ $lte: {
1138
+ value: number;
1139
+ valueClassification: string;
1140
+ timestamp: number;
1141
+ } & {
1142
+ updateTime: string;
1143
+ };
1144
+ $ne: {
1145
+ value: number;
1146
+ valueClassification: string;
1147
+ timestamp: number;
1148
+ } & {
1149
+ updateTime: string;
1150
+ };
1151
+ $in: ({
1152
+ value: number;
1153
+ valueClassification: string;
1154
+ timestamp: number;
1155
+ } & {
1156
+ updateTime: string;
1157
+ })[] | ({
1158
+ value: number;
1159
+ valueClassification: string;
1160
+ timestamp: number;
1161
+ } & {
1162
+ updateTime: string;
1163
+ });
1164
+ $nin: ({
1165
+ value: number;
1166
+ valueClassification: string;
1167
+ timestamp: number;
1168
+ } & {
1169
+ updateTime: string;
1170
+ })[] | ({
1171
+ value: number;
1172
+ valueClassification: string;
1173
+ timestamp: number;
1174
+ } & {
1175
+ updateTime: string;
1176
+ });
1177
+ } & {}> | ({
1178
+ value: number;
1179
+ valueClassification: string;
1180
+ timestamp: number;
1181
+ } & {
1182
+ updateTime: string;
1183
+ }) | undefined;
1184
+ timestamp?: string | Partial<{
1185
+ $gt: string;
1186
+ $gte: string;
1187
+ $lt: string;
1188
+ $lte: string;
1189
+ $ne: string;
1190
+ $in: string | string[];
1191
+ $nin: string | string[];
1192
+ } & {}> | undefined;
1193
+ yesterday?: Partial<{
1194
+ $gt: {
1195
+ value: number;
1196
+ valueClassification: string;
1197
+ timestamp: number;
1198
+ };
1199
+ $gte: {
1200
+ value: number;
1201
+ valueClassification: string;
1202
+ timestamp: number;
1203
+ };
1204
+ $lt: {
1205
+ value: number;
1206
+ valueClassification: string;
1207
+ timestamp: number;
1208
+ };
1209
+ $lte: {
1210
+ value: number;
1211
+ valueClassification: string;
1212
+ timestamp: number;
1213
+ };
1214
+ $ne: {
1215
+ value: number;
1216
+ valueClassification: string;
1217
+ timestamp: number;
1218
+ };
1219
+ $in: {
1220
+ value: number;
1221
+ valueClassification: string;
1222
+ timestamp: number;
1223
+ }[] | {
1224
+ value: number;
1225
+ valueClassification: string;
1226
+ timestamp: number;
1227
+ };
1228
+ $nin: {
1229
+ value: number;
1230
+ valueClassification: string;
1231
+ timestamp: number;
1232
+ }[] | {
1233
+ value: number;
1234
+ valueClassification: string;
1235
+ timestamp: number;
1236
+ };
1237
+ } & {}> | {
1238
+ value: number;
1239
+ valueClassification: string;
1240
+ timestamp: number;
1241
+ } | undefined;
1242
+ } | {
1243
+ $or: {
1244
+ _id?: string | Partial<{
1245
+ $gt: string | {};
1246
+ $gte: string | {};
1247
+ $lt: string | {};
1248
+ $lte: string | {};
1249
+ $ne: string | {};
1250
+ $in: string | (string | {})[] | {};
1251
+ $nin: string | (string | {})[] | {};
1252
+ } & {}> | {} | undefined;
1253
+ lastWeek?: Partial<{
1254
+ $gt: {
1255
+ value: number;
1256
+ valueClassification: string;
1257
+ timestamp: number;
1258
+ };
1259
+ $gte: {
1260
+ value: number;
1261
+ valueClassification: string;
1262
+ timestamp: number;
1263
+ };
1264
+ $lt: {
1265
+ value: number;
1266
+ valueClassification: string;
1267
+ timestamp: number;
1268
+ };
1269
+ $lte: {
1270
+ value: number;
1271
+ valueClassification: string;
1272
+ timestamp: number;
1273
+ };
1274
+ $ne: {
1275
+ value: number;
1276
+ valueClassification: string;
1277
+ timestamp: number;
1278
+ };
1279
+ $in: {
1280
+ value: number;
1281
+ valueClassification: string;
1282
+ timestamp: number;
1283
+ }[] | {
1284
+ value: number;
1285
+ valueClassification: string;
1286
+ timestamp: number;
1287
+ };
1288
+ $nin: {
1289
+ value: number;
1290
+ valueClassification: string;
1291
+ timestamp: number;
1292
+ }[] | {
1293
+ value: number;
1294
+ valueClassification: string;
1295
+ timestamp: number;
1296
+ };
1297
+ } & {}> | {
1298
+ value: number;
1299
+ valueClassification: string;
1300
+ timestamp: number;
1301
+ } | undefined;
1302
+ name?: string | Partial<{
1303
+ $gt: string;
1304
+ $gte: string;
1305
+ $lt: string;
1306
+ $lte: string;
1307
+ $ne: string;
1308
+ $in: string | string[];
1309
+ $nin: string | string[];
1310
+ } & {}> | undefined;
1311
+ now?: Partial<{
1312
+ $gt: {
1313
+ value: number;
1314
+ valueClassification: string;
1315
+ timestamp: number;
1316
+ } & {
1317
+ updateTime: string;
1318
+ };
1319
+ $gte: {
1320
+ value: number;
1321
+ valueClassification: string;
1322
+ timestamp: number;
1323
+ } & {
1324
+ updateTime: string;
1325
+ };
1326
+ $lt: {
1327
+ value: number;
1328
+ valueClassification: string;
1329
+ timestamp: number;
1330
+ } & {
1331
+ updateTime: string;
1332
+ };
1333
+ $lte: {
1334
+ value: number;
1335
+ valueClassification: string;
1336
+ timestamp: number;
1337
+ } & {
1338
+ updateTime: string;
1339
+ };
1340
+ $ne: {
1341
+ value: number;
1342
+ valueClassification: string;
1343
+ timestamp: number;
1344
+ } & {
1345
+ updateTime: string;
1346
+ };
1347
+ $in: ({
1348
+ value: number;
1349
+ valueClassification: string;
1350
+ timestamp: number;
1351
+ } & {
1352
+ updateTime: string;
1353
+ })[] | ({
1354
+ value: number;
1355
+ valueClassification: string;
1356
+ timestamp: number;
1357
+ } & {
1358
+ updateTime: string;
1359
+ });
1360
+ $nin: ({
1361
+ value: number;
1362
+ valueClassification: string;
1363
+ timestamp: number;
1364
+ } & {
1365
+ updateTime: string;
1366
+ })[] | ({
1367
+ value: number;
1368
+ valueClassification: string;
1369
+ timestamp: number;
1370
+ } & {
1371
+ updateTime: string;
1372
+ });
1373
+ } & {}> | ({
1374
+ value: number;
1375
+ valueClassification: string;
1376
+ timestamp: number;
1377
+ } & {
1378
+ updateTime: string;
1379
+ }) | undefined;
1380
+ timestamp?: string | Partial<{
1381
+ $gt: string;
1382
+ $gte: string;
1383
+ $lt: string;
1384
+ $lte: string;
1385
+ $ne: string;
1386
+ $in: string | string[];
1387
+ $nin: string | string[];
1388
+ } & {}> | undefined;
1389
+ yesterday?: Partial<{
1390
+ $gt: {
1391
+ value: number;
1392
+ valueClassification: string;
1393
+ timestamp: number;
1394
+ };
1395
+ $gte: {
1396
+ value: number;
1397
+ valueClassification: string;
1398
+ timestamp: number;
1399
+ };
1400
+ $lt: {
1401
+ value: number;
1402
+ valueClassification: string;
1403
+ timestamp: number;
1404
+ };
1405
+ $lte: {
1406
+ value: number;
1407
+ valueClassification: string;
1408
+ timestamp: number;
1409
+ };
1410
+ $ne: {
1411
+ value: number;
1412
+ valueClassification: string;
1413
+ timestamp: number;
1414
+ };
1415
+ $in: {
1416
+ value: number;
1417
+ valueClassification: string;
1418
+ timestamp: number;
1419
+ }[] | {
1420
+ value: number;
1421
+ valueClassification: string;
1422
+ timestamp: number;
1423
+ };
1424
+ $nin: {
1425
+ value: number;
1426
+ valueClassification: string;
1427
+ timestamp: number;
1428
+ }[] | {
1429
+ value: number;
1430
+ valueClassification: string;
1431
+ timestamp: number;
1432
+ };
1433
+ } & {}> | {
1434
+ value: number;
1435
+ valueClassification: string;
1436
+ timestamp: number;
1437
+ } | undefined;
1438
+ }[];
1439
+ })[];
1440
+ $or: {
1441
+ _id?: string | Partial<{
1442
+ $gt: string | {};
1443
+ $gte: string | {};
1444
+ $lt: string | {};
1445
+ $lte: string | {};
1446
+ $ne: string | {};
1447
+ $in: string | (string | {})[] | {};
1448
+ $nin: string | (string | {})[] | {};
1449
+ } & {}> | {} | undefined;
1450
+ lastWeek?: Partial<{
1451
+ $gt: {
1452
+ value: number;
1453
+ valueClassification: string;
1454
+ timestamp: number;
1455
+ };
1456
+ $gte: {
1457
+ value: number;
1458
+ valueClassification: string;
1459
+ timestamp: number;
1460
+ };
1461
+ $lt: {
1462
+ value: number;
1463
+ valueClassification: string;
1464
+ timestamp: number;
1465
+ };
1466
+ $lte: {
1467
+ value: number;
1468
+ valueClassification: string;
1469
+ timestamp: number;
1470
+ };
1471
+ $ne: {
1472
+ value: number;
1473
+ valueClassification: string;
1474
+ timestamp: number;
1475
+ };
1476
+ $in: {
1477
+ value: number;
1478
+ valueClassification: string;
1479
+ timestamp: number;
1480
+ }[] | {
1481
+ value: number;
1482
+ valueClassification: string;
1483
+ timestamp: number;
1484
+ };
1485
+ $nin: {
1486
+ value: number;
1487
+ valueClassification: string;
1488
+ timestamp: number;
1489
+ }[] | {
1490
+ value: number;
1491
+ valueClassification: string;
1492
+ timestamp: number;
1493
+ };
1494
+ } & {}> | {
1495
+ value: number;
1496
+ valueClassification: string;
1497
+ timestamp: number;
1498
+ } | undefined;
1499
+ name?: string | Partial<{
1500
+ $gt: string;
1501
+ $gte: string;
1502
+ $lt: string;
1503
+ $lte: string;
1504
+ $ne: string;
1505
+ $in: string | string[];
1506
+ $nin: string | string[];
1507
+ } & {}> | undefined;
1508
+ now?: Partial<{
1509
+ $gt: {
1510
+ value: number;
1511
+ valueClassification: string;
1512
+ timestamp: number;
1513
+ } & {
1514
+ updateTime: string;
1515
+ };
1516
+ $gte: {
1517
+ value: number;
1518
+ valueClassification: string;
1519
+ timestamp: number;
1520
+ } & {
1521
+ updateTime: string;
1522
+ };
1523
+ $lt: {
1524
+ value: number;
1525
+ valueClassification: string;
1526
+ timestamp: number;
1527
+ } & {
1528
+ updateTime: string;
1529
+ };
1530
+ $lte: {
1531
+ value: number;
1532
+ valueClassification: string;
1533
+ timestamp: number;
1534
+ } & {
1535
+ updateTime: string;
1536
+ };
1537
+ $ne: {
1538
+ value: number;
1539
+ valueClassification: string;
1540
+ timestamp: number;
1541
+ } & {
1542
+ updateTime: string;
1543
+ };
1544
+ $in: ({
1545
+ value: number;
1546
+ valueClassification: string;
1547
+ timestamp: number;
1548
+ } & {
1549
+ updateTime: string;
1550
+ })[] | ({
1551
+ value: number;
1552
+ valueClassification: string;
1553
+ timestamp: number;
1554
+ } & {
1555
+ updateTime: string;
1556
+ });
1557
+ $nin: ({
1558
+ value: number;
1559
+ valueClassification: string;
1560
+ timestamp: number;
1561
+ } & {
1562
+ updateTime: string;
1563
+ })[] | ({
1564
+ value: number;
1565
+ valueClassification: string;
1566
+ timestamp: number;
1567
+ } & {
1568
+ updateTime: string;
1569
+ });
1570
+ } & {}> | ({
1571
+ value: number;
1572
+ valueClassification: string;
1573
+ timestamp: number;
1574
+ } & {
1575
+ updateTime: string;
1576
+ }) | undefined;
1577
+ timestamp?: string | Partial<{
1578
+ $gt: string;
1579
+ $gte: string;
1580
+ $lt: string;
1581
+ $lte: string;
1582
+ $ne: string;
1583
+ $in: string | string[];
1584
+ $nin: string | string[];
1585
+ } & {}> | undefined;
1586
+ yesterday?: Partial<{
1587
+ $gt: {
1588
+ value: number;
1589
+ valueClassification: string;
1590
+ timestamp: number;
1591
+ };
1592
+ $gte: {
1593
+ value: number;
1594
+ valueClassification: string;
1595
+ timestamp: number;
1596
+ };
1597
+ $lt: {
1598
+ value: number;
1599
+ valueClassification: string;
1600
+ timestamp: number;
1601
+ };
1602
+ $lte: {
1603
+ value: number;
1604
+ valueClassification: string;
1605
+ timestamp: number;
1606
+ };
1607
+ $ne: {
1608
+ value: number;
1609
+ valueClassification: string;
1610
+ timestamp: number;
1611
+ };
1612
+ $in: {
1613
+ value: number;
1614
+ valueClassification: string;
1615
+ timestamp: number;
1616
+ }[] | {
1617
+ value: number;
1618
+ valueClassification: string;
1619
+ timestamp: number;
1620
+ };
1621
+ $nin: {
1622
+ value: number;
1623
+ valueClassification: string;
1624
+ timestamp: number;
1625
+ }[] | {
1626
+ value: number;
1627
+ valueClassification: string;
1628
+ timestamp: number;
1629
+ };
1630
+ } & {}> | {
1631
+ value: number;
1632
+ valueClassification: string;
1633
+ timestamp: number;
1634
+ } | undefined;
1635
+ }[];
1636
+ }> & {
1637
+ _id?: string | Partial<{
1638
+ $gt: string | {};
1639
+ $gte: string | {};
1640
+ $lt: string | {};
1641
+ $lte: string | {};
1642
+ $ne: string | {};
1643
+ $in: string | (string | {})[] | {};
1644
+ $nin: string | (string | {})[] | {};
1645
+ } & {}> | {} | undefined;
1646
+ lastWeek?: Partial<{
1647
+ $gt: {
1648
+ value: number;
1649
+ valueClassification: string;
1650
+ timestamp: number;
1651
+ };
1652
+ $gte: {
1653
+ value: number;
1654
+ valueClassification: string;
1655
+ timestamp: number;
1656
+ };
1657
+ $lt: {
1658
+ value: number;
1659
+ valueClassification: string;
1660
+ timestamp: number;
1661
+ };
1662
+ $lte: {
1663
+ value: number;
1664
+ valueClassification: string;
1665
+ timestamp: number;
1666
+ };
1667
+ $ne: {
1668
+ value: number;
1669
+ valueClassification: string;
1670
+ timestamp: number;
1671
+ };
1672
+ $in: {
1673
+ value: number;
1674
+ valueClassification: string;
1675
+ timestamp: number;
1676
+ }[] | {
1677
+ value: number;
1678
+ valueClassification: string;
1679
+ timestamp: number;
1680
+ };
1681
+ $nin: {
1682
+ value: number;
1683
+ valueClassification: string;
1684
+ timestamp: number;
1685
+ }[] | {
1686
+ value: number;
1687
+ valueClassification: string;
1688
+ timestamp: number;
1689
+ };
1690
+ } & {}> | {
1691
+ value: number;
1692
+ valueClassification: string;
1693
+ timestamp: number;
1694
+ } | undefined;
1695
+ name?: string | Partial<{
1696
+ $gt: string;
1697
+ $gte: string;
1698
+ $lt: string;
1699
+ $lte: string;
1700
+ $ne: string;
1701
+ $in: string | string[];
1702
+ $nin: string | string[];
1703
+ } & {}> | undefined;
1704
+ now?: Partial<{
1705
+ $gt: {
1706
+ value: number;
1707
+ valueClassification: string;
1708
+ timestamp: number;
1709
+ } & {
1710
+ updateTime: string;
1711
+ };
1712
+ $gte: {
1713
+ value: number;
1714
+ valueClassification: string;
1715
+ timestamp: number;
1716
+ } & {
1717
+ updateTime: string;
1718
+ };
1719
+ $lt: {
1720
+ value: number;
1721
+ valueClassification: string;
1722
+ timestamp: number;
1723
+ } & {
1724
+ updateTime: string;
1725
+ };
1726
+ $lte: {
1727
+ value: number;
1728
+ valueClassification: string;
1729
+ timestamp: number;
1730
+ } & {
1731
+ updateTime: string;
1732
+ };
1733
+ $ne: {
1734
+ value: number;
1735
+ valueClassification: string;
1736
+ timestamp: number;
1737
+ } & {
1738
+ updateTime: string;
1739
+ };
1740
+ $in: ({
1741
+ value: number;
1742
+ valueClassification: string;
1743
+ timestamp: number;
1744
+ } & {
1745
+ updateTime: string;
1746
+ })[] | ({
1747
+ value: number;
1748
+ valueClassification: string;
1749
+ timestamp: number;
1750
+ } & {
1751
+ updateTime: string;
1752
+ });
1753
+ $nin: ({
1754
+ value: number;
1755
+ valueClassification: string;
1756
+ timestamp: number;
1757
+ } & {
1758
+ updateTime: string;
1759
+ })[] | ({
1760
+ value: number;
1761
+ valueClassification: string;
1762
+ timestamp: number;
1763
+ } & {
1764
+ updateTime: string;
1765
+ });
1766
+ } & {}> | ({
1767
+ value: number;
1768
+ valueClassification: string;
1769
+ timestamp: number;
1770
+ } & {
1771
+ updateTime: string;
1772
+ }) | undefined;
1773
+ timestamp?: string | Partial<{
1774
+ $gt: string;
1775
+ $gte: string;
1776
+ $lt: string;
1777
+ $lte: string;
1778
+ $ne: string;
1779
+ $in: string | string[];
1780
+ $nin: string | string[];
1781
+ } & {}> | undefined;
1782
+ yesterday?: Partial<{
1783
+ $gt: {
1784
+ value: number;
1785
+ valueClassification: string;
1786
+ timestamp: number;
1787
+ };
1788
+ $gte: {
1789
+ value: number;
1790
+ valueClassification: string;
1791
+ timestamp: number;
1792
+ };
1793
+ $lt: {
1794
+ value: number;
1795
+ valueClassification: string;
1796
+ timestamp: number;
1797
+ };
1798
+ $lte: {
1799
+ value: number;
1800
+ valueClassification: string;
1801
+ timestamp: number;
1802
+ };
1803
+ $ne: {
1804
+ value: number;
1805
+ valueClassification: string;
1806
+ timestamp: number;
1807
+ };
1808
+ $in: {
1809
+ value: number;
1810
+ valueClassification: string;
1811
+ timestamp: number;
1812
+ }[] | {
1813
+ value: number;
1814
+ valueClassification: string;
1815
+ timestamp: number;
1816
+ };
1817
+ $nin: {
1818
+ value: number;
1819
+ valueClassification: string;
1820
+ timestamp: number;
1821
+ }[] | {
1822
+ value: number;
1823
+ valueClassification: string;
1824
+ timestamp: number;
1825
+ };
1826
+ } & {}> | {
1827
+ value: number;
1828
+ valueClassification: string;
1829
+ timestamp: number;
1830
+ } | undefined;
1831
+ } & {}, HookContext<InsightsFearAndGreedService<import("./fear-and-greed.class").InsightsFearAndGreedParams>>>;