@cryptorobot.ai/client 0.0.19 → 0.0.26

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 +24 -16
  78. package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
@@ -6,13 +6,17 @@ export declare const tradersPodsEventsSchema: import("@feathersjs/typebox").TObj
6
6
  image: import("@feathersjs/typebox").TString<string>;
7
7
  event: import("@feathersjs/typebox").TString<string>;
8
8
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
9
- description: import("@feathersjs/typebox").TString<string>;
9
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
10
10
  traderId: import("@feathersjs/typebox").TString<string>;
11
11
  userId: import("@feathersjs/typebox").TString<string>;
12
12
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
13
13
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
14
14
  extraContent: import("@feathersjs/typebox").TString<string>;
15
15
  pair: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
16
+ gain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
17
+ profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
18
+ close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
19
+ profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
16
20
  icon: import("@feathersjs/typebox").TString<string>;
17
21
  }>;
18
22
  export type TradersPodsEvents = Static<typeof tradersPodsEventsSchema>;
@@ -20,28 +24,36 @@ export declare const tradersPodsEventsValidator: import("@feathersjs/schema").Va
20
24
  export declare const tradersPodsEventsResolver: import("@feathersjs/schema").Resolver<{
21
25
  createdAt?: any;
22
26
  updatedAt?: any;
27
+ description?: string | undefined;
23
28
  status?: string | undefined;
24
29
  pair?: string | undefined;
30
+ gain?: string | undefined;
31
+ profit_amount?: any;
32
+ profit_ratio?: any;
33
+ close_date?: any;
25
34
  image: string;
26
35
  _id: string | {};
27
- description: string;
28
- traderId: string;
29
- event: string;
30
36
  userId: string;
37
+ event: string;
38
+ traderId: string;
31
39
  extraContent: string;
32
40
  icon: string;
33
41
  }, HookContext<TradersPodsEventsService<import("./events.class").TradersPodsEventsParams>>>;
34
42
  export declare const tradersPodsEventsExternalResolver: import("@feathersjs/schema").Resolver<{
35
43
  createdAt?: any;
36
44
  updatedAt?: any;
45
+ description?: string | undefined;
37
46
  status?: string | undefined;
38
47
  pair?: string | undefined;
48
+ gain?: string | undefined;
49
+ profit_amount?: any;
50
+ profit_ratio?: any;
51
+ close_date?: any;
39
52
  image: string;
40
53
  _id: string | {};
41
- description: string;
42
- traderId: string;
43
- event: string;
44
54
  userId: string;
55
+ event: string;
56
+ traderId: string;
45
57
  extraContent: string;
46
58
  icon: string;
47
59
  }, HookContext<TradersPodsEventsService<import("./events.class").TradersPodsEventsParams>>>;
@@ -50,13 +62,17 @@ export declare const tradersPodsEventsDataSchema: import("@feathersjs/typebox").
50
62
  image: import("@feathersjs/typebox").TString<string>;
51
63
  event: import("@feathersjs/typebox").TString<string>;
52
64
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
53
- description: import("@feathersjs/typebox").TString<string>;
65
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
54
66
  traderId: import("@feathersjs/typebox").TString<string>;
55
67
  userId: import("@feathersjs/typebox").TString<string>;
56
68
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
57
69
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
58
70
  extraContent: import("@feathersjs/typebox").TString<string>;
59
71
  pair: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
72
+ gain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
73
+ profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
74
+ close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
75
+ profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
60
76
  icon: import("@feathersjs/typebox").TString<string>;
61
77
  }>, ["event", "traderId", "createdAt", "updatedAt", "userId", "status", "description", "icon"]>;
62
78
  export type TradersPodsEventsData = Static<typeof tradersPodsEventsDataSchema>;
