@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
@@ -4,7 +4,7 @@ import type { EventsTriggersService } from './triggers.class';
4
4
  export declare const triggerConditionSchema: import("@feathersjs/typebox").TObject<{
5
5
  id: import("@feathersjs/typebox").TString<string>;
6
6
  field: import("@feathersjs/typebox").TString<string>;
7
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
7
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
8
8
  value: import("@feathersjs/typebox").TAny;
9
9
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
10
10
  }>;
@@ -14,58 +14,64 @@ export declare const eventsTriggersSchema: import("@feathersjs/typebox").TObject
14
14
  description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
15
15
  prompt: import("@feathersjs/typebox").TString<string>;
16
16
  eventTypeId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
17
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
17
18
  enabled: import("@feathersjs/typebox").TBoolean;
18
19
  conditions: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
19
20
  id: import("@feathersjs/typebox").TString<string>;
20
21
  field: import("@feathersjs/typebox").TString<string>;
21
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
22
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
22
23
  value: import("@feathersjs/typebox").TAny;
23
24
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
24
25
  }>>;
25
26
  eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
26
27
  eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
28
+ eventBridgeBusName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
27
29
  createdAt: import("@feathersjs/typebox").TString<"date-time">;
28
30
  updatedAt: import("@feathersjs/typebox").TString<"date-time">;
29
31
  }>;
30
32
  export type EventsTriggers = Static<typeof eventsTriggersSchema>;
31
33
  export declare const eventsTriggersValidator: import("@feathersjs/schema").Validator<any, any>;
32
34
  export declare const eventsTriggersResolver: import("@feathersjs/schema").Resolver<{
33
- description?: string | undefined;
34
- eventBridgeRuleName?: string | undefined;
35
- eventBridgeRuleArn?: string | undefined;
35
+ _id: string | {};
36
36
  name: string;
37
+ description?: string | undefined;
38
+ prompt: string;
39
+ eventTypeId: string | {};
40
+ agentId?: string | {} | undefined;
37
41
  enabled: boolean;
38
- _id: string | {};
39
- createdAt: string;
40
- updatedAt: string;
41
42
  conditions: {
42
- type: "string" | "number" | "boolean" | "object" | "array";
43
- value: any;
44
- field: string;
45
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
46
43
  id: string;
44
+ field: string;
45
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
46
+ value: any;
47
+ type: "array" | "boolean" | "number" | "object" | "string";
47
48
  }[];
48
- prompt: string;
49
- eventTypeId: string | {};
50
- }, HookContext<EventsTriggersService<import("./triggers.class").EventsTriggersParams>>>;
51
- export declare const eventsTriggersExternalResolver: import("@feathersjs/schema").Resolver<{
52
- description?: string | undefined;
53
49
  eventBridgeRuleName?: string | undefined;
54
50
  eventBridgeRuleArn?: string | undefined;
55
- name: string;
56
- enabled: boolean;
57
- _id: string | {};
51
+ eventBridgeBusName?: string | undefined;
58
52
  createdAt: string;
59
53
  updatedAt: string;
54
+ }, HookContext<EventsTriggersService<import("./triggers.class").EventsTriggersParams>>>;
55
+ export declare const eventsTriggersExternalResolver: import("@feathersjs/schema").Resolver<{
56
+ _id: string | {};
57
+ name: string;
58
+ description?: string | undefined;
59
+ prompt: string;
60
+ eventTypeId: string | {};
61
+ agentId?: string | {} | undefined;
62
+ enabled: boolean;
60
63
  conditions: {
61
- type: "string" | "number" | "boolean" | "object" | "array";
62
- value: any;
63
- field: string;
64
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
65
64
  id: string;
65
+ field: string;
66
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
67
+ value: any;
68
+ type: "array" | "boolean" | "number" | "object" | "string";
66
69
  }[];
67
- prompt: string;
68
- eventTypeId: string | {};
70
+ eventBridgeRuleName?: string | undefined;
71
+ eventBridgeRuleArn?: string | undefined;
72
+ eventBridgeBusName?: string | undefined;
73
+ createdAt: string;
74
+ updatedAt: string;
69
75
  }, HookContext<EventsTriggersService<import("./triggers.class").EventsTriggersParams>>>;
70
76
  export declare const eventsTriggersDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
71
77
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -73,39 +79,43 @@ export declare const eventsTriggersDataSchema: import("@feathersjs/typebox").TPi
73
79
  description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
74
80
  prompt: import("@feathersjs/typebox").TString<string>;
75
81
  eventTypeId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
82
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
76
83
  enabled: import("@feathersjs/typebox").TBoolean;
77
84
  conditions: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
78
85
  id: import("@feathersjs/typebox").TString<string>;
79
86
  field: import("@feathersjs/typebox").TString<string>;
80
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
87
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
81
88
  value: import("@feathersjs/typebox").TAny;
82
89
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
83
90
  }>>;
84
91
  eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
85
92
  eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
93
+ eventBridgeBusName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
86
94
  createdAt: import("@feathersjs/typebox").TString<"date-time">;
87
95
  updatedAt: import("@feathersjs/typebox").TString<"date-time">;
88
- }>, ["name", "description", "prompt", "eventTypeId", "enabled", "conditions"]>;
96
+ }>, ["name", "description", "prompt", "eventTypeId", "agentId", "enabled", "conditions"]>;
89
97
  export type EventsTriggersData = Static<typeof eventsTriggersDataSchema>;
90
98
  export declare const eventsTriggersDataValidator: import("@feathersjs/schema").Validator<any, any>;
91
99
  export declare const eventsTriggersDataResolver: import("@feathersjs/schema").Resolver<{
92
- description?: string | undefined;
93
- eventBridgeRuleName?: string | undefined;
94
- eventBridgeRuleArn?: string | undefined;
100
+ _id: string | {};
95
101
  name: string;
102
+ description?: string | undefined;
103
+ prompt: string;
104
+ eventTypeId: string | {};
105
+ agentId?: string | {} | undefined;
96
106
  enabled: boolean;
97
- _id: string | {};
98
- createdAt: string;
99
- updatedAt: string;
100
107
  conditions: {
101
- type: "string" | "number" | "boolean" | "object" | "array";
102
- value: any;
103
- field: string;
104
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
105
108
  id: string;
109
+ field: string;
110
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
111
+ value: any;
112
+ type: "array" | "boolean" | "number" | "object" | "string";
106
113
  }[];
107
- prompt: string;
108
- eventTypeId: string | {};
114
+ eventBridgeRuleName?: string | undefined;
115
+ eventBridgeRuleArn?: string | undefined;
116
+ eventBridgeBusName?: string | undefined;
117
+ createdAt: string;
118
+ updatedAt: string;
109
119
  }, HookContext<EventsTriggersService<import("./triggers.class").EventsTriggersParams>>>;
110
120
  export declare const eventsTriggersPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
111
121
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -113,39 +123,43 @@ export declare const eventsTriggersPatchSchema: import("@feathersjs/typebox").TP
113
123
  description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
114
124
  prompt: import("@feathersjs/typebox").TString<string>;
115
125
  eventTypeId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
126
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
116
127
  enabled: import("@feathersjs/typebox").TBoolean;
117
128
  conditions: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
118
129
  id: import("@feathersjs/typebox").TString<string>;
119
130
  field: import("@feathersjs/typebox").TString<string>;
120
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
131
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
121
132
  value: import("@feathersjs/typebox").TAny;
122
133
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
123
134
  }>>;
124
135
  eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
125
136
  eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
137
+ eventBridgeBusName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
126
138
  createdAt: import("@feathersjs/typebox").TString<"date-time">;
127
139
  updatedAt: import("@feathersjs/typebox").TString<"date-time">;
128
- }>, ["name", "description", "prompt", "eventTypeId", "enabled", "conditions", "eventBridgeRuleName", "eventBridgeRuleArn"]>>;
140
+ }>, ["name", "description", "prompt", "eventTypeId", "agentId", "enabled", "conditions", "eventBridgeRuleName", "eventBridgeRuleArn", "eventBridgeBusName"]>>;
129
141
  export type EventsTriggersPatch = Static<typeof eventsTriggersPatchSchema>;
130
142
  export declare const eventsTriggersPatchValidator: import("@feathersjs/schema").Validator<any, any>;
131
143
  export declare const eventsTriggersPatchResolver: import("@feathersjs/schema").Resolver<{
132
- description?: string | undefined;
133
- eventBridgeRuleName?: string | undefined;
134
- eventBridgeRuleArn?: string | undefined;
144
+ _id: string | {};
135
145
  name: string;
146
+ description?: string | undefined;
147
+ prompt: string;
148
+ eventTypeId: string | {};
149
+ agentId?: string | {} | undefined;
136
150
  enabled: boolean;
137
- _id: string | {};
138
- createdAt: string;
139
- updatedAt: string;
140
151
  conditions: {
141
- type: "string" | "number" | "boolean" | "object" | "array";
142
- value: any;
143
- field: string;
144
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
145
152
  id: string;
153
+ field: string;
154
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
155
+ value: any;
156
+ type: "array" | "boolean" | "number" | "object" | "string";
146
157
  }[];
147
- prompt: string;
148
- eventTypeId: string | {};
158
+ eventBridgeRuleName?: string | undefined;
159
+ eventBridgeRuleArn?: string | undefined;
160
+ eventBridgeBusName?: string | undefined;
161
+ createdAt: string;
162
+ updatedAt: string;
149
163
  }, HookContext<EventsTriggersService<import("./triggers.class").EventsTriggersParams>>>;
150
164
  export declare const eventsTriggersQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
151
165
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -153,204 +167,175 @@ export declare const eventsTriggersQueryProperties: import("@feathersjs/typebox"
153
167
  description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
154
168
  prompt: import("@feathersjs/typebox").TString<string>;
155
169
  eventTypeId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
170
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
156
171
  enabled: import("@feathersjs/typebox").TBoolean;
157
172
  conditions: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
158
173
  id: import("@feathersjs/typebox").TString<string>;
159
174
  field: import("@feathersjs/typebox").TString<string>;
160
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
175
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
161
176
  value: import("@feathersjs/typebox").TAny;
162
177
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
163
178
  }>>;
164
179
  eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
165
180
  eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
181
+ eventBridgeBusName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
166
182
  createdAt: import("@feathersjs/typebox").TString<"date-time">;
167
183
  updatedAt: import("@feathersjs/typebox").TString<"date-time">;
168
- }>, ["_id", "name", "description", "prompt", "eventTypeId", "enabled", "conditions", "eventBridgeRuleName", "eventBridgeRuleArn", "createdAt", "updatedAt"]>;
184
+ }>, ["_id", "name", "description", "prompt", "eventTypeId", "agentId", "enabled", "conditions", "eventBridgeRuleName", "eventBridgeRuleArn", "eventBridgeBusName", "createdAt", "updatedAt"]>;
169
185
  export declare const eventsTriggersQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
170
186
  $limit: import("@feathersjs/typebox").TNumber;
171
187
  $skip: import("@feathersjs/typebox").TNumber;
172
188
  $sort: import("@feathersjs/typebox").TObject<{
173
- name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
174
- enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
175
189
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
190
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
191
+ conditions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
176
192
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
177
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
178
193
  description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
179
- conditions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
180
- prompt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
181
- eventTypeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
182
- eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
194
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
195
+ eventBridgeBusName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
183
196
  eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
197
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
198
+ eventTypeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
199
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
200
+ prompt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
201
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
184
202
  }>;
