@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,10 +1,10 @@
1
1
  import type { Static } from '@feathersjs/typebox';
2
2
  import type { HookContext } from '../../../declarations';
3
3
  import type { EventsTypesService } from './types.class';
4
- export declare const feathersEventTypes: readonly ["created", "updated", "patched", "removed"];
4
+ export declare const feathersEventTypes: readonly ['created', 'updated', 'patched', 'removed'];
5
5
  export declare const eventsTypesSchema: import("@feathersjs/typebox").TObject<{
6
6
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
7
- event: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
7
+ event: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
8
8
  service: import("@feathersjs/typebox").TString<string>;
9
9
  enabled: import("@feathersjs/typebox").TBoolean;
10
10
  example: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
@@ -14,26 +14,26 @@ export declare const eventsTypesSchema: import("@feathersjs/typebox").TObject<{
14
14
  export type EventsTypes = Static<typeof eventsTypesSchema>;
15
15
  export declare const eventsTypesValidator: import("@feathersjs/schema").Validator<any, any>;
16
16
  export declare const eventsTypesResolver: import("@feathersjs/schema").Resolver<{
17
- example?: {} | undefined;
18
- enabled: boolean;
19
- service: string;
20
17
  _id: string | {};
18
+ event: "created" | "patched" | "removed" | "updated";
19
+ service: string;
20
+ enabled: boolean;
21
+ example?: {} | undefined;
21
22
  createdAt: string;
22
23
  updatedAt: string;
23
- event: "created" | "updated" | "patched" | "removed";
24
24
  }, HookContext<EventsTypesService<import("./types.class").EventsTypesParams>>>;
25
25
  export declare const eventsTypesExternalResolver: import("@feathersjs/schema").Resolver<{
26
- example?: {} | undefined;
27
- enabled: boolean;
28
- service: string;
29
26
  _id: string | {};
27
+ event: "created" | "patched" | "removed" | "updated";
28
+ service: string;
29
+ enabled: boolean;
30
+ example?: {} | undefined;
30
31
  createdAt: string;
31
32
  updatedAt: string;
32
- event: "created" | "updated" | "patched" | "removed";
33
33
  }, HookContext<EventsTypesService<import("./types.class").EventsTypesParams>>>;
34
34
  export declare const eventsTypesDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
35
35
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
36
- event: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
36
+ event: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
37
37
  service: import("@feathersjs/typebox").TString<string>;
38
38
  enabled: import("@feathersjs/typebox").TBoolean;
39
39
  example: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
@@ -43,37 +43,37 @@ export declare const eventsTypesDataSchema: import("@feathersjs/typebox").TPick<
43
43
  export type EventsTypesData = Static<typeof eventsTypesDataSchema>;
44
44
  export declare const eventsTypesDataValidator: import("@feathersjs/schema").Validator<any, any>;
45
45
  export declare const eventsTypesDataResolver: import("@feathersjs/schema").Resolver<{
46
- example?: {} | undefined;
47
- enabled: boolean;
48
- service: string;
49
46
  _id: string | {};
47
+ event: "created" | "patched" | "removed" | "updated";
48
+ service: string;
49
+ enabled: boolean;
50
+ example?: {} | undefined;
50
51
  createdAt: string;
51
52
  updatedAt: string;
52
- event: "created" | "updated" | "patched" | "removed";
53
53
  }, HookContext<EventsTypesService<import("./types.class").EventsTypesParams>>>;
54
54
  export declare const eventsTypesPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
55
55
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
56
- event: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
56
+ event: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
57
57
  service: import("@feathersjs/typebox").TString<string>;
58
58
  enabled: import("@feathersjs/typebox").TBoolean;
59
59
  example: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
60
60
  createdAt: import("@feathersjs/typebox").TString<"date-time">;
61
61
  updatedAt: import("@feathersjs/typebox").TString<"date-time">;
62
- }>, ["event", "service", "enabled", "example"]>>;
62
+ }>, ["event", "service", "enabled", "example", "createdAt", "updatedAt"]>>;
63
63
  export type EventsTypesPatch = Static<typeof eventsTypesPatchSchema>;
64
64
  export declare const eventsTypesPatchValidator: import("@feathersjs/schema").Validator<any, any>;
65
65
  export declare const eventsTypesPatchResolver: import("@feathersjs/schema").Resolver<{
66
- example?: {} | undefined;
67
- enabled: boolean;
68
- service: string;
69
66
  _id: string | {};
67
+ event: "created" | "patched" | "removed" | "updated";
68
+ service: string;
69
+ enabled: boolean;
70
+ example?: {} | undefined;
70
71
  createdAt: string;
71
72
  updatedAt: string;
72
- event: "created" | "updated" | "patched" | "removed";
73
73
  }, HookContext<EventsTypesService<import("./types.class").EventsTypesParams>>>;
74
74
  export declare const eventsTypesQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
75
75
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
76
- event: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
76
+ event: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
77
77
  service: import("@feathersjs/typebox").TString<string>;
78
78
  enabled: import("@feathersjs/typebox").TBoolean;
79
79
  example: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
@@ -84,46 +84,24 @@ export declare const eventsTypesQuerySchema: import("@feathersjs/typebox").TInte
84
84
  $limit: import("@feathersjs/typebox").TNumber;