@@ -64,14 +80,18 @@ export declare const tradersPodsEventsDataValidator: import("@feathersjs/schema"
64
80
  export declare const tradersPodsEventsDataResolver: import("@feathersjs/schema").Resolver<{
65
81
  createdAt?: any;
66
82
  updatedAt?: any;
83
+ description?: string | undefined;
67
84
  status?: string | undefined;
68
85
  pair?: string | undefined;
86
+ gain?: string | undefined;
87
+ profit_amount?: any;
88
+ profit_ratio?: any;
89
+ close_date?: any;
69
90
  image: string;
70
91
  _id: string | {};
71
- description: string;
72
- traderId: string;
73
- event: string;
74
92
  userId: string;
93
+ event: string;
94
+ traderId: string;
75
95
  extraContent: string;
76
96
  icon: string;
77
97
  }, HookContext<TradersPodsEventsService<import("./events.class").TradersPodsEventsParams>>>;
@@ -80,13 +100,17 @@ export declare const tradersPodsEventsPatchSchema: import("@feathersjs/typebox")
80
100
  image: import("@feathersjs/typebox").TString<string>;
81
101
  event: import("@feathersjs/typebox").TString<string>;
82
102
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
83
- description: import("@feathersjs/typebox").TString<string>;
103
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
84
104
  traderId: import("@feathersjs/typebox").TString<string>;
85
105
  userId: import("@feathersjs/typebox").TString<string>;
86
106
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
87
107
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
88
108
  extraContent: import("@feathersjs/typebox").TString<string>;
89
109
  pair: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
110
+ gain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
111
+ profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
112
+ close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
113
+ profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
90
114
  icon: import("@feathersjs/typebox").TString<string>;
91
115
  }>>;
92
116
  export type TradersPodsEventsPatch = Static<typeof tradersPodsEventsPatchSchema>;
@@ -94,14 +118,18 @@ export declare const tradersPodsEventsPatchValidator: import("@feathersjs/schema
94
118
  export declare const tradersPodsEventsPatchResolver: import("@feathersjs/schema").Resolver<{
95
119
  createdAt?: any;
96
120
  updatedAt?: any;
121
+ description?: string | undefined;
97
122
  status?: string | undefined;
98
123
  pair?: string | undefined;
124
+ gain?: string | undefined;
125
+ profit_amount?: any;
126
+ profit_ratio?: any;
127
+ close_date?: any;
99
128
  image: string;
100
129
  _id: string | {};
101
- description: string;
102
- traderId: string;
103
- event: string;
104
130
  userId: string;
131
+ event: string;
132
+ traderId: string;
105
133
  extraContent: string;
106
134
  icon: string;
107
135
  }, HookContext<TradersPodsEventsService<import("./events.class").TradersPodsEventsParams>>>;
@@ -110,26 +138,34 @@ export declare const tradersPodsEventsQueryProperties: import("@feathersjs/typeb
110
138
  image: import("@feathersjs/typebox").TString<string>;
111
139
  event: import("@feathersjs/typebox").TString<string>;
112
140
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
113
- description: import("@feathersjs/typebox").TString<string>;
141
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
114
142
  traderId: import("@feathersjs/typebox").TString<string>;
115
143
  userId: import("@feathersjs/typebox").TString<string>;
116
144
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
117
145
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
118
146
  extraContent: import("@feathersjs/typebox").TString<string>;
119
147
  pair: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
148
+ gain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
149
+ profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
150
+ close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
151
+ profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
120
152
  icon: import("@feathersjs/typebox").TString<string>;
121
- }>, ["_id", "event", "traderId", "userId", "createdAt"]>;
153
+ }>, ["_id", "event", "traderId", "userId", "createdAt", "event", "profit_amount", "profit_ratio", "close_date", "gain"]>;
122
154
  export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
123
155
  $limit: import("@feathersjs/typebox").TNumber;
124
156
  $skip: import("@feathersjs/typebox").TNumber;
125
157
  $sort: import("@feathersjs/typebox").TObject<{
126
158
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
127
159
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
128
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
129
- event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
130
160
  userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
161
+ event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
162
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
163
+ gain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
164
+ profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
165
+ profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
166
+ close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
131
167
  }>;
132
- $select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "traderId" | "event" | "userId")[]>;
168
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "userId" | "event" | "traderId" | "gain" | "profit_amount" | "profit_ratio" | "close_date")[]>;
133
169
  $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