185
- $select: import("@feathersjs/typebox").TUnsafe<("name" | "enabled" | "_id" | "createdAt" | "updatedAt" | "description" | "conditions" | "prompt" | "eventTypeId" | "eventBridgeRuleName" | "eventBridgeRuleArn")[]>;
203
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "agentId" | "conditions" | "createdAt" | "description" | "enabled" | "eventBridgeBusName" | "eventBridgeRuleArn" | "eventBridgeRuleName" | "eventTypeId" | "name" | "prompt" | "updatedAt")[]>;
186
204
  $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
187
- name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
188
- $gt: import("@feathersjs/typebox").TString<string>;
189
- $gte: import("@feathersjs/typebox").TString<string>;
190
- $lt: import("@feathersjs/typebox").TString<string>;
191
- $lte: import("@feathersjs/typebox").TString<string>;
192
- $ne: import("@feathersjs/typebox").TString<string>;
193
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
194
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
195
- }>, import("@feathersjs/typebox").TObject<{
196
- [key: string]: import("@feathersjs/typebox").TSchema;
197
- } | undefined>]>>]>>;
198
- enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
199
- $gt: import("@feathersjs/typebox").TBoolean;
200
- $gte: import("@feathersjs/typebox").TBoolean;
201
- $lt: import("@feathersjs/typebox").TBoolean;
202
- $lte: import("@feathersjs/typebox").TBoolean;
203
- $ne: import("@feathersjs/typebox").TBoolean;
204
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
205
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
206
- }>, import("@feathersjs/typebox").TObject<{
207
- [key: string]: import("@feathersjs/typebox").TSchema;
208
- } | undefined>]>>]>>;
209
205
  _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<{
210
206
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
211
207
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
212
208
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
213
209
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
214
210
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
215
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
216
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
217
- }>, import("@feathersjs/typebox").TObject<{
218
- [key: string]: import("@feathersjs/typebox").TSchema;
219
- } | undefined>]>>]>>;
220
- createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
221
- $gt: import("@feathersjs/typebox").TString<"date-time">;
222
- $gte: import("@feathersjs/typebox").TString<"date-time">;
223
- $lt: import("@feathersjs/typebox").TString<"date-time">;
224
- $lte: import("@feathersjs/typebox").TString<"date-time">;
225
- $ne: import("@feathersjs/typebox").TString<"date-time">;
226
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
227
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
228
- }>, import("@feathersjs/typebox").TObject<{
229
- [key: string]: import("@feathersjs/typebox").TSchema;
230
- } | undefined>]>>]>>;
231
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
232
- $gt: import("@feathersjs/typebox").TString<"date-time">;
233
- $gte: import("@feathersjs/typebox").TString<"date-time">;
234
- $lt: import("@feathersjs/typebox").TString<"date-time">;
235
- $lte: import("@feathersjs/typebox").TString<"date-time">;
236
- $ne: import("@feathersjs/typebox").TString<"date-time">;
237
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
238
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
211
+ $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<{}>]>;
212
+ $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<{}>]>;
239
213
  }>, import("@feathersjs/typebox").TObject<{
240
214
  [key: string]: import("@feathersjs/typebox").TSchema;
241
215
  } | undefined>]>>]>>;
242
- description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
243
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
244
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
245
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
246
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
247
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
248
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
249
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
216
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
217
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
218
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
219
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
220
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
221
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
222
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
223
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
250
224
  }>, import("@feathersjs/typebox").TObject<{
251
225
  [key: string]: import("@feathersjs/typebox").TSchema;
252
226
  } | undefined>]>>]>>;
253
227
  conditions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
254
228
  id: import("@feathersjs/typebox").TString<string>;
255
229
  field: import("@feathersjs/typebox").TString<string>;
256
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
230
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
257
231
  value: import("@feathersjs/typebox").TAny;
258
232
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
259
233
  }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
260
234
  $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
261
235
  id: import("@feathersjs/typebox").TString<string>;
262
236
  field: import("@feathersjs/typebox").TString<string>;
263
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
237
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
264
238
  value: import("@feathersjs/typebox").TAny;
265
239
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
266
240
  }>>;
267
241
  $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
268
242
  id: import("@feathersjs/typebox").TString<string>;
269
243
  field: import("@feathersjs/typebox").TString<string>;
270
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
244
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
271
245
  value: import("@feathersjs/typebox").TAny;
272
246
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
273
247
  }>>;
274
248
  $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
275
249
  id: import("@feathersjs/typebox").TString<string>;
276
250
  field: import("@feathersjs/typebox").TString<string>;
277
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
251
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
278
252
  value: import("@feathersjs/typebox").TAny;
279
253
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
280
254
  }>>;
281
255
  $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
282
256
  id: import("@feathersjs/typebox").TString<string>;
283
257
  field: import("@feathersjs/typebox").TString<string>;
284
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
258
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
285
259
  value: import("@feathersjs/typebox").TAny;
286
260
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
287
261
  }>>;
288
262
  $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
289
263
  id: import("@feathersjs/typebox").TString<string>;
290
264
  field: import("@feathersjs/typebox").TString<string>;
291
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
265
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
292
266
  value: import("@feathersjs/typebox").TAny;
293
267
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
294
268
  }>>;
295
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
269
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
296
270
  id: import("@feathersjs/typebox").TString<string>;
297
271
  field: import("@feathersjs/typebox").TString<string>;
298
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
272
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
299
273
  value: import("@feathersjs/typebox").TAny;
300
274
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
301
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
275
+ }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
302
276
  id: import("@feathersjs/typebox").TString<string>;
303
277
  field: import("@feathersjs/typebox").TString<string>;
304
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
278
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
305
279
  value: import("@feathersjs/typebox").TAny;
306
280
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
307
- }>>>;
308
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
281
+ }>>;
282
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
309
283
  id: import("@feathersjs/typebox").TString<string>;
310
284
  field: import("@feathersjs/typebox").TString<string>;
311
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
285
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
312
286
  value: import("@feathersjs/typebox").TAny;
313
287
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
314
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
288
+ }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
315
289
  id: import("@feathersjs/typebox").TString<string>;
316
290
  field: import("@feathersjs/typebox").TString<string>;
317
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
291
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
318
292
  value: import("@feathersjs/typebox").TAny;
319
293
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
320
- }>>>;
294
+ }>>;
321
295
  }>, import("@feathersjs/typebox").TObject<{
322
296
  [key: string]: import("@feathersjs/typebox").TSchema;
323
297
  } | undefined>]>>]>>;
324
- prompt: 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").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
331
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
298
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
299
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
300
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
301
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
302
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
303
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
304
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
305
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
332
306
  }>, import("@feathersjs/typebox").TObject<{
333
307
  [key: string]: import("@feathersjs/typebox").TSchema;
334
308
  } | undefined>]>>]>>;
335
- eventTypeId: 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<{
336
- $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
337
- $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
338
- $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
339
- $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
340
- $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
341
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
342
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
309
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
310
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
311
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
312
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
313
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
314
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
315
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
316
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
343
317
  }>, import("@feathersjs/typebox").TObject<{
344
318
  [key: string]: import("@feathersjs/typebox").TSchema;
345
319
  } | undefined>]>>]>>;
346
- eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
320
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
321
+ $gt: import("@feathersjs/typebox").TBoolean;
322
+ $gte: import("@feathersjs/typebox").TBoolean;
323
+ $lt: import("@feathersjs/typebox").TBoolean;
324
+ $lte: import("@feathersjs/typebox").TBoolean;
325
+ $ne: import("@feathersjs/typebox").TBoolean;
326
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
327
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
328
+ }>, import("@feathersjs/typebox").TObject<{
329
+ [key: string]: import("@feathersjs/typebox").TSchema;
330
+ } | undefined>]>>]>>;
331
+ eventBridgeBusName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
347
332
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
348
333
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
349
334
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
350
335
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
351
336
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
352
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
353
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
337
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
338
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
354
339
  }>, import("@feathersjs/typebox").TObject<{
355
340
  [key: string]: import("@feathersjs/typebox").TSchema;
356
341
  } | undefined>]>>]>>;
@@ -360,180 +345,202 @@ export declare const eventsTriggersQuerySchema: import("@feathersjs/typebox").TI
360
345
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
361
346
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
362
347
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
363
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
364
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
348
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
349
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
350
+ }>, import("@feathersjs/typebox").TObject<{
351
+ [key: string]: import("@feathersjs/typebox").TSchema;
352
+ } | undefined>]>>]>>;
353
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
354
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
355
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
356
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
357
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
358
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
359
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
360
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
361
+ }>, import("@feathersjs/typebox").TObject<{
362
+ [key: string]: import("@feathersjs/typebox").TSchema;
363
+ } | undefined>]>>]>>;
364
+ eventTypeId: 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<{
365
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
366
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
367
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
368
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
369
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
370
+ $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<{}>]>;
371
+ $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<{}>]>;
372
+ }>, import("@feathersjs/typebox").TObject<{
373
+ [key: string]: import("@feathersjs/typebox").TSchema;
374
+ } | undefined>]>>]>>;
375
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
376
+ $gt: import("@feathersjs/typebox").TString<string>;
377
+ $gte: import("@feathersjs/typebox").TString<string>;
378
+ $lt: import("@feathersjs/typebox").TString<string>;
379
+ $lte: import("@feathersjs/typebox").TString<string>;
380
+ $ne: import("@feathersjs/typebox").TString<string>;
381
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
382
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
383
+ }>, import("@feathersjs/typebox").TObject<{
384
+ [key: string]: import("@feathersjs/typebox").TSchema;
385
+ } | undefined>]>>]>>;
386
+ prompt: 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<{
387
+ $gt: import("@feathersjs/typebox").TString<string>;
388
+ $gte: import("@feathersjs/typebox").TString<string>;
389
+ $lt: import("@feathersjs/typebox").TString<string>;
390
+ $lte: import("@feathersjs/typebox").TString<string>;
391
+ $ne: import("@feathersjs/typebox").TString<string>;
392
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
393
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
394
+ }>, import("@feathersjs/typebox").TObject<{
395
+ [key: string]: import("@feathersjs/typebox").TSchema;
396
+ } | undefined>]>>]>>;
397
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
398
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
399
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
400
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
401
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
402
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
403
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
404
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
365
405
  }>, import("@feathersjs/typebox").TObject<{
366
406
  [key: string]: import("@feathersjs/typebox").TSchema;
367
407
  } | undefined>]>>]>>;
368
408
  }>>, import("@feathersjs/typebox").TObject<{
369
409
  $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
370
- name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
371
- $gt: import("@feathersjs/typebox").TString<string>;
372
- $gte: import("@feathersjs/typebox").TString<string>;
373
- $lt: import("@feathersjs/typebox").TString<string>;
374
- $lte: import("@feathersjs/typebox").TString<string>;
375
- $ne: import("@feathersjs/typebox").TString<string>;
376
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
377
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
378
- }>, import("@feathersjs/typebox").TObject<{
379
- [key: string]: import("@feathersjs/typebox").TSchema;
380
- } | undefined>]>>]>>;
381
- enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
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").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
388
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
389
- }>, import("@feathersjs/typebox").TObject<{
390
- [key: string]: import("@feathersjs/typebox").TSchema;
391
- } | undefined>]>>]>>;
392
410
  _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<{
393
411
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
394
412
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
395
413
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
396
414
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
397
415
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
398
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
399
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
400
- }>, import("@feathersjs/typebox").TObject<{
401
- [key: string]: import("@feathersjs/typebox").TSchema;
402
- } | undefined>]>>]>>;
403
- createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
404
- $gt: import("@feathersjs/typebox").TString<"date-time">;
405
- $gte: import("@feathersjs/typebox").TString<"date-time">;
406
- $lt: import("@feathersjs/typebox").TString<"date-time">;
407
- $lte: import("@feathersjs/typebox").TString<"date-time">;
408
- $ne: import("@feathersjs/typebox").TString<"date-time">;
409
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
410
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
416
+ $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<{}>]>;
417
+ $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<{}>]>;
411
418
  }>, import("@feathersjs/typebox").TObject<{
412
419
  [key: string]: import("@feathersjs/typebox").TSchema;
413
420
  } | undefined>]>>]>>;
