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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (617) hide show
  1. package/lib/src/client.d.ts +260 -0
  2. package/lib/src/client.js +165 -23
  3. package/lib/src/services/advisor/advisor.class.d.ts +12 -0
  4. package/lib/src/services/advisor/advisor.d.ts +11 -0
  5. package/lib/src/services/advisor/advisor.hooks.d.ts +9 -0
  6. package/lib/src/services/advisor/advisor.schema.d.ts +2744 -0
  7. package/lib/src/services/advisor/advisor.shared.d.ts +13 -0
  8. package/lib/src/services/advisor/advisor.shared.js +13 -0
  9. package/lib/src/services/advisor/messages/messages.class.d.ts +11 -0
  10. package/lib/src/services/advisor/messages/messages.d.ts +11 -0
  11. package/lib/src/services/advisor/messages/messages.schema.d.ts +575 -0
  12. package/lib/src/services/advisor/messages/messages.shared.d.ts +13 -0
  13. package/lib/src/services/advisor/messages/messages.shared.js +13 -0
  14. package/lib/src/services/affiliates/affiliates.class.d.ts +18 -0
  15. package/lib/src/services/affiliates/affiliates.d.ts +11 -0
  16. package/lib/src/services/affiliates/affiliates.schema.d.ts +579 -0
  17. package/lib/src/services/affiliates/affiliates.shared.d.ts +13 -0
  18. package/lib/src/services/affiliates/affiliates.shared.js +20 -0
  19. package/lib/src/services/affiliates/clicks/clicks.class.d.ts +11 -0
  20. package/lib/src/services/affiliates/clicks/clicks.d.ts +11 -0
  21. package/lib/src/services/affiliates/clicks/clicks.schema.d.ts +507 -0
  22. package/lib/src/services/affiliates/clicks/clicks.shared.d.ts +13 -0
  23. package/lib/src/services/affiliates/clicks/clicks.shared.js +19 -0
  24. package/lib/src/services/affiliates/comissions/comissions.class.d.ts +11 -0
  25. package/lib/src/services/affiliates/comissions/comissions.d.ts +11 -0
  26. package/lib/src/services/affiliates/comissions/comissions.schema.d.ts +841 -0
  27. package/lib/src/services/affiliates/comissions/comissions.shared.d.ts +13 -0
  28. package/lib/src/services/affiliates/comissions/comissions.shared.js +19 -0
  29. package/lib/src/services/affiliates/contracts/contracts.class.d.ts +11 -0
  30. package/lib/src/services/affiliates/contracts/contracts.d.ts +11 -0
  31. package/lib/src/services/affiliates/contracts/contracts.schema.d.ts +667 -0
  32. package/lib/src/services/affiliates/contracts/contracts.shared.d.ts +13 -0
  33. package/lib/src/services/affiliates/contracts/contracts.shared.js +19 -0
  34. package/lib/src/services/affiliates/coupons/coupons.class.d.ts +11 -0
  35. package/lib/src/services/affiliates/coupons/coupons.d.ts +11 -0
  36. package/lib/src/services/affiliates/coupons/coupons.schema.d.ts +523 -0
  37. package/lib/src/services/affiliates/coupons/coupons.shared.d.ts +13 -0
  38. package/lib/src/services/affiliates/coupons/coupons.shared.js +19 -0
  39. package/lib/src/services/affiliates/links/links.class.d.ts +11 -0
  40. package/lib/src/services/affiliates/links/links.d.ts +11 -0
  41. package/lib/src/services/affiliates/links/links.schema.d.ts +515 -0
  42. package/lib/src/services/affiliates/links/links.shared.d.ts +13 -0
  43. package/lib/src/services/affiliates/links/links.shared.js +13 -0
  44. package/lib/src/services/affiliates/payouts/payouts.class.d.ts +11 -0
  45. package/lib/src/services/affiliates/payouts/payouts.d.ts +11 -0
  46. package/lib/src/services/affiliates/payouts/payouts.schema.d.ts +433 -0
  47. package/lib/src/services/affiliates/payouts/payouts.shared.d.ts +13 -0
  48. package/lib/src/services/affiliates/payouts/payouts.shared.js +19 -0
  49. package/lib/src/services/agents/agents.class.d.ts +3 -2
  50. package/lib/src/services/agents/agents.schema.d.ts +2263 -1061
  51. package/lib/src/services/agents/agents.shared.d.ts +1 -1
  52. package/lib/src/services/agents/configure-bedrock-features.hooks.d.ts +2 -0
  53. package/lib/src/services/agents/create-agent-api-key.hooks.d.ts +2 -0
  54. package/lib/src/services/agents/create-bedrock-agent.hooks.d.ts +2 -0
  55. package/lib/src/services/agents/delete-agent-api-key.hooks.d.ts +2 -0
  56. package/lib/src/services/agents/delete-agent-triggers.hooks.d.ts +5 -0
  57. package/lib/src/services/agents/delete-bedrock-agent.hooks.d.ts +2 -0
  58. package/lib/src/services/agents/manage-bedrock-action-groups.hooks.d.ts +2 -0
  59. package/lib/src/services/agents/prepare/agents/backtest-analyst.d.ts +2 -0
  60. package/lib/src/services/agents/prepare/agents/financial-manager.d.ts +16 -0
  61. package/lib/src/services/agents/prepare/agents/hyperopt-analyst.d.ts +2 -0
  62. package/lib/src/services/agents/prepare/agents/index.d.ts +13 -0
  63. package/lib/src/services/agents/prepare/agents/risk-critic.d.ts +2 -0
  64. package/lib/src/services/agents/prepare/agents/strategy-researcher.d.ts +2 -0
  65. package/lib/src/services/agents/prepare/prepare.schema.d.ts +24 -24
  66. package/lib/src/services/agents/prepare/prepare.shared.d.ts +1 -1
  67. package/lib/src/services/agents/refresh-bedrock-agent-status.hooks.d.ts +2 -0
  68. package/lib/src/services/agents/sessions/conversations/conversations.class.d.ts +3 -2
  69. package/lib/src/services/agents/sessions/conversations/conversations.hooks.d.ts +11 -0
  70. package/lib/src/services/agents/sessions/conversations/conversations.schema.d.ts +833 -463
  71. package/lib/src/services/agents/sessions/conversations/conversations.shared.d.ts +1 -1
  72. package/lib/src/services/agents/sessions/conversations/invoke-agent-provider.hooks.d.ts +2 -0
  73. package/lib/src/services/agents/sessions/conversations/invoke-bedrock-agent.hooks.d.ts +2 -0
  74. package/lib/src/services/agents/sessions/conversations/set-conversation-timestamps.hooks.d.ts +0 -0
  75. package/lib/src/services/agents/sessions/create-bedrock-session.hooks.d.ts +2 -0
  76. package/lib/src/services/agents/sessions/delete-bedrock-session.hooks.d.ts +2 -0
  77. package/lib/src/services/agents/sessions/sessions.class.d.ts +3 -2
  78. package/lib/src/services/agents/sessions/sessions.hooks.d.ts +11 -0
  79. package/lib/src/services/agents/sessions/sessions.schema.d.ts +450 -362
  80. package/lib/src/services/agents/sessions/sessions.shared.d.ts +1 -1
  81. package/lib/src/services/agents/sessions/sync-bedrock-sessions.hooks.d.ts +2 -0
  82. package/lib/src/services/agents/sessions/update-bedrock-session.hooks.d.ts +2 -0
  83. package/lib/src/services/agents/update-bedrock-agent.hooks.d.ts +2 -0
  84. package/lib/src/services/agents/update-trigger-rules-with-agent-info.hooks.d.ts +5 -0
  85. package/lib/src/services/agents/validate-agent-actions.hooks.d.ts +3 -0
  86. package/lib/src/services/autotune/apply-params.d.ts +44 -0
  87. package/lib/src/services/autotune/callback.d.ts +2 -0
  88. package/lib/src/services/autotune/compute/compute.d.ts +40 -0
  89. package/lib/src/services/autotune/optuna-bridge.d.ts +10 -0
  90. package/lib/src/services/autotune/score.d.ts +37 -0
  91. package/lib/src/services/autotune/storage.d.ts +6 -0
  92. package/lib/src/services/autotune/studies/studies.class.d.ts +12 -0
  93. package/lib/src/services/autotune/studies/studies.d.ts +12 -0
  94. package/lib/src/services/autotune/studies/studies.schema.d.ts +1229 -0
  95. package/lib/src/services/autotune/studies/studies.shared.d.ts +13 -0
  96. package/lib/src/services/autotune/studies/studies.shared.js +13 -0
  97. package/lib/src/services/autotune/trials/trials.class.d.ts +12 -0
  98. package/lib/src/services/autotune/trials/trials.d.ts +12 -0
  99. package/lib/src/services/autotune/trials/trials.schema.d.ts +790 -0
  100. package/lib/src/services/autotune/trials/trials.shared.d.ts +13 -0
  101. package/lib/src/services/autotune/trials/trials.shared.js +13 -0
  102. package/lib/src/services/autotune/usage/usage.class.d.ts +11 -0
  103. package/lib/src/services/autotune/usage/usage.d.ts +11 -0
  104. package/lib/src/services/autotune/usage/usage.schema.d.ts +1407 -0
  105. package/lib/src/services/autotune/usage/usage.shared.d.ts +13 -0
  106. package/lib/src/services/autotune/usage/usage.shared.js +13 -0
  107. package/lib/src/services/blog/actions/actions.class.d.ts +29 -0
  108. package/lib/src/services/blog/actions/actions.d.ts +10 -0
  109. package/lib/src/services/blog/actions/actions.shared.d.ts +13 -0
  110. package/lib/src/services/blog/actions/actions.shared.js +13 -0
  111. package/lib/src/services/blog/calendar/calendar.class.d.ts +11 -0
  112. package/lib/src/services/blog/calendar/calendar.d.ts +11 -0
  113. package/lib/src/services/blog/calendar/calendar.schema.d.ts +333 -0
  114. package/lib/src/services/blog/calendar/calendar.shared.d.ts +13 -0
  115. package/lib/src/services/blog/calendar/calendar.shared.js +13 -0
  116. package/lib/src/services/blog/integrations/integrations.class.d.ts +11 -0
  117. package/lib/src/services/blog/integrations/integrations.d.ts +11 -0
  118. package/lib/src/services/blog/integrations/integrations.schema.d.ts +391 -0
  119. package/lib/src/services/blog/integrations/integrations.shared.d.ts +13 -0
  120. package/lib/src/services/blog/integrations/integrations.shared.js +19 -0
  121. package/lib/src/services/blog/posts/posts.class.d.ts +11 -0
  122. package/lib/src/services/blog/posts/posts.d.ts +11 -0
  123. package/lib/src/services/blog/posts/posts.schema.d.ts +1295 -0
  124. package/lib/src/services/blog/posts/posts.shared.d.ts +13 -0
  125. package/lib/src/services/blog/posts/posts.shared.js +13 -0
  126. package/lib/src/services/blog/queries/queries.class.d.ts +11 -0
  127. package/lib/src/services/blog/queries/queries.d.ts +11 -0
  128. package/lib/src/services/blog/queries/queries.schema.d.ts +1187 -0
  129. package/lib/src/services/blog/queries/queries.shared.d.ts +13 -0
  130. package/lib/src/services/blog/queries/queries.shared.js +13 -0
  131. package/lib/src/services/blog/sitemaps/pages/pages.class.d.ts +11 -0
  132. package/lib/src/services/blog/sitemaps/pages/pages.d.ts +11 -0
  133. package/lib/src/services/blog/sitemaps/pages/pages.schema.d.ts +871 -0
  134. package/lib/src/services/blog/sitemaps/pages/pages.shared.d.ts +13 -0
  135. package/lib/src/services/blog/sitemaps/pages/pages.shared.js +13 -0
  136. package/lib/src/services/blog/sitemaps/sitemaps.class.d.ts +11 -0
  137. package/lib/src/services/blog/sitemaps/sitemaps.d.ts +11 -0
  138. package/lib/src/services/blog/sitemaps/sitemaps.schema.d.ts +770 -0
  139. package/lib/src/services/blog/sitemaps/sitemaps.shared.d.ts +13 -0
  140. package/lib/src/services/blog/sitemaps/sitemaps.shared.js +13 -0
  141. package/lib/src/services/blog/suggestions/suggestions.class.d.ts +11 -0
  142. package/lib/src/services/blog/suggestions/suggestions.d.ts +11 -0
  143. package/lib/src/services/blog/suggestions/suggestions.schema.d.ts +963 -0
  144. package/lib/src/services/blog/suggestions/suggestions.shared.d.ts +13 -0
  145. package/lib/src/services/blog/suggestions/suggestions.shared.js +13 -0
  146. package/lib/src/services/changelog/changelog.class.d.ts +34 -0
  147. package/lib/src/services/changelog/changelog.d.ts +11 -0
  148. package/lib/src/services/changelog/changelog.helper.d.ts +50 -0
  149. package/lib/src/services/changelog/changelog.schema.d.ts +456 -0
  150. package/lib/src/services/changelog/changelog.shared.d.ts +13 -0
  151. package/lib/src/services/changelog/changelog.shared.js +13 -0
  152. package/lib/src/services/changelog/hooks/parse-from-file.d.ts +8 -0
  153. package/lib/src/services/config/config.class.d.ts +2 -2
  154. package/lib/src/services/config/config.shared.d.ts +1 -1
  155. package/lib/src/services/copilot/concerns/concerns.class.d.ts +12 -0
  156. package/lib/src/services/copilot/concerns/concerns.d.ts +11 -0
  157. package/lib/src/services/copilot/concerns/concerns.schema.d.ts +727 -0
  158. package/lib/src/services/copilot/concerns/concerns.shared.d.ts +13 -0
  159. package/lib/src/services/copilot/concerns/concerns.shared.js +13 -0
  160. package/lib/src/services/copilot/decisions/decisions.class.d.ts +12 -0
  161. package/lib/src/services/copilot/decisions/decisions.d.ts +11 -0
  162. package/lib/src/services/copilot/decisions/decisions.schema.d.ts +728 -0
  163. package/lib/src/services/copilot/decisions/decisions.shared.d.ts +13 -0
  164. package/lib/src/services/copilot/decisions/decisions.shared.js +19 -0
  165. package/lib/src/services/copilot/help/help.class.d.ts +18 -0
  166. package/lib/src/services/copilot/help/help.d.ts +11 -0
  167. package/lib/src/services/copilot/help/help.schema.d.ts +237 -0
  168. package/lib/src/services/copilot/help/help.shared.d.ts +13 -0
  169. package/lib/src/services/copilot/help/help.shared.js +13 -0
  170. package/lib/src/services/copilot/recommendations/recommendations.class.d.ts +12 -0
  171. package/lib/src/services/copilot/recommendations/recommendations.d.ts +11 -0
  172. package/lib/src/services/copilot/recommendations/recommendations.schema.d.ts +949 -0
  173. package/lib/src/services/copilot/recommendations/recommendations.shared.d.ts +13 -0
  174. package/lib/src/services/copilot/recommendations/recommendations.shared.js +19 -0
  175. package/lib/src/services/currencies/currencies.class.d.ts +11 -0
  176. package/lib/src/services/currencies/currencies.d.ts +11 -0
  177. package/lib/src/services/currencies/currencies.schema.d.ts +769 -0
  178. package/lib/src/services/currencies/currencies.shared.d.ts +13 -0
  179. package/lib/src/services/currencies/currencies.shared.js +13 -0
  180. package/lib/src/services/custom/custom.shared.d.ts +1 -1
  181. package/lib/src/services/emails/emails.class.d.ts +11 -0
  182. package/lib/src/services/emails/emails.d.ts +11 -0
  183. package/lib/src/services/emails/emails.schema.d.ts +563 -0
  184. package/lib/src/services/emails/emails.shared.d.ts +13 -0
  185. package/lib/src/services/emails/emails.shared.js +13 -0
  186. package/lib/src/services/events/events.class.d.ts +3 -2
  187. package/lib/src/services/events/events.schema.d.ts +340 -340
  188. package/lib/src/services/events/events.shared.d.ts +1 -1
  189. package/lib/src/services/events/triggers/triggers.class.d.ts +3 -2
  190. package/lib/src/services/events/triggers/triggers.schema.d.ts +1022 -842
  191. package/lib/src/services/events/triggers/triggers.shared.d.ts +1 -1
  192. package/lib/src/services/events/types/types.class.d.ts +3 -2
  193. package/lib/src/services/events/types/types.schema.d.ts +350 -350
  194. package/lib/src/services/events/types/types.shared.d.ts +1 -1
  195. package/lib/src/services/exchanges/arb-signals/arb-signals.class.d.ts +29 -0
  196. package/lib/src/services/exchanges/arb-signals/arb-signals.d.ts +11 -0
  197. package/lib/src/services/exchanges/arb-signals/arb-signals.schema.d.ts +55 -0
  198. package/lib/src/services/exchanges/arb-signals/arb-signals.shared.d.ts +13 -0
  199. package/lib/src/services/exchanges/arb-signals/arb-signals.shared.js +13 -0
  200. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.class.d.ts +27 -0
  201. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.d.ts +11 -0
  202. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.schema.d.ts +148 -0
  203. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.shared.d.ts +13 -0
  204. package/lib/src/services/exchanges/arbitrage/opportunities/opportunities.shared.js +13 -0
  205. package/lib/src/services/exchanges/balance/balance.class.d.ts +3 -2
  206. package/lib/src/services/exchanges/balance/balance.schema.d.ts +141 -141
  207. package/lib/src/services/exchanges/balance/balance.shared.d.ts +1 -1
  208. package/lib/src/services/exchanges/deposits/deposits.class.d.ts +11 -0
  209. package/lib/src/services/exchanges/deposits/deposits.d.ts +11 -0
  210. package/lib/src/services/exchanges/deposits/deposits.schema.d.ts +905 -0
  211. package/lib/src/services/exchanges/deposits/deposits.shared.d.ts +13 -0
  212. package/lib/src/services/exchanges/deposits/deposits.shared.js +19 -0
  213. package/lib/src/services/exchanges/deposits/sync/sync.class.d.ts +11 -0
  214. package/lib/src/services/exchanges/deposits/sync/sync.d.ts +11 -0
  215. package/lib/src/services/exchanges/deposits/sync/sync.schema.d.ts +621 -0
  216. package/lib/src/services/exchanges/deposits/sync/sync.shared.d.ts +13 -0
  217. package/lib/src/services/exchanges/deposits/sync/sync.shared.js +19 -0
  218. package/lib/src/services/exchanges/download/download.class.d.ts +3 -2
  219. package/lib/src/services/exchanges/download/download.schema.d.ts +149 -149
  220. package/lib/src/services/exchanges/download/download.shared.d.ts +1 -1
  221. package/lib/src/services/exchanges/download/webhooks/webhooks.class.d.ts +2 -2
  222. package/lib/src/services/exchanges/download/webhooks/webhooks.schema.d.ts +171 -171
  223. package/lib/src/services/exchanges/download/webhooks/webhooks.shared.d.ts +1 -1
  224. package/lib/src/services/exchanges/exchanges.class.d.ts +3 -2
  225. package/lib/src/services/exchanges/exchanges.schema.d.ts +626 -359
  226. package/lib/src/services/exchanges/exchanges.shared.d.ts +1 -1
  227. package/lib/src/services/exchanges/ledger/ledger.class.d.ts +11 -0
  228. package/lib/src/services/exchanges/ledger/ledger.d.ts +11 -0
  229. package/lib/src/services/exchanges/ledger/ledger.schema.d.ts +1045 -0
  230. package/lib/src/services/exchanges/ledger/ledger.shared.d.ts +13 -0
  231. package/lib/src/services/exchanges/ledger/ledger.shared.js +13 -0
  232. package/lib/src/services/exchanges/ledger/sync/sync.class.d.ts +11 -0
  233. package/lib/src/services/exchanges/ledger/sync/sync.d.ts +11 -0
  234. package/lib/src/services/exchanges/ledger/sync/sync.schema.d.ts +621 -0
  235. package/lib/src/services/exchanges/ledger/sync/sync.shared.d.ts +13 -0
  236. package/lib/src/services/exchanges/ledger/sync/sync.shared.js +19 -0
  237. package/lib/src/services/exchanges/markets-stats/markets-stats.class.d.ts +23 -0
  238. package/lib/src/services/exchanges/markets-stats/markets-stats.d.ts +11 -0
  239. package/lib/src/services/exchanges/markets-stats/markets-stats.schema.d.ts +178 -0
  240. package/lib/src/services/exchanges/markets-stats/markets-stats.shared.d.ts +13 -0
  241. package/lib/src/services/exchanges/markets-stats/markets-stats.shared.js +13 -0
  242. package/lib/src/services/exchanges/ohlcv/history/history.class.d.ts +11 -0
  243. package/lib/src/services/exchanges/ohlcv/history/history.d.ts +11 -0
  244. package/lib/src/services/exchanges/ohlcv/history/history.schema.d.ts +473 -0
  245. package/lib/src/services/exchanges/ohlcv/history/history.shared.d.ts +13 -0
  246. package/lib/src/services/exchanges/ohlcv/history/history.shared.js +19 -0
  247. package/lib/src/services/exchanges/ohlcv/ohlcv.schema.d.ts +162 -162
  248. package/lib/src/services/exchanges/ohlcv/ohlcv.shared.d.ts +1 -1
  249. package/lib/src/services/exchanges/orderbook/orderbook.class.d.ts +30 -0
  250. package/lib/src/services/exchanges/orderbook/orderbook.d.ts +11 -0
  251. package/lib/src/services/exchanges/orderbook/orderbook.schema.d.ts +272 -0
  252. package/lib/src/services/exchanges/orderbook/orderbook.shared.d.ts +13 -0
  253. package/lib/src/services/exchanges/orderbook/orderbook.shared.js +13 -0
  254. package/lib/src/services/exchanges/ticker/ticker.class.d.ts +3 -2
  255. package/lib/src/services/exchanges/ticker/ticker.schema.d.ts +243 -243
  256. package/lib/src/services/exchanges/ticker/ticker.shared.d.ts +1 -1
  257. package/lib/src/services/exchanges/transactions/sync/sync.class.d.ts +11 -0
  258. package/lib/src/services/exchanges/transactions/sync/sync.d.ts +11 -0
  259. package/lib/src/services/exchanges/transactions/sync/sync.schema.d.ts +653 -0
  260. package/lib/src/services/exchanges/transactions/sync/sync.shared.d.ts +13 -0
  261. package/lib/src/services/exchanges/transactions/sync/sync.shared.js +19 -0
  262. package/lib/src/services/exchanges/transactions/transactions.class.d.ts +11 -0
  263. package/lib/src/services/exchanges/transactions/transactions.d.ts +11 -0
  264. package/lib/src/services/exchanges/transactions/transactions.schema.d.ts +1119 -0
  265. package/lib/src/services/exchanges/transactions/transactions.shared.d.ts +13 -0
  266. package/lib/src/services/exchanges/transactions/transactions.shared.js +19 -0
  267. package/lib/src/services/extensions/aggregate-extensions.hooks.d.ts +2 -0
  268. package/lib/src/services/extensions/extensions.class.d.ts +3 -2
  269. package/lib/src/services/extensions/extensions.schema.d.ts +641 -559
  270. package/lib/src/services/extensions/extensions.shared.d.ts +1 -1
  271. package/lib/src/services/homepage/homepage.schema.d.ts +17 -9
  272. package/lib/src/services/homepage/homepage.shared.d.ts +10 -2
  273. package/lib/src/services/homepage/homepage.shared.js +8 -1
  274. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.class.d.ts +52 -0
  275. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.d.ts +11 -0
  276. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.schema.d.ts +684 -0
  277. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.shared.d.ts +13 -0
  278. package/lib/src/services/insights/crypto-stress-index/crypto-stress-index.shared.js +14 -0
  279. package/lib/src/services/insights/etf-flow/etf-flow.class.d.ts +11 -0
  280. package/lib/src/services/insights/etf-flow/etf-flow.d.ts +11 -0
  281. package/lib/src/services/insights/etf-flow/etf-flow.schema.d.ts +237 -0
  282. package/lib/src/services/insights/etf-flow/etf-flow.shared.d.ts +13 -0
  283. package/lib/src/services/insights/etf-flow/etf-flow.shared.js +13 -0
  284. package/lib/src/services/insights/fear-and-greed/fear-and-greed.class.d.ts +11 -0
  285. package/lib/src/services/insights/fear-and-greed/fear-and-greed.d.ts +11 -0
  286. package/lib/src/services/insights/fear-and-greed/fear-and-greed.schema.d.ts +1831 -0
  287. package/lib/src/services/insights/fear-and-greed/fear-and-greed.shared.d.ts +13 -0
  288. package/lib/src/services/insights/fear-and-greed/fear-and-greed.shared.js +13 -0
  289. package/lib/src/services/insights/global/global.class.d.ts +11 -0
  290. package/lib/src/services/insights/global/global.d.ts +11 -0
  291. package/lib/src/services/insights/global/global.schema.d.ts +779 -0
  292. package/lib/src/services/insights/global/global.shared.d.ts +13 -0
  293. package/lib/src/services/insights/global/global.shared.js +13 -0
  294. package/lib/src/services/insights/insights.class.d.ts +11 -0
  295. package/lib/src/services/insights/insights.d.ts +11 -0
  296. package/lib/src/services/insights/insights.hooks.d.ts +20 -0
  297. package/lib/src/services/{tools/tools.schema.d.ts → insights/insights.schema.d.ts} +130 -162
  298. package/lib/src/services/insights/insights.shared.d.ts +13 -0
  299. package/lib/src/services/insights/insights.shared.js +13 -0
  300. package/lib/src/services/insights/news/news.class.d.ts +23 -0
  301. package/lib/src/services/insights/news/news.d.ts +11 -0
  302. package/lib/src/services/insights/news/news.schema.d.ts +857 -0
  303. package/lib/src/services/insights/news/news.shared.d.ts +23 -0
  304. package/lib/src/services/insights/news/news.shared.js +20 -0
  305. package/lib/src/services/keys/KeysService.d.ts +2 -2
  306. package/lib/src/services/keys/keys.class.d.ts +3 -2
  307. package/lib/src/services/keys/keys.schema.d.ts +364 -364
  308. package/lib/src/services/keys/keys.shared.d.ts +1 -1
  309. package/lib/src/services/knowledges/knowledges.class.d.ts +37 -0
  310. package/lib/src/services/knowledges/knowledges.d.ts +11 -0
  311. package/lib/src/services/knowledges/knowledges.schema.d.ts +566 -0
  312. package/lib/src/services/knowledges/knowledges.shared.d.ts +13 -0
  313. package/lib/src/services/knowledges/knowledges.shared.js +13 -0
  314. package/lib/src/services/mailer/mailer.shared.d.ts +1 -1
  315. package/lib/src/services/marketplaces/marketplaces.class.d.ts +2 -2
  316. package/lib/src/services/marketplaces/marketplaces.shared.d.ts +1 -1
  317. package/lib/src/services/markets/markets.class.d.ts +2 -2
  318. package/lib/src/services/markets/markets.schema.d.ts +112 -112
  319. package/lib/src/services/markets/markets.shared.d.ts +1 -1
  320. package/lib/src/services/messages/messages.class.d.ts +2 -2
  321. package/lib/src/services/messages/messages.schema.d.ts +1257 -353
  322. package/lib/src/services/messages/messages.shared.d.ts +1 -1
  323. package/lib/src/services/models/pods/events/events.class.d.ts +11 -0
  324. package/lib/src/services/models/pods/events/events.d.ts +11 -0
  325. package/lib/src/services/models/pods/events/events.schema.d.ts +669 -0
  326. package/lib/src/services/models/pods/events/events.shared.d.ts +13 -0
  327. package/lib/src/services/models/pods/events/events.shared.js +13 -0
  328. package/lib/src/services/models/pods/pods.class.d.ts +12 -0
  329. package/lib/src/services/models/pods/pods.d.ts +12 -0
  330. package/lib/src/services/models/pods/pods.schema.d.ts +1095 -0
  331. package/lib/src/services/models/pods/pods.shared.d.ts +13 -0
  332. package/lib/src/services/models/pods/pods.shared.js +13 -0
  333. package/lib/src/services/models/presets/presets-generate-and-queue.hooks.d.ts +2 -0
  334. package/lib/src/services/models/presets/presets-generate-freqai-config.hooks.d.ts +2 -0
  335. package/lib/src/services/models/presets/presets-generate-strategy.hooks.d.ts +2 -0
  336. package/lib/src/services/models/presets/presets-get-results.hooks.d.ts +2 -0
  337. package/lib/src/services/models/presets/presets-validate.hooks.d.ts +2 -0
  338. package/lib/src/services/models/presets/presets.class.d.ts +12 -0
  339. package/lib/src/services/models/presets/presets.d.ts +12 -0
  340. package/lib/src/services/models/presets/presets.schema.d.ts +2611 -0
  341. package/lib/src/services/models/presets/presets.shared.d.ts +13 -0
  342. package/lib/src/services/models/presets/presets.shared.js +13 -0
  343. package/lib/src/services/models/signals/history/history.class.d.ts +11 -0
  344. package/lib/src/services/models/signals/history/history.d.ts +11 -0
  345. package/lib/src/services/models/signals/history/history.schema.d.ts +513 -0
  346. package/lib/src/services/models/signals/history/history.shared.d.ts +13 -0
  347. package/lib/src/services/models/signals/history/history.shared.js +13 -0
  348. package/lib/src/services/models/signals/signals-proxy-router.d.ts +47 -0
  349. package/lib/src/services/models/signals/signals.class.d.ts +12 -0
  350. package/lib/src/services/models/signals/signals.d.ts +12 -0
  351. package/lib/src/services/models/signals/signals.schema.d.ts +976 -0
  352. package/lib/src/services/models/signals/signals.shared.d.ts +13 -0
  353. package/lib/src/services/models/signals/signals.shared.js +13 -0
  354. package/lib/src/services/models/signals/subscriptions/subscriptions.class.d.ts +11 -0
  355. package/lib/src/services/models/signals/subscriptions/subscriptions.d.ts +11 -0
  356. package/lib/src/services/models/signals/subscriptions/subscriptions.schema.d.ts +585 -0
  357. package/lib/src/services/models/signals/subscriptions/subscriptions.shared.d.ts +13 -0
  358. package/lib/src/services/models/signals/subscriptions/subscriptions.shared.js +15 -0
  359. package/lib/src/services/objectives/objectives.class.d.ts +11 -0
  360. package/lib/src/services/objectives/objectives.d.ts +11 -0
  361. package/lib/src/services/objectives/objectives.hooks.d.ts +12 -0
  362. package/lib/src/services/objectives/objectives.schema.d.ts +717 -0
  363. package/lib/src/services/objectives/objectives.shared.d.ts +13 -0
  364. package/lib/src/services/objectives/objectives.shared.js +13 -0
  365. package/lib/src/services/plans/plans.class.d.ts +20 -0
  366. package/lib/src/services/plans/plans.d.ts +11 -0
  367. package/lib/src/services/plans/plans.schema.d.ts +383 -0
  368. package/lib/src/services/plans/plans.shared.d.ts +13 -0
  369. package/lib/src/services/plans/plans.shared.js +13 -0
  370. package/lib/src/services/referrals/referrals.class.d.ts +11 -0
  371. package/lib/src/services/referrals/referrals.d.ts +11 -0
  372. package/lib/src/services/referrals/referrals.schema.d.ts +581 -0
  373. package/lib/src/services/referrals/referrals.shared.d.ts +13 -0
  374. package/lib/src/services/referrals/referrals.shared.js +13 -0
  375. package/lib/src/services/restricted/restricted.shared.d.ts +1 -1
  376. package/lib/src/services/security/events/security-events.class.d.ts +11 -0
  377. package/lib/src/services/security/events/security-events.d.ts +11 -0
  378. package/lib/src/services/security/events/security-events.schema.d.ts +499 -0
  379. package/lib/src/services/security/events/security-events.shared.d.ts +8 -0
  380. package/lib/src/services/security/events/security-events.shared.js +13 -0
  381. package/lib/src/services/series/balance/balance.class.d.ts +11 -0
  382. package/lib/src/services/series/balance/balance.d.ts +11 -0
  383. package/lib/src/services/series/balance/balance.schema.d.ts +527 -0
  384. package/lib/src/services/series/balance/balance.shared.d.ts +13 -0
  385. package/lib/src/services/series/balance/balance.shared.js +13 -0
  386. package/lib/src/services/series/performance/performance.class.d.ts +11 -0
  387. package/lib/src/services/series/performance/performance.d.ts +11 -0
  388. package/lib/src/services/series/performance/performance.schema.d.ts +495 -0
  389. package/lib/src/services/series/performance/performance.shared.d.ts +13 -0
  390. package/lib/src/services/series/performance/performance.shared.js +19 -0
  391. package/lib/src/services/series/performance/performance.usage.examples.d.ts +81 -0
  392. package/lib/src/services/snapshot/snapshot.class.d.ts +11 -0
  393. package/lib/src/services/snapshot/snapshot.d.ts +11 -0
  394. package/lib/src/services/snapshot/snapshot.schema.d.ts +11963 -0
  395. package/lib/src/services/snapshot/snapshot.shared.d.ts +13 -0
  396. package/lib/src/services/snapshot/snapshot.shared.js +14 -0
  397. package/lib/src/services/store/items/items.class.d.ts +12 -0
  398. package/lib/src/services/store/items/items.d.ts +11 -0
  399. package/lib/src/services/store/items/items.schema.d.ts +1395 -0
  400. package/lib/src/services/store/items/items.shared.d.ts +13 -0
  401. package/lib/src/services/store/items/items.shared.js +13 -0
  402. package/lib/src/services/strategies/ai/ai.class.d.ts +3 -2
  403. package/lib/src/services/strategies/ai/ai.schema.d.ts +33 -33
  404. package/lib/src/services/strategies/ai/ai.shared.d.ts +1 -1
  405. package/lib/src/services/strategies/ai/stream/stream.shared.d.ts +1 -1
  406. package/lib/src/services/strategies/backtest/backtest.class.d.ts +3 -2
  407. package/lib/src/services/strategies/backtest/backtest.schema.d.ts +820 -288
  408. package/lib/src/services/strategies/backtest/backtest.shared.d.ts +1 -1
  409. package/lib/src/services/strategies/backtest/preflight/preflight.class.d.ts +46 -0
  410. package/lib/src/services/strategies/backtest/preflight/preflight.d.ts +11 -0
  411. package/lib/src/services/strategies/backtest/preflight/preflight.schema.d.ts +737 -0
  412. package/lib/src/services/strategies/backtest/preflight/preflight.shared.d.ts +13 -0
  413. package/lib/src/services/strategies/backtest/preflight/preflight.shared.js +13 -0
  414. package/lib/src/services/strategies/backtest/results/results.class.d.ts +2 -2
  415. package/lib/src/services/strategies/backtest/results/results.schema.d.ts +315 -315
  416. package/lib/src/services/strategies/backtest/results/results.shared.d.ts +1 -1
  417. package/lib/src/services/strategies/blob/blob.shared.d.ts +1 -1
  418. package/lib/src/services/strategies/follow/follow.class.d.ts +12 -0
  419. package/lib/src/services/strategies/follow/follow.d.ts +11 -0
  420. package/lib/src/services/strategies/follow/follow.schema.d.ts +711 -0
  421. package/lib/src/services/strategies/follow/follow.shared.d.ts +13 -0
  422. package/lib/src/services/strategies/follow/follow.shared.js +19 -0
  423. package/lib/src/services/strategies/generate/generate.class.d.ts +3 -2
  424. package/lib/src/services/strategies/generate/generate.schema.d.ts +534 -88
  425. package/lib/src/services/strategies/generate/generate.shared.d.ts +1 -1
  426. package/lib/src/services/strategies/history/history.class.d.ts +11 -0
  427. package/lib/src/services/strategies/history/history.d.ts +11 -0
  428. package/lib/src/services/strategies/history/history.schema.d.ts +714 -0
  429. package/lib/src/services/strategies/history/history.shared.d.ts +13 -0
  430. package/lib/src/services/strategies/history/history.shared.js +19 -0
  431. package/lib/src/services/strategies/hyperopt/hyperopt-generate-and-queue.hooks.d.ts +2 -0
  432. package/lib/src/services/strategies/hyperopt/hyperopt-generate-config-in-disk.hooks.d.ts +2 -0
  433. package/lib/src/services/strategies/hyperopt/hyperopt-generate-exchange-config.hooks.d.ts +8 -0
  434. package/lib/src/services/strategies/hyperopt/hyperopt-get-results.hooks.d.ts +2 -0
  435. package/lib/src/services/strategies/hyperopt/hyperopt-in-disk-clone-strategy.hooks.d.ts +2 -0
  436. package/lib/src/services/strategies/hyperopt/hyperopt-populate-exchange.hooks.d.ts +7 -0
  437. package/lib/src/services/strategies/hyperopt/hyperopt-promote-template.hooks.d.ts +9 -0
  438. package/lib/src/services/strategies/hyperopt/hyperopt-propagate-results.hooks.d.ts +2 -0
  439. package/lib/src/services/strategies/hyperopt/hyperopt-validate-exchange-whitelist.hooks.d.ts +10 -0
  440. package/lib/src/services/strategies/hyperopt/hyperopt-validate-historical-data.hooks.d.ts +9 -0
  441. package/lib/src/services/strategies/hyperopt/hyperopt-validate-stake-balance.hooks.d.ts +7 -0
  442. package/lib/src/services/strategies/hyperopt/hyperopt-validate-stake-currency.hooks.d.ts +9 -0
  443. package/lib/src/services/strategies/hyperopt/hyperopt-validate.hooks.d.ts +7 -0
  444. package/lib/src/services/strategies/hyperopt/hyperopt-verify-subscription-limits.hooks.d.ts +6 -0
  445. package/lib/src/services/strategies/hyperopt/hyperopt.class.d.ts +3 -2
  446. package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +2552 -278
  447. package/lib/src/services/strategies/hyperopt/hyperopt.shared.d.ts +1 -1
  448. package/lib/src/services/strategies/indicators/indicators.class.d.ts +2 -2
  449. package/lib/src/services/strategies/indicators/indicators.schema.d.ts +106 -106
  450. package/lib/src/services/strategies/indicators/indicators.shared.d.ts +1 -1
  451. package/lib/src/services/strategies/indicators/talib/talib.class.d.ts +2 -2
  452. package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +102 -102
  453. package/lib/src/services/strategies/indicators/talib/talib.shared.d.ts +1 -1
  454. package/lib/src/services/strategies/research/research.class.d.ts +11 -0
  455. package/lib/src/services/strategies/research/research.d.ts +12 -0
  456. package/lib/src/services/strategies/research/research.schema.d.ts +1006 -0
  457. package/lib/src/services/strategies/research/research.shared.d.ts +13 -0
  458. package/lib/src/services/strategies/research/research.shared.js +19 -0
  459. package/lib/src/services/strategies/strategies.class.d.ts +3 -2
  460. package/lib/src/services/strategies/strategies.schema.d.ts +3694 -3322
  461. package/lib/src/services/strategies/strategies.shared.d.ts +1 -1
  462. package/lib/src/services/strategies/templates/templates.class.d.ts +2 -2
  463. package/lib/src/services/strategies/templates/templates.schema.d.ts +8062 -950
  464. package/lib/src/services/strategies/templates/templates.shared.d.ts +1 -1
  465. package/lib/src/services/stripe/charges/charges.shared.d.ts +1 -1
  466. package/lib/src/services/stripe/customers/cards/cards.shared.d.ts +1 -1
  467. package/lib/src/services/stripe/customers/customers.shared.d.ts +1 -1
  468. package/lib/src/services/stripe/customers/paymentintent/paymentintent.shared.d.ts +1 -1
  469. package/lib/src/services/stripe/customers/paymentmethods/paymentmethods.shared.d.ts +1 -1
  470. package/lib/src/services/stripe/customers/subscriptions/subscriptions.shared.d.ts +1 -1
  471. package/lib/src/services/stripe/products/products.shared.d.ts +1 -1
  472. package/lib/src/services/stripe/webhooks/webhooks.shared.d.ts +1 -1
  473. package/lib/src/services/support/support.class.d.ts +18 -0
  474. package/lib/src/services/support/support.d.ts +11 -0
  475. package/lib/src/services/support/support.schema.d.ts +507 -0
  476. package/lib/src/services/support/support.shared.d.ts +13 -0
  477. package/lib/src/services/support/support.shared.js +13 -0
  478. package/lib/src/services/tasks/comments/comments.class.d.ts +11 -0
  479. package/lib/src/services/tasks/comments/comments.d.ts +11 -0
  480. package/lib/src/services/tasks/comments/comments.schema.d.ts +771 -0
  481. package/lib/src/services/tasks/comments/comments.shared.d.ts +13 -0
  482. package/lib/src/services/tasks/comments/comments.shared.js +13 -0
  483. package/lib/src/services/tasks/tasks.class.d.ts +14 -0
  484. package/lib/src/services/tasks/tasks.d.ts +11 -0
  485. package/lib/src/services/tasks/tasks.hooks.d.ts +90 -0
  486. package/lib/src/services/tasks/tasks.schema.d.ts +1281 -0
  487. package/lib/src/services/tasks/tasks.shared.d.ts +13 -0
  488. package/lib/src/services/tasks/tasks.shared.js +13 -0
  489. package/lib/src/services/tax/research/research.class.d.ts +11 -0
  490. package/lib/src/services/tax/research/research.d.ts +11 -0
  491. package/lib/src/services/tax/research/research.schema.d.ts +237 -0
  492. package/lib/src/services/tax/research/research.shared.d.ts +13 -0
  493. package/lib/src/services/tax/research/research.shared.js +13 -0
  494. package/lib/src/services/tax/sessions/conversations/conversations.class.d.ts +12 -0
  495. package/lib/src/services/tax/sessions/conversations/conversations.d.ts +11 -0
  496. package/lib/src/services/tax/sessions/conversations/conversations.hooks.d.ts +11 -0
  497. package/lib/src/services/tax/sessions/conversations/conversations.schema.d.ts +2923 -0
  498. package/lib/src/services/tax/sessions/conversations/conversations.shared.d.ts +13 -0
  499. package/lib/src/services/tax/sessions/conversations/conversations.shared.js +13 -0
  500. package/lib/src/services/tax/sessions/conversations/invoke-tax-bedrock-agent.hooks.d.ts +2 -0
  501. package/lib/src/services/tax/sessions/create-tax-bedrock-session.hooks.d.ts +2 -0
  502. package/lib/src/services/tax/sessions/delete-tax-bedrock-session.hooks.d.ts +2 -0
  503. package/lib/src/services/tax/sessions/sessions.class.d.ts +12 -0
  504. package/lib/src/services/tax/sessions/sessions.d.ts +11 -0
  505. package/lib/src/services/tax/sessions/sessions.hooks.d.ts +11 -0
  506. package/lib/src/services/tax/sessions/sessions.schema.d.ts +803 -0
  507. package/lib/src/services/tax/sessions/sessions.shared.d.ts +13 -0
  508. package/lib/src/services/tax/sessions/sessions.shared.js +13 -0
  509. package/lib/src/services/tax/sessions/sync-tax-bedrock-sessions.hooks.d.ts +2 -0
  510. package/lib/src/services/tax/sessions/update-tax-bedrock-session.hooks.d.ts +2 -0
  511. package/lib/src/services/telegram/link/link.class.d.ts +26 -0
  512. package/lib/src/services/telegram/link/link.d.ts +11 -0
  513. package/lib/src/services/telegram/link/link.schema.d.ts +174 -0
  514. package/lib/src/services/telegram/link/link.shared.d.ts +13 -0
  515. package/lib/src/services/telegram/link/link.shared.js +13 -0
  516. package/lib/src/services/telegram/telegram.class.d.ts +34 -0
  517. package/lib/src/services/telegram/telegram.d.ts +11 -0
  518. package/lib/src/services/telegram/telegram.schema.d.ts +152 -0
  519. package/lib/src/services/telegram/telegram.shared.d.ts +13 -0
  520. package/lib/src/services/telegram/telegram.shared.js +13 -0
  521. package/lib/src/services/toggles/toggles.class.d.ts +19 -0
  522. package/lib/src/services/toggles/toggles.d.ts +11 -0
  523. package/lib/src/services/toggles/toggles.schema.d.ts +335 -0
  524. package/lib/src/services/toggles/toggles.shared.d.ts +13 -0
  525. package/lib/src/services/toggles/toggles.shared.js +13 -0
  526. package/lib/src/services/tokens/tokens.class.d.ts +11 -0
  527. package/lib/src/services/tokens/tokens.d.ts +11 -0
  528. package/lib/src/services/tokens/tokens.schema.d.ts +941 -0
  529. package/lib/src/services/tokens/tokens.shared.d.ts +13 -0
  530. package/lib/src/services/tokens/tokens.shared.js +13 -0
  531. package/lib/src/services/traders/pods/api/api.class.d.ts +3 -2
  532. package/lib/src/services/traders/pods/api/api.schema.d.ts +12055 -3967
  533. package/lib/src/services/traders/pods/api/api.shared.d.ts +1 -1
  534. package/lib/src/services/traders/pods/blob/blob.shared.d.ts +1 -1
  535. package/lib/src/services/traders/pods/events/events.class.d.ts +2 -2
  536. package/lib/src/services/traders/pods/events/events.schema.d.ts +388 -332
  537. package/lib/src/services/traders/pods/events/events.shared.d.ts +1 -1
  538. package/lib/src/services/traders/pods/pods.class.d.ts +3 -2
  539. package/lib/src/services/traders/pods/pods.schema.d.ts +9909 -2945
  540. package/lib/src/services/traders/pods/pods.shared.d.ts +1 -1
  541. package/lib/src/services/traders/pods/webhooks/webhooks.class.d.ts +2 -2
  542. package/lib/src/services/traders/pods/webhooks/webhooks.schema.d.ts +105 -105
  543. package/lib/src/services/traders/pods/webhooks/webhooks.shared.d.ts +1 -1
  544. package/lib/src/services/traders/traders.class.d.ts +4 -2
  545. package/lib/src/services/traders/traders.schema.d.ts +2923 -2450
  546. package/lib/src/services/traders/traders.shared.d.ts +1 -1
  547. package/lib/src/services/trades/trades.class.d.ts +11 -0
  548. package/lib/src/services/trades/trades.d.ts +11 -0
  549. package/lib/src/services/trades/trades.schema.d.ts +16969 -0
  550. package/lib/src/services/trades/trades.shared.d.ts +13 -0
  551. package/lib/src/services/trades/trades.shared.js +13 -0
  552. package/lib/src/services/users/access/access.class.d.ts +11 -0
  553. package/lib/src/services/users/access/access.d.ts +11 -0
  554. package/lib/src/services/users/access/access.schema.d.ts +393 -0
  555. package/lib/src/services/users/access/access.shared.d.ts +13 -0
  556. package/lib/src/services/users/access/access.shared.js +13 -0
  557. package/lib/src/services/users/cancel-subscription.class.d.ts +13 -0
  558. package/lib/src/services/users/cancel-subscription.d.ts +9 -0
  559. package/lib/src/services/users/marketing/campaigns/01-welcome.campaign.d.ts +3 -0
  560. package/lib/src/services/users/marketing/campaigns/02-first-bot-running.campaign.d.ts +3 -0
  561. package/lib/src/services/users/marketing/campaigns/03-ai-strategy.campaign.d.ts +3 -0
  562. package/lib/src/services/users/marketing/campaigns/04-hyperopt.campaign.d.ts +3 -0
  563. package/lib/src/services/users/marketing/campaigns/05-safety-tips.campaign.d.ts +3 -0
  564. package/lib/src/services/users/marketing/campaigns/06-humor.campaign.d.ts +3 -0
  565. package/lib/src/services/users/marketing/campaigns/07-paper-vs-real.campaign.d.ts +3 -0
  566. package/lib/src/services/users/marketing/campaigns/08-trial-summary.campaign.d.ts +3 -0
  567. package/lib/src/services/users/marketing/campaigns/09-trial-ending.campaign.d.ts +3 -0
  568. package/lib/src/services/users/marketing/campaigns/10-reactivation.campaign.d.ts +3 -0
  569. package/lib/src/services/users/marketing/campaigns/11-onboarding-incomplete.campaign.d.ts +6 -0
  570. package/lib/src/services/users/marketing/campaigns/index.d.ts +10 -0
  571. package/lib/src/services/users/marketing/campaigns/supervisor-welcome.campaign.d.ts +6 -0
  572. package/lib/src/services/users/marketing/campaigns/trial.context.d.ts +27 -0
  573. package/lib/src/services/users/marketing/marketing.class.d.ts +26 -0
  574. package/lib/src/services/users/marketing/marketing.d.ts +11 -0
  575. package/lib/src/services/users/marketing/marketing.engine.d.ts +36 -0
  576. package/lib/src/services/users/marketing/marketing.schema.d.ts +515 -0
  577. package/lib/src/services/users/marketing/marketing.shared.d.ts +13 -0
  578. package/lib/src/services/users/marketing/marketing.shared.js +20 -0
  579. package/lib/src/services/users/onboarding/onboarding.class.d.ts +11 -0
  580. package/lib/src/services/users/onboarding/onboarding.d.ts +11 -0
  581. package/lib/src/services/users/onboarding/onboarding.hooks.d.ts +60 -0
  582. package/lib/src/services/users/onboarding/onboarding.schema.d.ts +768 -0
  583. package/lib/src/services/users/onboarding/onboarding.shared.d.ts +13 -0
  584. package/lib/src/services/users/onboarding/onboarding.shared.js +13 -0
  585. package/lib/src/services/users/onboarding/steps/exchanges.processor.d.ts +15 -0
  586. package/lib/src/services/users/onboarding/steps/index.d.ts +32 -0
  587. package/lib/src/services/users/onboarding/steps/notifications.processor.d.ts +15 -0
  588. package/lib/src/services/users/onboarding/steps/preferences.processor.d.ts +16 -0
  589. package/lib/src/services/users/onboarding/steps/strategy.processor.d.ts +15 -0
  590. package/lib/src/services/users/onboarding/steps/traders.processor.d.ts +16 -0
  591. package/lib/src/services/users/reset-account.class.d.ts +11 -0
  592. package/lib/src/services/users/reset-account.d.ts +9 -0
  593. package/lib/src/services/users/sessions/sessions.class.d.ts +18 -0
  594. package/lib/src/services/users/sessions/sessions.d.ts +11 -0
  595. package/lib/src/services/users/sessions/sessions.schema.d.ts +698 -0
  596. package/lib/src/services/users/sessions/sessions.shared.d.ts +13 -0
  597. package/lib/src/services/users/sessions/sessions.shared.js +13 -0
  598. package/lib/src/services/users/setup-trial.class.d.ts +21 -0
  599. package/lib/src/services/users/setup-trial.d.ts +9 -0
  600. package/lib/src/services/users/stripe-check-subscription.hooks.d.ts +2 -0
  601. package/lib/src/services/users/stripe-create-payment-intent.hooks.d.ts +2 -0
  602. package/lib/src/services/users/stripe-is-subscription-active.hooks.d.ts +2 -0
  603. package/lib/src/services/users/stripe-sync-customer-data.hooks.d.ts +2 -0
  604. package/lib/src/services/users/users.class.d.ts +298 -59
  605. package/lib/src/services/users/users.schema.d.ts +1942 -350
  606. package/lib/src/services/users/users.shared.d.ts +2 -2
  607. package/lib/src/services/users/users.shared.js +1 -1
  608. package/lib/src/services/version/version.shared.d.ts +1 -1
  609. package/package.json +9 -3
  610. package/lib/src/services/tools/openapi/openapi.class.d.ts +0 -34
  611. package/lib/src/services/tools/openapi/openapi.d.ts +0 -10
  612. package/lib/src/services/tools/openapi/openapi.shared.d.ts +0 -13
  613. package/lib/src/services/tools/openapi/openapi.shared.js +0 -13
  614. package/lib/src/services/tools/tools.class.d.ts +0 -11
  615. package/lib/src/services/tools/tools.d.ts +0 -11
  616. package/lib/src/services/tools/tools.shared.d.ts +0 -13
  617. package/lib/src/services/tools/tools.shared.js +0 -13