134
170
  _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<{
135
171
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -137,8 +173,8 @@ export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox")
137
173
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
138
174
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
139
175
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
140
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
141
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
176
+ $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<{}>]>>;
177
+ $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<{}>]>>;
142
178
  }>, import("@feathersjs/typebox").TObject<{
143
179
  [key: string]: import("@feathersjs/typebox").TSchema;
144
180
  } | undefined>]>>]>>;
@@ -148,19 +184,19 @@ export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox")
148
184
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
149
185
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
150
186
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
151
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
152
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
187
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
188
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
153
189
  }>, import("@feathersjs/typebox").TObject<{
154
190
  [key: string]: import("@feathersjs/typebox").TSchema;
155
191
  } | undefined>]>>]>>;
156
- traderId: 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<{
192
+ userId: 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<{
157
193
  $gt: import("@feathersjs/typebox").TString<string>;
158
194
  $gte: import("@feathersjs/typebox").TString<string>;
159
195
  $lt: import("@feathersjs/typebox").TString<string>;
160
196
  $lte: import("@feathersjs/typebox").TString<string>;
161
197
  $ne: import("@feathersjs/typebox").TString<string>;
162
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
163
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
198
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
199
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
164
200
  }>, import("@feathersjs/typebox").TObject<{
165
201
  [key: string]: import("@feathersjs/typebox").TSchema;
166
202
  } | undefined>]>>]>>;
@@ -170,19 +206,63 @@ export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox")
170
206
  $lt: import("@feathersjs/typebox").TString<string>;
171
207
  $lte: import("@feathersjs/typebox").TString<string>;
172
208
  $ne: import("@feathersjs/typebox").TString<string>;
173
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
174
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
209
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
210
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
175
211
  }>, import("@feathersjs/typebox").TObject<{
176
212
  [key: string]: import("@feathersjs/typebox").TSchema;
177
213
  } | undefined>]>>]>>;
178
- userId: 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<{
214
+ traderId: 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<{
179
215
  $gt: import("@feathersjs/typebox").TString<string>;
180
216
  $gte: import("@feathersjs/typebox").TString<string>;
181
217
  $lt: import("@feathersjs/typebox").TString<string>;
182
218
  $lte: import("@feathersjs/typebox").TString<string>;
183
219
  $ne: import("@feathersjs/typebox").TString<string>;
184
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
185
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
220
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
221
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
222
+ }>, import("@feathersjs/typebox").TObject<{
223
+ [key: string]: import("@feathersjs/typebox").TSchema;
224
+ } | undefined>]>>]>>;
225
+ gain: 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<{
226
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
227
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
228
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
229
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
230
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
231
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
232
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
233
+ }>, import("@feathersjs/typebox").TObject<{
234
+ [key: string]: import("@feathersjs/typebox").TSchema;
235
+ } | undefined>]>>]>>;
236
+ profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
237
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
238
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
239
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
240
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
241
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
242
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
243
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
244
+ }>, import("@feathersjs/typebox").TObject<{
245
+ [key: string]: import("@feathersjs/typebox").TSchema;
246
+ } | undefined>]>>]>>;
247
+ profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
248
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
249
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
250
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
251
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
252
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
253
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
254
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
255
+ }>, import("@feathersjs/typebox").TObject<{
256
+ [key: string]: import("@feathersjs/typebox").TSchema;
257
+ } | undefined>]>>]>>;
258
+ close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
259
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
260
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
261
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
262
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
263
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
264
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
265
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
186
266
  }>, import("@feathersjs/typebox").TObject<{
187
267
  [key: string]: import("@feathersjs/typebox").TSchema;
188
268
  } | undefined>]>>]>>;
@@ -194,8 +274,8 @@ export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox")
194
274
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
195
275
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
196
276
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
197
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
198
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
277
+ $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<{}>]>>;
278
+ $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<{}>]>>;
199
279
  }>, import("@feathersjs/typebox").TObject<{
200
280
  [key: string]: import("@feathersjs/typebox").TSchema;
201
281
  } | undefined>]>>]>>;