414
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
415
- $gt: import("@feathersjs/typebox").TString<"date-time">;
416
- $gte: import("@feathersjs/typebox").TString<"date-time">;
417
- $lt: import("@feathersjs/typebox").TString<"date-time">;
418
- $lte: import("@feathersjs/typebox").TString<"date-time">;
419
- $ne: import("@feathersjs/typebox").TString<"date-time">;
420
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
421
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
422
- }>, import("@feathersjs/typebox").TObject<{
423
- [key: string]: import("@feathersjs/typebox").TSchema;
424
- } | undefined>]>>]>>;
425
- description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
426
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
427
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
428
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
429
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
430
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
431
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
432
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
421
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
422
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
423
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
424
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
425
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
426
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
427
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
428
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
433
429
  }>, import("@feathersjs/typebox").TObject<{
434
430
  [key: string]: import("@feathersjs/typebox").TSchema;
435
431
  } | undefined>]>>]>>;
436
432
  conditions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
437
433
  id: import("@feathersjs/typebox").TString<string>;
438
434
  field: import("@feathersjs/typebox").TString<string>;
439
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
435
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
440
436
  value: import("@feathersjs/typebox").TAny;
441
437
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
442
438
  }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
443
439
  $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
444
440
  id: import("@feathersjs/typebox").TString<string>;
445
441
  field: import("@feathersjs/typebox").TString<string>;
446
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
442
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
447
443
  value: import("@feathersjs/typebox").TAny;
448
444
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
449
445
  }>>;
450
446
  $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
451
447
  id: import("@feathersjs/typebox").TString<string>;
452
448
  field: import("@feathersjs/typebox").TString<string>;
453
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
449
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
454
450
  value: import("@feathersjs/typebox").TAny;
455
451
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
456
452
  }>>;
457
453
  $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
458
454
  id: import("@feathersjs/typebox").TString<string>;
459
455
  field: import("@feathersjs/typebox").TString<string>;
460
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
456
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
461
457
  value: import("@feathersjs/typebox").TAny;
462
458
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
463
459
  }>>;
464
460
  $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
465
461
  id: import("@feathersjs/typebox").TString<string>;
466
462
  field: import("@feathersjs/typebox").TString<string>;
467
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
463
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
468
464
  value: import("@feathersjs/typebox").TAny;
469
465
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
470
466
  }>>;
471
467
  $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
472
468
  id: import("@feathersjs/typebox").TString<string>;
473
469
  field: import("@feathersjs/typebox").TString<string>;
474
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
470
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
475
471
  value: import("@feathersjs/typebox").TAny;
476
472
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
477
473
  }>>;
478
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
474
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
479
475
  id: import("@feathersjs/typebox").TString<string>;
480
476
  field: import("@feathersjs/typebox").TString<string>;
481
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
477
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
482
478
  value: import("@feathersjs/typebox").TAny;
483
479
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
484
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
480
+ }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
485
481
  id: import("@feathersjs/typebox").TString<string>;
486
482
  field: import("@feathersjs/typebox").TString<string>;
487
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
483
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
488
484
  value: import("@feathersjs/typebox").TAny;
489
485
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
490
- }>>>;
491
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
486
+ }>>;
487
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
492
488
  id: import("@feathersjs/typebox").TString<string>;
493
489
  field: import("@feathersjs/typebox").TString<string>;
494
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
490
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
495
491
  value: import("@feathersjs/typebox").TAny;
496
492
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
497
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
493
+ }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
498
494
  id: import("@feathersjs/typebox").TString<string>;
499
495
  field: import("@feathersjs/typebox").TString<string>;
500
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
496
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
501
497
  value: import("@feathersjs/typebox").TAny;
502
498
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
503
- }>>>;
499
+ }>>;
504
500
  }>, import("@feathersjs/typebox").TObject<{
505
501
  [key: string]: import("@feathersjs/typebox").TSchema;
506
502
  } | undefined>]>>]>>;
507
- prompt: 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<{
508
- $gt: import("@feathersjs/typebox").TString<string>;
509
- $gte: import("@feathersjs/typebox").TString<string>;
510
- $lt: import("@feathersjs/typebox").TString<string>;
511
- $lte: import("@feathersjs/typebox").TString<string>;
512
- $ne: import("@feathersjs/typebox").TString<string>;
513
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
514
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
503
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
504
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
505
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
506
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
507
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
508
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
509
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
510
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
515
511
  }>, import("@feathersjs/typebox").TObject<{
516
512
  [key: string]: import("@feathersjs/typebox").TSchema;
517
513
  } | undefined>]>>]>>;
518
- eventTypeId: 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").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
525
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
514
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
515
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
516
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
517
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
518
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
519
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
520
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
521
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
526
522
  }>, import("@feathersjs/typebox").TObject<{
527
523
  [key: string]: import("@feathersjs/typebox").TSchema;
528
524
  } | undefined>]>>]>>;
529
- eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
525
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
526
+ $gt: import("@feathersjs/typebox").TBoolean;
527
+ $gte: import("@feathersjs/typebox").TBoolean;
528
+ $lt: import("@feathersjs/typebox").TBoolean;
529
+ $lte: import("@feathersjs/typebox").TBoolean;
530
+ $ne: import("@feathersjs/typebox").TBoolean;
531
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
532
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
533
+ }>, import("@feathersjs/typebox").TObject<{
534
+ [key: string]: import("@feathersjs/typebox").TSchema;
535
+ } | undefined>]>>]>>;
536
+ eventBridgeBusName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
530
537
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
531
538
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
532
539
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
533
540
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
534
541
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
535
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
536
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
542
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
543
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
537
544
  }>, import("@feathersjs/typebox").TObject<{
538
545
  [key: string]: import("@feathersjs/typebox").TSchema;
539
546
  } | undefined>]>>]>>;
@@ -543,181 +550,203 @@ export declare const eventsTriggersQuerySchema: import("@feathersjs/typebox").TI
543
550
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
544
551
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
545
552
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
546
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
547
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
553
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
554
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
555
+ }>, import("@feathersjs/typebox").TObject<{
556
+ [key: string]: import("@feathersjs/typebox").TSchema;
557
+ } | undefined>]>>]>>;
558
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
559
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
560
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
561
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
562
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
563
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
564
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
565
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
566
+ }>, import("@feathersjs/typebox").TObject<{
567
+ [key: string]: import("@feathersjs/typebox").TSchema;
568
+ } | undefined>]>>]>>;
569
+ eventTypeId: 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<{
570
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
571
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
572
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
573
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
574
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
575
+ $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<{}>]>;
576
+ $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<{}>]>;
577
+ }>, import("@feathersjs/typebox").TObject<{
578
+ [key: string]: import("@feathersjs/typebox").TSchema;
579
+ } | undefined>]>>]>>;
580
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
581
+ $gt: import("@feathersjs/typebox").TString<string>;
582
+ $gte: import("@feathersjs/typebox").TString<string>;
583
+ $lt: import("@feathersjs/typebox").TString<string>;
584
+ $lte: import("@feathersjs/typebox").TString<string>;
585
+ $ne: import("@feathersjs/typebox").TString<string>;
586
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
587
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
588
+ }>, import("@feathersjs/typebox").TObject<{
589
+ [key: string]: import("@feathersjs/typebox").TSchema;
590
+ } | undefined>]>>]>>;
591
+ prompt: 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<{
592
+ $gt: import("@feathersjs/typebox").TString<string>;
593
+ $gte: import("@feathersjs/typebox").TString<string>;
594
+ $lt: import("@feathersjs/typebox").TString<string>;
595
+ $lte: import("@feathersjs/typebox").TString<string>;
596
+ $ne: import("@feathersjs/typebox").TString<string>;
597
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
598
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
599
+ }>, import("@feathersjs/typebox").TObject<{
600
+ [key: string]: import("@feathersjs/typebox").TSchema;
601
+ } | undefined>]>>]>>;
602
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
603
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
604
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
605
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
606
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
607
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
608
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
609
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
548
610
  }>, import("@feathersjs/typebox").TObject<{
549
611
  [key: string]: import("@feathersjs/typebox").TSchema;
550
612
  } | undefined>]>>]>>;
551
613
  }>>>;
552
614
  }>]>>;
553
615
  $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
554
- name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
555
- $gt: import("@feathersjs/typebox").TString<string>;
556
- $gte: import("@feathersjs/typebox").TString<string>;
557
- $lt: import("@feathersjs/typebox").TString<string>;
558
- $lte: import("@feathersjs/typebox").TString<string>;
559
- $ne: import("@feathersjs/typebox").TString<string>;
560
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
561
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
562
- }>, import("@feathersjs/typebox").TObject<{
563
- [key: string]: import("@feathersjs/typebox").TSchema;
564
- } | undefined>]>>]>>;
565
- enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
566
- $gt: import("@feathersjs/typebox").TBoolean;
567
- $gte: import("@feathersjs/typebox").TBoolean;
568
- $lt: import("@feathersjs/typebox").TBoolean;
569
- $lte: import("@feathersjs/typebox").TBoolean;
570
- $ne: import("@feathersjs/typebox").TBoolean;
571
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
572
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
573
- }>, import("@feathersjs/typebox").TObject<{
574
- [key: string]: import("@feathersjs/typebox").TSchema;
575
- } | undefined>]>>]>>;
576
616
  _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<{
577
617
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
578
618
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
579
619
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
580
620
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
581
621
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
582
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
583
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
584
- }>, import("@feathersjs/typebox").TObject<{
585
- [key: string]: import("@feathersjs/typebox").TSchema;
586
- } | undefined>]>>]>>;
587
- createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
588
- $gt: import("@feathersjs/typebox").TString<"date-time">;
589
- $gte: import("@feathersjs/typebox").TString<"date-time">;
590
- $lt: import("@feathersjs/typebox").TString<"date-time">;
591
- $lte: import("@feathersjs/typebox").TString<"date-time">;
592
- $ne: import("@feathersjs/typebox").TString<"date-time">;
593
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
594
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
595
- }>, import("@feathersjs/typebox").TObject<{
596
- [key: string]: import("@feathersjs/typebox").TSchema;
597
- } | undefined>]>>]>>;
598
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
599
- $gt: import("@feathersjs/typebox").TString<"date-time">;
600
- $gte: import("@feathersjs/typebox").TString<"date-time">;
601
- $lt: import("@feathersjs/typebox").TString<"date-time">;
602
- $lte: import("@feathersjs/typebox").TString<"date-time">;
603
- $ne: import("@feathersjs/typebox").TString<"date-time">;
604
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
605
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
622
+ $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<{}>]>;
623
+ $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<{}>]>;
606
624
  }>, import("@feathersjs/typebox").TObject<{
607
625
  [key: string]: import("@feathersjs/typebox").TSchema;
608
626
  } | undefined>]>>]>>;
609
- description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
610
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
611
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
612
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
613
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
614
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
615
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
616
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
627
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
628
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
629
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
630
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
631
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
632
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
633
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
634
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
617
635
  }>, import("@feathersjs/typebox").TObject<{
618
636
  [key: string]: import("@feathersjs/typebox").TSchema;
619
637
  } | undefined>]>>]>>;
620
638
  conditions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
621
639
  id: import("@feathersjs/typebox").TString<string>;
622
640
  field: import("@feathersjs/typebox").TString<string>;
623
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
641
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
624
642
  value: import("@feathersjs/typebox").TAny;
