@cryptorobot.ai/client 0.0.18 → 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 +527 -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
@@ -20,8 +20,8 @@ export declare const marketsResolver: import("@feathersjs/schema").Resolver<{
20
20
  _id: string | {};
21
21
  createdAt: any;
22
22
  updatedAt: any;
23
- exchange: string;
24
23
  pairs: any;
24
+ exchange: string;
25
25
  bases: any;
26
26
  quotes: any;
27
27
  }, HookContext<MarketsService<import("./markets.class").MarketsParams>>>;
@@ -31,8 +31,8 @@ export declare const marketsExternalResolver: import("@feathersjs/schema").Resol
31
31
  _id: string | {};
32
32
  createdAt: any;
33
33
  updatedAt: any;
34
- exchange: string;
35
34
  pairs: any;
35
+ exchange: string;
36
36
  bases: any;
37
37
  quotes: any;
38
38
  }, HookContext<MarketsService<import("./markets.class").MarketsParams>>>;
@@ -55,8 +55,8 @@ export declare const marketsDataResolver: import("@feathersjs/schema").Resolver<
55
55
  _id: string | {};
56
56
  createdAt: any;
57
57
  updatedAt: any;
58
- exchange: string;
59
58
  pairs: any;
59
+ exchange: string;
60
60
  bases: any;
61
61
  quotes: any;
62
62
  }, HookContext<MarketsService<import("./markets.class").MarketsParams>>>;
@@ -79,8 +79,8 @@ export declare const marketsPatchResolver: import("@feathersjs/schema").Resolver
79
79
  _id: string | {};
80
80
  createdAt: any;
81
81
  updatedAt: any;
82
- exchange: string;
83
82
  pairs: any;
83
+ exchange: string;
84
84
  bases: any;
85
85
  quotes: any;
86
86
  }, HookContext<MarketsService<import("./markets.class").MarketsParams>>>;
@@ -102,12 +102,12 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
102
102
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
103
103
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
104
104
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
105
- exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
106
105
  pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
106
+ exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
107
107
  bases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
108
108
  quotes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
109
109
  }>;
110
- $select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "updatedAt" | "exchange" | "pairs" | "bases" | "quotes")[]>;
110
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "updatedAt" | "pairs" | "exchange" | "bases" | "quotes")[]>;
111
111
  $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
112
112
  _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<{
113
113
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -115,8 +115,8 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
115
115
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
116
116
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
117
117
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
118
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
119
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
118
+ $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<{}>]>>;
119
+ $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<{}>]>>;
120
120
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
121
121
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
122
122
  $gt: import("@feathersjs/typebox").TAny;
@@ -124,8 +124,8 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
124
124
  $lt: import("@feathersjs/typebox").TAny;
125
125
  $lte: import("@feathersjs/typebox").TAny;
126
126
  $ne: import("@feathersjs/typebox").TAny;
127
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
128
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
127
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
128
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
129
129
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
130
130
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
131
131
  $gt: import("@feathersjs/typebox").TAny;
@@ -133,8 +133,17 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
133
133
  $lt: import("@feathersjs/typebox").TAny;
134
134
  $lte: import("@feathersjs/typebox").TAny;
135
135
  $ne: import("@feathersjs/typebox").TAny;
136
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
137
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
136
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
137
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
138
+ }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
139
+ pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
140
+ $gt: import("@feathersjs/typebox").TAny;
141
+ $gte: import("@feathersjs/typebox").TAny;
142
+ $lt: import("@feathersjs/typebox").TAny;
143
+ $lte: import("@feathersjs/typebox").TAny;
144
+ $ne: import("@feathersjs/typebox").TAny;
145
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
146
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
138
147
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
139
148
  exchange: 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<{
140
149
  $gt: import("@feathersjs/typebox").TString<string>;
@@ -142,28 +151,19 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
142
151
  $lt: import("@feathersjs/typebox").TString<string>;
143
152
  $lte: import("@feathersjs/typebox").TString<string>;
144
153
  $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>>;
154
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
155
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
147
156
  }>, import("@feathersjs/typebox").TObject<{
148
157
  $ilike: import("@feathersjs/typebox").TString<string>;
149
158
  }>]>>]>>;