@@ -1,8 +1,8 @@
1
1
  import type { Static } from '@feathersjs/typebox';
2
- import type { HookContext } from '../../declarations';
2
+ import { type HookContext } from '../../declarations';
3
3
  import type { ExchangesService } from './exchanges.class';
4
4
  export declare const exchangesSchema: import("@feathersjs/typebox").TObject<{
5
- _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
6
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
7
7
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
8
8
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -50,40 +50,35 @@ export declare const exchangesSchema: import("@feathersjs/typebox").TObject<{
50
50
  walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
51
51
  token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
52
52
  error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
53
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
53
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
54
54
  __v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
55
55
  }>;
56
56
  export type Exchanges = Static<typeof exchangesSchema>;
57
57
  export declare const exchangesValidator: import("@feathersjs/schema").Validator<any, any>;
58
58
  export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
59
- password?: string | undefined;
59
+ _id: string | {};
60
60
  name?: any;
61
- apiKey?: string | null | undefined;
62
- token?: string | undefined;
63
- secret?: string | null | undefined;
64
- error?: any;
65
- _id?: string | {} | undefined;
66
61
  createdAt?: any;
67
62
  updatedAt?: any;
68
63
  connected?: boolean | undefined;
69
64
  downloaded?: {
70
- updatedAt: any;
71
65
  size: string;
72
66
  pairs: {};
73
67
  sizes: any[];
68
+ updatedAt: any;
74
69
  } | undefined;
75
70
  ccxt_config?: any;
76
71
  balances?: {
77
- total?: any;
78
- errors?: any;
79
- updatedAt: any;
80
72
  items: {
81
- total?: number | undefined;
82
73
  symbol: string;
74
+ total?: number | undefined;
83
75
  fiat: number;
84
76
  }[];
77
+ total?: any;
85
78
  sum: any;
79
+ errors?: any;
86
80
  quotation: any;
81
+ updatedAt: any;
87
82
  } | undefined;
88
83
  tags?: any;
89
84
  background?: any;
@@ -98,44 +93,44 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
98
93
  stakeCurrencies?: any[] | undefined;
99
94
  popularStakeCurrency?: string | null | undefined;
100
95
  notifyAboutWhitelistByEmail?: boolean | undefined;
96
+ apiKey?: string | null | undefined;
97
+ secret?: string | null | undefined;
101
98
  requiredCredentials?: any;
99
+ password?: string | undefined;
102
100
  uid?: string | undefined;
103
101
  login?: string | undefined;
104
102
  twofa?: string | undefined;
105
103
  privateKey?: string | undefined;
106
104
  walletAddress?: string | undefined;
107
- userId?: string | {} | undefined;
105
+ token?: string | undefined;
106
+ error?: any;
107
+ userId: string | {};
108
108
  __v?: any;
109
109
  }, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