@@ -205,19 +285,19 @@ export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox")
205
285
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
206
286
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
207
287
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
208
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
209
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
288
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
289
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
210
290
  }>, import("@feathersjs/typebox").TObject<{
211
291
  [key: string]: import("@feathersjs/typebox").TSchema;
212
292
  } | undefined>]>>]>>;
213
- traderId: 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<{
293
+ userId: 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<{
214
294
  $gt: import("@feathersjs/typebox").TString<string>;
215
295
  $gte: import("@feathersjs/typebox").TString<string>;
216
296
  $lt: import("@feathersjs/typebox").TString<string>;
217
297
  $lte: import("@feathersjs/typebox").TString<string>;
218
298
  $ne: import("@feathersjs/typebox").TString<string>;
219
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
220
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
299
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
300
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
221
301
  }>, import("@feathersjs/typebox").TObject<{
222
302
  [key: string]: import("@feathersjs/typebox").TSchema;
223
303
  } | undefined>]>>]>>;
@@ -227,19 +307,63 @@ export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox")
227
307
  $lt: import("@feathersjs/typebox").TString<string>;
228
308
  $lte: import("@feathersjs/typebox").TString<string>;
229
309
  $ne: import("@feathersjs/typebox").TString<string>;
230
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
231
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
310
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
311
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
232
312
  }>, import("@feathersjs/typebox").TObject<{
233
313
  [key: string]: import("@feathersjs/typebox").TSchema;
234
314
  } | undefined>]>>]>>;
235
- userId: 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<{
315
+ traderId: 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<{
236
316
  $gt: import("@feathersjs/typebox").TString<string>;
237
317
  $gte: import("@feathersjs/typebox").TString<string>;
238
318
  $lt: import("@feathersjs/typebox").TString<string>;
239
319
  $lte: import("@feathersjs/typebox").TString<string>;
240
320
  $ne: import("@feathersjs/typebox").TString<string>;
241
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
242
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
321
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
322
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
323
+ }>, import("@feathersjs/typebox").TObject<{
324
+ [key: string]: import("@feathersjs/typebox").TSchema;
325
+ } | undefined>]>>]>>;
326
+ gain: 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<{
327
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
328
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
329
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
330
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
331
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
332
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
333
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
334
+ }>, import("@feathersjs/typebox").TObject<{
335
+ [key: string]: import("@feathersjs/typebox").TSchema;
336
+ } | undefined>]>>]>>;
337
+ profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
338
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
339
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
340
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
341
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
342
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
343
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
344
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
345
+ }>, import("@feathersjs/typebox").TObject<{
346
+ [key: string]: import("@feathersjs/typebox").TSchema;
347
+ } | undefined>]>>]>>;
348
+ profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
349
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
350
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
351
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
352
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
353
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
354
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
355
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
356
+ }>, import("@feathersjs/typebox").TObject<{
357
+ [key: string]: import("@feathersjs/typebox").TSchema;
358
+ } | undefined>]>>]>>;
359
+ close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
360
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
361
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
362
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
363
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
364
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
365
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
366
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
243
367
  }>, import("@feathersjs/typebox").TObject<{
244
368
  [key: string]: import("@feathersjs/typebox").TSchema;
245
369
  } | undefined>]>>]>>;
@@ -252,8 +376,8 @@ export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox")
252
376
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
253
377
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
254
378
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
255
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
256
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
379
+ $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<{}>]>>;
380
+ $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<{}>]>>;
257
381
  }>, import("@feathersjs/typebox").TObject<{
258
382
  [key: string]: import("@feathersjs/typebox").TSchema;
259
383
  } | undefined>]>>]>>;
@@ -263,19 +387,19 @@ export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox")
263
387
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
264
388
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
265
389
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
266
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
267
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
390
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
391
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
268
392
  }>, import("@feathersjs/typebox").TObject<{
269
393
  [key: string]: import("@feathersjs/typebox").TSchema;
270
394
  } | undefined>]>>]>>;
