@cryptorobot.ai/client 0.0.19 → 0.0.25

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 (78) hide show
  1. package/lib/client.d.ts +38 -36
  2. package/lib/client.js +6 -12
  3. package/lib/configuration.d.ts +20 -1
  4. package/lib/firebase-push-notification.d.ts +1 -0
  5. package/lib/helpers/backtest.helper.d.ts +53 -4
  6. package/lib/helpers/ccxt.helper.d.ts +75 -0
  7. package/lib/helpers/deployments.helper.d.ts +72 -0
  8. package/lib/helpers/funnel.helper.d.ts +17 -0
  9. package/lib/helpers/hyperopt.helper.d.ts +14 -0
  10. package/lib/helpers/push-notification.helper.d.ts +7 -0
  11. package/lib/helpers/queue.helper.d.ts +8 -0
  12. package/lib/helpers/sqlite3.helper.d.ts +6 -0
  13. package/lib/helpers/sqs.helper.d.ts +7 -0
  14. package/lib/helpers/subscription.helper.d.ts +48 -0
  15. package/lib/helpers/telegram.helper.d.ts +26 -1
  16. package/lib/helpers/trader.helper.d.ts +26 -0
  17. package/lib/hooks/application/setup-config-preparation.d.ts +1 -1
  18. package/lib/hooks/application/setup-info.d.ts +1 -1
  19. package/lib/hooks/application/setup-load-indicators.d.ts +1 -1
  20. package/lib/hooks/application/setup-load-strategy-templates.d.ts +1 -1
  21. package/lib/hooks/aws-prepare-batch-job.d.ts +2 -0
  22. package/lib/hooks/backtest-copy-candles-from-user-data.d.ts +1 -1
  23. package/lib/hooks/{backtest-generate-and-start.d.ts → backtest-generate-and-queue.d.ts} +1 -1
  24. package/lib/hooks/backtest-generate-config.d.ts +6 -0
  25. package/lib/hooks/backtest-generate-exchange-config.d.ts +6 -0
  26. package/lib/hooks/backtest-get-results.d.ts +12 -0
  27. package/lib/hooks/file-generate-config-hyperopt.d.ts +2 -0
  28. package/lib/hooks/setup-ensure-image.d.ts +3 -0
  29. package/lib/hooks/setup-firebase.d.ts +2 -0
  30. package/lib/hooks/setup-homepage.d.ts +3 -0
  31. package/lib/hooks/setup-mautic.d.ts +3 -0
  32. package/lib/hooks/setup-mixpanel.d.ts +3 -0
  33. package/lib/hooks/setup-prepare-maildev-while-in-test-env.d.ts +1 -1
  34. package/lib/hooks/setup-queues.d.ts +1 -1
  35. package/lib/hooks/sqlite-reset-database.d.ts +2 -0
  36. package/lib/hooks/traders/pods-process-worker.d.ts +5 -0
  37. package/lib/sentry.d.ts +2 -0
  38. package/lib/services/exchanges/balance/balance.schema.d.ts +56 -56
  39. package/lib/services/exchanges/download/download.schema.d.ts +60 -60
  40. package/lib/services/exchanges/download/webhooks/webhooks.schema.d.ts +84 -84
  41. package/lib/services/exchanges/exchanges.schema.d.ts +198 -198
  42. package/lib/services/exchanges/ticker/ticker.schema.d.ts +110 -110
  43. package/lib/services/homepage/homepage.class.d.ts +15 -0
  44. package/lib/services/homepage/homepage.d.ts +10 -0
  45. package/lib/services/homepage/homepage.schema.d.ts +237 -0
  46. package/lib/services/homepage/homepage.shared.d.ts +4 -0
  47. package/lib/services/homepage/homepage.shared.js +6 -0
  48. package/lib/services/markets/markets.schema.d.ts +112 -112
  49. package/lib/services/messages/messages.schema.d.ts +136 -64
  50. package/lib/services/strategies/ai/ai.schema.d.ts +32 -32
  51. package/lib/services/strategies/backtest/backtest.schema.d.ts +394 -84
  52. package/lib/services/strategies/backtest/results/results.class.d.ts +1 -1
  53. package/lib/services/strategies/backtest/results/results.schema.d.ts +454 -156
  54. package/lib/services/strategies/hyperopt/hyperopt.class.d.ts +11 -0
  55. package/lib/services/strategies/hyperopt/hyperopt.d.ts +11 -0
  56. package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +375 -0
  57. package/lib/services/strategies/hyperopt/hyperopt.shared.d.ts +13 -0
  58. package/lib/services/strategies/hyperopt/hyperopt.shared.js +13 -0
  59. package/lib/services/strategies/indicators/indicators.schema.d.ts +40 -40
  60. package/lib/services/strategies/strategies.schema.d.ts +329 -247
  61. package/lib/services/strategies/templates/templates.schema.d.ts +41 -41
  62. package/lib/services/stripe/charges/charges.d.ts +1 -1
  63. package/lib/services/stripe/customers/customers.d.ts +1 -1
  64. package/lib/services/stripe/customers/paymentintent/paymentintent.d.ts +1 -1
  65. package/lib/services/stripe/customers/paymentmethods/paymentmethods.d.ts +1 -1
  66. package/lib/services/stripe/products/products.d.ts +1 -1
  67. package/lib/services/traders/pods/api/api.class.d.ts +1 -1
  68. package/lib/services/traders/pods/api/api.schema.d.ts +519 -519
  69. package/lib/services/traders/pods/events/events.schema.d.ts +375 -111
  70. package/lib/services/traders/pods/pods.schema.d.ts +384 -384
  71. package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +76 -76
  72. package/lib/services/traders/traders.class.d.ts +7 -1
  73. package/lib/services/traders/traders.d.ts +1 -0
  74. package/lib/services/traders/traders.schema.d.ts +852 -380
  75. package/lib/services/users/users.class.d.ts +1 -1
  76. package/lib/services/users/users.schema.d.ts +158 -52
  77. package/package.json +9 -2
  78. package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