85
85
  $skip: import("@feathersjs/typebox").TNumber;
86
86
  $sort: import("@feathersjs/typebox").TObject<{
87
- enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
88
- service: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
89
87
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
90
88
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
91
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
89
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
92
90
  event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
93
91
  example: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
92
+ service: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
93
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
94
94
  }>;
95
- $select: import("@feathersjs/typebox").TUnsafe<("enabled" | "service" | "_id" | "createdAt" | "updatedAt" | "event" | "example")[]>;
95
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "enabled" | "event" | "example" | "service" | "updatedAt")[]>;
96
96
  $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
97
- enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
98
- $gt: import("@feathersjs/typebox").TBoolean;
99
- $gte: import("@feathersjs/typebox").TBoolean;
100
- $lt: import("@feathersjs/typebox").TBoolean;
101
- $lte: import("@feathersjs/typebox").TBoolean;
102
- $ne: import("@feathersjs/typebox").TBoolean;
103
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
104
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
105
- }>, import("@feathersjs/typebox").TObject<{
106
- [key: string]: import("@feathersjs/typebox").TSchema;
107
- } | undefined>]>>]>>;
108
- service: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
109
- $gt: import("@feathersjs/typebox").TString<string>;
110
- $gte: import("@feathersjs/typebox").TString<string>;
111
- $lt: import("@feathersjs/typebox").TString<string>;
112
- $lte: import("@feathersjs/typebox").TString<string>;
113
- $ne: import("@feathersjs/typebox").TString<string>;
114
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
115
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
116
- }>, import("@feathersjs/typebox").TObject<{
117
- [key: string]: import("@feathersjs/typebox").TSchema;
118
- } | undefined>]>>]>>;
119
97
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
120
98
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
121
99
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
122
100
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
123
101
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
124
102
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
125
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
126
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
103
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
104
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
127
105
  }>, import("@feathersjs/typebox").TObject<{
128
106
  [key: string]: import("@feathersjs/typebox").TSchema;
129
107
  } | undefined>]>>]>>;
@@ -133,30 +111,30 @@ export declare const eventsTypesQuerySchema: import("@feathersjs/typebox").TInte
133
111
  $lt: import("@feathersjs/typebox").TString<"date-time">;
134
112
  $lte: import("@feathersjs/typebox").TString<"date-time">;
135
113
  $ne: import("@feathersjs/typebox").TString<"date-time">;
136
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
137
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
114
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
115
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
138
116
  }>, import("@feathersjs/typebox").TObject<{
139
117
  [key: string]: import("@feathersjs/typebox").TSchema;
140
118
  } | undefined>]>>]>>;
141
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
142
- $gt: import("@feathersjs/typebox").TString<"date-time">;
143
- $gte: import("@feathersjs/typebox").TString<"date-time">;
144
- $lt: import("@feathersjs/typebox").TString<"date-time">;
145
- $lte: import("@feathersjs/typebox").TString<"date-time">;
146
- $ne: import("@feathersjs/typebox").TString<"date-time">;
147
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
148
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
119
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
120
+ $gt: import("@feathersjs/typebox").TBoolean;
121
+ $gte: import("@feathersjs/typebox").TBoolean;
122
+ $lt: import("@feathersjs/typebox").TBoolean;
123
+ $lte: import("@feathersjs/typebox").TBoolean;
124
+ $ne: import("@feathersjs/typebox").TBoolean;
125
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
126
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
149
127
  }>, import("@feathersjs/typebox").TObject<{
150
128
  [key: string]: import("@feathersjs/typebox").TSchema;
151
129
  } | undefined>]>>]>>;
152
- event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
153
- $gt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
154
- $gte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
155
- $lt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
156
- $lte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
157
- $ne: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
158
- $in: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
159
- $nin: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
130
+ event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
131
+ $gt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
132
+ $gte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
133
+ $lt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
134
+ $lte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
135
+ $ne: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
136
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>> | import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
137
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>> | import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
160
138
  }>, import("@feathersjs/typebox").TObject<{
161
139
  [key: string]: import("@feathersjs/typebox").TSchema;
162
140
  } | undefined>]>>]>>;
@@ -166,43 +144,43 @@ export declare const eventsTypesQuerySchema: import("@feathersjs/typebox").TInte
166
144
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
167
145
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
168
146
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
169
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
170
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
147
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
148
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
149
+ }>, import("@feathersjs/typebox").TObject<{
150
+ [key: string]: import("@feathersjs/typebox").TSchema;
151
+ } | undefined>]>>]>>;
152
+ service: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
153
+ $gt: import("@feathersjs/typebox").TString<string>;
154
+ $gte: import("@feathersjs/typebox").TString<string>;
155
+ $lt: import("@feathersjs/typebox").TString<string>;
156
+ $lte: import("@feathersjs/typebox").TString<string>;
157
+ $ne: import("@feathersjs/typebox").TString<string>;
158
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
159
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
160
+ }>, import("@feathersjs/typebox").TObject<{
161
+ [key: string]: import("@feathersjs/typebox").TSchema;
162
+ } | undefined>]>>]>>;
163
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
164
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
165
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
166
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
167
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
168
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
169
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
170
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
171
171
  }>, import("@feathersjs/typebox").TObject<{
172
172
  [key: string]: import("@feathersjs/typebox").TSchema;
173
173
  } | undefined>]>>]>>;