625
643
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
626
644
  }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
627
645
  $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
628
646
  id: import("@feathersjs/typebox").TString<string>;
629
647
  field: import("@feathersjs/typebox").TString<string>;
630
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
648
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
631
649
  value: import("@feathersjs/typebox").TAny;
632
650
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
633
651
  }>>;
634
652
  $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
635
653
  id: import("@feathersjs/typebox").TString<string>;
636
654
  field: import("@feathersjs/typebox").TString<string>;
637
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
655
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
638
656
  value: import("@feathersjs/typebox").TAny;
639
657
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
640
658
  }>>;
641
659
  $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
642
660
  id: import("@feathersjs/typebox").TString<string>;
643
661
  field: import("@feathersjs/typebox").TString<string>;
644
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
662
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
645
663
  value: import("@feathersjs/typebox").TAny;
646
664
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
647
665
  }>>;
648
666
  $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
649
667
  id: import("@feathersjs/typebox").TString<string>;
650
668
  field: import("@feathersjs/typebox").TString<string>;
651
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
669
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
652
670
  value: import("@feathersjs/typebox").TAny;
653
671
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
654
672
  }>>;
655
673
  $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
656
674
  id: import("@feathersjs/typebox").TString<string>;
657
675
  field: import("@feathersjs/typebox").TString<string>;
658
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
676
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
659
677
  value: import("@feathersjs/typebox").TAny;
660
678
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
661
679
  }>>;
662
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
680
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
663
681
  id: import("@feathersjs/typebox").TString<string>;
664
682
  field: import("@feathersjs/typebox").TString<string>;
665
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
683
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
666
684
  value: import("@feathersjs/typebox").TAny;
667
685
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
668
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
686
+ }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
669
687
  id: import("@feathersjs/typebox").TString<string>;
670
688
  field: import("@feathersjs/typebox").TString<string>;
671
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
689
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
672
690
  value: import("@feathersjs/typebox").TAny;
673
691
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
674
- }>>>;
675
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
692
+ }>>;
693
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
676
694
  id: import("@feathersjs/typebox").TString<string>;
677
695
  field: import("@feathersjs/typebox").TString<string>;
678
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
696
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
679
697
  value: import("@feathersjs/typebox").TAny;
680
698
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
681
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
699
+ }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
682
700
  id: import("@feathersjs/typebox").TString<string>;
683
701
  field: import("@feathersjs/typebox").TString<string>;
684
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
702
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
685
703
  value: import("@feathersjs/typebox").TAny;
686
704
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
687
- }>>>;
705
+ }>>;
688
706
  }>, import("@feathersjs/typebox").TObject<{
689
707
  [key: string]: import("@feathersjs/typebox").TSchema;
690
708
  } | undefined>]>>]>>;
691
- prompt: 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<{
692
- $gt: import("@feathersjs/typebox").TString<string>;
693
- $gte: import("@feathersjs/typebox").TString<string>;
694
- $lt: import("@feathersjs/typebox").TString<string>;
695
- $lte: import("@feathersjs/typebox").TString<string>;
696
- $ne: import("@feathersjs/typebox").TString<string>;
697
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
698
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
709
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
710
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
711
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
712
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
713
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
714
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
715
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
716
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
699
717
  }>, import("@feathersjs/typebox").TObject<{
700
718
  [key: string]: import("@feathersjs/typebox").TSchema;
701
719
  } | undefined>]>>]>>;
702
- eventTypeId: 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<{
703
- $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
704
- $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
705
- $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
706
- $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
707
- $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
708
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
709
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
720
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
721
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
722
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
723
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
724
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
725
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
726
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
727
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
710
728
  }>, import("@feathersjs/typebox").TObject<{
711
729
  [key: string]: import("@feathersjs/typebox").TSchema;
712
730
  } | undefined>]>>]>>;
713
- eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
731
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
732
+ $gt: import("@feathersjs/typebox").TBoolean;
733
+ $gte: import("@feathersjs/typebox").TBoolean;
734
+ $lt: import("@feathersjs/typebox").TBoolean;
735
+ $lte: import("@feathersjs/typebox").TBoolean;
736
+ $ne: import("@feathersjs/typebox").TBoolean;
737
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
738
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
739
+ }>, import("@feathersjs/typebox").TObject<{
740
+ [key: string]: import("@feathersjs/typebox").TSchema;
741
+ } | undefined>]>>]>>;
742
+ eventBridgeBusName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
714
743
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
715
744
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
716
745
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
717
746
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
718
747
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
719
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
720
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
748
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
749
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
721
750
  }>, import("@feathersjs/typebox").TObject<{
722
751
  [key: string]: import("@feathersjs/typebox").TSchema;
723
752
  } | undefined>]>>]>>;
@@ -727,180 +756,202 @@ export declare const eventsTriggersQuerySchema: import("@feathersjs/typebox").TI
727
756
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
728
757
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
729
758
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
730
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
731
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
759
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
760
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
761
+ }>, import("@feathersjs/typebox").TObject<{
762
+ [key: string]: import("@feathersjs/typebox").TSchema;
763
+ } | undefined>]>>]>>;
764
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
765
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
766
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
767
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
768
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
769
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
770
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
771
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
772
+ }>, import("@feathersjs/typebox").TObject<{
773
+ [key: string]: import("@feathersjs/typebox").TSchema;
774
+ } | undefined>]>>]>>;
775
+ eventTypeId: 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<{
776
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
777
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
778
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
779
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
780
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
781
+ $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<{}>]>;
782
+ $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<{}>]>;
783
+ }>, import("@feathersjs/typebox").TObject<{
784
+ [key: string]: import("@feathersjs/typebox").TSchema;
785
+ } | undefined>]>>]>>;
786
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
787
+ $gt: import("@feathersjs/typebox").TString<string>;
788
+ $gte: import("@feathersjs/typebox").TString<string>;
789
+ $lt: import("@feathersjs/typebox").TString<string>;
790
+ $lte: import("@feathersjs/typebox").TString<string>;
791
+ $ne: import("@feathersjs/typebox").TString<string>;
792
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
793
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
794
+ }>, import("@feathersjs/typebox").TObject<{
795
+ [key: string]: import("@feathersjs/typebox").TSchema;
796
+ } | undefined>]>>]>>;
797
+ prompt: 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<{
798
+ $gt: import("@feathersjs/typebox").TString<string>;
799
+ $gte: import("@feathersjs/typebox").TString<string>;
800
+ $lt: import("@feathersjs/typebox").TString<string>;
801
+ $lte: import("@feathersjs/typebox").TString<string>;
802
+ $ne: import("@feathersjs/typebox").TString<string>;
803
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
804
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
805
+ }>, import("@feathersjs/typebox").TObject<{
806
+ [key: string]: import("@feathersjs/typebox").TSchema;
807
+ } | undefined>]>>]>>;
808
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
809
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
810
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
811
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
812
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
813
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
814
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
815
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
732
816
  }>, import("@feathersjs/typebox").TObject<{
733
817
  [key: string]: import("@feathersjs/typebox").TSchema;
734
818
  } | undefined>]>>]>>;
735
819
  }>>>;
736
820
  }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
737
- name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
738
- $gt: import("@feathersjs/typebox").TString<string>;
739
- $gte: import("@feathersjs/typebox").TString<string>;
740
- $lt: import("@feathersjs/typebox").TString<string>;
741
- $lte: import("@feathersjs/typebox").TString<string>;
742
- $ne: import("@feathersjs/typebox").TString<string>;
743
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
744
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
745
- }>, import("@feathersjs/typebox").TObject<{
746
- [key: string]: import("@feathersjs/typebox").TSchema;
747
- } | undefined>]>>]>>;
748
- enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
749
- $gt: import("@feathersjs/typebox").TBoolean;
750
- $gte: import("@feathersjs/typebox").TBoolean;
751
- $lt: import("@feathersjs/typebox").TBoolean;
752
- $lte: import("@feathersjs/typebox").TBoolean;
753
- $ne: import("@feathersjs/typebox").TBoolean;
754
- $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
755
- $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
756
- }>, import("@feathersjs/typebox").TObject<{
757
- [key: string]: import("@feathersjs/typebox").TSchema;
758
- } | undefined>]>>]>>;
759
821
  _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<{
760
822
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
761
823
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
762
824
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
763
825
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
764
826
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
765
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
766
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
767
- }>, import("@feathersjs/typebox").TObject<{
768
- [key: string]: import("@feathersjs/typebox").TSchema;
769
- } | undefined>]>>]>>;
770
- createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
771
- $gt: import("@feathersjs/typebox").TString<"date-time">;
772
- $gte: import("@feathersjs/typebox").TString<"date-time">;
773
- $lt: import("@feathersjs/typebox").TString<"date-time">;
774
- $lte: import("@feathersjs/typebox").TString<"date-time">;
775
- $ne: import("@feathersjs/typebox").TString<"date-time">;
776
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
777
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
778
- }>, import("@feathersjs/typebox").TObject<{
779
- [key: string]: import("@feathersjs/typebox").TSchema;
780
- } | undefined>]>>]>>;
781
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
782
- $gt: import("@feathersjs/typebox").TString<"date-time">;
783
- $gte: import("@feathersjs/typebox").TString<"date-time">;
784
- $lt: import("@feathersjs/typebox").TString<"date-time">;
785
- $lte: import("@feathersjs/typebox").TString<"date-time">;
786
- $ne: import("@feathersjs/typebox").TString<"date-time">;
787
- $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
788
- $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
827
+ $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<{}>]>;
828
+ $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<{}>]>;
789
829
  }>, import("@feathersjs/typebox").TObject<{
790
830
  [key: string]: import("@feathersjs/typebox").TSchema;
791
831
  } | undefined>]>>]>>;
792
- description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
793
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
794
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
795
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
796
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
797
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
798
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
799
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
832
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
833
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
834
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
835
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
836
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
837
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
838
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
839
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
800
840
  }>, import("@feathersjs/typebox").TObject<{
801
841
  [key: string]: import("@feathersjs/typebox").TSchema;
802
842
  } | undefined>]>>]>>;
803
843
  conditions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
804
844
  id: import("@feathersjs/typebox").TString<string>;
805
845
  field: import("@feathersjs/typebox").TString<string>;
806
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
846
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
807
847
  value: import("@feathersjs/typebox").TAny;
808
848
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
809
849
  }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
810
850
  $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
811
851
  id: import("@feathersjs/typebox").TString<string>;
812
852
  field: import("@feathersjs/typebox").TString<string>;
813
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
853
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
814
854
  value: import("@feathersjs/typebox").TAny;
815
855
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
816
856
  }>>;
817
857
  $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
818
858
  id: import("@feathersjs/typebox").TString<string>;
819
859
  field: import("@feathersjs/typebox").TString<string>;
820
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
860
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
821
861
  value: import("@feathersjs/typebox").TAny;
822
862
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
823
863
  }>>;
824
864
  $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
825
865
  id: import("@feathersjs/typebox").TString<string>;
826
866
  field: import("@feathersjs/typebox").TString<string>;
827
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
867
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
828
868
  value: import("@feathersjs/typebox").TAny;
829
869
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
830
870
  }>>;
831
871
  $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
832
872
  id: import("@feathersjs/typebox").TString<string>;
833
873
  field: import("@feathersjs/typebox").TString<string>;
834
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
874
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
835
875
  value: import("@feathersjs/typebox").TAny;
836
876
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
837
877
  }>>;
838
878
  $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
839
879
  id: import("@feathersjs/typebox").TString<string>;
840
880
  field: import("@feathersjs/typebox").TString<string>;
841
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
881
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
842
882
  value: import("@feathersjs/typebox").TAny;