@@ -15,18 +15,18 @@ export declare const exchangesDownloadWebhooksValidator: import("@feathersjs/sch
15
15
  export declare const exchangesDownloadWebhooksResolver: import("@feathersjs/schema").Resolver<{
16
16
  _id: string | {};
17
17
  createdAt: any;
18
+ message: any;
18
19
  exchangeId: any;
19
20
  event: string;
20
- message: any;
21
21
  nonce: string;
22
22
  finished: boolean;
23
23
  }, HookContext<ExchangesDownloadWebhooksService<import("./webhooks.class").ExchangesDownloadWebhooksParams>>>;
24
24
  export declare const exchangesDownloadWebhooksExternalResolver: import("@feathersjs/schema").Resolver<{
25
25
  _id: string | {};
26
26
  createdAt: any;
27
+ message: any;
27
28
  exchangeId: any;
28
29
  event: string;
29
- message: any;
30
30
  nonce: string;
31
31
  finished: boolean;
32
32
  }, HookContext<ExchangesDownloadWebhooksService<import("./webhooks.class").ExchangesDownloadWebhooksParams>>>;
@@ -44,9 +44,9 @@ export declare const exchangesDownloadWebhooksDataValidator: import("@feathersjs
44
44
  export declare const exchangesDownloadWebhooksDataResolver: import("@feathersjs/schema").Resolver<{
45
45
  _id: string | {};
46
46
  createdAt: any;
47
+ message: any;
47
48
  exchangeId: any;
48
49
  event: string;
49
- message: any;
50
50
  nonce: string;
51
51
  finished: boolean;
52
52
  }, HookContext<ExchangesDownloadWebhooksService<import("./webhooks.class").ExchangesDownloadWebhooksParams>>>;
@@ -64,9 +64,9 @@ export declare const exchangesDownloadWebhooksPatchValidator: import("@feathersj
64
64
  export declare const exchangesDownloadWebhooksPatchResolver: import("@feathersjs/schema").Resolver<{
65
65
  _id: string | {};
66
66
  createdAt: any;
67
+ message: any;
67
68
  exchangeId: any;
68
69
  event: string;
69
- message: any;
70
70
  nonce: string;
71
71
  finished: boolean;
72
72
  }, HookContext<ExchangesDownloadWebhooksService<import("./webhooks.class").ExchangesDownloadWebhooksParams>>>;
@@ -98,8 +98,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
98
98
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
99
99
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
100
100
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
101
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
102
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
101
+ $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<{}>]>>;
102
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
103
103
  }>, import("@feathersjs/typebox").TObject<{
104
104
  [key: string]: import("@feathersjs/typebox").TSchema;
105
105
  } | undefined>]>>]>>;