174
174
  }>>, import("@feathersjs/typebox").TObject<{
175
175
  $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
176
- enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
177
- $gt: import("@feathersjs/typebox").TBoolean;
178
- $gte: import("@feathersjs/typebox").TBoolean;
179
- $lt: import("@feathersjs/typebox").TBoolean;
180
- $lte: import("@feathersjs/typebox").TBoolean;
181
- $ne: import("@feathersjs/typebox").TBoolean;
182
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
183
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
184
- }>, import("@feathersjs/typebox").TObject<{
185
- [key: string]: import("@feathersjs/typebox").TSchema;
186
- } | undefined>]>>]>>;
187
- service: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
188
- $gt: import("@feathersjs/typebox").TString<string>;
189
- $gte: import("@feathersjs/typebox").TString<string>;
190
- $lt: import("@feathersjs/typebox").TString<string>;
191
- $lte: import("@feathersjs/typebox").TString<string>;
192
- $ne: import("@feathersjs/typebox").TString<string>;
193
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
194
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
195
- }>, import("@feathersjs/typebox").TObject<{
196
- [key: string]: import("@feathersjs/typebox").TSchema;
197
- } | undefined>]>>]>>;
198
176
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
199
177
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
200
178
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
201
179
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
202
180
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
203
181
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
204
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
205
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
182
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
183
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
206
184
  }>, import("@feathersjs/typebox").TObject<{
207
185
  [key: string]: import("@feathersjs/typebox").TSchema;
208
186
  } | undefined>]>>]>>;
@@ -212,30 +190,30 @@ export declare const eventsTypesQuerySchema: import("@feathersjs/typebox").TInte
212
190
  $lt: import("@feathersjs/typebox").TString<"date-time">;
213
191
  $lte: import("@feathersjs/typebox").TString<"date-time">;
214
192
  $ne: import("@feathersjs/typebox").TString<"date-time">;
215
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
216
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
193
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
194
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
217
195
  }>, import("@feathersjs/typebox").TObject<{
218
196
  [key: string]: import("@feathersjs/typebox").TSchema;
219
197
  } | undefined>]>>]>>;
220
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
221
- $gt: import("@feathersjs/typebox").TString<"date-time">;
222
- $gte: import("@feathersjs/typebox").TString<"date-time">;
223
- $lt: import("@feathersjs/typebox").TString<"date-time">;
224
- $lte: import("@feathersjs/typebox").TString<"date-time">;
225
- $ne: import("@feathersjs/typebox").TString<"date-time">;
226
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
227
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
198
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
199
+ $gt: import("@feathersjs/typebox").TBoolean;
200
+ $gte: import("@feathersjs/typebox").TBoolean;
201
+ $lt: import("@feathersjs/typebox").TBoolean;
202
+ $lte: import("@feathersjs/typebox").TBoolean;
203
+ $ne: import("@feathersjs/typebox").TBoolean;
204
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
205
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
228
206
  }>, import("@feathersjs/typebox").TObject<{
229
207
  [key: string]: import("@feathersjs/typebox").TSchema;
230
208
  } | undefined>]>>]>>;
231
- event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
232
- $gt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
233
- $gte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
234
- $lt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
235
- $lte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
236
- $ne: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
237
- $in: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
238
- $nin: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
209
+ event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
210
+ $gt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
211
+ $gte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
212
+ $lt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
213
+ $lte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
214
+ $ne: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
215
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>> | import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
216
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>> | import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
239
217
  }>, import("@feathersjs/typebox").TObject<{
240
218
  [key: string]: import("@feathersjs/typebox").TSchema;
241
219
  } | undefined>]>>]>>;
@@ -245,44 +223,44 @@ export declare const eventsTypesQuerySchema: import("@feathersjs/typebox").TInte
245
223
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
246
224
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
247
225
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
248
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
249
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
226
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
227
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
228
+ }>, import("@feathersjs/typebox").TObject<{
229
+ [key: string]: import("@feathersjs/typebox").TSchema;
230
+ } | undefined>]>>]>>;
231
+ service: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
232
+ $gt: import("@feathersjs/typebox").TString<string>;
233
+ $gte: import("@feathersjs/typebox").TString<string>;
234
+ $lt: import("@feathersjs/typebox").TString<string>;
235
+ $lte: import("@feathersjs/typebox").TString<string>;
236
+ $ne: import("@feathersjs/typebox").TString<string>;
237
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
238
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
239
+ }>, import("@feathersjs/typebox").TObject<{
240
+ [key: string]: import("@feathersjs/typebox").TSchema;
241
+ } | undefined>]>>]>>;
242
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
243
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
244
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
245
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
246
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
247
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
248
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
249
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
250
250
  }>, import("@feathersjs/typebox").TObject<{
251
251
  [key: string]: import("@feathersjs/typebox").TSchema;
252
252
  } | undefined>]>>]>>;
253
253
  }>>>;
254
254
  }>]>>;
255
255
  $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
