@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,871 @@
1
+ import type { Static } from '@feathersjs/typebox';
2
+ import type { HookContext } from '../../../../declarations';
3
+ import type { BlogSitemapsPagesService } from './pages.class';
4
+ export declare const blogSitemapsPagesSchema: import("@feathersjs/typebox").TObject<{
5
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
+ snapshotId: import("@feathersjs/typebox").TString<string>;
7
+ crawledAt: import("@feathersjs/typebox").TString<"date-time">;
8
+ url: import("@feathersjs/typebox").TString<string>;
9
+ httpStatus: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
10
+ responseTimeMs: import("@feathersjs/typebox").TNumber;
11
+ canonical: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
12
+ title: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
13
+ metaDescription: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
14
+ h1: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
15
+ h1Count: import("@feathersjs/typebox").TNumber;
16
+ hasNoindex: import("@feathersjs/typebox").TBoolean;
17
+ hasNofollow: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
18
+ robotsMeta: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
19
+ schemaTypes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
20
+ internalLinks: import("@feathersjs/typebox").TNumber;
21
+ externalLinks: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
22
+ contentLength: import("@feathersjs/typebox").TNumber;
23
+ htmlErrors: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
24
+ message: import("@feathersjs/typebox").TString<string>;
25
+ line: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
26
+ column: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
27
+ ruleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
28
+ severity: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
29
+ }>>>;
30
+ consoleErrors: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
31
+ renderedBodyLength: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
32
+ redirectChain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
33
+ error: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
34
+ tier: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
35
+ }>;
36
+ export type BlogSitemapsPages = Static<typeof blogSitemapsPagesSchema>;
37
+ export declare const blogSitemapsPagesValidator: import("@feathersjs/schema").Validator<any, any>;
38
+ export declare const blogSitemapsPagesResolver: import("@feathersjs/schema").Resolver<{
39
+ _id: string | {};
40
+ snapshotId: string;
41
+ crawledAt: string;
42
+ url: string;
43
+ httpStatus: number | null;
44
+ responseTimeMs: number;
45
+ canonical: string | null;
46
+ title: string | null;
47
+ metaDescription: string | null;
48
+ h1: string | null;
49
+ h1Count: number;
50
+ hasNoindex: boolean;
51
+ hasNofollow?: boolean | undefined;
52
+ robotsMeta: string | null;
53
+ schemaTypes: string[];
54
+ internalLinks: number;
55
+ externalLinks?: number | undefined;
56
+ contentLength: number;
57
+ htmlErrors?: {
58
+ message: string;
59
+ line?: number | undefined;
60
+ column?: number | undefined;
61
+ ruleId?: string | undefined;
62
+ severity?: number | undefined;
63
+ }[] | undefined;
64
+ consoleErrors?: string[] | undefined;
65
+ renderedBodyLength?: number | undefined;
66
+ redirectChain?: string[] | undefined;
67
+ error: string | null;
68
+ tier: 1 | 2;
69
+ }, HookContext<BlogSitemapsPagesService<import("./pages.class").BlogSitemapsPagesParams>>>;
70
+ export declare const blogSitemapsPagesExternalResolver: import("@feathersjs/schema").Resolver<{
71
+ _id: string | {};
72
+ snapshotId: string;
73
+ crawledAt: string;
74
+ url: string;
75
+ httpStatus: number | null;
76
+ responseTimeMs: number;
77
+ canonical: string | null;
78
+ title: string | null;
79
+ metaDescription: string | null;
80
+ h1: string | null;
81
+ h1Count: number;
82
+ hasNoindex: boolean;
83
+ hasNofollow?: boolean | undefined;
84
+ robotsMeta: string | null;
85
+ schemaTypes: string[];
86
+ internalLinks: number;
87
+ externalLinks?: number | undefined;
88
+ contentLength: number;
89
+ htmlErrors?: {
90
+ message: string;
91
+ line?: number | undefined;
92
+ column?: number | undefined;
93
+ ruleId?: string | undefined;
94
+ severity?: number | undefined;
95
+ }[] | undefined;
96
+ consoleErrors?: string[] | undefined;
97
+ renderedBodyLength?: number | undefined;
98
+ redirectChain?: string[] | undefined;
99
+ error: string | null;
100
+ tier: 1 | 2;
101
+ }, HookContext<BlogSitemapsPagesService<import("./pages.class").BlogSitemapsPagesParams>>>;
102
+ export declare const blogSitemapsPagesDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
103
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
104
+ snapshotId: import("@feathersjs/typebox").TString<string>;
105
+ crawledAt: import("@feathersjs/typebox").TString<"date-time">;
106
+ url: import("@feathersjs/typebox").TString<string>;
107
+ httpStatus: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
108
+ responseTimeMs: import("@feathersjs/typebox").TNumber;
109
+ canonical: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
110
+ title: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
111
+ metaDescription: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
112
+ h1: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
113
+ h1Count: import("@feathersjs/typebox").TNumber;
114
+ hasNoindex: import("@feathersjs/typebox").TBoolean;
115
+ hasNofollow: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
116
+ robotsMeta: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
117
+ schemaTypes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
118
+ internalLinks: import("@feathersjs/typebox").TNumber;
119
+ externalLinks: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
120
+ contentLength: import("@feathersjs/typebox").TNumber;
121
+ htmlErrors: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
122
+ message: import("@feathersjs/typebox").TString<string>;
123
+ line: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
124
+ column: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
125
+ ruleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
126
+ severity: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
127
+ }>>>;
128
+ consoleErrors: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
129
+ renderedBodyLength: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
130
+ redirectChain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
131
+ error: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
132
+ tier: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
133
+ }>, ["snapshotId", "crawledAt", "url", "httpStatus", "responseTimeMs", "canonical", "title", "metaDescription", "h1", "h1Count", "hasNoindex", "hasNofollow", "robotsMeta", "schemaTypes", "internalLinks", "externalLinks", "contentLength", "htmlErrors", "consoleErrors", "renderedBodyLength", "redirectChain", "error", "tier"]>;
134
+ export type BlogSitemapsPagesData = Static<typeof blogSitemapsPagesDataSchema>;
135
+ export declare const blogSitemapsPagesDataValidator: import("@feathersjs/schema").Validator<any, any>;
136
+ export declare const blogSitemapsPagesDataResolver: import("@feathersjs/schema").Resolver<{
137
+ _id: string | {};
138
+ snapshotId: string;
139
+ crawledAt: string;
140
+ url: string;
141
+ httpStatus: number | null;
142
+ responseTimeMs: number;
143
+ canonical: string | null;
144
+ title: string | null;
145
+ metaDescription: string | null;
146
+ h1: string | null;
147
+ h1Count: number;
148
+ hasNoindex: boolean;
149
+ hasNofollow?: boolean | undefined;
150
+ robotsMeta: string | null;
151
+ schemaTypes: string[];
152
+ internalLinks: number;
153
+ externalLinks?: number | undefined;
154
+ contentLength: number;
155
+ htmlErrors?: {
156
+ message: string;
157
+ line?: number | undefined;
158
+ column?: number | undefined;
159
+ ruleId?: string | undefined;
160
+ severity?: number | undefined;
161
+ }[] | undefined;
162
+ consoleErrors?: string[] | undefined;
163
+ renderedBodyLength?: number | undefined;
164
+ redirectChain?: string[] | undefined;
165
+ error: string | null;
166
+ tier: 1 | 2;
167
+ }, HookContext<BlogSitemapsPagesService<import("./pages.class").BlogSitemapsPagesParams>>>;
168
+ export declare const blogSitemapsPagesPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
169
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
170
+ snapshotId: import("@feathersjs/typebox").TString<string>;
171
+ crawledAt: import("@feathersjs/typebox").TString<"date-time">;
172
+ url: import("@feathersjs/typebox").TString<string>;
173
+ httpStatus: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
174
+ responseTimeMs: import("@feathersjs/typebox").TNumber;
175
+ canonical: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
176
+ title: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
177
+ metaDescription: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
178
+ h1: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
179
+ h1Count: import("@feathersjs/typebox").TNumber;
180
+ hasNoindex: import("@feathersjs/typebox").TBoolean;
181
+ hasNofollow: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
182
+ robotsMeta: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
183
+ schemaTypes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
184
+ internalLinks: import("@feathersjs/typebox").TNumber;
185
+ externalLinks: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
186
+ contentLength: import("@feathersjs/typebox").TNumber;
187
+ htmlErrors: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
188
+ message: import("@feathersjs/typebox").TString<string>;
189
+ line: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
190
+ column: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
191
+ ruleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
192
+ severity: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
193
+ }>>>;
194
+ consoleErrors: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
195
+ renderedBodyLength: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
196
+ redirectChain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
197
+ error: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
198
+ tier: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
199
+ }>>;
200
+ export type BlogSitemapsPagesPatch = Static<typeof blogSitemapsPagesPatchSchema>;
201
+ export declare const blogSitemapsPagesPatchValidator: import("@feathersjs/schema").Validator<any, any>;
202
+ export declare const blogSitemapsPagesPatchResolver: import("@feathersjs/schema").Resolver<{
203
+ _id: string | {};
204
+ snapshotId: string;
205
+ crawledAt: string;
206
+ url: string;
207
+ httpStatus: number | null;
208
+ responseTimeMs: number;
209
+ canonical: string | null;
210
+ title: string | null;
211
+ metaDescription: string | null;
212
+ h1: string | null;
213
+ h1Count: number;
214
+ hasNoindex: boolean;
215
+ hasNofollow?: boolean | undefined;
216
+ robotsMeta: string | null;
217
+ schemaTypes: string[];
218
+ internalLinks: number;
219
+ externalLinks?: number | undefined;
220
+ contentLength: number;
221
+ htmlErrors?: {
222
+ message: string;
223
+ line?: number | undefined;
224
+ column?: number | undefined;
225
+ ruleId?: string | undefined;
226
+ severity?: number | undefined;
227
+ }[] | undefined;
228
+ consoleErrors?: string[] | undefined;
229
+ renderedBodyLength?: number | undefined;
230
+ redirectChain?: string[] | undefined;
231
+ error: string | null;
232
+ tier: 1 | 2;
233
+ }, HookContext<BlogSitemapsPagesService<import("./pages.class").BlogSitemapsPagesParams>>>;
234
+ export declare const blogSitemapsPagesQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
235
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
236
+ snapshotId: import("@feathersjs/typebox").TString<string>;
237
+ crawledAt: import("@feathersjs/typebox").TString<"date-time">;
238
+ url: import("@feathersjs/typebox").TString<string>;
239
+ httpStatus: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
240
+ responseTimeMs: import("@feathersjs/typebox").TNumber;
241
+ canonical: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
242
+ title: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
243
+ metaDescription: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
244
+ h1: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
245
+ h1Count: import("@feathersjs/typebox").TNumber;
246
+ hasNoindex: import("@feathersjs/typebox").TBoolean;
247
+ hasNofollow: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
248
+ robotsMeta: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
249
+ schemaTypes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
250
+ internalLinks: import("@feathersjs/typebox").TNumber;
251
+ externalLinks: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
252
+ contentLength: import("@feathersjs/typebox").TNumber;
253
+ htmlErrors: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
254
+ message: import("@feathersjs/typebox").TString<string>;
255
+ line: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
256
+ column: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
257
+ ruleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
258
+ severity: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
259
+ }>>>;
260
+ consoleErrors: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
261
+ renderedBodyLength: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
262
+ redirectChain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
263
+ error: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>;
264
+ tier: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
265
+ }>, ["_id", "snapshotId", "crawledAt", "url", "httpStatus", "hasNoindex", "tier"]>;
266
+ export declare const blogSitemapsPagesQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
267
+ $limit: import("@feathersjs/typebox").TNumber;
268
+ $skip: import("@feathersjs/typebox").TNumber;
269
+ $sort: import("@feathersjs/typebox").TObject<{
270
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
271
+ crawledAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
272
+ hasNoindex: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
273
+ httpStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
274
+ snapshotId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
275
+ tier: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
276
+ url: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
277
+ }>;
278
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "crawledAt" | "hasNoindex" | "httpStatus" | "snapshotId" | "tier" | "url")[]>;
279
+ $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
280
+ _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<{
281
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
282
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
283
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
284
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
285
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
286
+ $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<{}>]>;
287
+ $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<{}>]>;
288
+ }>, import("@feathersjs/typebox").TObject<{
289
+ [key: string]: import("@feathersjs/typebox").TSchema;
290
+ } | undefined>]>>]>>;
291
+ crawledAt: 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<{
292
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
293
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
294
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
295
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
296
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
297
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
298
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
299
+ }>, import("@feathersjs/typebox").TObject<{
300
+ [key: string]: import("@feathersjs/typebox").TSchema;
301
+ } | undefined>]>>]>>;
302
+ hasNoindex: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
303
+ $gt: import("@feathersjs/typebox").TBoolean;
304
+ $gte: import("@feathersjs/typebox").TBoolean;
305
+ $lt: import("@feathersjs/typebox").TBoolean;
306
+ $lte: import("@feathersjs/typebox").TBoolean;
307
+ $ne: import("@feathersjs/typebox").TBoolean;
308
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
309
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
310
+ }>, import("@feathersjs/typebox").TObject<{
311
+ [key: string]: import("@feathersjs/typebox").TSchema;
312
+ } | undefined>]>>]>>;
313
+ httpStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
314
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
315
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
316
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
317
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
318
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
319
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
320
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
321
+ }>, import("@feathersjs/typebox").TObject<{
322
+ [key: string]: import("@feathersjs/typebox").TSchema;
323
+ } | undefined>]>>]>>;
324
+ snapshotId: 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<{
325
+ $gt: import("@feathersjs/typebox").TString<string>;
326
+ $gte: import("@feathersjs/typebox").TString<string>;
327
+ $lt: import("@feathersjs/typebox").TString<string>;
328
+ $lte: import("@feathersjs/typebox").TString<string>;
329
+ $ne: import("@feathersjs/typebox").TString<string>;
330
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
331
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
332
+ }>, import("@feathersjs/typebox").TObject<{
333
+ [key: string]: import("@feathersjs/typebox").TSchema;
334
+ } | undefined>]>>]>>;
335
+ tier: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
336
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
337
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
338
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
339
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
340
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
341
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
342
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
343
+ }>, import("@feathersjs/typebox").TObject<{
344
+ [key: string]: import("@feathersjs/typebox").TSchema;
345
+ } | undefined>]>>]>>;
346
+ url: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
347
+ $gt: import("@feathersjs/typebox").TString<string>;
348
+ $gte: import("@feathersjs/typebox").TString<string>;
349
+ $lt: import("@feathersjs/typebox").TString<string>;
350
+ $lte: import("@feathersjs/typebox").TString<string>;
351
+ $ne: import("@feathersjs/typebox").TString<string>;
352
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
353
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
354
+ }>, import("@feathersjs/typebox").TObject<{
355
+ [key: string]: import("@feathersjs/typebox").TSchema;
356
+ } | undefined>]>>]>>;
357
+ }>>, import("@feathersjs/typebox").TObject<{
358
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
359
+ _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<{
360
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
361
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
362
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
363
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
364
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
365
+ $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<{}>]>;
366
+ $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<{}>]>;
367
+ }>, import("@feathersjs/typebox").TObject<{
368
+ [key: string]: import("@feathersjs/typebox").TSchema;
369
+ } | undefined>]>>]>>;
370
+ crawledAt: 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<{
371
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
372
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
373
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
374
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
375
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
376
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
377
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
378
+ }>, import("@feathersjs/typebox").TObject<{
379
+ [key: string]: import("@feathersjs/typebox").TSchema;
380
+ } | undefined>]>>]>>;
381
+ hasNoindex: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
382
+ $gt: import("@feathersjs/typebox").TBoolean;
383
+ $gte: import("@feathersjs/typebox").TBoolean;
384
+ $lt: import("@feathersjs/typebox").TBoolean;
385
+ $lte: import("@feathersjs/typebox").TBoolean;
386
+ $ne: import("@feathersjs/typebox").TBoolean;
387
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
388
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
389
+ }>, import("@feathersjs/typebox").TObject<{
390
+ [key: string]: import("@feathersjs/typebox").TSchema;
391
+ } | undefined>]>>]>>;
392
+ httpStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
393
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
394
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
395
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
396
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
397
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
398
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
399
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
400
+ }>, import("@feathersjs/typebox").TObject<{
401
+ [key: string]: import("@feathersjs/typebox").TSchema;
402
+ } | undefined>]>>]>>;
403
+ snapshotId: 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<{
404
+ $gt: import("@feathersjs/typebox").TString<string>;
405
+ $gte: import("@feathersjs/typebox").TString<string>;
406
+ $lt: import("@feathersjs/typebox").TString<string>;
407
+ $lte: import("@feathersjs/typebox").TString<string>;
408
+ $ne: import("@feathersjs/typebox").TString<string>;
409
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
410
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
411
+ }>, import("@feathersjs/typebox").TObject<{
412
+ [key: string]: import("@feathersjs/typebox").TSchema;
413
+ } | undefined>]>>]>>;
414
+ tier: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
415
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
416
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
417
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
418
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
419
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
420
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
421
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
422
+ }>, import("@feathersjs/typebox").TObject<{
423
+ [key: string]: import("@feathersjs/typebox").TSchema;
424
+ } | undefined>]>>]>>;
425
+ url: 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<{
426
+ $gt: import("@feathersjs/typebox").TString<string>;
427
+ $gte: import("@feathersjs/typebox").TString<string>;
428
+ $lt: import("@feathersjs/typebox").TString<string>;
429
+ $lte: import("@feathersjs/typebox").TString<string>;
430
+ $ne: import("@feathersjs/typebox").TString<string>;
431
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
432
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
433
+ }>, import("@feathersjs/typebox").TObject<{
434
+ [key: string]: import("@feathersjs/typebox").TSchema;
435
+ } | undefined>]>>]>>;
436
+ }>>>;
437
+ }>]>>;
438
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
439
+ _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<{
440
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
441
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
442
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
443
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
444
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
445
+ $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<{}>]>;
446
+ $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<{}>]>;
447
+ }>, import("@feathersjs/typebox").TObject<{
448
+ [key: string]: import("@feathersjs/typebox").TSchema;
449
+ } | undefined>]>>]>>;
450
+ crawledAt: 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<{
451
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
452
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
453
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
454
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
455
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
456
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
457
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
458
+ }>, import("@feathersjs/typebox").TObject<{
459
+ [key: string]: import("@feathersjs/typebox").TSchema;
460
+ } | undefined>]>>]>>;
461
+ hasNoindex: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
462
+ $gt: import("@feathersjs/typebox").TBoolean;
463
+ $gte: import("@feathersjs/typebox").TBoolean;
464
+ $lt: import("@feathersjs/typebox").TBoolean;
465
+ $lte: import("@feathersjs/typebox").TBoolean;
466
+ $ne: import("@feathersjs/typebox").TBoolean;
467
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
468
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
469
+ }>, import("@feathersjs/typebox").TObject<{
470
+ [key: string]: import("@feathersjs/typebox").TSchema;
471
+ } | undefined>]>>]>>;
472
+ httpStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
473
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
474
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
475
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
476
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
477
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
478
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
479
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
480
+ }>, import("@feathersjs/typebox").TObject<{
481
+ [key: string]: import("@feathersjs/typebox").TSchema;
482
+ } | undefined>]>>]>>;
483
+ snapshotId: 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<{
484
+ $gt: import("@feathersjs/typebox").TString<string>;
485
+ $gte: import("@feathersjs/typebox").TString<string>;
486
+ $lt: import("@feathersjs/typebox").TString<string>;
487
+ $lte: import("@feathersjs/typebox").TString<string>;
488
+ $ne: import("@feathersjs/typebox").TString<string>;
489
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
490
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
491
+ }>, import("@feathersjs/typebox").TObject<{
492
+ [key: string]: import("@feathersjs/typebox").TSchema;
493
+ } | undefined>]>>]>>;
494
+ tier: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
495
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
496
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
497
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
498
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
499
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
500
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
501
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
502
+ }>, import("@feathersjs/typebox").TObject<{
503
+ [key: string]: import("@feathersjs/typebox").TSchema;
504
+ } | undefined>]>>]>>;
505
+ url: 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<{
506
+ $gt: import("@feathersjs/typebox").TString<string>;
507
+ $gte: import("@feathersjs/typebox").TString<string>;
508
+ $lt: import("@feathersjs/typebox").TString<string>;
509
+ $lte: import("@feathersjs/typebox").TString<string>;
510
+ $ne: import("@feathersjs/typebox").TString<string>;
511
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
512
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
513
+ }>, import("@feathersjs/typebox").TObject<{
514
+ [key: string]: import("@feathersjs/typebox").TSchema;
515
+ } | undefined>]>>]>>;
516
+ }>>>;
517
+ }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
518
+ _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<{
519
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
520
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
521
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
522
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
523
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
524
+ $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<{}>]>;
525
+ $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<{}>]>;
526
+ }>, import("@feathersjs/typebox").TObject<{
527
+ [key: string]: import("@feathersjs/typebox").TSchema;
528
+ } | undefined>]>>]>>;
529
+ crawledAt: 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<{
530
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
531
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
532
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
533
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
534
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
535
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
536
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
537
+ }>, import("@feathersjs/typebox").TObject<{
538
+ [key: string]: import("@feathersjs/typebox").TSchema;
539
+ } | undefined>]>>]>>;
540
+ hasNoindex: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
541
+ $gt: import("@feathersjs/typebox").TBoolean;
542
+ $gte: import("@feathersjs/typebox").TBoolean;
543
+ $lt: import("@feathersjs/typebox").TBoolean;
544
+ $lte: import("@feathersjs/typebox").TBoolean;
545
+ $ne: import("@feathersjs/typebox").TBoolean;
546
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
547
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
548
+ }>, import("@feathersjs/typebox").TObject<{
549
+ [key: string]: import("@feathersjs/typebox").TSchema;
550
+ } | undefined>]>>]>>;
551
+ httpStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
552
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
553
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
554
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
555
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
556
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
557
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
558
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
559
+ }>, import("@feathersjs/typebox").TObject<{
560
+ [key: string]: import("@feathersjs/typebox").TSchema;
561
+ } | undefined>]>>]>>;
562
+ snapshotId: 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<{
563
+ $gt: import("@feathersjs/typebox").TString<string>;
564
+ $gte: import("@feathersjs/typebox").TString<string>;
565
+ $lt: import("@feathersjs/typebox").TString<string>;
566
+ $lte: import("@feathersjs/typebox").TString<string>;
567
+ $ne: import("@feathersjs/typebox").TString<string>;
568
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
569
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
570
+ }>, import("@feathersjs/typebox").TObject<{
571
+ [key: string]: import("@feathersjs/typebox").TSchema;
572
+ } | undefined>]>>]>>;
573
+ tier: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
574
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
575
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
576
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
577
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
578
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
579
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
580
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<1>, import("@feathersjs/typebox").TLiteral<2>]>;
581
+ }>, import("@feathersjs/typebox").TObject<{
582
+ [key: string]: import("@feathersjs/typebox").TSchema;
583
+ } | undefined>]>>]>>;
584
+ url: 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<{
585
+ $gt: import("@feathersjs/typebox").TString<string>;
586
+ $gte: import("@feathersjs/typebox").TString<string>;
587
+ $lt: import("@feathersjs/typebox").TString<string>;
588
+ $lte: import("@feathersjs/typebox").TString<string>;
589
+ $ne: import("@feathersjs/typebox").TString<string>;
590
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
591
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
592
+ }>, import("@feathersjs/typebox").TObject<{
593
+ [key: string]: import("@feathersjs/typebox").TSchema;
594
+ } | undefined>]>>]>>;
595
+ }>>]>, import("@feathersjs/typebox").TObject<{}>]>;
596
+ export type BlogSitemapsPagesQuery = Static<typeof blogSitemapsPagesQuerySchema>;
597
+ export declare const blogSitemapsPagesQueryValidator: import("@feathersjs/schema").Validator<any, any>;
598
+ export declare const blogSitemapsPagesQueryResolver: import("@feathersjs/schema").Resolver<Partial<{
599
+ $limit: number;
600
+ $skip: number;
601
+ $sort: {
602
+ _id?: number | undefined;
603
+ crawledAt?: number | undefined;
604
+ hasNoindex?: number | undefined;
605
+ httpStatus?: number | undefined;
606
+ snapshotId?: number | undefined;
607
+ tier?: number | undefined;
608
+ url?: number | undefined;
609
+ };
610
+ $select: ("_id" | "crawledAt" | "hasNoindex" | "httpStatus" | "snapshotId" | "tier" | "url")[];
611
+ $and: ({
612
+ _id?: string | Partial<{
613
+ $gt: string | {};
614
+ $gte: string | {};
615
+ $lt: string | {};
616
+ $lte: string | {};
617
+ $ne: string | {};
618
+ $in: string | (string | {})[] | {};
619
+ $nin: string | (string | {})[] | {};
620
+ } & {}> | {} | undefined;
621
+ crawledAt?: string | Partial<{
622
+ $gt: string;
623
+ $gte: string;
624
+ $lt: string;
625
+ $lte: string;
626
+ $ne: string;
627
+ $in: string | string[];
628
+ $nin: string | string[];
629
+ } & {}> | undefined;
630
+ hasNoindex?: boolean | Partial<{
631
+ $gt: boolean;
632
+ $gte: boolean;
633
+ $lt: boolean;
634
+ $lte: boolean;
635
+ $ne: boolean;
636
+ $in: boolean | boolean[];
637
+ $nin: boolean | boolean[];
638
+ } & {}> | undefined;
639
+ httpStatus?: number | Partial<{
640
+ $gt: number | null;
641
+ $gte: number | null;
642
+ $lt: number | null;
643
+ $lte: number | null;
644
+ $ne: number | null;
645
+ $in: number | (number | null)[] | null;
646
+ $nin: number | (number | null)[] | null;
647
+ } & {}> | null | undefined;
648
+ snapshotId?: string | Partial<{
649
+ $gt: string;
650
+ $gte: string;
651
+ $lt: string;
652
+ $lte: string;
653
+ $ne: string;
654
+ $in: string | string[];
655
+ $nin: string | string[];
656
+ } & {}> | undefined;
657
+ tier?: 1 | 2 | Partial<{
658
+ $gt: 1 | 2;
659
+ $gte: 1 | 2;
660
+ $lt: 1 | 2;
661
+ $lte: 1 | 2;
662
+ $ne: 1 | 2;
663
+ $in: 1 | 2 | (1 | 2)[];
664
+ $nin: 1 | 2 | (1 | 2)[];
665
+ } & {}> | undefined;
666
+ url?: string | Partial<{
667
+ $gt: string;
668
+ $gte: string;
669
+ $lt: string;
670
+ $lte: string;
671
+ $ne: string;
672
+ $in: string | string[];
673
+ $nin: string | string[];
674
+ } & {}> | undefined;
675
+ } | {
676
+ $or: {
677
+ _id?: string | Partial<{
678
+ $gt: string | {};
679
+ $gte: string | {};
680
+ $lt: string | {};
681
+ $lte: string | {};
682
+ $ne: string | {};
683
+ $in: string | (string | {})[] | {};
684
+ $nin: string | (string | {})[] | {};
685
+ } & {}> | {} | undefined;
686
+ crawledAt?: string | Partial<{
687
+ $gt: string;
688
+ $gte: string;
689
+ $lt: string;
690
+ $lte: string;
691
+ $ne: string;
692
+ $in: string | string[];
693
+ $nin: string | string[];
694
+ } & {}> | undefined;
695
+ hasNoindex?: boolean | Partial<{
696
+ $gt: boolean;
697
+ $gte: boolean;
698
+ $lt: boolean;
699
+ $lte: boolean;
700
+ $ne: boolean;
701
+ $in: boolean | boolean[];
702
+ $nin: boolean | boolean[];
703
+ } & {}> | undefined;
704
+ httpStatus?: number | Partial<{
705
+ $gt: number | null;
706
+ $gte: number | null;
707
+ $lt: number | null;
708
+ $lte: number | null;
709
+ $ne: number | null;
710
+ $in: number | (number | null)[] | null;
711
+ $nin: number | (number | null)[] | null;
712
+ } & {}> | null | undefined;
713
+ snapshotId?: string | Partial<{
714
+ $gt: string;
715
+ $gte: string;
716
+ $lt: string;
717
+ $lte: string;
718
+ $ne: string;
719
+ $in: string | string[];
720
+ $nin: string | string[];
721
+ } & {}> | undefined;
722
+ tier?: 1 | 2 | Partial<{
723
+ $gt: 1 | 2;
724
+ $gte: 1 | 2;
725
+ $lt: 1 | 2;
726
+ $lte: 1 | 2;
727
+ $ne: 1 | 2;
728
+ $in: 1 | 2 | (1 | 2)[];
729
+ $nin: 1 | 2 | (1 | 2)[];
730
+ } & {}> | undefined;
731
+ url?: string | Partial<{
732
+ $gt: string;
733
+ $gte: string;
734
+ $lt: string;
735
+ $lte: string;
736
+ $ne: string;
737
+ $in: string | string[];
738
+ $nin: string | string[];
739
+ } & {}> | undefined;
740
+ }[];
741
+ })[];
742
+ $or: {
743
+ _id?: string | Partial<{
744
+ $gt: string | {};
745
+ $gte: string | {};
746
+ $lt: string | {};
747
+ $lte: string | {};
748
+ $ne: string | {};
749
+ $in: string | (string | {})[] | {};
750
+ $nin: string | (string | {})[] | {};
751
+ } & {}> | {} | undefined;
752
+ crawledAt?: string | Partial<{
753
+ $gt: string;
754
+ $gte: string;
755
+ $lt: string;
756
+ $lte: string;
757
+ $ne: string;
758
+ $in: string | string[];
759
+ $nin: string | string[];
760
+ } & {}> | undefined;
761
+ hasNoindex?: boolean | Partial<{
762
+ $gt: boolean;
763
+ $gte: boolean;
764
+ $lt: boolean;
765
+ $lte: boolean;
766
+ $ne: boolean;
767
+ $in: boolean | boolean[];
768
+ $nin: boolean | boolean[];
769
+ } & {}> | undefined;
770
+ httpStatus?: number | Partial<{
771
+ $gt: number | null;
772
+ $gte: number | null;
773
+ $lt: number | null;
774
+ $lte: number | null;
775
+ $ne: number | null;
776
+ $in: number | (number | null)[] | null;
777
+ $nin: number | (number | null)[] | null;
778
+ } & {}> | null | undefined;
779
+ snapshotId?: string | Partial<{
780
+ $gt: string;
781
+ $gte: string;
782
+ $lt: string;
783
+ $lte: string;
784
+ $ne: string;
785
+ $in: string | string[];
786
+ $nin: string | string[];
787
+ } & {}> | undefined;
788
+ tier?: 1 | 2 | Partial<{
789
+ $gt: 1 | 2;
790
+ $gte: 1 | 2;
791
+ $lt: 1 | 2;
792
+ $lte: 1 | 2;
793
+ $ne: 1 | 2;
794
+ $in: 1 | 2 | (1 | 2)[];
795
+ $nin: 1 | 2 | (1 | 2)[];
796
+ } & {}> | undefined;
797
+ url?: string | Partial<{
798
+ $gt: string;
799
+ $gte: string;
800
+ $lt: string;
801
+ $lte: string;
802
+ $ne: string;
803
+ $in: string | string[];
804
+ $nin: string | string[];
805
+ } & {}> | undefined;
806
+ }[];
807
+ }> & {
808
+ _id?: string | Partial<{
809
+ $gt: string | {};
810
+ $gte: string | {};
811
+ $lt: string | {};
812
+ $lte: string | {};
813
+ $ne: string | {};
814
+ $in: string | (string | {})[] | {};
815
+ $nin: string | (string | {})[] | {};
816
+ } & {}> | {} | undefined;
817
+ crawledAt?: string | Partial<{
818
+ $gt: string;
819
+ $gte: string;
820
+ $lt: string;
821
+ $lte: string;
822
+ $ne: string;
823
+ $in: string | string[];
824
+ $nin: string | string[];
825
+ } & {}> | undefined;
826
+ hasNoindex?: boolean | Partial<{
827
+ $gt: boolean;
828
+ $gte: boolean;
829
+ $lt: boolean;
830
+ $lte: boolean;
831
+ $ne: boolean;
832
+ $in: boolean | boolean[];
833
+ $nin: boolean | boolean[];
834
+ } & {}> | undefined;
835
+ httpStatus?: number | Partial<{
836
+ $gt: number | null;
837
+ $gte: number | null;
838
+ $lt: number | null;
839
+ $lte: number | null;
840
+ $ne: number | null;
841
+ $in: number | (number | null)[] | null;
842
+ $nin: number | (number | null)[] | null;
843
+ } & {}> | null | undefined;
844
+ snapshotId?: string | Partial<{
845
+ $gt: string;
846
+ $gte: string;
847
+ $lt: string;
848
+ $lte: string;
849
+ $ne: string;
850
+ $in: string | string[];
851
+ $nin: string | string[];
852
+ } & {}> | undefined;
853
+ tier?: 1 | 2 | Partial<{
854
+ $gt: 1 | 2;
855
+ $gte: 1 | 2;
856
+ $lt: 1 | 2;
857
+ $lte: 1 | 2;
858
+ $ne: 1 | 2;
859
+ $in: 1 | 2 | (1 | 2)[];
860
+ $nin: 1 | 2 | (1 | 2)[];
861
+ } & {}> | undefined;
862
+ url?: string | Partial<{
863
+ $gt: string;
864
+ $gte: string;
865
+ $lt: string;
866
+ $lte: string;
867
+ $ne: string;
868
+ $in: string | string[];
869
+ $nin: string | string[];
870
+ } & {}> | undefined;
871
+ } & {}, HookContext<BlogSitemapsPagesService<import("./pages.class").BlogSitemapsPagesParams>>>;