@@ -109,8 +109,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
109
109
  $lt: import("@feathersjs/typebox").TAny;
110
110
  $lte: import("@feathersjs/typebox").TAny;
111
111
  $ne: import("@feathersjs/typebox").TAny;
112
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
113
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
112
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
113
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
114
114
  }>, import("@feathersjs/typebox").TObject<{
115
115
  [key: string]: import("@feathersjs/typebox").TSchema;
116
116
  } | undefined>]>>]>>;
@@ -120,8 +120,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
120
120
  $lt: import("@feathersjs/typebox").TAny;
121
121
  $lte: import("@feathersjs/typebox").TAny;
122
122
  $ne: import("@feathersjs/typebox").TAny;
123
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
124
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
123
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
124
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
125
125
  }>, import("@feathersjs/typebox").TObject<{
126
126
  [key: string]: import("@feathersjs/typebox").TSchema;
127
127
  } | undefined>]>>]>>;
@@ -131,8 +131,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
131
131
  $lt: import("@feathersjs/typebox").TString<string>;
132
132
  $lte: import("@feathersjs/typebox").TString<string>;
133
133
  $ne: import("@feathersjs/typebox").TString<string>;
134
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
135
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
134
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
135
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
136
136
  }>, import("@feathersjs/typebox").TObject<{
137
137
  [key: string]: import("@feathersjs/typebox").TSchema;
138
138
  } | undefined>]>>]>>;
@@ -142,8 +142,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
142
142
  $lt: import("@feathersjs/typebox").TString<string>;
143
143
  $lte: import("@feathersjs/typebox").TString<string>;
144
144
  $ne: import("@feathersjs/typebox").TString<string>;
145
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
146
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
145
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
146
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
147
147
  }>, import("@feathersjs/typebox").TObject<{
148
148
  [key: string]: import("@feathersjs/typebox").TSchema;
149
149
  } | undefined>]>>]>>;
@@ -153,8 +153,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
153
153
  $lt: import("@feathersjs/typebox").TBoolean;
154
154
  $lte: import("@feathersjs/typebox").TBoolean;
155
155
  $ne: import("@feathersjs/typebox").TBoolean;
156
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
157
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
156
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
157
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
158
158
  }>, import("@feathersjs/typebox").TObject<{
159
159
  [key: string]: import("@feathersjs/typebox").TSchema;
160
160
  } | undefined>]>>]>>;
@@ -166,8 +166,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
166
166
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
167
167
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
168
168
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
169
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
170
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
169
+ $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<{}>]>>;
170
+ $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<{}>]>>;
171
171
  }>, import("@feathersjs/typebox").TObject<{
172
172
  [key: string]: import("@feathersjs/typebox").TSchema;
173
173
  } | undefined>]>>]>>;
@@ -177,8 +177,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
177
177
  $lt: import("@feathersjs/typebox").TAny;
178
178
  $lte: import("@feathersjs/typebox").TAny;
179
179
  $ne: import("@feathersjs/typebox").TAny;
180
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
181
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
180
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
181
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
182
182
  }>, import("@feathersjs/typebox").TObject<{
183
183
  [key: string]: import("@feathersjs/typebox").TSchema;
184
184
  } | undefined>]>>]>>;
@@ -188,8 +188,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
188
188
  $lt: import("@feathersjs/typebox").TAny;
189
189
  $lte: import("@feathersjs/typebox").TAny;
190
190
  $ne: import("@feathersjs/typebox").TAny;
191
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
192
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
191
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
192
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
193
193
  }>, import("@feathersjs/typebox").TObject<{
194
194
  [key: string]: import("@feathersjs/typebox").TSchema;
195
195
  } | undefined>]>>]>>;
@@ -199,8 +199,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
199
199
  $lt: import("@feathersjs/typebox").TString<string>;
200
200
  $lte: import("@feathersjs/typebox").TString<string>;
201
201
  $ne: import("@feathersjs/typebox").TString<string>;
202
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
203
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
202
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
203
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
204
204
  }>, import("@feathersjs/typebox").TObject<{
205
205
  [key: string]: import("@feathersjs/typebox").TSchema;
206
206
  } | undefined>]>>]>>;