150
- pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
151
- $gt: import("@feathersjs/typebox").TAny;
152
- $gte: import("@feathersjs/typebox").TAny;
153
- $lt: import("@feathersjs/typebox").TAny;
154
- $lte: import("@feathersjs/typebox").TAny;
155
- $ne: import("@feathersjs/typebox").TAny;
156
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
157
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
158
- }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
159
159
  bases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
160
160
  $gt: import("@feathersjs/typebox").TAny;
161
161
  $gte: import("@feathersjs/typebox").TAny;
162
162
  $lt: import("@feathersjs/typebox").TAny;
163
163
  $lte: import("@feathersjs/typebox").TAny;
164
164
  $ne: import("@feathersjs/typebox").TAny;
165
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
166
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
165
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
166
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
167
167
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
168
168
  quotes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
169
169
  $gt: import("@feathersjs/typebox").TAny;
@@ -171,8 +171,8 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
171
171
  $lt: import("@feathersjs/typebox").TAny;
172
172
  $lte: import("@feathersjs/typebox").TAny;
173
173
  $ne: import("@feathersjs/typebox").TAny;
174
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
175
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
174
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
175
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
176
176
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
177
177
  }>>, import("@feathersjs/typebox").TObject<{
178
178
  $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
@@ -182,8 +182,8 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
182
182
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
183
183
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
184
184
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
185
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
186
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
185
+ $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<{}>]>>;
186
+ $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<{}>]>>;
187
187
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
188
188
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
189
189
  $gt: import("@feathersjs/typebox").TAny;
@@ -191,8 +191,8 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
191
191
  $lt: import("@feathersjs/typebox").TAny;
192
192
  $lte: import("@feathersjs/typebox").TAny;
193
193
  $ne: import("@feathersjs/typebox").TAny;
194
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
195
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
194
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
195
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
196
196
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
197
197
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
198
198
  $gt: import("@feathersjs/typebox").TAny;
@@ -200,8 +200,17 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
200
200
  $lt: import("@feathersjs/typebox").TAny;
201
201
  $lte: import("@feathersjs/typebox").TAny;
202
202
  $ne: import("@feathersjs/typebox").TAny;
203
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
204
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
203
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
204
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
205
+ }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
206
+ pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
207
+ $gt: import("@feathersjs/typebox").TAny;
208
+ $gte: import("@feathersjs/typebox").TAny;
209
+ $lt: import("@feathersjs/typebox").TAny;
210
+ $lte: import("@feathersjs/typebox").TAny;
211
+ $ne: import("@feathersjs/typebox").TAny;
212
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
213
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
205
214
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
206
215
  exchange: 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<{
207
216
  $gt: import("@feathersjs/typebox").TString<string>;
@@ -209,28 +218,19 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
209
218
  $lt: import("@feathersjs/typebox").TString<string>;
210
219
  $lte: import("@feathersjs/typebox").TString<string>;
211
220
  $ne: import("@feathersjs/typebox").TString<string>;
212
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
213
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
221
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
222
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
214
223
  }>, import("@feathersjs/typebox").TObject<{
215
224
  $ilike: import("@feathersjs/typebox").TString<string>;
216
225
  }>]>>]>>;
217
- pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
218
- $gt: import("@feathersjs/typebox").TAny;
219
- $gte: import("@feathersjs/typebox").TAny;
220
- $lt: import("@feathersjs/typebox").TAny;
221
- $lte: import("@feathersjs/typebox").TAny;
222
- $ne: import("@feathersjs/typebox").TAny;
223
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
224
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
225
- }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
226
226
  bases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
227
227
  $gt: import("@feathersjs/typebox").TAny;
228
228
  $gte: import("@feathersjs/typebox").TAny;
229
229
  $lt: import("@feathersjs/typebox").TAny;
230
230
  $lte: import("@feathersjs/typebox").TAny;
231
231
  $ne: import("@feathersjs/typebox").TAny;
232
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
233
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
232
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
233
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
234
234
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
235
235
  quotes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