110
110
  export declare const exchangesExternalResolver: import("@feathersjs/schema").Resolver<{
111
- password?: string | undefined;
111
+ _id: string | {};
112
112
  name?: any;
113
- apiKey?: string | null | undefined;
114
- token?: string | undefined;
115
- secret?: string | null | undefined;
116
- error?: any;
117
- _id?: string | {} | undefined;
118
113
  createdAt?: any;
119
114
  updatedAt?: any;
120
115
  connected?: boolean | undefined;
121
116
  downloaded?: {
122
- updatedAt: any;
123
117
  size: string;
124
118
  pairs: {};
125
119
  sizes: any[];
120
+ updatedAt: any;
126
121
  } | undefined;
127
122
  ccxt_config?: any;
128
123
  balances?: {
129
- total?: any;
130
- errors?: any;
131
- updatedAt: any;
132
124
  items: {
133
- total?: number | undefined;
134
125
  symbol: string;
126
+ total?: number | undefined;
135
127
  fiat: number;
136
128
  }[];
129
+ total?: any;
137
130
  sum: any;
131
+ errors?: any;
138
132
  quotation: any;
133
+ updatedAt: any;
139
134
  } | undefined;
140
135
  tags?: any;
141
136
  background?: any;
@@ -150,17 +145,74 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
150
145
  stakeCurrencies?: any[] | undefined;
151
146
  popularStakeCurrency?: string | null | undefined;
152
147
  notifyAboutWhitelistByEmail?: boolean | undefined;
148
+ apiKey?: string | null | undefined;
149
+ secret?: string | null | undefined;
153
150
  requiredCredentials?: any;
151
+ password?: string | undefined;
154
152
  uid?: string | undefined;
155
153
  login?: string | undefined;
156
154
  twofa?: string | undefined;
157
155
  privateKey?: string | undefined;
158
156
  walletAddress?: string | undefined;
159
- userId?: string | {} | undefined;
157
+ token?: string | undefined;
158
+ error?: any;
159
+ userId: string | {};
160
160
  __v?: any;
161
- }, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
161
+ }, HookContext>;
162
162
  export declare const exchangesDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