@@ -210,8 +210,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
210
210
  $lt: import("@feathersjs/typebox").TString<string>;
211
211
  $lte: import("@feathersjs/typebox").TString<string>;
212
212
  $ne: import("@feathersjs/typebox").TString<string>;
213
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
214
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
213
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
214
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
215
215
  }>, import("@feathersjs/typebox").TObject<{
216
216
  [key: string]: import("@feathersjs/typebox").TSchema;
217
217
  } | undefined>]>>]>>;
@@ -221,8 +221,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
221
221
  $lt: import("@feathersjs/typebox").TBoolean;
222
222
  $lte: import("@feathersjs/typebox").TBoolean;
223
223
  $ne: import("@feathersjs/typebox").TBoolean;
224
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
225
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
224
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
225
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
226
226
  }>, import("@feathersjs/typebox").TObject<{
227
227
  [key: string]: import("@feathersjs/typebox").TSchema;
228
228
  } | undefined>]>>]>>;
@@ -235,8 +235,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
235
235
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
236
236
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
237
237
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
238
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
239
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
238
+ $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<{}>]>>;
239
+ $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<{}>]>>;
240
240
  }>, import("@feathersjs/typebox").TObject<{
241
241
  [key: string]: import("@feathersjs/typebox").TSchema;
242
242
  } | undefined>]>>]>>;
@@ -246,8 +246,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
246
246
  $lt: import("@feathersjs/typebox").TAny;
247
247
  $lte: import("@feathersjs/typebox").TAny;
248
248
  $ne: import("@feathersjs/typebox").TAny;
249
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
250
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
249
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
250
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
251
251
  }>, import("@feathersjs/typebox").TObject<{
252
252
  [key: string]: import("@feathersjs/typebox").TSchema;
253
253
  } | undefined>]>>]>>;
@@ -257,8 +257,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
257
257
  $lt: import("@feathersjs/typebox").TAny;
258
258
  $lte: import("@feathersjs/typebox").TAny;
259
259
  $ne: import("@feathersjs/typebox").TAny;
260
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
261
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
260
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
261
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
262
262
  }>, import("@feathersjs/typebox").TObject<{
263
263
  [key: string]: import("@feathersjs/typebox").TSchema;
264
264
  } | undefined>]>>]>>;
@@ -268,8 +268,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
268
268
  $lt: import("@feathersjs/typebox").TString<string>;
269
269
  $lte: import("@feathersjs/typebox").TString<string>;
270
270
  $ne: import("@feathersjs/typebox").TString<string>;
271
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
272
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
271
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
272
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
273
273
  }>, import("@feathersjs/typebox").TObject<{
274
274
  [key: string]: import("@feathersjs/typebox").TSchema;
275
275
  } | undefined>]>>]>>;
@@ -279,8 +279,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
279
279
  $lt: import("@feathersjs/typebox").TString<string>;
280
280
  $lte: import("@feathersjs/typebox").TString<string>;
281
281
  $ne: import("@feathersjs/typebox").TString<string>;
282
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
283
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
282
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
283
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
284
284
  }>, import("@feathersjs/typebox").TObject<{
285
285
  [key: string]: import("@feathersjs/typebox").TSchema;
286
286
  } | undefined>]>>]>>;
@@ -290,8 +290,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
290
290
  $lt: import("@feathersjs/typebox").TBoolean;
291
291
  $lte: import("@feathersjs/typebox").TBoolean;
292
292
  $ne: import("@feathersjs/typebox").TBoolean;
293
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
294
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
293
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
294
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
295
295
  }>, import("@feathersjs/typebox").TObject<{
296
296
  [key: string]: import("@feathersjs/typebox").TSchema;
297
297
  } | undefined>]>>]>>;
@@ -303,8 +303,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
303
303
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
304
304
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
305
305
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
306
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
307
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
306
+ $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<{}>]>>;
307
+ $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<{}>]>>;
308
308
  }>, import("@feathersjs/typebox").TObject<{
309
309
  [key: string]: import("@feathersjs/typebox").TSchema;
310
310
  } | undefined>]>>]>>;
@@ -314,8 +314,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
314
314
  $lt: import("@feathersjs/typebox").TAny;
315
315
  $lte: import("@feathersjs/typebox").TAny;
316
316
  $ne: import("@feathersjs/typebox").TAny;
