@cryptorobot.ai/client 0.0.16 → 0.0.18
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.
- package/lib/configuration.d.ts +17 -0
- package/lib/helpers/app.helper.d.ts +4 -0
- package/lib/helpers/logging.helper.d.ts +7 -6
- package/lib/helpers/queue.helper.d.ts +5 -0
- package/lib/helpers/telegram.helper.d.ts +7 -0
- package/lib/helpers/trader.helper.d.ts +2 -0
- package/lib/hooks/bootstrap-user-telegram.d.ts +2 -0
- package/lib/hooks/bootstrap-user-traders.d.ts +2 -0
- package/lib/hooks/init-data-folder.d.ts +2 -0
- package/lib/hooks/setup-aws-sdk.d.ts +2 -0
- package/lib/hooks/setup-cronjobs.d.ts +2 -0
- package/lib/hooks/setup-queues.d.ts +3 -0
- package/lib/hooks/setup-telegram-client.d.ts +3 -0
- package/lib/hooks/telegram-create-group.d.ts +2 -0
- package/lib/hooks/telegram-delete-group.d.ts +2 -0
- package/lib/hooks/telegram-update-group.d.ts +2 -0
- package/lib/hooks/tickers-fetch.d.ts +1 -1
- package/lib/hooks/traders/pods-process-worker.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.schema.d.ts +12 -44
- package/lib/services/exchanges/download/download.schema.d.ts +16 -48
- package/lib/services/exchanges/exchanges.schema.d.ts +12 -44
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +12 -44
- package/lib/services/messages/messages.schema.d.ts +24 -8
- package/lib/services/strategies/strategies.schema.d.ts +384 -104
- package/lib/services/traders/pods/api/api.schema.d.ts +1076 -268
- package/lib/services/traders/pods/pods.schema.d.ts +736 -208
- package/lib/services/traders/traders.schema.d.ts +340 -60
- package/lib/services/users/users.schema.d.ts +24 -8
- package/lib/telegram-get-credentials.d.ts +1 -0
- package/package.json +1 -1
|
@@ -33,13 +33,9 @@ export declare const exchangesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
33
33
|
left: import("@feathersjs/typebox").TString<string>;
|
|
34
34
|
right: import("@feathersjs/typebox").TString<string>;
|
|
35
35
|
}>>>;
|
|
36
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
37
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
38
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
39
|
-
}>>>;
|
|
36
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
40
37
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
41
38
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
42
|
-
key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
43
39
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
44
40
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
45
41
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -60,13 +56,13 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
60
56
|
name?: any;
|
|
61
57
|
apiKey?: string | undefined;
|
|
62
58
|
secret?: string | undefined;
|
|
63
|
-
key?: string | undefined;
|
|
64
59
|
avatar?: any;
|
|
65
60
|
createdAt?: any;
|
|
66
61
|
updatedAt?: any;
|
|
67
62
|
userId?: string | {} | undefined;
|
|
68
63
|
which?: string | undefined;
|
|
69
64
|
connected?: boolean | undefined;
|
|
65
|
+
token?: string | undefined;
|
|
70
66
|
downloaded?: {
|
|
71
67
|
updatedAt: any;
|
|
72
68
|
size: string;
|
|
@@ -92,10 +88,7 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
92
88
|
left: string;
|
|
93
89
|
right: string;
|
|
94
90
|
}[] | undefined;
|
|
95
|
-
whitelist?:
|
|
96
|
-
left: string;
|
|
97
|
-
right: string;
|
|
98
|
-
}[] | undefined;
|
|
91
|
+
whitelist?: any[] | undefined;
|
|
99
92
|
ccxt_async_config?: any;
|
|
100
93
|
requiredCredentials?: any;
|
|
101
94
|
uid?: string | undefined;
|
|
@@ -103,7 +96,6 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
103
96
|
twofa?: string | undefined;
|
|
104
97
|
privateKey?: string | undefined;
|
|
105
98
|
walletAddress?: string | undefined;
|
|
106
|
-
token?: string | undefined;
|
|
107
99
|
__v?: any;
|
|
108
100
|
_id: string | {};
|
|
109
101
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
@@ -112,13 +104,13 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
|
|
|
112
104
|
name?: any;
|
|
113
105
|
apiKey?: string | undefined;
|
|
114
106
|
secret?: string | undefined;
|
|
115
|
-
key?: string | undefined;
|
|
116
107
|
avatar?: any;
|
|
117
108
|
createdAt?: any;
|
|
118
109
|
updatedAt?: any;
|
|
119
110
|
userId?: string | {} | undefined;
|
|
120
111
|
which?: string | undefined;
|
|
121
112
|
connected?: boolean | undefined;
|
|
113
|
+
token?: string | undefined;
|
|
122
114
|
downloaded?: {
|
|
123
115
|
updatedAt: any;
|
|
124
116
|
size: string;
|
|
@@ -144,10 +136,7 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
|
|
|
144
136
|
left: string;
|
|
145
137
|
right: string;
|
|
146
138
|
}[] | undefined;
|
|
147
|
-
whitelist?:
|
|
148
|
-
left: string;
|
|
149
|
-
right: string;
|
|
150
|
-
}[] | undefined;
|
|
139
|
+
whitelist?: any[] | undefined;
|
|
151
140
|
ccxt_async_config?: any;
|
|
152
141
|
requiredCredentials?: any;
|
|
153
142
|
uid?: string | undefined;
|
|
@@ -155,7 +144,6 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
|
|
|
155
144
|
twofa?: string | undefined;
|
|
156
145
|
privateKey?: string | undefined;
|
|
157
146
|
walletAddress?: string | undefined;
|
|
158
|
-
token?: string | undefined;
|
|
159
147
|
__v?: any;
|
|
160
148
|
_id: string | {};
|
|
161
149
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
@@ -191,13 +179,9 @@ export declare const exchangesDataSchema: import("@feathersjs/typebox").TPick<im
|
|
|
191
179
|
left: import("@feathersjs/typebox").TString<string>;
|
|
192
180
|
right: import("@feathersjs/typebox").TString<string>;
|
|
193
181
|
}>>>;
|
|
194
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
195
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
196
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
197
|
-
}>>>;
|
|
182
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
198
183
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
199
184
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
200
|
-
key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
201
185
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
202
186
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
203
187
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -218,13 +202,13 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
|
|
|
218
202
|
name?: any;
|
|
219
203
|
apiKey?: string | undefined;
|
|
220
204
|
secret?: string | undefined;
|
|
221
|
-
key?: string | undefined;
|
|
222
205
|
avatar?: any;
|
|
223
206
|
createdAt?: any;
|
|
224
207
|
updatedAt?: any;
|
|
225
208
|
userId?: string | {} | undefined;
|
|
226
209
|
which?: string | undefined;
|
|
227
210
|
connected?: boolean | undefined;
|
|
211
|
+
token?: string | undefined;
|
|
228
212
|
downloaded?: {
|
|
229
213
|
updatedAt: any;
|
|
230
214
|
size: string;
|
|
@@ -250,10 +234,7 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
|
|
|
250
234
|
left: string;
|
|
251
235
|
right: string;
|
|
252
236
|
}[] | undefined;
|
|
253
|
-
whitelist?:
|
|
254
|
-
left: string;
|
|
255
|
-
right: string;
|
|
256
|
-
}[] | undefined;
|
|
237
|
+
whitelist?: any[] | undefined;
|
|
257
238
|
ccxt_async_config?: any;
|
|
258
239
|
requiredCredentials?: any;
|
|
259
240
|
uid?: string | undefined;
|
|
@@ -261,7 +242,6 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
|
|
|
261
242
|
twofa?: string | undefined;
|
|
262
243
|
privateKey?: string | undefined;
|
|
263
244
|
walletAddress?: string | undefined;
|
|
264
|
-
token?: string | undefined;
|
|
265
245
|
__v?: any;
|
|
266
246
|
_id: string | {};
|
|
267
247
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
@@ -297,13 +277,9 @@ export declare const exchangesPatchSchema: import("@feathersjs/typebox").TPartia
|
|
|
297
277
|
left: import("@feathersjs/typebox").TString<string>;
|
|
298
278
|
right: import("@feathersjs/typebox").TString<string>;
|
|
299
279
|
}>>>;
|
|
300
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
301
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
302
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
303
|
-
}>>>;
|
|
280
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
304
281
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
305
282
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
306
|
-
key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
307
283
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
308
284
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
309
285
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -324,13 +300,13 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
|
|
|
324
300
|
name?: any;
|
|
325
301
|
apiKey?: string | undefined;
|
|
326
302
|
secret?: string | undefined;
|
|
327
|
-
key?: string | undefined;
|
|
328
303
|
avatar?: any;
|
|
329
304
|
createdAt?: any;
|
|
330
305
|
updatedAt?: any;
|
|
331
306
|
userId?: string | {} | undefined;
|
|
332
307
|
which?: string | undefined;
|
|
333
308
|
connected?: boolean | undefined;
|
|
309
|
+
token?: string | undefined;
|
|
334
310
|
downloaded?: {
|
|
335
311
|
updatedAt: any;
|
|
336
312
|
size: string;
|
|
@@ -356,10 +332,7 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
|
|
|
356
332
|
left: string;
|
|
357
333
|
right: string;
|
|
358
334
|
}[] | undefined;
|
|
359
|
-
whitelist?:
|
|
360
|
-
left: string;
|
|
361
|
-
right: string;
|
|
362
|
-
}[] | undefined;
|
|
335
|
+
whitelist?: any[] | undefined;
|
|
363
336
|
ccxt_async_config?: any;
|
|
364
337
|
requiredCredentials?: any;
|
|
365
338
|
uid?: string | undefined;
|
|
@@ -367,7 +340,6 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
|
|
|
367
340
|
twofa?: string | undefined;
|
|
368
341
|
privateKey?: string | undefined;
|
|
369
342
|
walletAddress?: string | undefined;
|
|
370
|
-
token?: string | undefined;
|
|
371
343
|
__v?: any;
|
|
372
344
|
_id: string | {};
|
|
373
345
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
@@ -403,13 +375,9 @@ export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPi
|
|
|
403
375
|
left: import("@feathersjs/typebox").TString<string>;
|
|
404
376
|
right: import("@feathersjs/typebox").TString<string>;
|
|
405
377
|
}>>>;
|
|
406
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
407
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
408
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
409
|
-
}>>>;
|
|
378
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
410
379
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
411
380
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
412
|
-
key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
413
381
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
414
382
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
415
383
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -36,13 +36,9 @@ export declare const exchangesTickerSchema: import("@feathersjs/typebox").TObjec
|
|
|
36
36
|
left: import("@feathersjs/typebox").TString<string>;
|
|
37
37
|
right: import("@feathersjs/typebox").TString<string>;
|
|
38
38
|
}>>>;
|
|
39
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
40
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
41
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
42
|
-
}>>>;
|
|
39
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
43
40
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
44
41
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
45
|
-
key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
46
42
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
47
43
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
48
44
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -71,13 +67,13 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
71
67
|
name?: any;
|
|
72
68
|
apiKey?: string | undefined;
|
|
73
69
|
secret?: string | undefined;
|
|
74
|
-
key?: string | undefined;
|
|
75
70
|
avatar?: any;
|
|
76
71
|
createdAt?: any;
|
|
77
72
|
updatedAt?: any;
|
|
78
73
|
userId?: string | {} | undefined;
|
|
79
74
|
which?: string | undefined;
|
|
80
75
|
connected?: boolean | undefined;
|
|
76
|
+
token?: string | undefined;
|
|
81
77
|
downloaded?: {
|
|
82
78
|
updatedAt: any;
|
|
83
79
|
size: string;
|
|
@@ -103,10 +99,7 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
103
99
|
left: string;
|
|
104
100
|
right: string;
|
|
105
101
|
}[] | undefined;
|
|
106
|
-
whitelist?:
|
|
107
|
-
left: string;
|
|
108
|
-
right: string;
|
|
109
|
-
}[] | undefined;
|
|
102
|
+
whitelist?: any[] | undefined;
|
|
110
103
|
ccxt_async_config?: any;
|
|
111
104
|
requiredCredentials?: any;
|
|
112
105
|
uid?: string | undefined;
|
|
@@ -114,7 +107,6 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
114
107
|
twofa?: string | undefined;
|
|
115
108
|
privateKey?: string | undefined;
|
|
116
109
|
walletAddress?: string | undefined;
|
|
117
|
-
token?: string | undefined;
|
|
118
110
|
__v?: any;
|
|
119
111
|
_id: string | {};
|
|
120
112
|
} | undefined;
|
|
@@ -130,13 +122,13 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
130
122
|
name?: any;
|
|
131
123
|
apiKey?: string | undefined;
|
|
132
124
|
secret?: string | undefined;
|
|
133
|
-
key?: string | undefined;
|
|
134
125
|
avatar?: any;
|
|
135
126
|
createdAt?: any;
|
|
136
127
|
updatedAt?: any;
|
|
137
128
|
userId?: string | {} | undefined;
|
|
138
129
|
which?: string | undefined;
|
|
139
130
|
connected?: boolean | undefined;
|
|
131
|
+
token?: string | undefined;
|
|
140
132
|
downloaded?: {
|
|
141
133
|
updatedAt: any;
|
|
142
134
|
size: string;
|
|
@@ -162,10 +154,7 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
162
154
|
left: string;
|
|
163
155
|
right: string;
|
|
164
156
|
}[] | undefined;
|
|
165
|
-
whitelist?:
|
|
166
|
-
left: string;
|
|
167
|
-
right: string;
|
|
168
|
-
}[] | undefined;
|
|
157
|
+
whitelist?: any[] | undefined;
|
|
169
158
|
ccxt_async_config?: any;
|
|
170
159
|
requiredCredentials?: any;
|
|
171
160
|
uid?: string | undefined;
|
|
@@ -173,7 +162,6 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
173
162
|
twofa?: string | undefined;
|
|
174
163
|
privateKey?: string | undefined;
|
|
175
164
|
walletAddress?: string | undefined;
|
|
176
|
-
token?: string | undefined;
|
|
177
165
|
__v?: any;
|
|
178
166
|
_id: string | {};
|
|
179
167
|
} | undefined;
|
|
@@ -215,13 +203,9 @@ export declare const exchangesTickerDataSchema: import("@feathersjs/typebox").TP
|
|
|
215
203
|
left: import("@feathersjs/typebox").TString<string>;
|
|
216
204
|
right: import("@feathersjs/typebox").TString<string>;
|
|
217
205
|
}>>>;
|
|
218
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
219
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
220
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
221
|
-
}>>>;
|
|
206
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
222
207
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
223
208
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
224
|
-
key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
225
209
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
226
210
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
227
211
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -250,13 +234,13 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
250
234
|
name?: any;
|
|
251
235
|
apiKey?: string | undefined;
|
|
252
236
|
secret?: string | undefined;
|
|
253
|
-
key?: string | undefined;
|
|
254
237
|
avatar?: any;
|
|
255
238
|
createdAt?: any;
|
|
256
239
|
updatedAt?: any;
|
|
257
240
|
userId?: string | {} | undefined;
|
|
258
241
|
which?: string | undefined;
|
|
259
242
|
connected?: boolean | undefined;
|
|
243
|
+
token?: string | undefined;
|
|
260
244
|
downloaded?: {
|
|
261
245
|
updatedAt: any;
|
|
262
246
|
size: string;
|
|
@@ -282,10 +266,7 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
282
266
|
left: string;
|
|
283
267
|
right: string;
|
|
284
268
|
}[] | undefined;
|
|
285
|
-
whitelist?:
|
|
286
|
-
left: string;
|
|
287
|
-
right: string;
|
|
288
|
-
}[] | undefined;
|
|
269
|
+
whitelist?: any[] | undefined;
|
|
289
270
|
ccxt_async_config?: any;
|
|
290
271
|
requiredCredentials?: any;
|
|
291
272
|
uid?: string | undefined;
|
|
@@ -293,7 +274,6 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
293
274
|
twofa?: string | undefined;
|
|
294
275
|
privateKey?: string | undefined;
|
|
295
276
|
walletAddress?: string | undefined;
|
|
296
|
-
token?: string | undefined;
|
|
297
277
|
__v?: any;
|
|
298
278
|
_id: string | {};
|
|
299
279
|
} | undefined;
|
|
@@ -335,13 +315,9 @@ export declare const exchangesTickerPatchSchema: import("@feathersjs/typebox").T
|
|
|
335
315
|
left: import("@feathersjs/typebox").TString<string>;
|
|
336
316
|
right: import("@feathersjs/typebox").TString<string>;
|
|
337
317
|
}>>>;
|
|
338
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
339
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
340
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
341
|
-
}>>>;
|
|
318
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
342
319
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
343
320
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
344
|
-
key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
345
321
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
346
322
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
347
323
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -370,13 +346,13 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
370
346
|
name?: any;
|
|
371
347
|
apiKey?: string | undefined;
|
|
372
348
|
secret?: string | undefined;
|
|
373
|
-
key?: string | undefined;
|
|
374
349
|
avatar?: any;
|
|
375
350
|
createdAt?: any;
|
|
376
351
|
updatedAt?: any;
|
|
377
352
|
userId?: string | {} | undefined;
|
|
378
353
|
which?: string | undefined;
|
|
379
354
|
connected?: boolean | undefined;
|
|
355
|
+
token?: string | undefined;
|
|
380
356
|
downloaded?: {
|
|
381
357
|
updatedAt: any;
|
|
382
358
|
size: string;
|
|
@@ -402,10 +378,7 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
402
378
|
left: string;
|
|
403
379
|
right: string;
|
|
404
380
|
}[] | undefined;
|
|
405
|
-
whitelist?:
|
|
406
|
-
left: string;
|
|
407
|
-
right: string;
|
|
408
|
-
}[] | undefined;
|
|
381
|
+
whitelist?: any[] | undefined;
|
|
409
382
|
ccxt_async_config?: any;
|
|
410
383
|
requiredCredentials?: any;
|
|
411
384
|
uid?: string | undefined;
|
|
@@ -413,7 +386,6 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
413
386
|
twofa?: string | undefined;
|
|
414
387
|
privateKey?: string | undefined;
|
|
415
388
|
walletAddress?: string | undefined;
|
|
416
|
-
token?: string | undefined;
|
|
417
389
|
__v?: any;
|
|
418
390
|
_id: string | {};
|
|
419
391
|
} | undefined;
|
|
@@ -455,13 +427,9 @@ export declare const exchangesTickerQueryProperties: import("@feathersjs/typebox
|
|
|
455
427
|
left: import("@feathersjs/typebox").TString<string>;
|
|
456
428
|
right: import("@feathersjs/typebox").TString<string>;
|
|
457
429
|
}>>>;
|
|
458
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
459
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
460
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
461
|
-
}>>>;
|
|
430
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
462
431
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
463
432
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
464
|
-
key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
465
433
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
466
434
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
467
435
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -41,13 +41,15 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
41
41
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
42
42
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
43
43
|
verifyExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
44
|
-
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
44
|
+
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
45
45
|
resetToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
46
46
|
resetShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
47
47
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
48
48
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
49
49
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
50
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
50
51
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
52
|
+
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
51
53
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
52
54
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
53
55
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -86,11 +88,13 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
86
88
|
verifyTokenShort?: string | null | undefined;
|
|
87
89
|
verifyShortToken?: string | null | undefined;
|
|
88
90
|
verifyExpires?: number | null | undefined;
|
|
89
|
-
verifyChanges?:
|
|
91
|
+
verifyChanges?: any;
|
|
90
92
|
resetToken?: string | null | undefined;
|
|
91
93
|
resetShortToken?: string | null | undefined;
|
|
92
94
|
resetExpires?: number | null | undefined;
|
|
93
95
|
resetAttempts?: number | null | undefined;
|
|
96
|
+
anon?: boolean | undefined;
|
|
97
|
+
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
94
98
|
createdAt?: any;
|
|
95
99
|
updatedAt?: any;
|
|
96
100
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -140,11 +144,13 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
140
144
|
verifyTokenShort?: string | null | undefined;
|
|
141
145
|
verifyShortToken?: string | null | undefined;
|
|
142
146
|
verifyExpires?: number | null | undefined;
|
|
143
|
-
verifyChanges?:
|
|
147
|
+
verifyChanges?: any;
|
|
144
148
|
resetToken?: string | null | undefined;
|
|
145
149
|
resetShortToken?: string | null | undefined;
|
|
146
150
|
resetExpires?: number | null | undefined;
|
|
147
151
|
resetAttempts?: number | null | undefined;
|
|
152
|
+
anon?: boolean | undefined;
|
|
153
|
+
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
148
154
|
createdAt?: any;
|
|
149
155
|
updatedAt?: any;
|
|
150
156
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -205,13 +211,15 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
205
211
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
206
212
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
207
213
|
verifyExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
208
|
-
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
214
|
+
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
209
215
|
resetToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
210
216
|
resetShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
211
217
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
212
218
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
213
219
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
220
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
214
221
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
222
|
+
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
215
223
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
216
224
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
217
225
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -250,11 +258,13 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
250
258
|
verifyTokenShort?: string | null | undefined;
|
|
251
259
|
verifyShortToken?: string | null | undefined;
|
|
252
260
|
verifyExpires?: number | null | undefined;
|
|
253
|
-
verifyChanges?:
|
|
261
|
+
verifyChanges?: any;
|
|
254
262
|
resetToken?: string | null | undefined;
|
|
255
263
|
resetShortToken?: string | null | undefined;
|
|
256
264
|
resetExpires?: number | null | undefined;
|
|
257
265
|
resetAttempts?: number | null | undefined;
|
|
266
|
+
anon?: boolean | undefined;
|
|
267
|
+
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
258
268
|
createdAt?: any;
|
|
259
269
|
updatedAt?: any;
|
|
260
270
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -315,13 +325,15 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
315
325
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
316
326
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
317
327
|
verifyExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
318
|
-
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
328
|
+
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
319
329
|
resetToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
320
330
|
resetShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
321
331
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
322
332
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
323
333
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
334
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
324
335
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
336
|
+
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
325
337
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
326
338
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
327
339
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -360,11 +372,13 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
360
372
|
verifyTokenShort?: string | null | undefined;
|
|
361
373
|
verifyShortToken?: string | null | undefined;
|
|
362
374
|
verifyExpires?: number | null | undefined;
|
|
363
|
-
verifyChanges?:
|
|
375
|
+
verifyChanges?: any;
|
|
364
376
|
resetToken?: string | null | undefined;
|
|
365
377
|
resetShortToken?: string | null | undefined;
|
|
366
378
|
resetExpires?: number | null | undefined;
|
|
367
379
|
resetAttempts?: number | null | undefined;
|
|
380
|
+
anon?: boolean | undefined;
|
|
381
|
+
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
368
382
|
createdAt?: any;
|
|
369
383
|
updatedAt?: any;
|
|
370
384
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -425,13 +439,15 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
425
439
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
426
440
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
427
441
|
verifyExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
428
|
-
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
442
|
+
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
429
443
|
resetToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
430
444
|
resetShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
431
445
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
432
446
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
433
447
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
448
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
434
449
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
450
|
+
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
435
451
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
436
452
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
437
453
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|