236
236
  $gt: import("@feathersjs/typebox").TAny;
@@ -238,8 +238,8 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
238
238
  $lt: import("@feathersjs/typebox").TAny;
239
239
  $lte: import("@feathersjs/typebox").TAny;
240
240
  $ne: import("@feathersjs/typebox").TAny;
241
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
242
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
241
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
242
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
243
243
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
244
244
  }>>>;
245
245
  }>]>>;
@@ -250,8 +250,8 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
250
250
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
251
251
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
252
252
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
253
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
254
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
253
+ $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<{}>]>>;
254
+ $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<{}>]>>;
255
255
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
256
256
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
257
257
  $gt: import("@feathersjs/typebox").TAny;
@@ -259,8 +259,8 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
259
259
  $lt: import("@feathersjs/typebox").TAny;
260
260
  $lte: import("@feathersjs/typebox").TAny;
261
261
  $ne: import("@feathersjs/typebox").TAny;
262
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
263
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
262
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
263
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
264
264
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
265
265
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
266
266
  $gt: import("@feathersjs/typebox").TAny;
@@ -268,8 +268,17 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
268
268
  $lt: import("@feathersjs/typebox").TAny;
269
269
  $lte: import("@feathersjs/typebox").TAny;
270
270
  $ne: import("@feathersjs/typebox").TAny;
271
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
272
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
271
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
272
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
273
+ }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
274
+ pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
275
+ $gt: import("@feathersjs/typebox").TAny;
276
+ $gte: import("@feathersjs/typebox").TAny;
277
+ $lt: import("@feathersjs/typebox").TAny;
278
+ $lte: import("@feathersjs/typebox").TAny;
279
+ $ne: import("@feathersjs/typebox").TAny;
280
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
281
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
273
282
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
274
283
  exchange: 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<{
275
284
  $gt: import("@feathersjs/typebox").TString<string>;
@@ -277,28 +286,19 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
277
286
  $lt: import("@feathersjs/typebox").TString<string>;
278
287
  $lte: import("@feathersjs/typebox").TString<string>;
279
288
  $ne: import("@feathersjs/typebox").TString<string>;
280
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
281
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
289
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
290
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
282
291
  }>, import("@feathersjs/typebox").TObject<{
283
292
  $ilike: import("@feathersjs/typebox").TString<string>;
284
293
  }>]>>]>>;
285
- pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
286
- $gt: import("@feathersjs/typebox").TAny;
287
- $gte: import("@feathersjs/typebox").TAny;
288
- $lt: import("@feathersjs/typebox").TAny;
289
- $lte: import("@feathersjs/typebox").TAny;
290
- $ne: import("@feathersjs/typebox").TAny;
291
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
292
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
293
- }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
294
294
  bases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
295
295
  $gt: import("@feathersjs/typebox").TAny;
296
296
  $gte: import("@feathersjs/typebox").TAny;
297
297
  $lt: import("@feathersjs/typebox").TAny;
298
298
  $lte: import("@feathersjs/typebox").TAny;
299
299
  $ne: import("@feathersjs/typebox").TAny;
300
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
301
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
300
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
301
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
302
302
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
303
303
  quotes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
304
304
  $gt: import("@feathersjs/typebox").TAny;
@@ -306,8 +306,8 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
306
306
  $lt: import("@feathersjs/typebox").TAny;
307
307
  $lte: import("@feathersjs/typebox").TAny;
308
308
  $ne: import("@feathersjs/typebox").TAny;
309
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
310
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
309
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
310
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
311
311
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
312
312
  }>>>;
313
313
  }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
@@ -317,8 +317,8 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
317
317
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
318
318
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
319
319
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
320
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
321
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
320
+ $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<{}>]>>;
321
+ $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<{}>]>>;
322
322
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
323
323
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
324
324
  $gt: import("@feathersjs/typebox").TAny;
@@ -326,8 +326,8 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
326
326
  $lt: import("@feathersjs/typebox").TAny;
327
327
  $lte: import("@feathersjs/typebox").TAny;