843
883
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
844
884
  }>>;
845
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
885
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
846
886
  id: import("@feathersjs/typebox").TString<string>;
847
887
  field: import("@feathersjs/typebox").TString<string>;
848
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
888
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
849
889
  value: import("@feathersjs/typebox").TAny;
850
890
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
851
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
891
+ }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
852
892
  id: import("@feathersjs/typebox").TString<string>;
853
893
  field: import("@feathersjs/typebox").TString<string>;
854
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
894
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
855
895
  value: import("@feathersjs/typebox").TAny;
856
896
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
857
- }>>>;
858
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
897
+ }>>;
898
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
859
899
  id: import("@feathersjs/typebox").TString<string>;
860
900
  field: import("@feathersjs/typebox").TString<string>;
861
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
901
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
862
902
  value: import("@feathersjs/typebox").TAny;
863
903
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
864
- }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
904
+ }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
865
905
  id: import("@feathersjs/typebox").TString<string>;
866
906
  field: import("@feathersjs/typebox").TString<string>;
867
- operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
907
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">, import("@feathersjs/typebox").TLiteral<"array_contains">]>;
868
908
  value: import("@feathersjs/typebox").TAny;
869
909
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
870
- }>>>;
910
+ }>>;
871
911
  }>, import("@feathersjs/typebox").TObject<{
872
912
  [key: string]: import("@feathersjs/typebox").TSchema;
873
913
  } | undefined>]>>]>>;
874
- prompt: 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<{
875
- $gt: import("@feathersjs/typebox").TString<string>;
876
- $gte: import("@feathersjs/typebox").TString<string>;
877
- $lt: import("@feathersjs/typebox").TString<string>;
878
- $lte: import("@feathersjs/typebox").TString<string>;
879
- $ne: import("@feathersjs/typebox").TString<string>;
880
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
881
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
914
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
915
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
916
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
917
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
918
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
919
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
920
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
921
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
882
922
  }>, import("@feathersjs/typebox").TObject<{
883
923
  [key: string]: import("@feathersjs/typebox").TSchema;
884
924
  } | undefined>]>>]>>;
885
- eventTypeId: 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<{
886
- $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
887
- $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
888
- $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
889
- $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
890
- $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
891
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
892
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
925
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
926
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
927
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
928
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
929
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
930
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
931
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
932
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
893
933
  }>, import("@feathersjs/typebox").TObject<{
894
934
  [key: string]: import("@feathersjs/typebox").TSchema;
895
935
  } | undefined>]>>]>>;
896
- eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
936
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
937
+ $gt: import("@feathersjs/typebox").TBoolean;
938
+ $gte: import("@feathersjs/typebox").TBoolean;
939
+ $lt: import("@feathersjs/typebox").TBoolean;
940
+ $lte: import("@feathersjs/typebox").TBoolean;
941
+ $ne: import("@feathersjs/typebox").TBoolean;
942
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
943
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TBoolean;
944
+ }>, import("@feathersjs/typebox").TObject<{
945
+ [key: string]: import("@feathersjs/typebox").TSchema;
946
+ } | undefined>]>>]>>;
947
+ eventBridgeBusName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
897
948
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
898
949
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
899
950
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
900
951
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
901
952
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
902
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
903
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
953
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
954
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
904
955
  }>, import("@feathersjs/typebox").TObject<{
905
956
  [key: string]: import("@feathersjs/typebox").TSchema;
906
957
  } | undefined>]>>]>>;
@@ -910,8 +961,63 @@ export declare const eventsTriggersQuerySchema: import("@feathersjs/typebox").TI
910
961
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
911
962
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
912
963
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
913
- $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
914
- $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
964
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
965
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
966
+ }>, import("@feathersjs/typebox").TObject<{
967
+ [key: string]: import("@feathersjs/typebox").TSchema;
968
+ } | undefined>]>>]>>;
969
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
970
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
971
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
972
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
973
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
974
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
975
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
976
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
977
+ }>, import("@feathersjs/typebox").TObject<{
978
+ [key: string]: import("@feathersjs/typebox").TSchema;
979
+ } | undefined>]>>]>>;
980
+ eventTypeId: 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<{
981
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
982
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
983
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
984
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
985
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
986
+ $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<{}>]>;
987
+ $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<{}>]>;
988
+ }>, import("@feathersjs/typebox").TObject<{
989
+ [key: string]: import("@feathersjs/typebox").TSchema;
990
+ } | undefined>]>>]>>;
991
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
992
+ $gt: import("@feathersjs/typebox").TString<string>;
993
+ $gte: import("@feathersjs/typebox").TString<string>;
994
+ $lt: import("@feathersjs/typebox").TString<string>;
995
+ $lte: import("@feathersjs/typebox").TString<string>;
996
+ $ne: import("@feathersjs/typebox").TString<string>;
997
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
998
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
999
+ }>, import("@feathersjs/typebox").TObject<{
1000
+ [key: string]: import("@feathersjs/typebox").TSchema;
1001
+ } | undefined>]>>]>>;
1002
+ prompt: 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<{
1003
+ $gt: import("@feathersjs/typebox").TString<string>;
1004
+ $gte: import("@feathersjs/typebox").TString<string>;
1005
+ $lt: import("@feathersjs/typebox").TString<string>;
1006
+ $lte: import("@feathersjs/typebox").TString<string>;
1007
+ $ne: import("@feathersjs/typebox").TString<string>;
1008
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1009
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
1010
+ }>, import("@feathersjs/typebox").TObject<{
1011
+ [key: string]: import("@feathersjs/typebox").TSchema;
1012
+ } | undefined>]>>]>>;
1013
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1014
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
1015
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
1016
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
1017
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
1018
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
1019
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
1020
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">> | import("@feathersjs/typebox").TString<"date-time">;
915
1021
  }>, import("@feathersjs/typebox").TObject<{
916
1022
  [key: string]: import("@feathersjs/typebox").TSchema;
917
1023
  } | undefined>]>>]>>;
@@ -922,144 +1028,110 @@ export declare const eventsTriggersQueryResolver: import("@feathersjs/schema").R
922
1028
  $limit: number;
923
1029
  $skip: number;
924
1030
  $sort: {
925
- name?: number | undefined;
926
- enabled?: number | undefined;
927
1031
  _id?: number | undefined;
1032
+ agentId?: number | undefined;
1033
+ conditions?: number | undefined;
928
1034
  createdAt?: number | undefined;
929
- updatedAt?: number | undefined;
930
1035
  description?: number | undefined;
931
- conditions?: number | undefined;
932
- prompt?: number | undefined;
933
- eventTypeId?: number | undefined;
934
- eventBridgeRuleName?: number | undefined;
1036
+ enabled?: number | undefined;
1037
+ eventBridgeBusName?: number | undefined;
935
1038
  eventBridgeRuleArn?: number | undefined;
1039
+ eventBridgeRuleName?: number | undefined;
1040
+ eventTypeId?: number | undefined;
1041
+ name?: number | undefined;
1042
+ prompt?: number | undefined;
1043
+ updatedAt?: number | undefined;
936
1044
  };