256
- enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
257
- $gt: import("@feathersjs/typebox").TBoolean;
258
- $gte: import("@feathersjs/typebox").TBoolean;
259
- $lt: import("@feathersjs/typebox").TBoolean;
260
- $lte: import("@feathersjs/typebox").TBoolean;
261
- $ne: import("@feathersjs/typebox").TBoolean;
262
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
263
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
264
- }>, import("@feathersjs/typebox").TObject<{
265
- [key: string]: import("@feathersjs/typebox").TSchema;
266
- } | undefined>]>>]>>;
267
- service: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
268
- $gt: import("@feathersjs/typebox").TString<string>;
269
- $gte: import("@feathersjs/typebox").TString<string>;
270
- $lt: import("@feathersjs/typebox").TString<string>;
271
- $lte: import("@feathersjs/typebox").TString<string>;
272
- $ne: import("@feathersjs/typebox").TString<string>;
273
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
274
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
275
- }>, import("@feathersjs/typebox").TObject<{
276
- [key: string]: import("@feathersjs/typebox").TSchema;
277
- } | undefined>]>>]>>;
278
256
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
279
257
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
280
258
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
281
259
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
282
260
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
283
261
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
284
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
285
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
262
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
263
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
286
264
  }>, import("@feathersjs/typebox").TObject<{
287
265
  [key: string]: import("@feathersjs/typebox").TSchema;
288
266
  } | undefined>]>>]>>;
@@ -292,30 +270,30 @@ export declare const eventsTypesQuerySchema: import("@feathersjs/typebox").TInte
292
270
  $lt: import("@feathersjs/typebox").TString<"date-time">;
293
271
  $lte: import("@feathersjs/typebox").TString<"date-time">;
294
272
  $ne: import("@feathersjs/typebox").TString<"date-time">;
295
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
296
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
273
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
274
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
297
275
  }>, import("@feathersjs/typebox").TObject<{
298
276
  [key: string]: import("@feathersjs/typebox").TSchema;
299
277
  } | undefined>]>>]>>;
300
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
301
- $gt: import("@feathersjs/typebox").TString<"date-time">;
302
- $gte: import("@feathersjs/typebox").TString<"date-time">;
303
- $lt: import("@feathersjs/typebox").TString<"date-time">;
304
- $lte: import("@feathersjs/typebox").TString<"date-time">;
305
- $ne: import("@feathersjs/typebox").TString<"date-time">;
306
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
307
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
278
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
279
+ $gt: import("@feathersjs/typebox").TBoolean;
280
+ $gte: import("@feathersjs/typebox").TBoolean;
281
+ $lt: import("@feathersjs/typebox").TBoolean;
282
+ $lte: import("@feathersjs/typebox").TBoolean;
283
+ $ne: import("@feathersjs/typebox").TBoolean;
284
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
285
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
308
286
  }>, import("@feathersjs/typebox").TObject<{
309
287
  [key: string]: import("@feathersjs/typebox").TSchema;
310
288
  } | undefined>]>>]>>;
311
- event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
312
- $gt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
313
- $gte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
314
- $lt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
315
- $lte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
316
- $ne: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
317
- $in: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
318
- $nin: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
289
+ event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
290
+ $gt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
291
+ $gte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
292
+ $lt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
293
+ $lte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
294
+ $ne: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
295
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>> | import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
296
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>> | import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
319
297
  }>, import("@feathersjs/typebox").TObject<{
320
298
  [key: string]: import("@feathersjs/typebox").TSchema;
321
299
  } | undefined>]>>]>>;
@@ -325,43 +303,43 @@ export declare const eventsTypesQuerySchema: import("@feathersjs/typebox").TInte
325
303
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
326
304
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
327
305
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
328
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
329
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
306
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
307
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
308
+ }>, import("@feathersjs/typebox").TObject<{
309
+ [key: string]: import("@feathersjs/typebox").TSchema;
310
+ } | undefined>]>>]>>;
311
+ service: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
312
+ $gt: import("@feathersjs/typebox").TString<string>;
313
+ $gte: import("@feathersjs/typebox").TString<string>;
314
+ $lt: import("@feathersjs/typebox").TString<string>;
315
+ $lte: import("@feathersjs/typebox").TString<string>;
316
+ $ne: import("@feathersjs/typebox").TString<string>;
317
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
318
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
319
+ }>, import("@feathersjs/typebox").TObject<{
320
+ [key: string]: import("@feathersjs/typebox").TSchema;
321
+ } | undefined>]>>]>>;
322
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
323
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
324
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
325
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
326
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
327
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
328
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
329
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
330
330
  }>, import("@feathersjs/typebox").TObject<{
331
331
  [key: string]: import("@feathersjs/typebox").TSchema;
332
332
  } | undefined>]>>]>>;
333
333
  }>>>;
334
334
  }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