328
328
  $ne: import("@feathersjs/typebox").TAny;
329
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
330
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
329
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
330
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
331
331
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
332
332
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
333
333
  $gt: import("@feathersjs/typebox").TAny;
@@ -335,8 +335,17 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
335
335
  $lt: import("@feathersjs/typebox").TAny;
336
336
  $lte: import("@feathersjs/typebox").TAny;
337
337
  $ne: import("@feathersjs/typebox").TAny;
338
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
339
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
338
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
339
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
340
+ }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
341
+ pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
342
+ $gt: import("@feathersjs/typebox").TAny;
343
+ $gte: import("@feathersjs/typebox").TAny;
344
+ $lt: import("@feathersjs/typebox").TAny;
345
+ $lte: import("@feathersjs/typebox").TAny;
346
+ $ne: import("@feathersjs/typebox").TAny;
347
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
348
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
340
349
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
341
350
  exchange: 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<{
342
351
  $gt: import("@feathersjs/typebox").TString<string>;
@@ -344,28 +353,19 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
344
353
  $lt: import("@feathersjs/typebox").TString<string>;
345
354
  $lte: import("@feathersjs/typebox").TString<string>;
346
355
  $ne: import("@feathersjs/typebox").TString<string>;
347
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
348
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
356
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
357
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
349
358
  }>, import("@feathersjs/typebox").TObject<{
350
359
  $ilike: import("@feathersjs/typebox").TString<string>;
351
360
  }>]>>]>>;
352
- pairs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
353
- $gt: import("@feathersjs/typebox").TAny;
354
- $gte: import("@feathersjs/typebox").TAny;
355
- $lt: import("@feathersjs/typebox").TAny;
356
- $lte: import("@feathersjs/typebox").TAny;
357
- $ne: import("@feathersjs/typebox").TAny;
358
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
359
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
360
- }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
361
361
  bases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
362
362
  $gt: import("@feathersjs/typebox").TAny;
363
363
  $gte: import("@feathersjs/typebox").TAny;
364
364
  $lt: import("@feathersjs/typebox").TAny;
365
365
  $lte: import("@feathersjs/typebox").TAny;
366
366
  $ne: import("@feathersjs/typebox").TAny;
367
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
368
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
367
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
368
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
369
369
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
370
370
  quotes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
371
371
  $gt: import("@feathersjs/typebox").TAny;
@@ -373,8 +373,8 @@ export declare const marketsQuerySchema: import("@feathersjs/typebox").TIntersec
373
373
  $lt: import("@feathersjs/typebox").TAny;
374
374
  $lte: import("@feathersjs/typebox").TAny;
375
375
  $ne: import("@feathersjs/typebox").TAny;
376
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
377
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
376
+ $in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
377
+ $nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
378
378
  }>, import("@feathersjs/typebox").TObject<unknown>]>>]>>;
379
379
  }>>]>, import("@feathersjs/typebox").TObject<{}>]>;
380
380
  export type MarketsQuery = Static<typeof marketsQuerySchema>;
@@ -386,12 +386,12 @@ export declare const marketsQueryResolver: import("@feathersjs/schema").Resolver
386
386
  _id?: number | undefined;
387
387
  createdAt?: number | undefined;
388
388
  updatedAt?: number | undefined;
389
- exchange?: number | undefined;
390
389
  pairs?: number | undefined;
390
+ exchange?: number | undefined;
391
391
  bases?: number | undefined;
392
392
  quotes?: number | undefined;
393
393
  };