937
- $select: ("name" | "enabled" | "_id" | "createdAt" | "updatedAt" | "description" | "conditions" | "prompt" | "eventTypeId" | "eventBridgeRuleName" | "eventBridgeRuleArn")[];
1045
+ $select: ("_id" | "agentId" | "conditions" | "createdAt" | "description" | "enabled" | "eventBridgeBusName" | "eventBridgeRuleArn" | "eventBridgeRuleName" | "eventTypeId" | "name" | "prompt" | "updatedAt")[];
938
1046
  $and: ({
939
- name?: string | Partial<{
940
- $gt: string;
941
- $gte: string;
942
- $lt: string;
943
- $lte: string;
944
- $ne: string;
945
- $in: string | string[];
946
- $nin: string | string[];
947
- } & {}> | undefined;
948
- enabled?: boolean | Partial<{
949
- $gt: boolean;
950
- $gte: boolean;
951
- $lt: boolean;
952
- $lte: boolean;
953
- $ne: boolean;
954
- $in: boolean | boolean[];
955
- $nin: boolean | boolean[];
956
- } & {}> | undefined;
957
- _id?: string | {} | Partial<{
1047
+ _id?: string | Partial<{
958
1048
  $gt: string | {};
959
1049
  $gte: string | {};
960
1050
  $lt: string | {};
961
1051
  $lte: string | {};
962
1052
  $ne: string | {};
963
- $in: string | {} | (string | {})[];
964
- $nin: string | {} | (string | {})[];
965
- } & {}> | undefined;
966
- createdAt?: string | Partial<{
967
- $gt: string;
968
- $gte: string;
969
- $lt: string;
970
- $lte: string;
971
- $ne: string;
972
- $in: string | string[];
973
- $nin: string | string[];
974
- } & {}> | undefined;
975
- updatedAt?: string | Partial<{
976
- $gt: string;
977
- $gte: string;
978
- $lt: string;
979
- $lte: string;
980
- $ne: string;
981
- $in: string | string[];
982
- $nin: string | string[];
983
- } & {}> | undefined;
984
- description?: string | Partial<{
985
- $gt?: string | undefined;
986
- $gte?: string | undefined;
987
- $lt?: string | undefined;
988
- $lte?: string | undefined;
989
- $ne?: string | undefined;
990
- $in: string | string[];
991
- $nin: string | string[];
992
- } & {}> | undefined;
1053
+ $in: string | (string | {})[] | {};
1054
+ $nin: string | (string | {})[] | {};
1055
+ } & {}> | {} | undefined;
1056
+ agentId?: string | Partial<{
1057
+ $gt?: string | {} | undefined;
1058
+ $gte?: string | {} | undefined;
1059
+ $lt?: string | {} | undefined;
1060
+ $lte?: string | {} | undefined;
1061
+ $ne?: string | {} | undefined;
1062
+ $in: string | (string | {})[] | {};
1063
+ $nin: string | (string | {})[] | {};
1064
+ } & {}> | {} | undefined;
993
1065
  conditions?: {
994
- type: "string" | "number" | "boolean" | "object" | "array";
995
- value: any;
996
- field: string;
997
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
998
1066
  id: string;
1067
+ field: string;
1068
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1069
+ value: any;
1070
+ type: "array" | "boolean" | "number" | "object" | "string";
999
1071
  }[] | Partial<{
1000
1072
  $gt: {
1001
- type: "string" | "number" | "boolean" | "object" | "array";
1002
- value: any;
1003
- field: string;
1004
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1005
1073
  id: string;
1074
+ field: string;
1075
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1076
+ value: any;
1077
+ type: "array" | "boolean" | "number" | "object" | "string";
1006
1078
  }[];
1007
1079
  $gte: {
1008
- type: "string" | "number" | "boolean" | "object" | "array";
1009
- value: any;
1010
- field: string;
1011
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1012
1080
  id: string;
1081
+ field: string;
1082
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1083
+ value: any;
1084
+ type: "array" | "boolean" | "number" | "object" | "string";
1013
1085
  }[];
1014
1086
  $lt: {
1015
- type: "string" | "number" | "boolean" | "object" | "array";
1016
- value: any;
1017
- field: string;
1018
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1019
1087
  id: string;
1088
+ field: string;
1089
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1090
+ value: any;
1091
+ type: "array" | "boolean" | "number" | "object" | "string";
1020
1092
  }[];
1021
1093
  $lte: {
1022
- type: "string" | "number" | "boolean" | "object" | "array";
1023
- value: any;
1024
- field: string;
1025
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1026
1094
  id: string;
1095
+ field: string;
1096
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1097
+ value: any;
1098
+ type: "array" | "boolean" | "number" | "object" | "string";
1027
1099
  }[];
1028
1100
  $ne: {
1029
- type: "string" | "number" | "boolean" | "object" | "array";
1030
- value: any;
1031
- field: string;
1032
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1033
1101
  id: string;
1102
+ field: string;
1103
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1104
+ value: any;
1105
+ type: "array" | "boolean" | "number" | "object" | "string";
1034
1106
  }[];
1035
1107
  $in: {
1036
- type: "string" | "number" | "boolean" | "object" | "array";
1037
- value: any;
1038
- field: string;
1039
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1040
1108
  id: string;
1041
- }[] | {
1042
- type: "string" | "number" | "boolean" | "object" | "array";
1043
- value: any;
1044
1109
  field: string;
1045
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1046
- id: string;
1047
- }[][];
1048
- $nin: {
1049
- type: "string" | "number" | "boolean" | "object" | "array";
1110
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1050
1111
  value: any;
1051
- field: string;
1052
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1112
+ type: "array" | "boolean" | "number" | "object" | "string";
1113
+ }[][] | {
1053
1114
  id: string;
1054
- }[] | {
1055
- type: "string" | "number" | "boolean" | "object" | "array";
1115
+ field: string;
1116
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1056
1117
  value: any;
1118
+ type: "array" | "boolean" | "number" | "object" | "string";
1119
+ }[];
1120
+ $nin: {
1121
+ id: string;
1057
1122
  field: string;
1058
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1123
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1124
+ value: any;
1125
+ type: "array" | "boolean" | "number" | "object" | "string";
1126
+ }[][] | {
1059
1127
  id: string;
1060
- }[][];
1128
+ field: string;
1129
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1130
+ value: any;
1131
+ type: "array" | "boolean" | "number" | "object" | "string";
1132
+ }[];
1061
1133
  } & {}> | undefined;
1062
- prompt?: string | Partial<{
1134
+ createdAt?: string | Partial<{
1063
1135
  $gt: string;
1064
1136
  $gte: string;
1065
1137
  $lt: string;
@@ -1068,16 +1140,25 @@ export declare const eventsTriggersQueryResolver: import("@feathersjs/schema").R
1068
1140
  $in: string | string[];
1069
1141
  $nin: string | string[];
1070
1142
  } & {}> | undefined;
1071
- eventTypeId?: string | {} | Partial<{
1072
- $gt: string | {};
1073
- $gte: string | {};
1074
- $lt: string | {};
1075
- $lte: string | {};
1076
- $ne: string | {};
1077
- $in: string | {} | (string | {})[];
1078
- $nin: string | {} | (string | {})[];
1143
+ description?: string | Partial<{
1144
+ $gt?: string | undefined;
1145
+ $gte?: string | undefined;
1146
+ $lt?: string | undefined;
1147
+ $lte?: string | undefined;
1148
+ $ne?: string | undefined;
1149
+ $in: string | string[];
1150
+ $nin: string | string[];
1079
1151
  } & {}> | undefined;
1080
- eventBridgeRuleName?: string | Partial<{
1152
+ enabled?: boolean | Partial<{
1153
+ $gt: boolean;
1154
+ $gte: boolean;
1155
+ $lt: boolean;
1156
+ $lte: boolean;
1157
+ $ne: boolean;
1158
+ $in: boolean | boolean[];
1159
+ $nin: boolean | boolean[];
1160
+ } & {}> | undefined;
1161
+ eventBridgeBusName?: string | Partial<{
1081
1162
  $gt?: string | undefined;
1082
1163
  $gte?: string | undefined;
1083
1164
  $lt?: string | undefined;
@@ -1095,132 +1176,141 @@ export declare const eventsTriggersQueryResolver: import("@feathersjs/schema").R
1095
1176
  $in: string | string[];
1096
1177
  $nin: string | string[];
1097
1178
  } & {}> | undefined;
1179
+ eventBridgeRuleName?: string | Partial<{
1180
+ $gt?: string | undefined;
1181
+ $gte?: string | undefined;
1182
+ $lt?: string | undefined;
1183
+ $lte?: string | undefined;
1184
+ $ne?: string | undefined;
1185
+ $in: string | string[];
1186
+ $nin: string | string[];
1187
+ } & {}> | undefined;
1188
+ eventTypeId?: string | Partial<{
1189
+ $gt: string | {};
1190
+ $gte: string | {};
1191
+ $lt: string | {};
1192
+ $lte: string | {};
1193
+ $ne: string | {};
1194
+ $in: string | (string | {})[] | {};
1195
+ $nin: string | (string | {})[] | {};
1196
+ } & {}> | {} | undefined;
1197
+ name?: string | Partial<{
1198
+ $gt: string;
1199
+ $gte: string;
1200
+ $lt: string;
1201
+ $lte: string;
1202
+ $ne: string;
1203
+ $in: string | string[];
1204
+ $nin: string | string[];
1205
+ } & {}> | undefined;
1206
+ prompt?: string | Partial<{
1207
+ $gt: string;
1208
+ $gte: string;
1209
+ $lt: string;
1210
+ $lte: string;
1211
+ $ne: string;
1212
+ $in: string | string[];
1213
+ $nin: string | string[];
1214
+ } & {}> | undefined;
1215
+ updatedAt?: string | Partial<{
1216
+ $gt: string;
1217
+ $gte: string;
1218
+ $lt: string;
1219
+ $lte: string;
1220
+ $ne: string;
1221
+ $in: string | string[];
1222
+ $nin: string | string[];
1223
+ } & {}> | undefined;
1098
1224
  } | {
1099
1225
  $or: {
1100
- name?: string | Partial<{
1101
- $gt: string;
1102
- $gte: string;
1103
- $lt: string;
1104
- $lte: string;
1105
- $ne: string;
1106
- $in: string | string[];
1107
- $nin: string | string[];
1108
- } & {}> | undefined;
1109
- enabled?: boolean | Partial<{
1110
- $gt: boolean;
1111
- $gte: boolean;
1112
- $lt: boolean;
1113
- $lte: boolean;
1114
- $ne: boolean;
1115
- $in: boolean | boolean[];
1116
- $nin: boolean | boolean[];
1117
- } & {}> | undefined;
1118
- _id?: string | {} | Partial<{
1226
+ _id?: string | Partial<{
1119
1227
  $gt: string | {};
1120
1228
  $gte: string | {};
1121
1229
  $lt: string | {};
1122
1230
  $lte: string | {};
1123
1231
  $ne: string | {};
1124
- $in: string | {} | (string | {})[];
1125
- $nin: string | {} | (string | {})[];
1126
- } & {}> | undefined;
1127
- createdAt?: string | Partial<{
1128
- $gt: string;
1129
- $gte: string;
1130
- $lt: string;
1131
- $lte: string;
1132
- $ne: string;
1133
- $in: string | string[];
1134
- $nin: string | string[];
1135
- } & {}> | undefined;
1136
- updatedAt?: string | Partial<{
1137
- $gt: string;
1138
- $gte: string;
1139
- $lt: string;
1140
- $lte: string;
1141
- $ne: string;
1142
- $in: string | string[];
1143
- $nin: string | string[];
1144
- } & {}> | undefined;
1145
- description?: string | Partial<{
1146
- $gt?: string | undefined;
1147
- $gte?: string | undefined;
1148
- $lt?: string | undefined;
1149
- $lte?: string | undefined;
1150
- $ne?: string | undefined;
1151
- $in: string | string[];
1152
- $nin: string | string[];
1153
- } & {}> | undefined;
1232
+ $in: string | (string | {})[] | {};
1233
+ $nin: string | (string | {})[] | {};
1234
+ } & {}> | {} | undefined;
1235
+ agentId?: string | Partial<{
1236
+ $gt?: string | {} | undefined;
1237
+ $gte?: string | {} | undefined;
1238
+ $lt?: string | {} | undefined;
1239
+ $lte?: string | {} | undefined;
1240
+ $ne?: string | {} | undefined;
1241
+ $in: string | (string | {})[] | {};
1242
+ $nin: string | (string | {})[] | {};
1243
+ } & {}> | {} | undefined;
1154
1244
  conditions?: {
1155
- type: "string" | "number" | "boolean" | "object" | "array";
1156
- value: any;
1157
- field: string;
1158
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1159
1245
  id: string;
1246
+ field: string;
1247
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1248
+ value: any;
1249
+ type: "array" | "boolean" | "number" | "object" | "string";
1160
1250
  }[] | Partial<{
1161
1251
  $gt: {
1162
- type: "string" | "number" | "boolean" | "object" | "array";
1163
- value: any;
1164
- field: string;
1165
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1166
1252
  id: string;
1253
+ field: string;
1254
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1255
+ value: any;
1256
+ type: "array" | "boolean" | "number" | "object" | "string";
1167
1257
  }[];
1168
1258
  $gte: {
1169
- type: "string" | "number" | "boolean" | "object" | "array";
1170
- value: any;
1171
- field: string;
1172
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1173
1259
  id: string;
1260
+ field: string;
1261
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1262
+ value: any;
1263
+ type: "array" | "boolean" | "number" | "object" | "string";
1174
1264
  }[];
1175
1265
  $lt: {
1176
- type: "string" | "number" | "boolean" | "object" | "array";
1177
- value: any;
1178
- field: string;
1179
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1180
1266
  id: string;
1267
+ field: string;
1268
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1269
+ value: any;
1270
+ type: "array" | "boolean" | "number" | "object" | "string";
1181
1271
  }[];
1182
1272
  $lte: {
1183
- type: "string" | "number" | "boolean" | "object" | "array";
1184
- value: any;
1185
- field: string;
1186
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1187
1273
  id: string;
1274
+ field: string;
1275
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1276
+ value: any;
1277
+ type: "array" | "boolean" | "number" | "object" | "string";
1188
1278
  }[];
1189
1279
  $ne: {
1190
- type: "string" | "number" | "boolean" | "object" | "array";
1191
- value: any;
1192
- field: string;
1193
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1194
1280
  id: string;
1281
+ field: string;
1282
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1283
+ value: any;
1284
+ type: "array" | "boolean" | "number" | "object" | "string";
1195
1285
  }[];
1196
1286
  $in: {
1197
- type: "string" | "number" | "boolean" | "object" | "array";
1198
- value: any;
1199
- field: string;
1200
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1201
1287
  id: string;
1202
- }[] | {
1203
- type: "string" | "number" | "boolean" | "object" | "array";
1204
- value: any;
1205
1288
  field: string;
1206
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1207
- id: string;
1208
- }[][];
1209
- $nin: {
1210
- type: "string" | "number" | "boolean" | "object" | "array";
1289
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1211
1290
  value: any;
1212
- field: string;
1213
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1291
+ type: "array" | "boolean" | "number" | "object" | "string";
1292
+ }[][] | {
1214
1293
  id: string;
1215
- }[] | {
1216
- type: "string" | "number" | "boolean" | "object" | "array";
1294
+ field: string;
1295
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1217
1296
  value: any;
1297
+ type: "array" | "boolean" | "number" | "object" | "string";
1298
+ }[];
1299
+ $nin: {
1300
+ id: string;
1218
1301
  field: string;
1219
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1302
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1303
+ value: any;
1304
+ type: "array" | "boolean" | "number" | "object" | "string";
1305
+ }[][] | {
1220
1306
  id: string;
1221
- }[][];
1307
+ field: string;
1308
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1309
+ value: any;
1310
+ type: "array" | "boolean" | "number" | "object" | "string";
1311
+ }[];
1222
1312
  } & {}> | undefined;
1223
- prompt?: string | Partial<{
1313
+ createdAt?: string | Partial<{
1224
1314
  $gt: string;
1225
1315
  $gte: string;
1226
1316
  $lt: string;
@@ -1229,16 +1319,25 @@ export declare const eventsTriggersQueryResolver: import("@feathersjs/schema").R
1229
1319
  $in: string | string[];
1230
1320
  $nin: string | string[];
1231
1321
  } & {}> | undefined;
1232
- eventTypeId?: string | {} | Partial<{
1233
- $gt: string | {};
1234
- $gte: string | {};
1235
- $lt: string | {};
1236
- $lte: string | {};
1237
- $ne: string | {};
1238
- $in: string | {} | (string | {})[];
1239
- $nin: string | {} | (string | {})[];
1322
+ description?: string | Partial<{
1323
+ $gt?: string | undefined;
1324
+ $gte?: string | undefined;
1325
+ $lt?: string | undefined;
1326
+ $lte?: string | undefined;
1327
+ $ne?: string | undefined;
1328
+ $in: string | string[];
1329
+ $nin: string | string[];
1240
1330
  } & {}> | undefined;
1241
- eventBridgeRuleName?: string | Partial<{
1331
+ enabled?: boolean | Partial<{
1332
+ $gt: boolean;
1333
+ $gte: boolean;
1334
+ $lt: boolean;
1335
+ $lte: boolean;
1336
+ $ne: boolean;
1337
+ $in: boolean | boolean[];
1338
+ $nin: boolean | boolean[];
1339
+ } & {}> | undefined;
1340
+ eventBridgeBusName?: string | Partial<{
1242
1341
  $gt?: string | undefined;
1243
1342
  $gte?: string | undefined;
1244
1343
  $lt?: string | undefined;
@@ -1256,133 +1355,142 @@ export declare const eventsTriggersQueryResolver: import("@feathersjs/schema").R
1256
1355
  $in: string | string[];
1257
1356
  $nin: string | string[];
1258
1357
  } & {}> | undefined;
1358
+ eventBridgeRuleName?: string | Partial<{
1359
+ $gt?: string | undefined;
1360
+ $gte?: string | undefined;
1361
+ $lt?: string | undefined;
1362
+ $lte?: string | undefined;
1363
+ $ne?: string | undefined;
1364
+ $in: string | string[];
1365
+ $nin: string | string[];
1366
+ } & {}> | undefined;
1367
+ eventTypeId?: string | Partial<{
1368
+ $gt: string | {};
1369
+ $gte: string | {};
1370
+ $lt: string | {};
1371
+ $lte: string | {};
1372
+ $ne: string | {};
1373
+ $in: string | (string | {})[] | {};
1374
+ $nin: string | (string | {})[] | {};
1375
+ } & {}> | {} | undefined;
1376
+ name?: string | Partial<{
1377
+ $gt: string;
1378
+ $gte: string;
1379
+ $lt: string;
1380
+ $lte: string;
1381
+ $ne: string;
1382
+ $in: string | string[];
1383
+ $nin: string | string[];
1384
+ } & {}> | undefined;
1385
+ prompt?: string | Partial<{
1386
+ $gt: string;
1387
+ $gte: string;
1388
+ $lt: string;
1389
+ $lte: string;
1390
+ $ne: string;
1391
+ $in: string | string[];
1392
+ $nin: string | string[];
1393
+ } & {}> | undefined;
1394
+ updatedAt?: string | Partial<{
1395
+ $gt: string;
1396
+ $gte: string;
1397
+ $lt: string;
1398
+ $lte: string;
1399
+ $ne: string;
1400
+ $in: string | string[];
1401
+ $nin: string | string[];
1402
+ } & {}> | undefined;
1259
1403
  }[];
1260
1404
  })[];
1261
1405
  $or: {
1262
- name?: string | Partial<{
1263
- $gt: string;
1264
- $gte: string;
1265
- $lt: string;
1266
- $lte: string;
1267
- $ne: string;
1268
- $in: string | string[];
1269
- $nin: string | string[];
1270
- } & {}> | undefined;
1271
- enabled?: boolean | Partial<{
1272
- $gt: boolean;
1273
- $gte: boolean;
1274
- $lt: boolean;
1275
- $lte: boolean;
1276
- $ne: boolean;
1277
- $in: boolean | boolean[];
1278
- $nin: boolean | boolean[];
1279
- } & {}> | undefined;
1280
- _id?: string | {} | Partial<{
1406
+ _id?: string | Partial<{
1281
1407
  $gt: string | {};
1282
1408
  $gte: string | {};
1283
1409
  $lt: string | {};
1284
- $lte: string | {};
1285
- $ne: string | {};
1286
- $in: string | {} | (string | {})[];
1287
- $nin: string | {} | (string | {})[];
1288
- } & {}> | undefined;
1289
- createdAt?: string | Partial<{
1290
- $gt: string;
1291
- $gte: string;
1292
- $lt: string;
1293
- $lte: string;
1294
- $ne: string;
1295
- $in: string | string[];
1296
- $nin: string | string[];
1297
- } & {}> | undefined;
1298
- updatedAt?: string | Partial<{
1299
- $gt: string;
1300
- $gte: string;
1301
- $lt: string;
1302
- $lte: string;
1303
- $ne: string;
1304
- $in: string | string[];
1305
- $nin: string | string[];
1306
- } & {}> | undefined;
1307
- description?: string | Partial<{
1308
- $gt?: string | undefined;
1309
- $gte?: string | undefined;
1310
- $lt?: string | undefined;
1311
- $lte?: string | undefined;
1312
- $ne?: string | undefined;
1313
- $in: string | string[];
1314
- $nin: string | string[];
1315
- } & {}> | undefined;
1410
+ $lte: string | {};
1411
+ $ne: string | {};
1412
+ $in: string | (string | {})[] | {};
1413
+ $nin: string | (string | {})[] | {};
1414
+ } & {}> | {} | undefined;
1415
+ agentId?: string | Partial<{
1416
+ $gt?: string | {} | undefined;
1417
+ $gte?: string | {} | undefined;
1418
+ $lt?: string | {} | undefined;
1419
+ $lte?: string | {} | undefined;
1420
+ $ne?: string | {} | undefined;
1421
+ $in: string | (string | {})[] | {};
1422
+ $nin: string | (string | {})[] | {};
1423
+ } & {}> | {} | undefined;
1316
1424
  conditions?: {
1317
- type: "string" | "number" | "boolean" | "object" | "array";
1318
- value: any;
1319
- field: string;
1320
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1321
1425
  id: string;
1426
+ field: string;
1427
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1428
+ value: any;
1429
+ type: "array" | "boolean" | "number" | "object" | "string";
1322
1430
  }[] | Partial<{
1323
1431
  $gt: {
1324
- type: "string" | "number" | "boolean" | "object" | "array";
1325
- value: any;
1326
- field: string;
1327
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1328
1432
  id: string;
1433
+ field: string;
1434
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1435
+ value: any;
1436
+ type: "array" | "boolean" | "number" | "object" | "string";
1329
1437
  }[];
1330
1438
  $gte: {
1331
- type: "string" | "number" | "boolean" | "object" | "array";
1332
- value: any;
1333
- field: string;
1334
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1335
1439
  id: string;
1440
+ field: string;
1441
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1442
+ value: any;
1443
+ type: "array" | "boolean" | "number" | "object" | "string";
1336
1444
  }[];
1337
1445
  $lt: {
1338
- type: "string" | "number" | "boolean" | "object" | "array";
1339
- value: any;
1340
- field: string;
1341
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1342
1446
  id: string;
1447
+ field: string;
1448
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1449
+ value: any;
1450
+ type: "array" | "boolean" | "number" | "object" | "string";
1343
1451
  }[];
1344
1452
  $lte: {
1345
- type: "string" | "number" | "boolean" | "object" | "array";
1346
- value: any;
1347
- field: string;
1348
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1349
1453
  id: string;
1454
+ field: string;
1455
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1456
+ value: any;
1457
+ type: "array" | "boolean" | "number" | "object" | "string";
1350
1458
  }[];
1351
1459
  $ne: {
1352
- type: "string" | "number" | "boolean" | "object" | "array";
1353
- value: any;
1354
- field: string;
1355
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1356
1460
  id: string;
1461
+ field: string;
1462
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1463
+ value: any;
1464
+ type: "array" | "boolean" | "number" | "object" | "string";
1357
1465
  }[];
1358
1466
  $in: {
1359
- type: "string" | "number" | "boolean" | "object" | "array";
1360
- value: any;
1361
- field: string;
1362
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1363
1467
  id: string;
1364
- }[] | {
1365
- type: "string" | "number" | "boolean" | "object" | "array";
1366
- value: any;
1367
1468
  field: string;
1368
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1369
- id: string;
1370
- }[][];
1371
- $nin: {
1372
- type: "string" | "number" | "boolean" | "object" | "array";
1469
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1373
1470
  value: any;
1374
- field: string;
1375
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1471
+ type: "array" | "boolean" | "number" | "object" | "string";
1472
+ }[][] | {
1376
1473
  id: string;
1377
- }[] | {
1378
- type: "string" | "number" | "boolean" | "object" | "array";
1474
+ field: string;
1475
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1379
1476
  value: any;
1477
+ type: "array" | "boolean" | "number" | "object" | "string";
1478
+ }[];
1479
+ $nin: {
1480
+ id: string;
1380
1481
  field: string;
1381
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1482
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1483
+ value: any;
1484
+ type: "array" | "boolean" | "number" | "object" | "string";
1485
+ }[][] | {
1382
1486
  id: string;
1383
- }[][];
1487
+ field: string;
1488
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1489
+ value: any;
1490
+ type: "array" | "boolean" | "number" | "object" | "string";
1491
+ }[];
1384
1492
  } & {}> | undefined;
1385
- prompt?: string | Partial<{
1493
+ createdAt?: string | Partial<{
1386
1494
  $gt: string;
1387
1495
  $gte: string;
1388
1496
  $lt: string;
@@ -1391,16 +1499,25 @@ export declare const eventsTriggersQueryResolver: import("@feathersjs/schema").R
1391
1499
  $in: string | string[];
1392
1500
  $nin: string | string[];
1393
1501
  } & {}> | undefined;
1394
- eventTypeId?: string | {} | Partial<{
1395
- $gt: string | {};
1396
- $gte: string | {};
1397
- $lt: string | {};
1398
- $lte: string | {};
1399
- $ne: string | {};
1400
- $in: string | {} | (string | {})[];
1401
- $nin: string | {} | (string | {})[];
1502
+ description?: string | Partial<{
1503
+ $gt?: string | undefined;
1504
+ $gte?: string | undefined;
1505
+ $lt?: string | undefined;
1506
+ $lte?: string | undefined;
1507
+ $ne?: string | undefined;
1508
+ $in: string | string[];
1509
+ $nin: string | string[];
1402
1510
  } & {}> | undefined;
1403
- eventBridgeRuleName?: string | Partial<{
1511
+ enabled?: boolean | Partial<{
1512
+ $gt: boolean;
1513
+ $gte: boolean;
1514
+ $lt: boolean;
1515
+ $lte: boolean;
1516
+ $ne: boolean;
1517
+ $in: boolean | boolean[];
1518
+ $nin: boolean | boolean[];
1519
+ } & {}> | undefined;
1520
+ eventBridgeBusName?: string | Partial<{
1404
1521
  $gt?: string | undefined;
1405
1522
  $gte?: string | undefined;
1406
1523
  $lt?: string | undefined;
@@ -1418,132 +1535,141 @@ export declare const eventsTriggersQueryResolver: import("@feathersjs/schema").R
1418
1535
  $in: string | string[];
1419
1536
  $nin: string | string[];
1420
1537
  } & {}> | undefined;
1538
+ eventBridgeRuleName?: string | Partial<{
1539
+ $gt?: string | undefined;
1540
+ $gte?: string | undefined;
1541
+ $lt?: string | undefined;
1542
+ $lte?: string | undefined;
1543
+ $ne?: string | undefined;
1544
+ $in: string | string[];
1545
+ $nin: string | string[];
1546
+ } & {}> | undefined;
1547
+ eventTypeId?: string | Partial<{
1548
+ $gt: string | {};
1549
+ $gte: string | {};
1550
+ $lt: string | {};
1551
+ $lte: string | {};
1552
+ $ne: string | {};
1553
+ $in: string | (string | {})[] | {};
1554
+ $nin: string | (string | {})[] | {};
1555
+ } & {}> | {} | undefined;
1556
+ name?: string | Partial<{
1557
+ $gt: string;
1558
+ $gte: string;
1559
+ $lt: string;
1560
+ $lte: string;
1561
+ $ne: string;
1562
+ $in: string | string[];
1563
+ $nin: string | string[];
1564
+ } & {}> | undefined;
1565
+ prompt?: string | Partial<{
1566
+ $gt: string;
1567
+ $gte: string;
1568
+ $lt: string;
1569
+ $lte: string;
1570
+ $ne: string;
1571
+ $in: string | string[];
1572
+ $nin: string | string[];
1573
+ } & {}> | undefined;
1574
+ updatedAt?: string | Partial<{
1575
+ $gt: string;
1576
+ $gte: string;
1577
+ $lt: string;
1578
+ $lte: string;
1579
+ $ne: string;
1580
+ $in: string | string[];
1581
+ $nin: string | string[];
1582
+ } & {}> | undefined;
1421
1583
  }[];
1422
1584
  }> & {
1423
- name?: string | Partial<{
1424
- $gt: string;
1425
- $gte: string;
1426
- $lt: string;
1427
- $lte: string;
1428
- $ne: string;
1429
- $in: string | string[];
1430
- $nin: string | string[];
1431
- } & {}> | undefined;
1432
- enabled?: boolean | Partial<{
1433
- $gt: boolean;
1434
- $gte: boolean;
1435
- $lt: boolean;
1436
- $lte: boolean;
1437
- $ne: boolean;
1438
- $in: boolean | boolean[];
1439
- $nin: boolean | boolean[];
1440
- } & {}> | undefined;
1441
- _id?: string | {} | Partial<{
1585
+ _id?: string | Partial<{
1442
1586
  $gt: string | {};
1443
1587
  $gte: string | {};
1444
1588
  $lt: string | {};
1445
1589
  $lte: string | {};
1446
1590
  $ne: string | {};
1447
- $in: string | {} | (string | {})[];
1448
- $nin: string | {} | (string | {})[];
1449
- } & {}> | undefined;
1450
- createdAt?: string | Partial<{
1451
- $gt: string;
1452
- $gte: string;
1453
- $lt: string;
1454
- $lte: string;
1455
- $ne: string;
1456
- $in: string | string[];
1457
- $nin: string | string[];
1458
- } & {}> | undefined;
1459
- updatedAt?: string | Partial<{
1460
- $gt: string;
1461
- $gte: string;
1462
- $lt: string;
1463
- $lte: string;
1464
- $ne: string;
1465
- $in: string | string[];
1466
- $nin: string | string[];
1467
- } & {}> | undefined;
1468
- description?: string | Partial<{
1469
- $gt?: string | undefined;
1470
- $gte?: string | undefined;
1471
- $lt?: string | undefined;
1472
- $lte?: string | undefined;
1473
- $ne?: string | undefined;
1474
- $in: string | string[];
1475
- $nin: string | string[];
1476
- } & {}> | undefined;
1591
+ $in: string | (string | {})[] | {};
1592
+ $nin: string | (string | {})[] | {};
1593
+ } & {}> | {} | undefined;
1594
+ agentId?: string | Partial<{
1595
+ $gt?: string | {} | undefined;
1596
+ $gte?: string | {} | undefined;
1597
+ $lt?: string | {} | undefined;
1598
+ $lte?: string | {} | undefined;
1599
+ $ne?: string | {} | undefined;
1600
+ $in: string | (string | {})[] | {};
1601
+ $nin: string | (string | {})[] | {};
1602
+ } & {}> | {} | undefined;
1477
1603
  conditions?: {
1478
- type: "string" | "number" | "boolean" | "object" | "array";
1479
- value: any;
1480
- field: string;
1481
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1482
1604
  id: string;
1605
+ field: string;
1606
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1607
+ value: any;
1608
+ type: "array" | "boolean" | "number" | "object" | "string";
1483
1609
  }[] | Partial<{
1484
1610
  $gt: {
1485
- type: "string" | "number" | "boolean" | "object" | "array";
1486
- value: any;
1487
- field: string;
1488
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1489
1611
  id: string;
1612
+ field: string;
1613
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1614
+ value: any;
1615
+ type: "array" | "boolean" | "number" | "object" | "string";
1490
1616
  }[];
1491
1617
  $gte: {
1492
- type: "string" | "number" | "boolean" | "object" | "array";
1493
- value: any;
1494
- field: string;
1495
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1496
1618
  id: string;
1619
+ field: string;
1620
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1621
+ value: any;
1622
+ type: "array" | "boolean" | "number" | "object" | "string";
1497
1623
  }[];
1498
1624
  $lt: {
1499
- type: "string" | "number" | "boolean" | "object" | "array";
1500
- value: any;
1501
- field: string;
1502
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1503
1625
  id: string;
1626
+ field: string;
1627
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1628
+ value: any;
1629
+ type: "array" | "boolean" | "number" | "object" | "string";
1504
1630
  }[];
1505
1631
  $lte: {
1506
- type: "string" | "number" | "boolean" | "object" | "array";
1507
- value: any;
1508
- field: string;
1509
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1510
1632
  id: string;
1633
+ field: string;
1634
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1635
+ value: any;
1636
+ type: "array" | "boolean" | "number" | "object" | "string";
1511
1637
  }[];
1512
1638
  $ne: {
1513
- type: "string" | "number" | "boolean" | "object" | "array";
1514
- value: any;
1515
- field: string;
1516
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1517
1639
  id: string;
1640
+ field: string;
1641
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1642
+ value: any;
1643
+ type: "array" | "boolean" | "number" | "object" | "string";
1518
1644
  }[];
1519
1645
  $in: {
1520
- type: "string" | "number" | "boolean" | "object" | "array";
1521
- value: any;
1522
- field: string;
1523
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1524
1646
  id: string;
1525
- }[] | {
1526
- type: "string" | "number" | "boolean" | "object" | "array";
1527
- value: any;
1528
1647
  field: string;
1529
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1530
- id: string;
1531
- }[][];
1532
- $nin: {
1533
- type: "string" | "number" | "boolean" | "object" | "array";
1648
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1534
1649
  value: any;
1535
- field: string;
1536
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1650
+ type: "array" | "boolean" | "number" | "object" | "string";
1651
+ }[][] | {
1537
1652
  id: string;
1538
- }[] | {
1539
- type: "string" | "number" | "boolean" | "object" | "array";
1653
+ field: string;
1654
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1540
1655
  value: any;
1656
+ type: "array" | "boolean" | "number" | "object" | "string";
1657
+ }[];
1658
+ $nin: {
1659
+ id: string;
1541
1660
  field: string;
1542
- operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1661
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1662
+ value: any;
1663
+ type: "array" | "boolean" | "number" | "object" | "string";
1664
+ }[][] | {
1543
1665
  id: string;
1544
- }[][];
1666
+ field: string;
1667
+ operator: "array_contains" | "contains" | "equals" | "exists" | "greater_than" | "greater_than_or_equal" | "in" | "less_than" | "less_than_or_equal" | "not_contains" | "not_equals" | "not_exists" | "not_in";
1668
+ value: any;
1669
+ type: "array" | "boolean" | "number" | "object" | "string";
1670
+ }[];
1545
1671
  } & {}> | undefined;
1546
- prompt?: string | Partial<{
1672
+ createdAt?: string | Partial<{
1547
1673
  $gt: string;
1548
1674
  $gte: string;
1549
1675
  $lt: string;
@@ -1552,16 +1678,25 @@ export declare const eventsTriggersQueryResolver: import("@feathersjs/schema").R
1552
1678
  $in: string | string[];
1553
1679
  $nin: string | string[];
1554
1680
  } & {}> | undefined;
1555
- eventTypeId?: string | {} | Partial<{
1556
- $gt: string | {};
1557
- $gte: string | {};
1558
- $lt: string | {};
1559
- $lte: string | {};
1560
- $ne: string | {};
1561
- $in: string | {} | (string | {})[];
1562
- $nin: string | {} | (string | {})[];
1681
+ description?: string | Partial<{
1682
+ $gt?: string | undefined;
1683
+ $gte?: string | undefined;
1684
+ $lt?: string | undefined;
1685
+ $lte?: string | undefined;
1686
+ $ne?: string | undefined;
1687
+ $in: string | string[];
1688
+ $nin: string | string[];
1563
1689
  } & {}> | undefined;
1564
- eventBridgeRuleName?: string | Partial<{
1690
+ enabled?: boolean | Partial<{
1691
+ $gt: boolean;
1692
+ $gte: boolean;
1693
+ $lt: boolean;
1694
+ $lte: boolean;
1695
+ $ne: boolean;
1696
+ $in: boolean | boolean[];
1697
+ $nin: boolean | boolean[];
1698
+ } & {}> | undefined;
1699
+ eventBridgeBusName?: string | Partial<{
1565
1700
  $gt?: string | undefined;
1566
1701
  $gte?: string | undefined;
1567
1702
  $lt?: string | undefined;
@@ -1579,4 +1714,49 @@ export declare const eventsTriggersQueryResolver: import("@feathersjs/schema").R
1579
1714
  $in: string | string[];
1580
1715
  $nin: string | string[];
1581
1716
  } & {}> | undefined;
1717
+ eventBridgeRuleName?: string | Partial<{
1718
+ $gt?: string | undefined;
1719
+ $gte?: string | undefined;
1720
+ $lt?: string | undefined;
1721
+ $lte?: string | undefined;
1722
+ $ne?: string | undefined;
1723
+ $in: string | string[];
1724
+ $nin: string | string[];
1725
+ } & {}> | undefined;
1726
+ eventTypeId?: string | Partial<{
1727
+ $gt: string | {};
1728
+ $gte: string | {};
1729
+ $lt: string | {};
1730
+ $lte: string | {};
1731
+ $ne: string | {};
1732
+ $in: string | (string | {})[] | {};
1733
+ $nin: string | (string | {})[] | {};
1734
+ } & {}> | {} | undefined;
1735
+ name?: string | Partial<{
1736
+ $gt: string;
1737
+ $gte: string;
1738
+ $lt: string;
1739
+ $lte: string;
1740
+ $ne: string;
1741
+ $in: string | string[];
1742
+ $nin: string | string[];
1743
+ } & {}> | undefined;
1744
+ prompt?: string | Partial<{
1745
+ $gt: string;
1746
+ $gte: string;
1747
+ $lt: string;
1748
+ $lte: string;
1749
+ $ne: string;
1750
+ $in: string | string[];
1751
+ $nin: string | string[];
1752
+ } & {}> | undefined;
1753
+ updatedAt?: string | Partial<{
1754
+ $gt: string;
1755
+ $gte: string;
1756
+ $lt: string;
1757
+ $lte: string;
1758
+ $ne: string;
1759
+ $in: string | string[];
1760
+ $nin: string | string[];
1761
+ } & {}> | undefined;
1582
1762
  } & {}, HookContext<EventsTriggersService<import("./triggers.class").EventsTriggersParams>>>;