335
- enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
336
- $gt: import("@feathersjs/typebox").TBoolean;
337
- $gte: import("@feathersjs/typebox").TBoolean;
338
- $lt: import("@feathersjs/typebox").TBoolean;
339
- $lte: import("@feathersjs/typebox").TBoolean;
340
- $ne: import("@feathersjs/typebox").TBoolean;
341
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
342
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
343
- }>, import("@feathersjs/typebox").TObject<{
344
- [key: string]: import("@feathersjs/typebox").TSchema;
345
- } | undefined>]>>]>>;
346
- service: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
347
- $gt: import("@feathersjs/typebox").TString<string>;
348
- $gte: import("@feathersjs/typebox").TString<string>;
349
- $lt: import("@feathersjs/typebox").TString<string>;
350
- $lte: import("@feathersjs/typebox").TString<string>;
351
- $ne: import("@feathersjs/typebox").TString<string>;
352
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
353
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
354
- }>, import("@feathersjs/typebox").TObject<{
355
- [key: string]: import("@feathersjs/typebox").TSchema;
356
- } | undefined>]>>]>>;
357
335
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
358
336
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
359
337
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
360
338
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
361
339
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
362
340
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
363
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
364
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
341
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
342
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
365
343
  }>, import("@feathersjs/typebox").TObject<{
366
344
  [key: string]: import("@feathersjs/typebox").TSchema;
367
345
  } | undefined>]>>]>>;
@@ -371,30 +349,30 @@ export declare const eventsTypesQuerySchema: import("@feathersjs/typebox").TInte
371
349
  $lt: import("@feathersjs/typebox").TString<"date-time">;
372
350
  $lte: import("@feathersjs/typebox").TString<"date-time">;
373
351
  $ne: import("@feathersjs/typebox").TString<"date-time">;
374
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
375
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
352
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
353
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
376
354
  }>, import("@feathersjs/typebox").TObject<{
377
355
  [key: string]: import("@feathersjs/typebox").TSchema;
378
356
  } | undefined>]>>]>>;
379
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
380
- $gt: import("@feathersjs/typebox").TString<"date-time">;
381
- $gte: import("@feathersjs/typebox").TString<"date-time">;
382
- $lt: import("@feathersjs/typebox").TString<"date-time">;
383
- $lte: import("@feathersjs/typebox").TString<"date-time">;
384
- $ne: import("@feathersjs/typebox").TString<"date-time">;
385
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
386
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
357
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
358
+ $gt: import("@feathersjs/typebox").TBoolean;
359
+ $gte: import("@feathersjs/typebox").TBoolean;
360
+ $lt: import("@feathersjs/typebox").TBoolean;
361
+ $lte: import("@feathersjs/typebox").TBoolean;
362
+ $ne: import("@feathersjs/typebox").TBoolean;
363
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
364
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
387
365
  }>, import("@feathersjs/typebox").TObject<{
388
366
  [key: string]: import("@feathersjs/typebox").TSchema;
389
367
  } | undefined>]>>]>>;
390
- event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
391
- $gt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
392
- $gte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
393
- $lt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
394
- $lte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
395
- $ne: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
396
- $in: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
397
- $nin: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
368
+ event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
369
+ $gt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
370
+ $gte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
371
+ $lt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
372
+ $lte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
373
+ $ne: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
374
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>> | import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
375
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>> | import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "patched" | "removed" | "updated">[]>;
398
376
  }>, import("@feathersjs/typebox").TObject<{
399
377
  [key: string]: import("@feathersjs/typebox").TSchema;
400
378
  } | undefined>]>>]>>;
@@ -404,8 +382,30 @@ export declare const eventsTypesQuerySchema: import("@feathersjs/typebox").TInte
404
382
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
405
383
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
406
384
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
407
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
408
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
385
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
386
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
387
+ }>, import("@feathersjs/typebox").TObject<{
388
+ [key: string]: import("@feathersjs/typebox").TSchema;
389
+ } | undefined>]>>]>>;
390
+ service: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
391
+ $gt: import("@feathersjs/typebox").TString<string>;
392
+ $gte: import("@feathersjs/typebox").TString<string>;
393
+ $lt: import("@feathersjs/typebox").TString<string>;
394
+ $lte: import("@feathersjs/typebox").TString<string>;
395
+ $ne: import("@feathersjs/typebox").TString<string>;
396
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
397
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
398
+ }>, import("@feathersjs/typebox").TObject<{
399
+ [key: string]: import("@feathersjs/typebox").TSchema;
400
+ } | undefined>]>>]>>;
401
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
402
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
403
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
404
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
405
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
406
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
407
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
408
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
409
409
  }>, import("@feathersjs/typebox").TObject<{
410
410
  [key: string]: import("@feathersjs/typebox").TSchema;
411
411
  } | undefined>]>>]>>;
@@ -416,16 +416,34 @@ export declare const eventsTypesQueryResolver: import("@feathersjs/schema").Reso
416
416
  $limit: number;
417
417
  $skip: number;
418
418
  $sort: {
419
- enabled?: number | undefined;
420
- service?: number | undefined;
421
419
  _id?: number | undefined;
422
420
  createdAt?: number | undefined;
423
- updatedAt?: number | undefined;
421
+ enabled?: number | undefined;
424
422
  event?: number | undefined;
425
423
  example?: number | undefined;
424
+ service?: number | undefined;
425
+ updatedAt?: number | undefined;
426
426
  };