271
- traderId: 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<{
395
+ userId: 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<{
272
396
  $gt: import("@feathersjs/typebox").TString<string>;
273
397
  $gte: import("@feathersjs/typebox").TString<string>;
274
398
  $lt: import("@feathersjs/typebox").TString<string>;
275
399
  $lte: import("@feathersjs/typebox").TString<string>;
276
400
  $ne: import("@feathersjs/typebox").TString<string>;
277
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
278
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
401
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
402
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
279
403
  }>, import("@feathersjs/typebox").TObject<{
280
404
  [key: string]: import("@feathersjs/typebox").TSchema;
281
405
  } | undefined>]>>]>>;
@@ -285,19 +409,63 @@ export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox")
285
409
  $lt: import("@feathersjs/typebox").TString<string>;
286
410
  $lte: import("@feathersjs/typebox").TString<string>;
287
411
  $ne: import("@feathersjs/typebox").TString<string>;
288
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
289
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
412
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
413
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
290
414
  }>, import("@feathersjs/typebox").TObject<{
291
415
  [key: string]: import("@feathersjs/typebox").TSchema;
292
416
  } | undefined>]>>]>>;
293
- userId: 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<{
417
+ traderId: 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<{
294
418
  $gt: import("@feathersjs/typebox").TString<string>;
295
419
  $gte: import("@feathersjs/typebox").TString<string>;
296
420
  $lt: import("@feathersjs/typebox").TString<string>;
297
421
  $lte: import("@feathersjs/typebox").TString<string>;
298
422
  $ne: import("@feathersjs/typebox").TString<string>;
299
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
300
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
423
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
424
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
425
+ }>, import("@feathersjs/typebox").TObject<{
426
+ [key: string]: import("@feathersjs/typebox").TSchema;
427
+ } | undefined>]>>]>>;
428
+ gain: 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<{
429
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
430
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
431
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
432
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
433
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
434
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
435
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
436
+ }>, import("@feathersjs/typebox").TObject<{
437
+ [key: string]: import("@feathersjs/typebox").TSchema;
438
+ } | undefined>]>>]>>;
439
+ profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
440
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
441
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
442
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
443
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
444
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
445
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
446
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
447
+ }>, import("@feathersjs/typebox").TObject<{
448
+ [key: string]: import("@feathersjs/typebox").TSchema;
449
+ } | undefined>]>>]>>;
450
+ profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
451
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
452
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
453
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
454
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
455
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
456
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
457
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
458
+ }>, import("@feathersjs/typebox").TObject<{
459
+ [key: string]: import("@feathersjs/typebox").TSchema;
460
+ } | undefined>]>>]>>;
461
+ close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
462
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
463
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
464
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
465
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
466
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
467
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
468
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
301
469
  }>, import("@feathersjs/typebox").TObject<{
302
470
  [key: string]: import("@feathersjs/typebox").TSchema;
303
471
  } | undefined>]>>]>>;
@@ -309,8 +477,8 @@ export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox")
309
477
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
310
478
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
311
479
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
312
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
313
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
480
+ $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<{}>]>>;
481
+ $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<{}>]>>;
314
482
  }>, import("@feathersjs/typebox").TObject<{
315
483
  [key: string]: import("@feathersjs/typebox").TSchema;
316
484
  } | undefined>]>>]>>;
@@ -320,19 +488,19 @@ export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox")
320
488
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
321
489
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
322
490
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
323
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
324
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
491
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
492
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
325
493
  }>, import("@feathersjs/typebox").TObject<{
326
494
  [key: string]: import("@feathersjs/typebox").TSchema;
327
495
  } | undefined>]>>]>>;
328
- traderId: 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<{
496
+ userId: 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<{
329
497
  $gt: import("@feathersjs/typebox").TString<string>;
330
498
  $gte: import("@feathersjs/typebox").TString<string>;
331
499
  $lt: import("@feathersjs/typebox").TString<string>;
332
500
  $lte: import("@feathersjs/typebox").TString<string>;
333
501
  $ne: import("@feathersjs/typebox").TString<string>;
334
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
335
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
502
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
503
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
336
504
  }>, import("@feathersjs/typebox").TObject<{
337
505
  [key: string]: import("@feathersjs/typebox").TSchema;
338
506
  } | undefined>]>>]>>;