317
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
318
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
317
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
318
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
319
319
  }>, import("@feathersjs/typebox").TObject<{
320
320
  [key: string]: import("@feathersjs/typebox").TSchema;
321
321
  } | undefined>]>>]>>;
@@ -325,8 +325,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
325
325
  $lt: import("@feathersjs/typebox").TAny;
326
326
  $lte: import("@feathersjs/typebox").TAny;
327
327
  $ne: import("@feathersjs/typebox").TAny;
328
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
329
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
328
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
329
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
330
330
  }>, import("@feathersjs/typebox").TObject<{
331
331
  [key: string]: import("@feathersjs/typebox").TSchema;
332
332
  } | undefined>]>>]>>;
@@ -336,8 +336,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
336
336
  $lt: import("@feathersjs/typebox").TString<string>;
337
337
  $lte: import("@feathersjs/typebox").TString<string>;
338
338
  $ne: import("@feathersjs/typebox").TString<string>;
339
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
340
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
339
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
340
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
341
341
  }>, import("@feathersjs/typebox").TObject<{
342
342
  [key: string]: import("@feathersjs/typebox").TSchema;
343
343
  } | undefined>]>>]>>;
@@ -347,8 +347,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
347
347
  $lt: import("@feathersjs/typebox").TString<string>;
348
348
  $lte: import("@feathersjs/typebox").TString<string>;
349
349
  $ne: import("@feathersjs/typebox").TString<string>;
350
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
351
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
350
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
351
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
352
352
  }>, import("@feathersjs/typebox").TObject<{
353
353
  [key: string]: import("@feathersjs/typebox").TSchema;
354
354
  } | undefined>]>>]>>;
@@ -358,8 +358,8 @@ export declare const exchangesDownloadWebhooksQuerySchema: import("@feathersjs/t
358
358
  $lt: import("@feathersjs/typebox").TBoolean;
359
359
  $lte: import("@feathersjs/typebox").TBoolean;
360
360
  $ne: import("@feathersjs/typebox").TBoolean;
361
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
362
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
361
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
362
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
363
363
  }>, import("@feathersjs/typebox").TObject<{
364
364
  [key: string]: import("@feathersjs/typebox").TSchema;
365
365
  } | undefined>]>>]>>;
@@ -385,8 +385,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
385
385
  $lt: string | {};
386
386
  $lte: string | {};
387
387
  $ne: string | {};
388
- $in: (string | {})[];
389
- $nin: (string | {})[];
388
+ $in: string | {} | (string | {})[];
389
+ $nin: string | {} | (string | {})[];
390
390
  } & {}> | undefined;
391
391
  createdAt?: any;
392
392
  exchangeId?: any;
@@ -396,8 +396,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
396
396
  $lt: string;
397
397
  $lte: string;
398
398
  $ne: string;
399
- $in: string[];
400
- $nin: string[];
399
+ $in: string | string[];
400
+ $nin: string | string[];
401
401
  } & {}> | undefined;
402
402
  nonce?: string | Partial<{
403
403
  $gt: string;
@@ -405,8 +405,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
405
405
  $lt: string;
406
406
  $lte: string;
407
407
  $ne: string;
408
- $in: string[];
409
- $nin: string[];
408
+ $in: string | string[];
409
+ $nin: string | string[];
410
410
  } & {}> | undefined;
411
411
  finished?: boolean | Partial<{
412
412
  $gt: boolean;
@@ -414,8 +414,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
414
414
  $lt: boolean;
415
415
  $lte: boolean;
416
416
  $ne: boolean;
417
- $in: boolean[];
418
- $nin: boolean[];
417
+ $in: boolean | boolean[];
418
+ $nin: boolean | boolean[];
419
419
  } & {}> | undefined;
420
420
  } | {
421
421
  $or: {
@@ -425,8 +425,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
425
425
  $lt: string | {};
426
426
  $lte: string | {};
427
427
  $ne: string | {};
428
- $in: (string | {})[];
429
- $nin: (string | {})[];
428
+ $in: string | {} | (string | {})[];
429
+ $nin: string | {} | (string | {})[];
430
430
  } & {}> | undefined;
431
431
  createdAt?: any;
432
432
  exchangeId?: any;
@@ -436,8 +436,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
436
436
  $lt: string;
437
437
  $lte: string;
438
438
  $ne: string;
439
- $in: string[];
440
- $nin: string[];
439
+ $in: string | string[];
440
+ $nin: string | string[];
441
441
  } & {}> | undefined;