427
- $select: ("enabled" | "service" | "_id" | "createdAt" | "updatedAt" | "event" | "example")[];
427
+ $select: ("_id" | "createdAt" | "enabled" | "event" | "example" | "service" | "updatedAt")[];
428
428
  $and: ({
429
+ _id?: string | Partial<{
430
+ $gt: string | {};
431
+ $gte: string | {};
432
+ $lt: string | {};
433
+ $lte: string | {};
434
+ $ne: string | {};
435
+ $in: string | (string | {})[] | {};
436
+ $nin: string | (string | {})[] | {};
437
+ } & {}> | {} | undefined;
438
+ createdAt?: string | Partial<{
439
+ $gt: string;
440
+ $gte: string;
441
+ $lt: string;
442
+ $lte: string;
443
+ $ne: string;
444
+ $in: string | string[];
445
+ $nin: string | string[];
446
+ } & {}> | undefined;
429
447
  enabled?: boolean | Partial<{
430
448
  $gt: boolean;
431
449
  $gte: boolean;
@@ -435,25 +453,25 @@ export declare const eventsTypesQueryResolver: import("@feathersjs/schema").Reso
435
453
  $in: boolean | boolean[];
436
454
  $nin: boolean | boolean[];
437
455
  } & {}> | undefined;
438
- service?: string | Partial<{
439
- $gt: string;
440
- $gte: string;
441
- $lt: string;
442
- $lte: string;
443
- $ne: string;
444
- $in: string | string[];
445
- $nin: string | string[];
456
+ event?: "created" | "patched" | "removed" | "updated" | Partial<{
457
+ $gt: "created" | "patched" | "removed" | "updated";
458
+ $gte: "created" | "patched" | "removed" | "updated";
459
+ $lt: "created" | "patched" | "removed" | "updated";
460
+ $lte: "created" | "patched" | "removed" | "updated";
461
+ $ne: "created" | "patched" | "removed" | "updated";
462
+ $in: "created" | "patched" | "removed" | "updated" | ("created" | "patched" | "removed" | "updated")[];
463
+ $nin: "created" | "patched" | "removed" | "updated" | ("created" | "patched" | "removed" | "updated")[];
446
464
  } & {}> | undefined;
447
- _id?: string | {} | Partial<{
448
- $gt: string | {};
449
- $gte: string | {};
450
- $lt: string | {};
451
- $lte: string | {};
452
- $ne: string | {};
453
- $in: string | {} | (string | {})[];
454
- $nin: string | {} | (string | {})[];
455
- } & {}> | undefined;
456
- createdAt?: string | Partial<{
465
+ example?: Partial<{
466
+ $gt?: {} | undefined;
467
+ $gte?: {} | undefined;
468
+ $lt?: {} | undefined;
469
+ $lte?: {} | undefined;
470
+ $ne?: {} | undefined;
471
+ $in: {}[] | {};
472
+ $nin: {}[] | {};
473
+ } & {}> | {} | undefined;
474
+ service?: string | Partial<{
457
475
  $gt: string;
458
476
  $gte: string;
459
477
  $lt: string;
@@ -471,26 +489,26 @@ export declare const eventsTypesQueryResolver: import("@feathersjs/schema").Reso
471
489
  $in: string | string[];
472
490
  $nin: string | string[];
473
491
  } & {}> | undefined;
474
- event?: "created" | "updated" | "patched" | "removed" | Partial<{
475
- $gt: "created" | "updated" | "patched" | "removed";
476
- $gte: "created" | "updated" | "patched" | "removed";
477
- $lt: "created" | "updated" | "patched" | "removed";
478
- $lte: "created" | "updated" | "patched" | "removed";
479
- $ne: "created" | "updated" | "patched" | "removed";
480
- $in: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
481
- $nin: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
482
- } & {}> | undefined;
483
- example?: {} | Partial<{
484
- $gt?: {} | undefined;
485
- $gte?: {} | undefined;
486
- $lt?: {} | undefined;
487
- $lte?: {} | undefined;
488
- $ne?: {} | undefined;
489
- $in: {} | {}[];
490
- $nin: {} | {}[];
491
- } & {}> | undefined;
492
492
  } | {
493
493
  $or: {
494
+ _id?: string | Partial<{
495
+ $gt: string | {};
496
+ $gte: string | {};
497
+ $lt: string | {};
498
+ $lte: string | {};
499
+ $ne: string | {};
500
+ $in: string | (string | {})[] | {};
501
+ $nin: string | (string | {})[] | {};
502
+ } & {}> | {} | undefined;
503
+ createdAt?: string | Partial<{
504
+ $gt: string;
505
+ $gte: string;
506
+ $lt: string;
507
+ $lte: string;
508
+ $ne: string;
509
+ $in: string | string[];
510
+ $nin: string | string[];
511
+ } & {}> | undefined;
494
512
  enabled?: boolean | Partial<{
495
513
  $gt: boolean;
496
514
  $gte: boolean;
@@ -500,25 +518,25 @@ export declare const eventsTypesQueryResolver: import("@feathersjs/schema").Reso
500
518
  $in: boolean | boolean[];
501
519
  $nin: boolean | boolean[];
502
520
  } & {}> | undefined;
503
- service?: string | Partial<{
504
- $gt: string;
505
- $gte: string;
506
- $lt: string;
507
- $lte: string;
508
- $ne: string;
509
- $in: string | string[];
510
- $nin: string | string[];
511
- } & {}> | undefined;
512
- _id?: string | {} | Partial<{
513
- $gt: string | {};
514
- $gte: string | {};
515
- $lt: string | {};
516
- $lte: string | {};
517
- $ne: string | {};
518
- $in: string | {} | (string | {})[];
519
- $nin: string | {} | (string | {})[];
521
+ event?: "created" | "patched" | "removed" | "updated" | Partial<{
522
+ $gt: "created" | "patched" | "removed" | "updated";
523
+ $gte: "created" | "patched" | "removed" | "updated";
524
+ $lt: "created" | "patched" | "removed" | "updated";
525
+ $lte: "created" | "patched" | "removed" | "updated";
526
+ $ne: "created" | "patched" | "removed" | "updated";
527
+ $in: "created" | "patched" | "removed" | "updated" | ("created" | "patched" | "removed" | "updated")[];
528
+ $nin: "created" | "patched" | "removed" | "updated" | ("created" | "patched" | "removed" | "updated")[];
520
529
  } & {}> | undefined;
521
- createdAt?: string | Partial<{
530
+ example?: Partial<{
531
+ $gt?: {} | undefined;
532
+ $gte?: {} | undefined;
533
+ $lt?: {} | undefined;
534
+ $lte?: {} | undefined;
535
+ $ne?: {} | undefined;
536
+ $in: {}[] | {};
537
+ $nin: {}[] | {};
538
+ } & {}> | {} | undefined;
539
+ service?: string | Partial<{
522
540
  $gt: string;
523
541
  $gte: string;
524
542
  $lt: string;
@@ -536,27 +554,27 @@ export declare const eventsTypesQueryResolver: import("@feathersjs/schema").Reso
536
554
  $in: string | string[];
537
555
  $nin: string | string[];
538
556
  } & {}> | undefined;
539
- event?: "created" | "updated" | "patched" | "removed" | Partial<{
540
- $gt: "created" | "updated" | "patched" | "removed";
541
- $gte: "created" | "updated" | "patched" | "removed";
542
- $lt: "created" | "updated" | "patched" | "removed";
543
- $lte: "created" | "updated" | "patched" | "removed";
544
- $ne: "created" | "updated" | "patched" | "removed";
545
- $in: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
546
- $nin: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
547
- } & {}> | undefined;
548
- example?: {} | Partial<{
549
- $gt?: {} | undefined;
550
- $gte?: {} | undefined;
551
- $lt?: {} | undefined;
552
- $lte?: {} | undefined;
553
- $ne?: {} | undefined;
554
- $in: {} | {}[];
555
- $nin: {} | {}[];
556
- } & {}> | undefined;
557
557
  }[];
558
558
  })[];
559
559
  $or: {
560
+ _id?: string | Partial<{
561
+ $gt: string | {};
562
+ $gte: string | {};
563
+ $lt: string | {};
564
+ $lte: string | {};
565
+ $ne: string | {};
566
+ $in: string | (string | {})[] | {};
567
+ $nin: string | (string | {})[] | {};
568
+ } & {}> | {} | undefined;
569
+ createdAt?: string | Partial<{
570
+ $gt: string;
571
+ $gte: string;
572
+ $lt: string;
573
+ $lte: string;
574
+ $ne: string;
575
+ $in: string | string[];
576
+ $nin: string | string[];
577
+ } & {}> | undefined;
560
578
  enabled?: boolean | Partial<{
561
579
  $gt: boolean;
562
580
  $gte: boolean;
@@ -566,25 +584,25 @@ export declare const eventsTypesQueryResolver: import("@feathersjs/schema").Reso
566
584
  $in: boolean | boolean[];
567
585
  $nin: boolean | boolean[];
568
586
  } & {}> | undefined;
569
- service?: string | Partial<{
570
- $gt: string;
571
- $gte: string;
572
- $lt: string;
573
- $lte: string;
574
- $ne: string;
575
- $in: string | string[];
576
- $nin: string | string[];
587
+ event?: "created" | "patched" | "removed" | "updated" | Partial<{
588
+ $gt: "created" | "patched" | "removed" | "updated";
589
+ $gte: "created" | "patched" | "removed" | "updated";
590
+ $lt: "created" | "patched" | "removed" | "updated";
591
+ $lte: "created" | "patched" | "removed" | "updated";
592
+ $ne: "created" | "patched" | "removed" | "updated";
593
+ $in: "created" | "patched" | "removed" | "updated" | ("created" | "patched" | "removed" | "updated")[];
594
+ $nin: "created" | "patched" | "removed" | "updated" | ("created" | "patched" | "removed" | "updated")[];
577
595
  } & {}> | undefined;
578
- _id?: string | {} | Partial<{
579
- $gt: string | {};
580
- $gte: string | {};
581
- $lt: string | {};
582
- $lte: string | {};
583
- $ne: string | {};
584
- $in: string | {} | (string | {})[];
585
- $nin: string | {} | (string | {})[];
586
- } & {}> | undefined;
587
- createdAt?: string | Partial<{
596
+ example?: Partial<{
597
+ $gt?: {} | undefined;
598
+ $gte?: {} | undefined;
599
+ $lt?: {} | undefined;
600
+ $lte?: {} | undefined;
601
+ $ne?: {} | undefined;
602
+ $in: {}[] | {};
603
+ $nin: {}[] | {};
604
+ } & {}> | {} | undefined;
605
+ service?: string | Partial<{
588
606
  $gt: string;
589
607
  $gte: string;
590
608
  $lt: string;
@@ -602,26 +620,26 @@ export declare const eventsTypesQueryResolver: import("@feathersjs/schema").Reso
602
620
  $in: string | string[];
603
621
  $nin: string | string[];
604
622
  } & {}> | undefined;
605
- event?: "created" | "updated" | "patched" | "removed" | Partial<{
606
- $gt: "created" | "updated" | "patched" | "removed";
607
- $gte: "created" | "updated" | "patched" | "removed";
608
- $lt: "created" | "updated" | "patched" | "removed";
609
- $lte: "created" | "updated" | "patched" | "removed";
610
- $ne: "created" | "updated" | "patched" | "removed";
611
- $in: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
612
- $nin: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
613
- } & {}> | undefined;
614
- example?: {} | Partial<{
615
- $gt?: {} | undefined;
616
- $gte?: {} | undefined;
617
- $lt?: {} | undefined;
618
- $lte?: {} | undefined;
619
- $ne?: {} | undefined;
620
- $in: {} | {}[];
621
- $nin: {} | {}[];
622
- } & {}> | undefined;
623
623
  }[];
624
624
  }> & {
625
+ _id?: string | Partial<{
626
+ $gt: string | {};
627
+ $gte: string | {};
628
+ $lt: string | {};
629
+ $lte: string | {};
630
+ $ne: string | {};
631
+ $in: string | (string | {})[] | {};
632
+ $nin: string | (string | {})[] | {};
633
+ } & {}> | {} | undefined;
634
+ createdAt?: string | Partial<{
635
+ $gt: string;
636
+ $gte: string;
637
+ $lt: string;
638
+ $lte: string;
639
+ $ne: string;
640
+ $in: string | string[];
641
+ $nin: string | string[];
642
+ } & {}> | undefined;
625
643
  enabled?: boolean | Partial<{
626
644
  $gt: boolean;
627
645
  $gte: boolean;
@@ -631,25 +649,25 @@ export declare const eventsTypesQueryResolver: import("@feathersjs/schema").Reso
631
649
  $in: boolean | boolean[];
632
650
  $nin: boolean | boolean[];
633
651
  } & {}> | undefined;
634
- service?: string | Partial<{
635
- $gt: string;
636
- $gte: string;
637
- $lt: string;
638
- $lte: string;
639
- $ne: string;
640
- $in: string | string[];
641
- $nin: string | string[];
642
- } & {}> | undefined;
643
- _id?: string | {} | Partial<{
644
- $gt: string | {};
645
- $gte: string | {};
646
- $lt: string | {};
647
- $lte: string | {};
648
- $ne: string | {};
649
- $in: string | {} | (string | {})[];
650
- $nin: string | {} | (string | {})[];
652
+ event?: "created" | "patched" | "removed" | "updated" | Partial<{
653
+ $gt: "created" | "patched" | "removed" | "updated";
654
+ $gte: "created" | "patched" | "removed" | "updated";
655
+ $lt: "created" | "patched" | "removed" | "updated";
656
+ $lte: "created" | "patched" | "removed" | "updated";
657
+ $ne: "created" | "patched" | "removed" | "updated";
658
+ $in: "created" | "patched" | "removed" | "updated" | ("created" | "patched" | "removed" | "updated")[];
659
+ $nin: "created" | "patched" | "removed" | "updated" | ("created" | "patched" | "removed" | "updated")[];
651
660
  } & {}> | undefined;
652
- createdAt?: string | Partial<{
661
+ example?: Partial<{
662
+ $gt?: {} | undefined;
663
+ $gte?: {} | undefined;
664
+ $lt?: {} | undefined;
665
+ $lte?: {} | undefined;
666
+ $ne?: {} | undefined;
667
+ $in: {}[] | {};
668
+ $nin: {}[] | {};
669
+ } & {}> | {} | undefined;
670
+ service?: string | Partial<{
653
671
  $gt: string;
654
672
  $gte: string;
655
673
  $lt: string;
@@ -667,22 +685,4 @@ export declare const eventsTypesQueryResolver: import("@feathersjs/schema").Reso
667
685
  $in: string | string[];
668
686
  $nin: string | string[];
669
687
  } & {}> | undefined;
670
- event?: "created" | "updated" | "patched" | "removed" | Partial<{
671
- $gt: "created" | "updated" | "patched" | "removed";
672
- $gte: "created" | "updated" | "patched" | "removed";
673
- $lt: "created" | "updated" | "patched" | "removed";
674
- $lte: "created" | "updated" | "patched" | "removed";
675
- $ne: "created" | "updated" | "patched" | "removed";
676
- $in: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
677
- $nin: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
678
- } & {}> | undefined;
679
- example?: {} | Partial<{
680
- $gt?: {} | undefined;
681
- $gte?: {} | undefined;
682
- $lt?: {} | undefined;
683
- $lte?: {} | undefined;
684
- $ne?: {} | undefined;
685
- $in: {} | {}[];
686
- $nin: {} | {}[];
687
- } & {}> | undefined;
688
688
  } & {}, HookContext<EventsTypesService<import("./types.class").EventsTypesParams>>>;