163
- _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
163
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
164
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
165
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
166
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
167
+ connected: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
168
+ downloaded: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
169
+ size: import("@feathersjs/typebox").TString<string>;
170
+ pairs: import("@feathersjs/typebox").TObject<{}>;
171
+ sizes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
172
+ updatedAt: import("@feathersjs/typebox").TAny;
173
+ }>>;
174
+ ccxt_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
175
+ balances: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
176
+ items: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
177
+ symbol: import("@feathersjs/typebox").TString<string>;
178
+ total: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
179
+ fiat: import("@feathersjs/typebox").TNumber;
180
+ }>>;
181
+ total: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
182
+ sum: import("@feathersjs/typebox").TAny;
183
+ errors: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
184
+ quotation: import("@feathersjs/typebox").TAny;
185
+ updatedAt: import("@feathersjs/typebox").TAny;
186
+ }>>;
187
+ tags: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
188
+ background: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
189
+ avatar: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
190
+ blacklist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
191
+ left: import("@feathersjs/typebox").TString<string>;
192
+ right: import("@feathersjs/typebox").TString<string>;
193
+ }>>>;
194
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
195
+ ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
196
+ which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
197
+ stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
198
+ popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
199
+ notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
200
+ apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
201
+ secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
202
+ requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
203
+ password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
204
+ uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
205
+ login: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
206
+ twofa: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
207
+ privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
208
+ walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
209
+ token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
210
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
211
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
212
+ __v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
213
+ }>, ["name", "which", "avatar"]>;
214
+ export declare const exchangesDataSchemaWithUserId: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
215
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
164
216
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
165
217
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
166
218
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -208,40 +260,37 @@ export declare const exchangesDataSchema: import("@feathersjs/typebox").TPick<im
208
260
  walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