442
442
  nonce?: string | Partial<{
443
443
  $gt: string;
@@ -445,8 +445,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
445
445
  $lt: string;
446
446
  $lte: string;
447
447
  $ne: string;
448
- $in: string[];
449
- $nin: string[];
448
+ $in: string | string[];
449
+ $nin: string | string[];
450
450
  } & {}> | undefined;
451
451
  finished?: boolean | Partial<{
452
452
  $gt: boolean;
@@ -454,8 +454,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
454
454
  $lt: boolean;
455
455
  $lte: boolean;
456
456
  $ne: boolean;
457
- $in: boolean[];
458
- $nin: boolean[];
457
+ $in: boolean | boolean[];
458
+ $nin: boolean | boolean[];
459
459
  } & {}> | undefined;
460
460
  }[];
461
461
  })[];
@@ -466,8 +466,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
466
466
  $lt: string | {};
467
467
  $lte: string | {};
468
468
  $ne: string | {};
469
- $in: (string | {})[];
470
- $nin: (string | {})[];
469
+ $in: string | {} | (string | {})[];
470
+ $nin: string | {} | (string | {})[];
471
471
  } & {}> | undefined;
472
472
  createdAt?: any;
473
473
  exchangeId?: any;
@@ -477,8 +477,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
477
477
  $lt: string;
478
478
  $lte: string;
479
479
  $ne: string;
480
- $in: string[];
481
- $nin: string[];
480
+ $in: string | string[];
481
+ $nin: string | string[];
482
482
  } & {}> | undefined;
483
483
  nonce?: string | Partial<{
484
484
  $gt: string;
@@ -486,8 +486,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
486
486
  $lt: string;
487
487
  $lte: string;
488
488
  $ne: string;
489
- $in: string[];
490
- $nin: string[];
489
+ $in: string | string[];
490
+ $nin: string | string[];
491
491
  } & {}> | undefined;
492
492
  finished?: boolean | Partial<{
493
493
  $gt: boolean;
@@ -495,8 +495,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
495
495
  $lt: boolean;
496
496
  $lte: boolean;
497
497
  $ne: boolean;
498
- $in: boolean[];
499
- $nin: boolean[];
498
+ $in: boolean | boolean[];
499
+ $nin: boolean | boolean[];
500
500
  } & {}> | undefined;
501
501
  }[];
502
502
  }> & {
@@ -506,8 +506,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
506
506
  $lt: string | {};
507
507
  $lte: string | {};
508
508
  $ne: string | {};
509
- $in: (string | {})[];
510
- $nin: (string | {})[];
509
+ $in: string | {} | (string | {})[];
510
+ $nin: string | {} | (string | {})[];
511
511
  } & {}> | undefined;
512
512
  createdAt?: any;
513
513
  exchangeId?: any;
@@ -517,8 +517,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
517
517
  $lt: string;
518
518
  $lte: string;
519
519
  $ne: string;
520
- $in: string[];
521
- $nin: string[];
520
+ $in: string | string[];
521
+ $nin: string | string[];
522
522
  } & {}> | undefined;
523
523
  nonce?: string | Partial<{
524
524
  $gt: string;
@@ -526,8 +526,8 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
526
526
  $lt: string;
527
527
  $lte: string;
528
528
  $ne: string;
529
- $in: string[];
530
- $nin: string[];
529
+ $in: string | string[];
530
+ $nin: string | string[];
531
531
  } & {}> | undefined;
532
532
  finished?: boolean | Partial<{
533
533
  $gt: boolean;
@@ -535,7 +535,7 @@ export declare const exchangesDownloadWebhooksQueryResolver: import("@feathersjs
535
535
  $lt: boolean;
536
536
  $lte: boolean;
537
537
  $ne: boolean;
538
- $in: boolean[];
539
- $nin: boolean[];
538
+ $in: boolean | boolean[];
539
+ $nin: boolean | boolean[];
540
540
  } & {}> | undefined;
541
541
  } & {}, HookContext<ExchangesDownloadWebhooksService<import("./webhooks.class").ExchangesDownloadWebhooksParams>>>;