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

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