209
261
  token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
210
262
  error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
211
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
263
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
212
264
  __v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
213
- }>, ["_id", "name"]>;
214
- export type ExchangesData = Static<typeof exchangesDataSchema>;
265
+ }>, ["name", "which", "avatar"]>, import("@feathersjs/typebox").TObject<{
266
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
267
+ }>]>;
268
+ export type ExchangesData = Static<typeof exchangesDataSchemaWithUserId>;
215
269
  export declare const exchangesDataValidator: import("@feathersjs/schema").Validator<any, any>;
216
270
  export declare const exchangesDataResolver: import("@feathersjs/schema").Resolver<{
217
- password?: string | undefined;
271
+ _id: string | {};
218
272
  name?: any;
219
- apiKey?: string | null | undefined;
220
- token?: string | undefined;
221
- secret?: string | null | undefined;
222
- error?: any;
223
- _id?: string | {} | undefined;
224
273
  createdAt?: any;
225
274
  updatedAt?: any;
226
275
  connected?: boolean | undefined;
227
276
  downloaded?: {
228
- updatedAt: any;
229
277
  size: string;
230
278
  pairs: {};
231
279
  sizes: any[];
280
+ updatedAt: any;
232
281
  } | undefined;
233
282
  ccxt_config?: any;
234
283
  balances?: {
235
- total?: any;
236
- errors?: any;
237
- updatedAt: any;
238
284
  items: {
239
- total?: number | undefined;
240
285
  symbol: string;
286
+ total?: number | undefined;
241
287
  fiat: number;
242
288
  }[];
289
+ total?: any;
243
290
  sum: any;
291
+ errors?: any;
244
292
  quotation: any;
293
+ updatedAt: any;
245
294
  } | undefined;
246
295
  tags?: any;
247
296
  background?: any;
@@ -256,17 +305,22 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
256
305
  stakeCurrencies?: any[] | undefined;
257
306
  popularStakeCurrency?: string | null | undefined;
258
307
  notifyAboutWhitelistByEmail?: boolean | undefined;
308
+ apiKey?: string | null | undefined;
309
+ secret?: string | null | undefined;
259
310
  requiredCredentials?: any;
311
+ password?: string | undefined;
260
312
  uid?: string | undefined;
261
313
  login?: string | undefined;
262
314
  twofa?: string | undefined;
263
315
  privateKey?: string | undefined;
264
316
  walletAddress?: string | undefined;
265
- userId?: string | {} | undefined;
317
+ token?: string | undefined;
318
+ error?: any;
319
+ userId: string | {};
266
320
  __v?: any;
267
321
  }, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