@@ -342,19 +510,63 @@ export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox")
342
510
  $lt: import("@feathersjs/typebox").TString<string>;
343
511
  $lte: import("@feathersjs/typebox").TString<string>;
344
512
  $ne: import("@feathersjs/typebox").TString<string>;
345
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
346
- $nin: import("@feathersjs/typebox").TArray<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>>;
347
515
  }>, import("@feathersjs/typebox").TObject<{
348
516
  [key: string]: import("@feathersjs/typebox").TSchema;
349
517
  } | undefined>]>>]>>;
350
- userId: 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<{
518
+ traderId: 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<{
351
519
  $gt: import("@feathersjs/typebox").TString<string>;
352
520
  $gte: import("@feathersjs/typebox").TString<string>;
353
521
  $lt: import("@feathersjs/typebox").TString<string>;
354
522
  $lte: import("@feathersjs/typebox").TString<string>;
355
523
  $ne: import("@feathersjs/typebox").TString<string>;
356
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
357
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
524
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
525
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
526
+ }>, import("@feathersjs/typebox").TObject<{
527
+ [key: string]: import("@feathersjs/typebox").TSchema;
528
+ } | undefined>]>>]>>;
529
+ gain: 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
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
531
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
532
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
533
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
534
+ $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>>>;
537
+ }>, import("@feathersjs/typebox").TObject<{
538
+ [key: string]: import("@feathersjs/typebox").TSchema;
539
+ } | undefined>]>>]>>;
540
+ profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
541
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
542
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
543
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
544
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
545
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
546
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
547
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
548
+ }>, import("@feathersjs/typebox").TObject<{
549
+ [key: string]: import("@feathersjs/typebox").TSchema;
550
+ } | undefined>]>>]>>;
551
+ profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
552
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
553
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
554
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
555
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
556
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
557
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
558
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
559
+ }>, import("@feathersjs/typebox").TObject<{
560
+ [key: string]: import("@feathersjs/typebox").TSchema;
561
+ } | undefined>]>>]>>;
562
+ close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
563
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
564
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
565
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
566
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
567
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
568
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
569
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
358
570
  }>, import("@feathersjs/typebox").TObject<{
359
571
  [key: string]: import("@feathersjs/typebox").TSchema;
360
572
  } | undefined>]>>]>>;