394
- $select: ("_id" | "createdAt" | "updatedAt" | "exchange" | "pairs" | "bases" | "quotes")[];
394
+ $select: ("_id" | "createdAt" | "updatedAt" | "pairs" | "exchange" | "bases" | "quotes")[];
395
395
  $and: ({
396
396
  _id?: string | {} | Partial<{
397
397
  $gt: string | {};
@@ -399,23 +399,23 @@ export declare const marketsQueryResolver: import("@feathersjs/schema").Resolver
399
399
  $lt: string | {};
400
400
  $lte: string | {};
401
401
  $ne: string | {};
402
- $in: (string | {})[];
403
- $nin: (string | {})[];
402
+ $in: string | {} | (string | {})[];
403
+ $nin: string | {} | (string | {})[];
404
404
  } & {}> | undefined;
405
405
  createdAt?: any;
406
406
  updatedAt?: any;
407
+ pairs?: any;
407
408
  exchange?: string | Partial<{
408
409
  $gt: string;
409
410
  $gte: string;
410
411
  $lt: string;
411
412
  $lte: string;
412
413
  $ne: string;
413
- $in: string[];
414
- $nin: string[];
414
+ $in: string | string[];
415
+ $nin: string | string[];
415
416
  } & {
416
417
  $ilike: string;
417
418
  }> | undefined;
418
- pairs?: any;
419
419
  bases?: any;
420
420
  quotes?: any;
421
421
  } | {
@@ -426,23 +426,23 @@ export declare const marketsQueryResolver: import("@feathersjs/schema").Resolver
426
426
  $lt: string | {};
427
427
  $lte: string | {};
428
428
  $ne: string | {};
429
- $in: (string | {})[];
430
- $nin: (string | {})[];
429
+ $in: string | {} | (string | {})[];
430
+ $nin: string | {} | (string | {})[];
431
431
  } & {}> | undefined;
432
432
  createdAt?: any;
433
433
  updatedAt?: any;
434
+ pairs?: any;
434
435
  exchange?: string | Partial<{
435
436
  $gt: string;
436
437
  $gte: string;
437
438
  $lt: string;
438
439
  $lte: string;
439
440
  $ne: string;
440
- $in: string[];
441
- $nin: string[];
441
+ $in: string | string[];
442
+ $nin: string | string[];
442
443
  } & {
443
444
  $ilike: string;
444
445
  }> | undefined;
445
- pairs?: any;
446
446
  bases?: any;
447
447
  quotes?: any;
448
448
  }[];
@@ -454,23 +454,23 @@ export declare const marketsQueryResolver: import("@feathersjs/schema").Resolver
454
454
  $lt: string | {};
455
455
  $lte: string | {};
456
456
  $ne: string | {};
457
- $in: (string | {})[];
458
- $nin: (string | {})[];
457
+ $in: string | {} | (string | {})[];
458
+ $nin: string | {} | (string | {})[];
459
459
  } & {}> | undefined;
460
460
  createdAt?: any;
461
461
  updatedAt?: any;
462
+ pairs?: any;
462
463
  exchange?: string | Partial<{
463
464
  $gt: string;
464
465
  $gte: string;
465
466
  $lt: string;
466
467
  $lte: string;
467
468
  $ne: string;
468
- $in: string[];
469
- $nin: string[];
469
+ $in: string | string[];
470
+ $nin: string | string[];
470
471
  } & {
471
472
  $ilike: string;
472
473
  }> | undefined;
473
- pairs?: any;
474
474
  bases?: any;
475
475
  quotes?: any;
476
476
  }[];
@@ -481,23 +481,23 @@ export declare const marketsQueryResolver: import("@feathersjs/schema").Resolver
481
481
  $lt: string | {};
482
482
  $lte: string | {};
483
483
  $ne: string | {};
484
- $in: (string | {})[];
485
- $nin: (string | {})[];
484
+ $in: string | {} | (string | {})[];
485
+ $nin: string | {} | (string | {})[];
486
486
  } & {}> | undefined;
487
487
  createdAt?: any;
488
488
  updatedAt?: any;
489
+ pairs?: any;
489
490
  exchange?: string | Partial<{
490
491
  $gt: string;
491
492
  $gte: string;
492
493
  $lt: string;
493
494
  $lte: string;
494
495
  $ne: string;
495
- $in: string[];
496
- $nin: string[];
496
+ $in: string | string[];
497
+ $nin: string | string[];
497
498
  } & {
498
499
  $ilike: string;
499
500
  }> | undefined;
500
- pairs?: any;
501
501
  bases?: any;
502
502
  quotes?: any;
503
503
  } & {}, HookContext<MarketsService<import("./markets.class").MarketsParams>>>;