268
322
  export declare const exchangesPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
269
- _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
323
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
270
324
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
271
325
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
272
326
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -314,40 +368,35 @@ export declare const exchangesPatchSchema: import("@feathersjs/typebox").TPartia
314
368
  walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
315
369
  token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
316
370
  error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
317
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
371
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
318
372
  __v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
319
373
  }>>;
320
374
  export type ExchangesPatch = Static<typeof exchangesPatchSchema>;
321
375
  export declare const exchangesPatchValidator: import("@feathersjs/schema").Validator<any, any>;
322
376
  export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolver<{
323
- password?: string | undefined;
377
+ _id: string | {};
324
378
  name?: any;
325
- apiKey?: string | null | undefined;
326
- token?: string | undefined;
327
- secret?: string | null | undefined;
328
- error?: any;
329
- _id?: string | {} | undefined;
330
379
  createdAt?: any;
331
380
  updatedAt?: any;
332
381
  connected?: boolean | undefined;
333
382
  downloaded?: {
334
- updatedAt: any;
335
383
  size: string;
336
384
  pairs: {};
337
385
  sizes: any[];
386
+ updatedAt: any;
338
387
  } | undefined;
339
388
  ccxt_config?: any;
340
389
  balances?: {
341
- total?: any;
342
- errors?: any;
343
- updatedAt: any;
344
390
  items: {
345
- total?: number | undefined;
346
391
  symbol: string;
392
+ total?: number | undefined;
347
393
  fiat: number;
348
394
  }[];
395
+ total?: any;
349
396
  sum: any;
397
+ errors?: any;
350
398
  quotation: any;
399
+ updatedAt: any;
351
400
  } | undefined;
352
401
  tags?: any;
353
402
  background?: any;
@@ -362,112 +411,96 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
362
411
  stakeCurrencies?: any[] | undefined;
363
412
  popularStakeCurrency?: string | null | undefined;
364
413
  notifyAboutWhitelistByEmail?: boolean | undefined;
414
+ apiKey?: string | null | undefined;
415
+ secret?: string | null | undefined;
365
416
  requiredCredentials?: any;
417
+ password?: string | undefined;
366
418
  uid?: string | undefined;
367
419
  login?: string | undefined;
368
420
  twofa?: string | undefined;
369
421
  privateKey?: string | undefined;
370
422
  walletAddress?: string | undefined;
371
- userId?: string | {} | undefined;
423
+ token?: string | undefined;
424
+ error?: any;
425
+ userId: string | {};
372
426
  __v?: any;
373
427
  }, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
374
- export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
428
+ export declare const exchangesQueryProperties: import("@feathersjs/typebox").TObject<{
375
429
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
430
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
376
431
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
377
- createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
432
+ which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
378
433
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
379
434
  connected: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
380
- downloaded: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
381
- size: import("@feathersjs/typebox").TString<string>;
382
- pairs: import("@feathersjs/typebox").TObject<{}>;
383
- sizes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
384
- updatedAt: import("@feathersjs/typebox").TAny;
385
- }>>;
386
- ccxt_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
387
- balances: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
388
- items: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
389
- symbol: import("@feathersjs/typebox").TString<string>;
390
- total: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
391
- fiat: import("@feathersjs/typebox").TNumber;
392
- }>>;
393
- total: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
394
- sum: import("@feathersjs/typebox").TAny;
395
- errors: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
396
- quotation: import("@feathersjs/typebox").TAny;
397
- updatedAt: import("@feathersjs/typebox").TAny;
398
- }>>;
399
- tags: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
400
- background: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
401
- avatar: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
402
- blacklist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
403
- left: import("@feathersjs/typebox").TString<string>;
404
- right: import("@feathersjs/typebox").TString<string>;
405
- }>>>;
406
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
407
- ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
408
- which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
409
- stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
410
- popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
411
- notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
412
- apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
413
- secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
414
- requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
415
- password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
416
- uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
417
- login: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
418
- twofa: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
419
- privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
420
- walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
421
- token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
422
435
  error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
423
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
424
- __v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
425
- }>, ["_id", "name", "userId", "which", "updatedAt", "connected", "whitelist", "createdAt"]>;
436
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
437
+ downloaded: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
438
+ blacklist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
439
+ popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
440
+ balances: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
441
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
442
+ }>;
426
443
  export declare const exchangesQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
427
444
  $limit: import("@feathersjs/typebox").TNumber;
428
445
  $skip: import("@feathersjs/typebox").TNumber;
429
446
  $sort: import("@feathersjs/typebox").TObject<{
430
- name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
431
447
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
432
- createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
448
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
449
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
450
+ which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
433
451
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
434
452
  connected: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
453
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
435
454
  whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
436
- which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
437
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
455
+ downloaded: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
456
+ blacklist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
457
+ popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
458
+ balances: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
459
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
438
460
  }>;
439
- $select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "createdAt" | "updatedAt" | "connected" | "whitelist" | "which" | "userId")[]>;
461
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "balances" | "blacklist" | "connected" | "createdAt" | "downloaded" | "error" | "name" | "popularStakeCurrency" | "updatedAt" | "userId" | "which" | "whitelist")[]>;
440
462
  $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
441
- name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
442
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
443
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
444
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
445
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
446
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
447
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
448
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
463
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
464
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
465
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
466
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
467
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
468
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
469
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
470
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
449
471
  }>, import("@feathersjs/typebox").TObject<{
450
472
  [key: string]: import("@feathersjs/typebox").TSchema;
451
473
  } | undefined>]>>]>>;
452
- _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
474
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
453
475
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
454
476
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
455
477
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
456
478
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
457
479
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
458
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
459
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
480
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
481
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
460
482
  }>, import("@feathersjs/typebox").TObject<{
461
483
  [key: string]: import("@feathersjs/typebox").TSchema;
462
484
  } | undefined>]>>]>>;
463
- createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
485
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
464
486
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
465
487
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
466
488
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
467
489
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
468
490
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
469
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
470
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
491
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
492
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
493
+ }>, import("@feathersjs/typebox").TObject<{
494
+ [key: string]: import("@feathersjs/typebox").TSchema;
495
+ } | undefined>]>>]>>;
496
+ which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
497
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
498
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
499
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
500
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
501
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
502
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
503
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
471
504
  }>, import("@feathersjs/typebox").TObject<{
472
505
  [key: string]: import("@feathersjs/typebox").TSchema;
473
506
  } | undefined>]>>]>>;
@@ -477,8 +510,8 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
477
510
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
478
511
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
479
512
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
480
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
481
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
513
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
514
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
482
515
  }>, import("@feathersjs/typebox").TObject<{
483
516
  [key: string]: import("@feathersjs/typebox").TSchema;
484
517
  } | undefined>]>>]>>;
@@ -488,76 +521,131 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
488
521
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
489
522
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
490
523
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
491
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
492
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
524
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
525
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
493
526
  }>, import("@feathersjs/typebox").TObject<{
494
527
  [key: string]: import("@feathersjs/typebox").TSchema;
495
528
  } | undefined>]>>]>>;
496
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
497
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
498
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
499
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
500
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
501
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
502
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
503
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
529
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
530
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
531
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
532
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
533
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
534
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
535
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
536
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
504
537
  }>, import("@feathersjs/typebox").TObject<{
505
538
  [key: string]: import("@feathersjs/typebox").TSchema;
506
539
  } | undefined>]>>]>>;
507
- which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
540
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
541
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
542
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
543
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
544
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
545
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
546
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
547
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
548
+ }>, import("@feathersjs/typebox").TObject<{
549
+ [key: string]: import("@feathersjs/typebox").TSchema;
550
+ } | undefined>]>>]>>;
551
+ downloaded: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
552
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
553
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
554
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
555
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
556
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
557
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
558
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
559
+ }>, import("@feathersjs/typebox").TObject<{
560
+ [key: string]: import("@feathersjs/typebox").TSchema;
561
+ } | undefined>]>>]>>;
562
+ blacklist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
563
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
564
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
565
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
566
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
567
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
568
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
569
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
570
+ }>, import("@feathersjs/typebox").TObject<{
571
+ [key: string]: import("@feathersjs/typebox").TSchema;
572
+ } | undefined>]>>]>>;
573
+ popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
508
574
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
509
575
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
510
576
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
511
577
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
512
578
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
513
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
514
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
579
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
580
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
581
+ }>, import("@feathersjs/typebox").TObject<{
582
+ [key: string]: import("@feathersjs/typebox").TSchema;
583
+ } | undefined>]>>]>>;
584
+ balances: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
585
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
586
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
587
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
588
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
589
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
590
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
591
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
515
592
  }>, import("@feathersjs/typebox").TObject<{
516
593
  [key: string]: import("@feathersjs/typebox").TSchema;
517
594
  } | undefined>]>>]>>;
518
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
519
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
520
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
521
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
522
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
523
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
524
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
525
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
595
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
596
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
597
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
598
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
599
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
600
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
601
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
602
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
526
603
  }>, import("@feathersjs/typebox").TObject<{
527
604
  [key: string]: import("@feathersjs/typebox").TSchema;
528
605
  } | undefined>]>>]>>;
529
606
  }>>, import("@feathersjs/typebox").TObject<{
530
607
  $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
531
- name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
532
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
533
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
534
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
535
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
536
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
537
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
538
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
608
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
609
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
610
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
611
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
612
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
613
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
614
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
615
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
539
616
  }>, import("@feathersjs/typebox").TObject<{
540
617
  [key: string]: import("@feathersjs/typebox").TSchema;
541
618
  } | undefined>]>>]>>;
542
- _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
619
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
543
620
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
544
621
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
545
622
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
546
623
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
547
624
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
548
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
549
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
625
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
626
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
550
627
  }>, import("@feathersjs/typebox").TObject<{
551
628
  [key: string]: import("@feathersjs/typebox").TSchema;
552
629
  } | undefined>]>>]>>;
553
- createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
630
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
554
631
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
555
632
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
556
633
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
557
634
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
558
635
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
559
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
560
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
636
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
637
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
638
+ }>, import("@feathersjs/typebox").TObject<{
639
+ [key: string]: import("@feathersjs/typebox").TSchema;
640
+ } | undefined>]>>]>>;
641
+ which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
642
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
643
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
644
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
645
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
646
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
647
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
648
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
561
649
  }>, import("@feathersjs/typebox").TObject<{
562
650
  [key: string]: import("@feathersjs/typebox").TSchema;
563
651
  } | undefined>]>>]>>;
@@ -567,8 +655,8 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
567
655
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
568
656
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
569
657
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
570
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
571
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
658
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
659
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
572
660
  }>, import("@feathersjs/typebox").TObject<{
573
661
  [key: string]: import("@feathersjs/typebox").TSchema;
574
662
  } | undefined>]>>]>>;
@@ -578,77 +666,132 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
578
666
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
579
667
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
580
668
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
581
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
582
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
669
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
670
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
583
671
  }>, import("@feathersjs/typebox").TObject<{
584
672
  [key: string]: import("@feathersjs/typebox").TSchema;
585
673
  } | undefined>]>>]>>;