@@ -367,11 +579,15 @@ export declare const tradersPodsEventsQueryResolver: import("@feathersjs/schema"
367
579
  $sort: {
368
580
  _id?: number | undefined;
369
581
  createdAt?: number | undefined;
370
- traderId?: number | undefined;
371
- event?: number | undefined;
372
582
  userId?: number | undefined;
583
+ event?: number | undefined;
584
+ traderId?: number | undefined;
585
+ gain?: number | undefined;
586
+ profit_amount?: number | undefined;
587
+ profit_ratio?: number | undefined;
588
+ close_date?: number | undefined;
373
589
  };
374
- $select: ("_id" | "createdAt" | "traderId" | "event" | "userId")[];
590
+ $select: ("_id" | "createdAt" | "userId" | "event" | "traderId" | "gain" | "profit_amount" | "profit_ratio" | "close_date")[];
375
591
  $and: ({
376
592
  _id?: string | {} | Partial<{
377
593
  $gt: string | {};
@@ -379,18 +595,18 @@ export declare const tradersPodsEventsQueryResolver: import("@feathersjs/schema"
379
595
  $lt: string | {};
380
596
  $lte: string | {};
381
597
  $ne: string | {};
382
- $in: (string | {})[];
383
- $nin: (string | {})[];
598
+ $in: string | {} | (string | {})[];
599
+ $nin: string | {} | (string | {})[];
384
600
  } & {}> | undefined;
385
601
  createdAt?: any;
386
- traderId?: string | Partial<{
602
+ userId?: string | Partial<{
387
603
  $gt: string;
388
604
  $gte: string;
389
605
  $lt: string;
390
606
  $lte: string;
391
607
  $ne: string;
392
- $in: string[];
393
- $nin: string[];
608
+ $in: string | string[];
609
+ $nin: string | string[];
394
610
  } & {}> | undefined;
395
611
  event?: string | Partial<{
396
612
  $gt: string;
@@ -398,18 +614,30 @@ export declare const tradersPodsEventsQueryResolver: import("@feathersjs/schema"
398
614
  $lt: string;
399
615
  $lte: string;
400
616
  $ne: string;
401
- $in: string[];
402
- $nin: string[];
617
+ $in: string | string[];
618
+ $nin: string | string[];
403
619
  } & {}> | undefined;
404
- userId?: string | Partial<{
620
+ traderId?: string | Partial<{
405
621
  $gt: string;
406
622
  $gte: string;
407
623
  $lt: string;
408
624
  $lte: string;
409
625
  $ne: string;
410
- $in: string[];
411
- $nin: string[];
626
+ $in: string | string[];
627
+ $nin: string | string[];
628
+ } & {}> | undefined;
629
+ gain?: string | Partial<{
630
+ $gt?: string | undefined;
631
+ $gte?: string | undefined;
632
+ $lt?: string | undefined;
633
+ $lte?: string | undefined;
634
+ $ne?: string | undefined;
635
+ $in: string | string[];
636
+ $nin: string | string[];
412
637
  } & {}> | undefined;
638
+ profit_amount?: any;
639
+ profit_ratio?: any;
640
+ close_date?: any;
413
641
  } | {
414
642
  $or: {
415
643
  _id?: string | {} | Partial<{
@@ -418,18 +646,18 @@ export declare const tradersPodsEventsQueryResolver: import("@feathersjs/schema"
418
646
  $lt: string | {};
419
647
  $lte: string | {};
420
648
  $ne: string | {};
421
- $in: (string | {})[];
422
- $nin: (string | {})[];
649
+ $in: string | {} | (string | {})[];
650
+ $nin: string | {} | (string | {})[];
423
651
  } & {}> | undefined;
424
652
  createdAt?: any;
425
- traderId?: string | Partial<{
653
+ userId?: string | Partial<{
426
654
  $gt: string;
427
655
  $gte: string;
428
656
  $lt: string;
429
657
  $lte: string;
430
658
  $ne: string;
431
- $in: string[];
432
- $nin: string[];
659
+ $in: string | string[];
660
+ $nin: string | string[];
433
661
  } & {}> | undefined;
434
662
  event?: string | Partial<{
435
663
  $gt: string;
@@ -437,18 +665,30 @@ export declare const tradersPodsEventsQueryResolver: import("@feathersjs/schema"
437
665
  $lt: string;
438
666
  $lte: string;
439
667
  $ne: string;
440
- $in: string[];
441
- $nin: string[];
668
+ $in: string | string[];
669
+ $nin: string | string[];
442
670
  } & {}> | undefined;
443
- userId?: string | Partial<{
671
+ traderId?: string | Partial<{
444
672
  $gt: string;
445
673
  $gte: string;
446
674
  $lt: string;
447
675
  $lte: string;
448
676
  $ne: string;
449
- $in: string[];
450
- $nin: string[];
677
+ $in: string | string[];
678
+ $nin: string | string[];
679
+ } & {}> | undefined;
680
+ gain?: string | Partial<{
681
+ $gt?: string | undefined;
682
+ $gte?: string | undefined;
683
+ $lt?: string | undefined;
684
+ $lte?: string | undefined;
685
+ $ne?: string | undefined;
686
+ $in: string | string[];
687
+ $nin: string | string[];
451
688
  } & {}> | undefined;
689
+ profit_amount?: any;
690
+ profit_ratio?: any;
691
+ close_date?: any;
452
692
  }[];
453
693
  })[];
454
694
  $or: {
@@ -458,18 +698,18 @@ export declare const tradersPodsEventsQueryResolver: import("@feathersjs/schema"
458
698
  $lt: string | {};
459
699
  $lte: string | {};
460
700
  $ne: string | {};
461
- $in: (string | {})[];
462
- $nin: (string | {})[];
701
+ $in: string | {} | (string | {})[];
702
+ $nin: string | {} | (string | {})[];
463
703
  } & {}> | undefined;
464
704
  createdAt?: any;
465
- traderId?: string | Partial<{
705
+ userId?: string | Partial<{
466
706
  $gt: string;
467
707
  $gte: string;
468
708
  $lt: string;
469
709
  $lte: string;
470
710
  $ne: string;
471
- $in: string[];
472
- $nin: string[];
711
+ $in: string | string[];
712
+ $nin: string | string[];
473
713
  } & {}> | undefined;
474
714
  event?: string | Partial<{
475
715
  $gt: string;
@@ -477,18 +717,30 @@ export declare const tradersPodsEventsQueryResolver: import("@feathersjs/schema"
477
717
  $lt: string;
478
718
  $lte: string;
479
719
  $ne: string;
480
- $in: string[];
481
- $nin: string[];
720
+ $in: string | string[];
721
+ $nin: string | string[];
482
722
  } & {}> | undefined;
483
- userId?: string | Partial<{
723
+ traderId?: string | Partial<{
484
724
  $gt: string;
485
725
  $gte: string;
486
726
  $lt: string;
487
727
  $lte: string;
488
728
  $ne: string;
489
- $in: string[];
490
- $nin: string[];
729
+ $in: string | string[];
730
+ $nin: string | string[];
731
+ } & {}> | undefined;
732
+ gain?: string | Partial<{
733
+ $gt?: string | undefined;
734
+ $gte?: string | undefined;
735
+ $lt?: string | undefined;
736
+ $lte?: string | undefined;
737
+ $ne?: string | undefined;
738
+ $in: string | string[];
739
+ $nin: string | string[];
491
740
  } & {}> | undefined;
741
+ profit_amount?: any;
742
+ profit_ratio?: any;
743
+ close_date?: any;
492
744
  }[];
493
745
  }> & {
494
746
  _id?: string | {} | Partial<{
@@ -497,18 +749,18 @@ export declare const tradersPodsEventsQueryResolver: import("@feathersjs/schema"
497
749
  $lt: string | {};
498
750
  $lte: string | {};
499
751
  $ne: string | {};
500
- $in: (string | {})[];
501
- $nin: (string | {})[];
752
+ $in: string | {} | (string | {})[];
753
+ $nin: string | {} | (string | {})[];
502
754
  } & {}> | undefined;
503
755
  createdAt?: any;
504
- traderId?: string | Partial<{
756
+ userId?: string | Partial<{
505
757
  $gt: string;
506
758
  $gte: string;
507
759
  $lt: string;
508
760
  $lte: string;
509
761
  $ne: string;
510
- $in: string[];
511
- $nin: string[];
762
+ $in: string | string[];
763
+ $nin: string | string[];
512
764
  } & {}> | undefined;
513
765
  event?: string | Partial<{
514
766
  $gt: string;
@@ -516,16 +768,28 @@ export declare const tradersPodsEventsQueryResolver: import("@feathersjs/schema"
516
768
  $lt: string;
517
769
  $lte: string;
518
770
  $ne: string;
519
- $in: string[];
520
- $nin: string[];
771
+ $in: string | string[];
772
+ $nin: string | string[];
521
773
  } & {}> | undefined;
522
- userId?: string | Partial<{
774
+ traderId?: string | Partial<{
523
775
  $gt: string;
524
776
  $gte: string;
525
777
  $lt: string;
526
778
  $lte: string;
527
779
  $ne: string;
528
- $in: string[];
529
- $nin: string[];
780
+ $in: string | string[];
781
+ $nin: string | string[];
782
+ } & {}> | undefined;
783
+ gain?: string | Partial<{
784
+ $gt?: string | undefined;
785
+ $gte?: string | undefined;
786
+ $lt?: string | undefined;
787
+ $lte?: string | undefined;
788
+ $ne?: string | undefined;
789
+ $in: string | string[];
790
+ $nin: string | string[];
530
791
  } & {}> | undefined;
792
+ profit_amount?: any;
793
+ profit_ratio?: any;
794
+ close_date?: any;
531
795
  } & {}, HookContext<TradersPodsEventsService<import("./events.class").TradersPodsEventsParams>>>;