586
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
587
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
588
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
589
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
590
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
591
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
592
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
593
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
674
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
675
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
676
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
677
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
678
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
679
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
680
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
681
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
594
682
  }>, import("@feathersjs/typebox").TObject<{
595
683
  [key: string]: import("@feathersjs/typebox").TSchema;
596
684
  } | undefined>]>>]>>;
597
- which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
685
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
686
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
687
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
688
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
689
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
690
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
691
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
692
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
693
+ }>, import("@feathersjs/typebox").TObject<{
694
+ [key: string]: import("@feathersjs/typebox").TSchema;
695
+ } | undefined>]>>]>>;
696
+ downloaded: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
697
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
698
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
699
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
700
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
701
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
702
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
703
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
704
+ }>, import("@feathersjs/typebox").TObject<{
705
+ [key: string]: import("@feathersjs/typebox").TSchema;
706
+ } | undefined>]>>]>>;
707
+ blacklist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
708
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
709
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
710
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
711
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
712
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
713
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
714
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
715
+ }>, import("@feathersjs/typebox").TObject<{
716
+ [key: string]: import("@feathersjs/typebox").TSchema;
717
+ } | undefined>]>>]>>;
718
+ popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
598
719
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
599
720
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
600
721
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
601
722
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
602
723
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
603
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
604
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
724
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
725
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
605
726
  }>, import("@feathersjs/typebox").TObject<{
606
727
  [key: string]: import("@feathersjs/typebox").TSchema;
607
728
  } | undefined>]>>]>>;
608
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
609
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
610
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
611
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
612
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
613
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
614
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
615
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
729
+ balances: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
730
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
731
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
732
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
733
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
734
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
735
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
736
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
737
+ }>, import("@feathersjs/typebox").TObject<{
738
+ [key: string]: import("@feathersjs/typebox").TSchema;
739
+ } | undefined>]>>]>>;
740
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
741
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
742
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
743
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
744
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
745
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
746
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
747
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
616
748
  }>, import("@feathersjs/typebox").TObject<{
617
749
  [key: string]: import("@feathersjs/typebox").TSchema;
618
750
  } | undefined>]>>]>>;
619
751
  }>>>;
620
752
  }>]>>;
621
753
  $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
622
- name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
623
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
624
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
625
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
626
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
627
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
628
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
629
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
754
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
755
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
756
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
757
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
758
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
759
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
760
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
761
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
630
762
  }>, import("@feathersjs/typebox").TObject<{
631
763
  [key: string]: import("@feathersjs/typebox").TSchema;
632
764
  } | undefined>]>>]>>;
633
- _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
765
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
634
766
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
635
767
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
636
768
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
637
769
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
638
770
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
639
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
640
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
771
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
772
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
641
773
  }>, import("@feathersjs/typebox").TObject<{
642
774
  [key: string]: import("@feathersjs/typebox").TSchema;
643
775
  } | undefined>]>>]>>;
644
- createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
776
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
645
777
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
646
778
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
647
779
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
648
780
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
649
781
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
650
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
651
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
782
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
783
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
784
+ }>, import("@feathersjs/typebox").TObject<{
785
+ [key: string]: import("@feathersjs/typebox").TSchema;
786
+ } | undefined>]>>]>>;
787
+ which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
788
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
789
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
790
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
791
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
792
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
793
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
794
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
652
795
  }>, import("@feathersjs/typebox").TObject<{
653
796
  [key: string]: import("@feathersjs/typebox").TSchema;
654
797
  } | undefined>]>>]>>;
@@ -658,8 +801,8 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
658
801
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
659
802
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
660
803
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
661
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
662
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
804
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
805
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
663
806
  }>, import("@feathersjs/typebox").TObject<{
664
807
  [key: string]: import("@feathersjs/typebox").TSchema;
665
808
  } | undefined>]>>]>>;
@@ -669,76 +812,131 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
669
812
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
670
813
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
671
814
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
672
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
673
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
815
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
816
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
674
817
  }>, import("@feathersjs/typebox").TObject<{
675
818
  [key: string]: import("@feathersjs/typebox").TSchema;
676
819
  } | undefined>]>>]>>;
677
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
678
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
679
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
680
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
681
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
682
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
683
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
684
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
820
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
821
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
822
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
823
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
824
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
825
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
826
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
827
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
685
828
  }>, import("@feathersjs/typebox").TObject<{
686
829
  [key: string]: import("@feathersjs/typebox").TSchema;
687
830
  } | undefined>]>>]>>;
688
- which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
831
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
832
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
833
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
834
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
835
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
836
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
837
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
838
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
839
+ }>, import("@feathersjs/typebox").TObject<{
840
+ [key: string]: import("@feathersjs/typebox").TSchema;
841
+ } | undefined>]>>]>>;
842
+ downloaded: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
843
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
844
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
845
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
846
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
847
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
848
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
849
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
850
+ }>, import("@feathersjs/typebox").TObject<{
851
+ [key: string]: import("@feathersjs/typebox").TSchema;
852
+ } | undefined>]>>]>>;
853
+ blacklist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
854
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
855
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
856
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
857
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
858
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
859
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
860
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
861
+ }>, import("@feathersjs/typebox").TObject<{
862
+ [key: string]: import("@feathersjs/typebox").TSchema;
863
+ } | undefined>]>>]>>;
864
+ popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
689
865
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
690
866
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
691
867
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
692
868
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
693
869
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
694
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
695
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
870
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
871
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
872
+ }>, import("@feathersjs/typebox").TObject<{
873
+ [key: string]: import("@feathersjs/typebox").TSchema;
874
+ } | undefined>]>>]>>;
875
+ balances: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
876
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
877
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
878
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
879
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
880
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
881
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
882
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
696
883
  }>, import("@feathersjs/typebox").TObject<{
697
884
  [key: string]: import("@feathersjs/typebox").TSchema;
698
885
  } | undefined>]>>]>>;
699
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
700
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
701
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
702
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
703
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
704
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
705
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
706
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
886
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
887
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
888
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
889
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
890
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
891
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
892
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
893
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
707
894
  }>, import("@feathersjs/typebox").TObject<{
708
895
  [key: string]: import("@feathersjs/typebox").TSchema;
709
896
  } | undefined>]>>]>>;
710
897
  }>>>;
711
898
  }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
712
- name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
713
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
714
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
715
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
716
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
717
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
718
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
719
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
899
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
900
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
901
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
902
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
903
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
904
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
905
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
906
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
720
907
  }>, import("@feathersjs/typebox").TObject<{
721
908
  [key: string]: import("@feathersjs/typebox").TSchema;
722
909
  } | undefined>]>>]>>;
723
- _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
910
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
724
911
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
725
912
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
726
913
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
727
914
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
728
915
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
729
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
730
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
916
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
917
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
731
918
  }>, import("@feathersjs/typebox").TObject<{
732
919
  [key: string]: import("@feathersjs/typebox").TSchema;
733
920
  } | undefined>]>>]>>;
734
- createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
921
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
735
922
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
736
923
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
737
924
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
738
925
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
739
926
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
740
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
741
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
927
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
928
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
929
+ }>, import("@feathersjs/typebox").TObject<{
930
+ [key: string]: import("@feathersjs/typebox").TSchema;
931
+ } | undefined>]>>]>>;
932
+ which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
933
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
934
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
935
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
936
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
937
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
938
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
939
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
742
940
  }>, import("@feathersjs/typebox").TObject<{
743
941
  [key: string]: import("@feathersjs/typebox").TSchema;
744
942
  } | undefined>]>>]>>;
@@ -748,8 +946,8 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
748
946
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
749
947
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
750
948
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
751
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
752
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
949
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
950
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
753
951
  }>, import("@feathersjs/typebox").TObject<{
754
952
  [key: string]: import("@feathersjs/typebox").TSchema;
755
953
  } | undefined>]>>]>>;
@@ -759,41 +957,85 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
759
957
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
760
958
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
761
959
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
762
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
763
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
960
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
961
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
764
962
  }>, import("@feathersjs/typebox").TObject<{
765
963
  [key: string]: import("@feathersjs/typebox").TSchema;
766
964
  } | undefined>]>>]>>;
767
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
768
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
769
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
770
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
771
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
772
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
773
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
774
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
965
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
966
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
967
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
968
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
969
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
970
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
971
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
972
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
775
973
  }>, import("@feathersjs/typebox").TObject<{
776
974
  [key: string]: import("@feathersjs/typebox").TSchema;
777
975
  } | undefined>]>>]>>;
778
- which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
976
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
977
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
978
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
979
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
980
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
981
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
982
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
983
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
984
+ }>, import("@feathersjs/typebox").TObject<{
985
+ [key: string]: import("@feathersjs/typebox").TSchema;
986
+ } | undefined>]>>]>>;
987
+ downloaded: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
988
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
989
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
990
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
991
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
992
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
993
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
994
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
995
+ }>, import("@feathersjs/typebox").TObject<{
996
+ [key: string]: import("@feathersjs/typebox").TSchema;
997
+ } | undefined>]>>]>>;
998
+ blacklist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
999
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1000
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1001
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1002
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1003
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1004
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1005
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1006
+ }>, import("@feathersjs/typebox").TObject<{
1007
+ [key: string]: import("@feathersjs/typebox").TSchema;
1008
+ } | undefined>]>>]>>;
1009
+ popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
779
1010
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
780
1011
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
781
1012
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
782
1013
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
783
1014
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
784
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
785
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1015
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1016
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1017
+ }>, import("@feathersjs/typebox").TObject<{
1018
+ [key: string]: import("@feathersjs/typebox").TSchema;
1019
+ } | undefined>]>>]>>;
1020
+ balances: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1021
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1022
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1023
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1024
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1025
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1026
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1027
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
786
1028
  }>, import("@feathersjs/typebox").TObject<{
787
1029
  [key: string]: import("@feathersjs/typebox").TSchema;
788
1030
  } | undefined>]>>]>>;
789
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
790
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
791
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
792
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
793
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
794
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
795
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
796
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
1031
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1032
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1033
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1034
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1035
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1036
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1037
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1038
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
797
1039
  }>, import("@feathersjs/typebox").TObject<{
798
1040
  [key: string]: import("@feathersjs/typebox").TSchema;
799
1041
  } | undefined>]>>]>>;
@@ -804,28 +1046,50 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
804
1046
  $limit: number;
805
1047
  $skip: number;
806
1048
  $sort: {
807
- name?: number | undefined;
808
1049
  _id?: number | undefined;
809
- createdAt?: number | undefined;
1050
+ userId?: number | undefined;
1051
+ name?: number | undefined;
1052
+ which?: number | undefined;
810
1053
  updatedAt?: number | undefined;
811
1054
  connected?: number | undefined;
1055
+ error?: number | undefined;
812
1056
  whitelist?: number | undefined;
813
- which?: number | undefined;
814
- userId?: number | undefined;
1057
+ downloaded?: number | undefined;
1058
+ blacklist?: number | undefined;
1059
+ popularStakeCurrency?: number | undefined;
1060
+ balances?: number | undefined;
1061
+ createdAt?: number | undefined;
815
1062
  };
816
- $select: ("name" | "_id" | "createdAt" | "updatedAt" | "connected" | "whitelist" | "which" | "userId")[];
1063
+ $select: ("_id" | "balances" | "blacklist" | "connected" | "createdAt" | "downloaded" | "error" | "name" | "popularStakeCurrency" | "updatedAt" | "userId" | "which" | "whitelist")[];
817
1064
  $and: ({
818
- name?: any;
819
- _id?: string | {} | Partial<{
1065
+ _id?: string | Partial<{
820
1066
  $gt?: string | {} | undefined;
821
1067
  $gte?: string | {} | undefined;
822
1068
  $lt?: string | {} | undefined;
823
1069
  $lte?: string | {} | undefined;
824
1070
  $ne?: string | {} | undefined;
825
- $in: string | {} | (string | {})[];
826
- $nin: string | {} | (string | {})[];
1071
+ $in: string | (string | {})[] | {};
1072
+ $nin: string | (string | {})[] | {};
1073
+ } & {}> | {} | undefined;
1074
+ userId?: string | Partial<{
1075
+ $gt?: string | {} | undefined;
1076
+ $gte?: string | {} | undefined;
1077
+ $lt?: string | {} | undefined;
1078
+ $lte?: string | {} | undefined;
1079
+ $ne?: string | {} | undefined;
1080
+ $in: string | (string | {})[] | {};
1081
+ $nin: string | (string | {})[] | {};
1082
+ } & {}> | {} | undefined;
1083
+ name?: any;
1084
+ which?: string | Partial<{
1085
+ $gt?: string | undefined;
1086
+ $gte?: string | undefined;
1087
+ $lt?: string | undefined;
1088
+ $lte?: string | undefined;
1089
+ $ne?: string | undefined;
1090
+ $in: string | string[];
1091
+ $nin: string | string[];
827
1092
  } & {}> | undefined;
828
- createdAt?: any;
829
1093
  updatedAt?: any;
830
1094
  connected?: boolean | Partial<{
831
1095
  $gt?: boolean | undefined;
@@ -836,16 +1100,11 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
836
1100
  $in: boolean | boolean[];
837
1101
  $nin: boolean | boolean[];
838
1102
  } & {}> | undefined;
839
- whitelist?: any[] | Partial<{
840
- $gt?: any[] | undefined;
841
- $gte?: any[] | undefined;
842
- $lt?: any[] | undefined;
843
- $lte?: any[] | undefined;
844
- $ne?: any[] | undefined;
845
- $in: any[] | any[][];
846
- $nin: any[] | any[][];
847
- } & {}> | undefined;
848
- which?: string | Partial<{
1103
+ error?: any;
1104
+ whitelist?: any;
1105
+ downloaded?: any;
1106
+ blacklist?: any;
1107
+ popularStakeCurrency?: string | Partial<{
849
1108
  $gt?: string | undefined;
850
1109
  $gte?: string | undefined;
851
1110
  $lt?: string | undefined;
@@ -854,28 +1113,38 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
854
1113
  $in: string | string[];
855
1114
  $nin: string | string[];
856
1115
  } & {}> | undefined;
857
- userId?: string | {} | Partial<{
858
- $gt?: string | {} | undefined;
859
- $gte?: string | {} | undefined;
860
- $lt?: string | {} | undefined;
861
- $lte?: string | {} | undefined;
862
- $ne?: string | {} | undefined;
863
- $in: string | {} | (string | {})[];
864
- $nin: string | {} | (string | {})[];
865
- } & {}> | undefined;
1116
+ balances?: any;
1117
+ createdAt?: any;
866
1118
  } | {
867
1119
  $or: {
868
- name?: any;
869
- _id?: string | {} | Partial<{
1120
+ _id?: string | Partial<{
1121
+ $gt?: string | {} | undefined;
1122
+ $gte?: string | {} | undefined;
1123
+ $lt?: string | {} | undefined;
1124
+ $lte?: string | {} | undefined;
1125
+ $ne?: string | {} | undefined;
1126
+ $in: string | (string | {})[] | {};
1127
+ $nin: string | (string | {})[] | {};
1128
+ } & {}> | {} | undefined;
1129
+ userId?: string | Partial<{
870
1130
  $gt?: string | {} | undefined;
871
1131
  $gte?: string | {} | undefined;
872
1132
  $lt?: string | {} | undefined;
873
1133
  $lte?: string | {} | undefined;
874
1134
  $ne?: string | {} | undefined;
875
- $in: string | {} | (string | {})[];
876
- $nin: string | {} | (string | {})[];
1135
+ $in: string | (string | {})[] | {};
1136
+ $nin: string | (string | {})[] | {};
1137
+ } & {}> | {} | undefined;
1138
+ name?: any;
1139
+ which?: string | Partial<{
1140
+ $gt?: string | undefined;
1141
+ $gte?: string | undefined;
1142
+ $lt?: string | undefined;
1143
+ $lte?: string | undefined;
1144
+ $ne?: string | undefined;
1145
+ $in: string | string[];
1146
+ $nin: string | string[];
877
1147
  } & {}> | undefined;
878
- createdAt?: any;
879
1148
  updatedAt?: any;
880
1149
  connected?: boolean | Partial<{
881
1150
  $gt?: boolean | undefined;
@@ -886,16 +1155,11 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
886
1155
  $in: boolean | boolean[];
887
1156
  $nin: boolean | boolean[];
888
1157
  } & {}> | undefined;
889
- whitelist?: any[] | Partial<{
890
- $gt?: any[] | undefined;
891
- $gte?: any[] | undefined;
892
- $lt?: any[] | undefined;
893
- $lte?: any[] | undefined;
894
- $ne?: any[] | undefined;
895
- $in: any[] | any[][];
896
- $nin: any[] | any[][];
897
- } & {}> | undefined;
898
- which?: string | Partial<{
1158
+ error?: any;
1159
+ whitelist?: any;
1160
+ downloaded?: any;
1161
+ blacklist?: any;
1162
+ popularStakeCurrency?: string | Partial<{
899
1163
  $gt?: string | undefined;
900
1164
  $gte?: string | undefined;
901
1165
  $lt?: string | undefined;
@@ -904,29 +1168,39 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
904
1168
  $in: string | string[];
905
1169
  $nin: string | string[];
906
1170
  } & {}> | undefined;
907
- userId?: string | {} | Partial<{
908
- $gt?: string | {} | undefined;
909
- $gte?: string | {} | undefined;
910
- $lt?: string | {} | undefined;
911
- $lte?: string | {} | undefined;
912
- $ne?: string | {} | undefined;
913
- $in: string | {} | (string | {})[];
914
- $nin: string | {} | (string | {})[];
915
- } & {}> | undefined;
1171
+ balances?: any;
1172
+ createdAt?: any;
916
1173
  }[];
917
1174
  })[];
918
1175
  $or: {
919
- name?: any;
920
- _id?: string | {} | Partial<{
1176
+ _id?: string | Partial<{
921
1177
  $gt?: string | {} | undefined;
922
1178
  $gte?: string | {} | undefined;
923
1179
  $lt?: string | {} | undefined;
924
1180
  $lte?: string | {} | undefined;
925
1181
  $ne?: string | {} | undefined;
926
- $in: string | {} | (string | {})[];
927
- $nin: string | {} | (string | {})[];
1182
+ $in: string | (string | {})[] | {};
1183
+ $nin: string | (string | {})[] | {};
1184
+ } & {}> | {} | undefined;
1185
+ userId?: string | Partial<{
1186
+ $gt?: string | {} | undefined;
1187
+ $gte?: string | {} | undefined;
1188
+ $lt?: string | {} | undefined;
1189
+ $lte?: string | {} | undefined;
1190
+ $ne?: string | {} | undefined;
1191
+ $in: string | (string | {})[] | {};
1192
+ $nin: string | (string | {})[] | {};
1193
+ } & {}> | {} | undefined;
1194
+ name?: any;
1195
+ which?: string | Partial<{
1196
+ $gt?: string | undefined;
1197
+ $gte?: string | undefined;
1198
+ $lt?: string | undefined;
1199
+ $lte?: string | undefined;
1200
+ $ne?: string | undefined;
1201
+ $in: string | string[];
1202
+ $nin: string | string[];
928
1203
  } & {}> | undefined;
929
- createdAt?: any;
930
1204
  updatedAt?: any;
931
1205
  connected?: boolean | Partial<{
932
1206
  $gt?: boolean | undefined;
@@ -937,16 +1211,11 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
937
1211
  $in: boolean | boolean[];
938
1212
  $nin: boolean | boolean[];
939
1213
  } & {}> | undefined;
940
- whitelist?: any[] | Partial<{
941
- $gt?: any[] | undefined;
942
- $gte?: any[] | undefined;
943
- $lt?: any[] | undefined;
944
- $lte?: any[] | undefined;
945
- $ne?: any[] | undefined;
946
- $in: any[] | any[][];
947
- $nin: any[] | any[][];
948
- } & {}> | undefined;
949
- which?: string | Partial<{
1214
+ error?: any;
1215
+ whitelist?: any;
1216
+ downloaded?: any;
1217
+ blacklist?: any;
1218
+ popularStakeCurrency?: string | Partial<{
950
1219
  $gt?: string | undefined;
951
1220
  $gte?: string | undefined;
952
1221
  $lt?: string | undefined;
@@ -955,28 +1224,38 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
955
1224
  $in: string | string[];
956
1225
  $nin: string | string[];
957
1226
  } & {}> | undefined;
958
- userId?: string | {} | Partial<{
959
- $gt?: string | {} | undefined;
960
- $gte?: string | {} | undefined;
961
- $lt?: string | {} | undefined;
962
- $lte?: string | {} | undefined;
963
- $ne?: string | {} | undefined;
964
- $in: string | {} | (string | {})[];
965
- $nin: string | {} | (string | {})[];
966
- } & {}> | undefined;
1227
+ balances?: any;
1228
+ createdAt?: any;
967
1229
  }[];
968
1230
  }> & {
969
- name?: any;
970
- _id?: string | {} | Partial<{
1231
+ _id?: string | Partial<{
1232
+ $gt?: string | {} | undefined;
1233
+ $gte?: string | {} | undefined;
1234
+ $lt?: string | {} | undefined;
1235
+ $lte?: string | {} | undefined;
1236
+ $ne?: string | {} | undefined;
1237
+ $in: string | (string | {})[] | {};
1238
+ $nin: string | (string | {})[] | {};
1239
+ } & {}> | {} | undefined;
1240
+ userId?: string | Partial<{
971
1241
  $gt?: string | {} | undefined;
972
1242
  $gte?: string | {} | undefined;
973
1243
  $lt?: string | {} | undefined;
974
1244
  $lte?: string | {} | undefined;
975
1245
  $ne?: string | {} | undefined;
976
- $in: string | {} | (string | {})[];
977
- $nin: string | {} | (string | {})[];
1246
+ $in: string | (string | {})[] | {};
1247
+ $nin: string | (string | {})[] | {};
1248
+ } & {}> | {} | undefined;
1249
+ name?: any;
1250
+ which?: string | Partial<{
1251
+ $gt?: string | undefined;
1252
+ $gte?: string | undefined;
1253
+ $lt?: string | undefined;
1254
+ $lte?: string | undefined;
1255
+ $ne?: string | undefined;
1256
+ $in: string | string[];
1257
+ $nin: string | string[];
978
1258
  } & {}> | undefined;
979
- createdAt?: any;
980
1259
  updatedAt?: any;
981
1260
  connected?: boolean | Partial<{
982
1261
  $gt?: boolean | undefined;
@@ -987,16 +1266,11 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
987
1266
  $in: boolean | boolean[];
988
1267
  $nin: boolean | boolean[];
989
1268
  } & {}> | undefined;
990
- whitelist?: any[] | Partial<{
991
- $gt?: any[] | undefined;
992
- $gte?: any[] | undefined;
993
- $lt?: any[] | undefined;
994
- $lte?: any[] | undefined;
995
- $ne?: any[] | undefined;
996
- $in: any[] | any[][];
997
- $nin: any[] | any[][];
998
- } & {}> | undefined;
999
- which?: string | Partial<{
1269
+ error?: any;
1270
+ whitelist?: any;
1271
+ downloaded?: any;
1272
+ blacklist?: any;
1273
+ popularStakeCurrency?: string | Partial<{
1000
1274
  $gt?: string | undefined;
1001
1275
  $gte?: string | undefined;
1002
1276
  $lt?: string | undefined;
@@ -1005,13 +1279,6 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
1005
1279
  $in: string | string[];
1006
1280
  $nin: string | string[];
1007
1281
  } & {}> | undefined;
1008
- userId?: string | {} | Partial<{
1009
- $gt?: string | {} | undefined;
1010
- $gte?: string | {} | undefined;
1011
- $lt?: string | {} | undefined;
1012
- $lte?: string | {} | undefined;
1013
- $ne?: string | {} | undefined;
1014
- $in: string | {} | (string | {})[];
1015
- $nin: string | {} | (string | {})[];
1016
- } & {}> | undefined;
1282
+ balances?: any;
1283
+ createdAt?: any;
1017
1284
  } & {}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;