@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.
- package/lib/client.d.ts +38 -36
- package/lib/client.js +6 -12
- package/lib/configuration.d.ts +20 -1
- package/lib/firebase-push-notification.d.ts +1 -0
- package/lib/helpers/backtest.helper.d.ts +53 -4
- package/lib/helpers/ccxt.helper.d.ts +75 -0
- package/lib/helpers/deployments.helper.d.ts +72 -0
- package/lib/helpers/funnel.helper.d.ts +17 -0
- package/lib/helpers/hyperopt.helper.d.ts +14 -0
- package/lib/helpers/push-notification.helper.d.ts +7 -0
- package/lib/helpers/queue.helper.d.ts +8 -0
- package/lib/helpers/sqlite3.helper.d.ts +6 -0
- package/lib/helpers/sqs.helper.d.ts +7 -0
- package/lib/helpers/subscription.helper.d.ts +48 -0
- package/lib/helpers/telegram.helper.d.ts +26 -1
- package/lib/helpers/trader.helper.d.ts +26 -0
- package/lib/hooks/application/setup-config-preparation.d.ts +1 -1
- package/lib/hooks/application/setup-info.d.ts +1 -1
- package/lib/hooks/application/setup-load-indicators.d.ts +1 -1
- package/lib/hooks/application/setup-load-strategy-templates.d.ts +1 -1
- package/lib/hooks/aws-prepare-batch-job.d.ts +2 -0
- package/lib/hooks/backtest-copy-candles-from-user-data.d.ts +1 -1
- package/lib/hooks/{backtest-generate-and-start.d.ts → backtest-generate-and-queue.d.ts} +1 -1
- package/lib/hooks/backtest-generate-config.d.ts +6 -0
- package/lib/hooks/backtest-generate-exchange-config.d.ts +6 -0
- package/lib/hooks/backtest-get-results.d.ts +12 -0
- package/lib/hooks/file-generate-config-hyperopt.d.ts +2 -0
- package/lib/hooks/setup-ensure-image.d.ts +3 -0
- package/lib/hooks/setup-firebase.d.ts +2 -0
- package/lib/hooks/setup-homepage.d.ts +3 -0
- package/lib/hooks/setup-mautic.d.ts +3 -0
- package/lib/hooks/setup-mixpanel.d.ts +3 -0
- package/lib/hooks/setup-prepare-maildev-while-in-test-env.d.ts +1 -1
- package/lib/hooks/setup-queues.d.ts +1 -1
- package/lib/hooks/sqlite-reset-database.d.ts +2 -0
- package/lib/hooks/traders/pods-process-worker.d.ts +5 -0
- package/lib/sentry.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +56 -56
- package/lib/services/exchanges/download/download.schema.d.ts +60 -60
- package/lib/services/exchanges/download/webhooks/webhooks.schema.d.ts +84 -84
- package/lib/services/exchanges/exchanges.schema.d.ts +198 -198
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +110 -110
- package/lib/services/homepage/homepage.class.d.ts +15 -0
- package/lib/services/homepage/homepage.d.ts +10 -0
- package/lib/services/homepage/homepage.schema.d.ts +237 -0
- package/lib/services/homepage/homepage.shared.d.ts +4 -0
- package/lib/services/homepage/homepage.shared.js +6 -0
- package/lib/services/markets/markets.schema.d.ts +112 -112
- package/lib/services/messages/messages.schema.d.ts +136 -64
- package/lib/services/strategies/ai/ai.schema.d.ts +32 -32
- package/lib/services/strategies/backtest/backtest.schema.d.ts +394 -84
- package/lib/services/strategies/backtest/results/results.class.d.ts +1 -1
- package/lib/services/strategies/backtest/results/results.schema.d.ts +454 -156
- package/lib/services/strategies/hyperopt/hyperopt.class.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +375 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.d.ts +13 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.js +13 -0
- package/lib/services/strategies/indicators/indicators.schema.d.ts +40 -40
- package/lib/services/strategies/strategies.schema.d.ts +329 -247
- package/lib/services/strategies/templates/templates.schema.d.ts +41 -41
- package/lib/services/stripe/charges/charges.d.ts +1 -1
- package/lib/services/stripe/customers/customers.d.ts +1 -1
- package/lib/services/stripe/customers/paymentintent/paymentintent.d.ts +1 -1
- package/lib/services/stripe/customers/paymentmethods/paymentmethods.d.ts +1 -1
- package/lib/services/stripe/products/products.d.ts +1 -1
- package/lib/services/traders/pods/api/api.class.d.ts +1 -1
- package/lib/services/traders/pods/api/api.schema.d.ts +519 -519
- package/lib/services/traders/pods/events/events.schema.d.ts +375 -111
- package/lib/services/traders/pods/pods.schema.d.ts +384 -384
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +76 -76
- package/lib/services/traders/traders.class.d.ts +7 -1
- package/lib/services/traders/traders.d.ts +1 -0
- package/lib/services/traders/traders.schema.d.ts +852 -380
- package/lib/services/users/users.class.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +158 -52
- package/package.json +24 -16
- package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
|
@@ -54,7 +54,6 @@ export declare const tradersSchema: import("@feathersjs/typebox").TObject<{
|
|
|
54
54
|
traderId: import("@feathersjs/typebox").TAny;
|
|
55
55
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
56
56
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
57
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
58
57
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
59
58
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
60
59
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -179,6 +178,7 @@ export declare const tradersSchema: import("@feathersjs/typebox").TObject<{
|
|
|
179
178
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
180
179
|
}>>;
|
|
181
180
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
181
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
182
182
|
host: import("@feathersjs/typebox").TString<string>;
|
|
183
183
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
184
184
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -195,19 +195,19 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
195
195
|
chat_id: any;
|
|
196
196
|
allow_custom_messages: boolean;
|
|
197
197
|
notification_settings: {
|
|
198
|
-
status: "silent" | "on" | "off";
|
|
199
198
|
entry: "silent" | "on" | "off";
|
|
200
199
|
exit: {
|
|
200
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
201
201
|
roi: "silent" | "on" | "off";
|
|
202
202
|
emergency_exit: "silent" | "on" | "off";
|
|
203
203
|
force_exit: "silent" | "on" | "off";
|
|
204
204
|
exit_signal: "silent" | "on" | "off";
|
|
205
205
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
206
206
|
stop_loss: "silent" | "on" | "off";
|
|
207
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
208
207
|
custom_exit: "silent" | "on" | "off";
|
|
209
208
|
partial_exit: "silent" | "on" | "off";
|
|
210
209
|
};
|
|
210
|
+
status: "silent" | "on" | "off";
|
|
211
211
|
warning: "silent" | "on" | "off";
|
|
212
212
|
startup: "silent" | "on" | "off";
|
|
213
213
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -222,8 +222,6 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
222
222
|
reload: boolean;
|
|
223
223
|
balance_dust_level: number;
|
|
224
224
|
} | undefined;
|
|
225
|
-
dry_run_wallet?: number | undefined;
|
|
226
|
-
max_open_trades?: number | undefined;
|
|
227
225
|
plugins?: {
|
|
228
226
|
number_assets?: number | undefined;
|
|
229
227
|
refresh_period?: number | undefined;
|
|
@@ -232,6 +230,8 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
232
230
|
removeRecentlyListed?: boolean | undefined;
|
|
233
231
|
removeRecentlyListedDays?: number | undefined;
|
|
234
232
|
} | undefined;
|
|
233
|
+
dry_run_wallet?: number | undefined;
|
|
234
|
+
max_open_trades?: number | undefined;
|
|
235
235
|
fiat_display_currency?: string | undefined;
|
|
236
236
|
unfilledtimeout?: {
|
|
237
237
|
entry: number;
|
|
@@ -245,37 +245,36 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
245
245
|
enabled: boolean;
|
|
246
246
|
format: string;
|
|
247
247
|
webhookstatus: {
|
|
248
|
-
|
|
248
|
+
userId: string;
|
|
249
249
|
event: string;
|
|
250
250
|
status: string;
|
|
251
|
-
|
|
251
|
+
traderId: any;
|
|
252
252
|
};
|
|
253
253
|
webhookentry: {
|
|
254
|
-
|
|
255
|
-
traderId: any;
|
|
256
|
-
stake_amount: string;
|
|
254
|
+
userId: string;
|
|
257
255
|
stake_currency: string;
|
|
256
|
+
stake_amount: string;
|
|
258
257
|
event: string;
|
|
259
|
-
|
|
258
|
+
traderId: any;
|
|
260
259
|
pair: string;
|
|
261
260
|
fiat_currency: string;
|
|
262
261
|
};
|
|
263
262
|
webhookentrycancel: {
|
|
264
263
|
limit: string;
|
|
265
|
-
|
|
266
|
-
stake_amount: string;
|
|
264
|
+
userId: string;
|
|
267
265
|
stake_currency: string;
|
|
266
|
+
stake_amount: string;
|
|
268
267
|
event: string;
|
|
269
|
-
|
|
268
|
+
traderId: any;
|
|
270
269
|
pair: string;
|
|
271
270
|
fiat_currency: string;
|
|
272
271
|
};
|
|
273
272
|
webhookentryfill: {
|
|
274
|
-
|
|
275
|
-
stake_amount: string;
|
|
273
|
+
userId: string;
|
|
276
274
|
stake_currency: string;
|
|
275
|
+
stake_amount: string;
|
|
277
276
|
event: string;
|
|
278
|
-
|
|
277
|
+
traderId: any;
|
|
279
278
|
pair: string;
|
|
280
279
|
trade_id: string;
|
|
281
280
|
open_rate: string;
|
|
@@ -284,10 +283,10 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
284
283
|
};
|
|
285
284
|
webhookexit: {
|
|
286
285
|
limit: string;
|
|
287
|
-
|
|
286
|
+
userId: string;
|
|
288
287
|
stake_currency: string;
|
|
289
288
|
event: string;
|
|
290
|
-
|
|
289
|
+
traderId: any;
|
|
291
290
|
pair: string;
|
|
292
291
|
fiat_currency: string;
|
|
293
292
|
trade_id: string;
|
|
@@ -302,22 +301,23 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
302
301
|
};
|
|
303
302
|
webhookexitcancel: {
|
|
304
303
|
limit: string;
|
|
305
|
-
|
|
304
|
+
userId: string;
|
|
306
305
|
stake_currency: string;
|
|
307
306
|
event: string;
|
|
308
|
-
|
|
307
|
+
traderId: any;
|
|
309
308
|
pair: string;
|
|
310
309
|
profit_amount: string;
|
|
311
310
|
profit_ratio: string;
|
|
312
311
|
};
|
|
313
312
|
webhookexitfill: {
|
|
314
|
-
traderId: any;
|
|
315
|
-
event: string;
|
|
316
313
|
userId: string;
|
|
314
|
+
event: string;
|
|
315
|
+
traderId: any;
|
|
317
316
|
pair: string;
|
|
318
317
|
close_rate: string;
|
|
319
318
|
};
|
|
320
319
|
} | undefined;
|
|
320
|
+
reset?: boolean | undefined;
|
|
321
321
|
host: string;
|
|
322
322
|
name: any;
|
|
323
323
|
provider: "docker";
|
|
@@ -327,20 +327,20 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
327
327
|
_id: string | {};
|
|
328
328
|
createdAt: any;
|
|
329
329
|
updatedAt: any;
|
|
330
|
-
|
|
331
|
-
strategyId: string | {};
|
|
332
|
-
stake_amount: string | number;
|
|
333
|
-
stake_currency: string;
|
|
334
|
-
exchangeId: any;
|
|
335
|
-
userId: any;
|
|
330
|
+
connected: boolean;
|
|
336
331
|
which: string;
|
|
332
|
+
userId: any;
|
|
333
|
+
"traders/pods": any;
|
|
337
334
|
exchange: any;
|
|
338
|
-
|
|
335
|
+
exchangeId: any;
|
|
336
|
+
stake_currency: string;
|
|
337
|
+
stake_amount: string | number;
|
|
339
338
|
dry_run: boolean;
|
|
340
339
|
handling: string;
|
|
341
340
|
initial_state: string;
|
|
342
341
|
pairlists: any;
|
|
343
342
|
strategy: any;
|
|
343
|
+
strategyId: string | {};
|
|
344
344
|
entry_pricing: {
|
|
345
345
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
346
346
|
use_order_book?: boolean | undefined;
|
|
@@ -360,12 +360,12 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
360
360
|
api_server: {
|
|
361
361
|
password: string;
|
|
362
362
|
enabled: boolean;
|
|
363
|
+
username: string;
|
|
363
364
|
listen_ip_address: string;
|
|
364
365
|
listen_port: number;
|
|
365
366
|
verbosity: string;
|
|
366
367
|
jwt_secret_key: string;
|
|
367
368
|
CORS_origins: string[];
|
|
368
|
-
username: string;
|
|
369
369
|
};
|
|
370
370
|
pod: string;
|
|
371
371
|
}, HookContext<TradersService<import("./traders.class").TradersParams>>>;
|
|
@@ -378,19 +378,19 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
378
378
|
chat_id: any;
|
|
379
379
|
allow_custom_messages: boolean;
|
|
380
380
|
notification_settings: {
|
|
381
|
-
status: "silent" | "on" | "off";
|
|
382
381
|
entry: "silent" | "on" | "off";
|
|
383
382
|
exit: {
|
|
383
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
384
384
|
roi: "silent" | "on" | "off";
|
|
385
385
|
emergency_exit: "silent" | "on" | "off";
|
|
386
386
|
force_exit: "silent" | "on" | "off";
|
|
387
387
|
exit_signal: "silent" | "on" | "off";
|
|
388
388
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
389
389
|
stop_loss: "silent" | "on" | "off";
|
|
390
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
391
390
|
custom_exit: "silent" | "on" | "off";
|
|
392
391
|
partial_exit: "silent" | "on" | "off";
|
|
393
392
|
};
|
|
393
|
+
status: "silent" | "on" | "off";
|
|
394
394
|
warning: "silent" | "on" | "off";
|
|
395
395
|
startup: "silent" | "on" | "off";
|
|
396
396
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -405,8 +405,6 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
405
405
|
reload: boolean;
|
|
406
406
|
balance_dust_level: number;
|
|
407
407
|
} | undefined;
|
|
408
|
-
dry_run_wallet?: number | undefined;
|
|
409
|
-
max_open_trades?: number | undefined;
|
|
410
408
|
plugins?: {
|
|
411
409
|
number_assets?: number | undefined;
|
|
412
410
|
refresh_period?: number | undefined;
|
|
@@ -415,6 +413,8 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
415
413
|
removeRecentlyListed?: boolean | undefined;
|
|
416
414
|
removeRecentlyListedDays?: number | undefined;
|
|
417
415
|
} | undefined;
|
|
416
|
+
dry_run_wallet?: number | undefined;
|
|
417
|
+
max_open_trades?: number | undefined;
|
|
418
418
|
fiat_display_currency?: string | undefined;
|
|
419
419
|
unfilledtimeout?: {
|
|
420
420
|
entry: number;
|
|
@@ -428,37 +428,36 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
format: string;
|
|
430
430
|
webhookstatus: {
|
|
431
|
-
|
|
431
|
+
userId: string;
|
|
432
432
|
event: string;
|
|
433
433
|
status: string;
|
|
434
|
-
|
|
434
|
+
traderId: any;
|
|
435
435
|
};
|
|
436
436
|
webhookentry: {
|
|
437
|
-
|
|
438
|
-
traderId: any;
|
|
439
|
-
stake_amount: string;
|
|
437
|
+
userId: string;
|
|
440
438
|
stake_currency: string;
|
|
439
|
+
stake_amount: string;
|
|
441
440
|
event: string;
|
|
442
|
-
|
|
441
|
+
traderId: any;
|
|
443
442
|
pair: string;
|
|
444
443
|
fiat_currency: string;
|
|
445
444
|
};
|
|
446
445
|
webhookentrycancel: {
|
|
447
446
|
limit: string;
|
|
448
|
-
|
|
449
|
-
stake_amount: string;
|
|
447
|
+
userId: string;
|
|
450
448
|
stake_currency: string;
|
|
449
|
+
stake_amount: string;
|
|
451
450
|
event: string;
|
|
452
|
-
|
|
451
|
+
traderId: any;
|
|
453
452
|
pair: string;
|
|
454
453
|
fiat_currency: string;
|
|
455
454
|
};
|
|
456
455
|
webhookentryfill: {
|
|
457
|
-
|
|
458
|
-
stake_amount: string;
|
|
456
|
+
userId: string;
|
|
459
457
|
stake_currency: string;
|
|
458
|
+
stake_amount: string;
|
|
460
459
|
event: string;
|
|
461
|
-
|
|
460
|
+
traderId: any;
|
|
462
461
|
pair: string;
|
|
463
462
|
trade_id: string;
|
|
464
463
|
open_rate: string;
|
|
@@ -467,10 +466,10 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
467
466
|
};
|
|
468
467
|
webhookexit: {
|
|
469
468
|
limit: string;
|
|
470
|
-
|
|
469
|
+
userId: string;
|
|
471
470
|
stake_currency: string;
|
|
472
471
|
event: string;
|
|
473
|
-
|
|
472
|
+
traderId: any;
|
|
474
473
|
pair: string;
|
|
475
474
|
fiat_currency: string;
|
|
476
475
|
trade_id: string;
|
|
@@ -485,22 +484,23 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
485
484
|
};
|
|
486
485
|
webhookexitcancel: {
|
|
487
486
|
limit: string;
|
|
488
|
-
|
|
487
|
+
userId: string;
|
|
489
488
|
stake_currency: string;
|
|
490
489
|
event: string;
|
|
491
|
-
|
|
490
|
+
traderId: any;
|
|
492
491
|
pair: string;
|
|
493
492
|
profit_amount: string;
|
|
494
493
|
profit_ratio: string;
|
|
495
494
|
};
|
|
496
495
|
webhookexitfill: {
|
|
497
|
-
traderId: any;
|
|
498
|
-
event: string;
|
|
499
496
|
userId: string;
|
|
497
|
+
event: string;
|
|
498
|
+
traderId: any;
|
|
500
499
|
pair: string;
|
|
501
500
|
close_rate: string;
|
|
502
501
|
};
|
|
503
502
|
} | undefined;
|
|
503
|
+
reset?: boolean | undefined;
|
|
504
504
|
host: string;
|
|
505
505
|
name: any;
|
|
506
506
|
provider: "docker";
|
|
@@ -510,20 +510,20 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
510
510
|
_id: string | {};
|
|
511
511
|
createdAt: any;
|
|
512
512
|
updatedAt: any;
|
|
513
|
-
|
|
514
|
-
strategyId: string | {};
|
|
515
|
-
stake_amount: string | number;
|
|
516
|
-
stake_currency: string;
|
|
517
|
-
exchangeId: any;
|
|
518
|
-
userId: any;
|
|
513
|
+
connected: boolean;
|
|
519
514
|
which: string;
|
|
515
|
+
userId: any;
|
|
516
|
+
"traders/pods": any;
|
|
520
517
|
exchange: any;
|
|
521
|
-
|
|
518
|
+
exchangeId: any;
|
|
519
|
+
stake_currency: string;
|
|
520
|
+
stake_amount: string | number;
|
|
522
521
|
dry_run: boolean;
|
|
523
522
|
handling: string;
|
|
524
523
|
initial_state: string;
|
|
525
524
|
pairlists: any;
|
|
526
525
|
strategy: any;
|
|
526
|
+
strategyId: string | {};
|
|
527
527
|
entry_pricing: {
|
|
528
528
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
529
529
|
use_order_book?: boolean | undefined;
|
|
@@ -543,12 +543,12 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
543
543
|
api_server: {
|
|
544
544
|
password: string;
|
|
545
545
|
enabled: boolean;
|
|
546
|
+
username: string;
|
|
546
547
|
listen_ip_address: string;
|
|
547
548
|
listen_port: number;
|
|
548
549
|
verbosity: string;
|
|
549
550
|
jwt_secret_key: string;
|
|
550
551
|
CORS_origins: string[];
|
|
551
|
-
username: string;
|
|
552
552
|
};
|
|
553
553
|
pod: string;
|
|
554
554
|
}, HookContext<TradersService<import("./traders.class").TradersParams>>>;
|
|
@@ -605,7 +605,6 @@ export declare const tradersDataSchema: import("@feathersjs/typebox").TPick<impo
|
|
|
605
605
|
traderId: import("@feathersjs/typebox").TAny;
|
|
606
606
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
607
607
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
608
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
609
608
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
610
609
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
611
610
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -730,6 +729,7 @@ export declare const tradersDataSchema: import("@feathersjs/typebox").TPick<impo
|
|
|
730
729
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
731
730
|
}>>;
|
|
732
731
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
732
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
733
733
|
host: import("@feathersjs/typebox").TString<string>;
|
|
734
734
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
735
735
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -746,19 +746,19 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
746
746
|
chat_id: any;
|
|
747
747
|
allow_custom_messages: boolean;
|
|
748
748
|
notification_settings: {
|
|
749
|
-
status: "silent" | "on" | "off";
|
|
750
749
|
entry: "silent" | "on" | "off";
|
|
751
750
|
exit: {
|
|
751
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
752
752
|
roi: "silent" | "on" | "off";
|
|
753
753
|
emergency_exit: "silent" | "on" | "off";
|
|
754
754
|
force_exit: "silent" | "on" | "off";
|
|
755
755
|
exit_signal: "silent" | "on" | "off";
|
|
756
756
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
757
757
|
stop_loss: "silent" | "on" | "off";
|
|
758
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
759
758
|
custom_exit: "silent" | "on" | "off";
|
|
760
759
|
partial_exit: "silent" | "on" | "off";
|
|
761
760
|
};
|
|
761
|
+
status: "silent" | "on" | "off";
|
|
762
762
|
warning: "silent" | "on" | "off";
|
|
763
763
|
startup: "silent" | "on" | "off";
|
|
764
764
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -773,8 +773,6 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
773
773
|
reload: boolean;
|
|
774
774
|
balance_dust_level: number;
|
|
775
775
|
} | undefined;
|
|
776
|
-
dry_run_wallet?: number | undefined;
|
|
777
|
-
max_open_trades?: number | undefined;
|
|
778
776
|
plugins?: {
|
|
779
777
|
number_assets?: number | undefined;
|
|
780
778
|
refresh_period?: number | undefined;
|
|
@@ -783,6 +781,8 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
783
781
|
removeRecentlyListed?: boolean | undefined;
|
|
784
782
|
removeRecentlyListedDays?: number | undefined;
|
|
785
783
|
} | undefined;
|
|
784
|
+
dry_run_wallet?: number | undefined;
|
|
785
|
+
max_open_trades?: number | undefined;
|
|
786
786
|
fiat_display_currency?: string | undefined;
|
|
787
787
|
unfilledtimeout?: {
|
|
788
788
|
entry: number;
|
|
@@ -796,37 +796,36 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
796
796
|
enabled: boolean;
|
|
797
797
|
format: string;
|
|
798
798
|
webhookstatus: {
|
|
799
|
-
|
|
799
|
+
userId: string;
|
|
800
800
|
event: string;
|
|
801
801
|
status: string;
|
|
802
|
-
|
|
802
|
+
traderId: any;
|
|
803
803
|
};
|
|
804
804
|
webhookentry: {
|
|
805
|
-
|
|
806
|
-
traderId: any;
|
|
807
|
-
stake_amount: string;
|
|
805
|
+
userId: string;
|
|
808
806
|
stake_currency: string;
|
|
807
|
+
stake_amount: string;
|
|
809
808
|
event: string;
|
|
810
|
-
|
|
809
|
+
traderId: any;
|
|
811
810
|
pair: string;
|
|
812
811
|
fiat_currency: string;
|
|
813
812
|
};
|
|
814
813
|
webhookentrycancel: {
|
|
815
814
|
limit: string;
|
|
816
|
-
|
|
817
|
-
stake_amount: string;
|
|
815
|
+
userId: string;
|
|
818
816
|
stake_currency: string;
|
|
817
|
+
stake_amount: string;
|
|
819
818
|
event: string;
|
|
820
|
-
|
|
819
|
+
traderId: any;
|
|
821
820
|
pair: string;
|
|
822
821
|
fiat_currency: string;
|
|
823
822
|
};
|
|
824
823
|
webhookentryfill: {
|
|
825
|
-
|
|
826
|
-
stake_amount: string;
|
|
824
|
+
userId: string;
|
|
827
825
|
stake_currency: string;
|
|
826
|
+
stake_amount: string;
|
|
828
827
|
event: string;
|
|
829
|
-
|
|
828
|
+
traderId: any;
|
|
830
829
|
pair: string;
|
|
831
830
|
trade_id: string;
|
|
832
831
|
open_rate: string;
|
|
@@ -835,10 +834,10 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
835
834
|
};
|
|
836
835
|
webhookexit: {
|
|
837
836
|
limit: string;
|
|
838
|
-
|
|
837
|
+
userId: string;
|
|
839
838
|
stake_currency: string;
|
|
840
839
|
event: string;
|
|
841
|
-
|
|
840
|
+
traderId: any;
|
|
842
841
|
pair: string;
|
|
843
842
|
fiat_currency: string;
|
|
844
843
|
trade_id: string;
|
|
@@ -853,22 +852,23 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
853
852
|
};
|
|
854
853
|
webhookexitcancel: {
|
|
855
854
|
limit: string;
|
|
856
|
-
|
|
855
|
+
userId: string;
|
|
857
856
|
stake_currency: string;
|
|
858
857
|
event: string;
|
|
859
|
-
|
|
858
|
+
traderId: any;
|
|
860
859
|
pair: string;
|
|
861
860
|
profit_amount: string;
|
|
862
861
|
profit_ratio: string;
|
|
863
862
|
};
|
|
864
863
|
webhookexitfill: {
|
|
865
|
-
traderId: any;
|
|
866
|
-
event: string;
|
|
867
864
|
userId: string;
|
|
865
|
+
event: string;
|
|
866
|
+
traderId: any;
|
|
868
867
|
pair: string;
|
|
869
868
|
close_rate: string;
|
|
870
869
|
};
|
|
871
870
|
} | undefined;
|
|
871
|
+
reset?: boolean | undefined;
|
|
872
872
|
host: string;
|
|
873
873
|
name: any;
|
|
874
874
|
provider: "docker";
|
|
@@ -878,20 +878,20 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
878
878
|
_id: string | {};
|
|
879
879
|
createdAt: any;
|
|
880
880
|
updatedAt: any;
|
|
881
|
-
|
|
882
|
-
strategyId: string | {};
|
|
883
|
-
stake_amount: string | number;
|
|
884
|
-
stake_currency: string;
|
|
885
|
-
exchangeId: any;
|
|
886
|
-
userId: any;
|
|
881
|
+
connected: boolean;
|
|
887
882
|
which: string;
|
|
883
|
+
userId: any;
|
|
884
|
+
"traders/pods": any;
|
|
888
885
|
exchange: any;
|
|
889
|
-
|
|
886
|
+
exchangeId: any;
|
|
887
|
+
stake_currency: string;
|
|
888
|
+
stake_amount: string | number;
|
|
890
889
|
dry_run: boolean;
|
|
891
890
|
handling: string;
|
|
892
891
|
initial_state: string;
|
|
893
892
|
pairlists: any;
|
|
894
893
|
strategy: any;
|
|
894
|
+
strategyId: string | {};
|
|
895
895
|
entry_pricing: {
|
|
896
896
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
897
897
|
use_order_book?: boolean | undefined;
|
|
@@ -911,12 +911,12 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
911
911
|
api_server: {
|
|
912
912
|
password: string;
|
|
913
913
|
enabled: boolean;
|
|
914
|
+
username: string;
|
|
914
915
|
listen_ip_address: string;
|
|
915
916
|
listen_port: number;
|
|
916
917
|
verbosity: string;
|
|
917
918
|
jwt_secret_key: string;
|
|
918
919
|
CORS_origins: string[];
|
|
919
|
-
username: string;
|
|
920
920
|
};
|
|
921
921
|
pod: string;
|
|
922
922
|
}, HookContext<TradersService<import("./traders.class").TradersParams>>>;
|
|
@@ -973,7 +973,6 @@ export declare const tradersPatchSchema: import("@feathersjs/typebox").TPartial<
|
|
|
973
973
|
traderId: import("@feathersjs/typebox").TAny;
|
|
974
974
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
975
975
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
976
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
977
976
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
978
977
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
979
978
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1098,6 +1097,7 @@ export declare const tradersPatchSchema: import("@feathersjs/typebox").TPartial<
|
|
|
1098
1097
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
1099
1098
|
}>>;
|
|
1100
1099
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
1100
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1101
1101
|
host: import("@feathersjs/typebox").TString<string>;
|
|
1102
1102
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1103
1103
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -1114,19 +1114,19 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1114
1114
|
chat_id: any;
|
|
1115
1115
|
allow_custom_messages: boolean;
|
|
1116
1116
|
notification_settings: {
|
|
1117
|
-
status: "silent" | "on" | "off";
|
|
1118
1117
|
entry: "silent" | "on" | "off";
|
|
1119
1118
|
exit: {
|
|
1119
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1120
1120
|
roi: "silent" | "on" | "off";
|
|
1121
1121
|
emergency_exit: "silent" | "on" | "off";
|
|
1122
1122
|
force_exit: "silent" | "on" | "off";
|
|
1123
1123
|
exit_signal: "silent" | "on" | "off";
|
|
1124
1124
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1125
1125
|
stop_loss: "silent" | "on" | "off";
|
|
1126
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1127
1126
|
custom_exit: "silent" | "on" | "off";
|
|
1128
1127
|
partial_exit: "silent" | "on" | "off";
|
|
1129
1128
|
};
|
|
1129
|
+
status: "silent" | "on" | "off";
|
|
1130
1130
|
warning: "silent" | "on" | "off";
|
|
1131
1131
|
startup: "silent" | "on" | "off";
|
|
1132
1132
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1141,8 +1141,6 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1141
1141
|
reload: boolean;
|
|
1142
1142
|
balance_dust_level: number;
|
|
1143
1143
|
} | undefined;
|
|
1144
|
-
dry_run_wallet?: number | undefined;
|
|
1145
|
-
max_open_trades?: number | undefined;
|
|
1146
1144
|
plugins?: {
|
|
1147
1145
|
number_assets?: number | undefined;
|
|
1148
1146
|
refresh_period?: number | undefined;
|
|
@@ -1151,6 +1149,8 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1151
1149
|
removeRecentlyListed?: boolean | undefined;
|
|
1152
1150
|
removeRecentlyListedDays?: number | undefined;
|
|
1153
1151
|
} | undefined;
|
|
1152
|
+
dry_run_wallet?: number | undefined;
|
|
1153
|
+
max_open_trades?: number | undefined;
|
|
1154
1154
|
fiat_display_currency?: string | undefined;
|
|
1155
1155
|
unfilledtimeout?: {
|
|
1156
1156
|
entry: number;
|
|
@@ -1164,37 +1164,36 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1164
1164
|
enabled: boolean;
|
|
1165
1165
|
format: string;
|
|
1166
1166
|
webhookstatus: {
|
|
1167
|
-
|
|
1167
|
+
userId: string;
|
|
1168
1168
|
event: string;
|
|
1169
1169
|
status: string;
|
|
1170
|
-
|
|
1170
|
+
traderId: any;
|
|
1171
1171
|
};
|
|
1172
1172
|
webhookentry: {
|
|
1173
|
-
|
|
1174
|
-
traderId: any;
|
|
1175
|
-
stake_amount: string;
|
|
1173
|
+
userId: string;
|
|
1176
1174
|
stake_currency: string;
|
|
1175
|
+
stake_amount: string;
|
|
1177
1176
|
event: string;
|
|
1178
|
-
|
|
1177
|
+
traderId: any;
|
|
1179
1178
|
pair: string;
|
|
1180
1179
|
fiat_currency: string;
|
|
1181
1180
|
};
|
|
1182
1181
|
webhookentrycancel: {
|
|
1183
1182
|
limit: string;
|
|
1184
|
-
|
|
1185
|
-
stake_amount: string;
|
|
1183
|
+
userId: string;
|
|
1186
1184
|
stake_currency: string;
|
|
1185
|
+
stake_amount: string;
|
|
1187
1186
|
event: string;
|
|
1188
|
-
|
|
1187
|
+
traderId: any;
|
|
1189
1188
|
pair: string;
|
|
1190
1189
|
fiat_currency: string;
|
|
1191
1190
|
};
|
|
1192
1191
|
webhookentryfill: {
|
|
1193
|
-
|
|
1194
|
-
stake_amount: string;
|
|
1192
|
+
userId: string;
|
|
1195
1193
|
stake_currency: string;
|
|
1194
|
+
stake_amount: string;
|
|
1196
1195
|
event: string;
|
|
1197
|
-
|
|
1196
|
+
traderId: any;
|
|
1198
1197
|
pair: string;
|
|
1199
1198
|
trade_id: string;
|
|
1200
1199
|
open_rate: string;
|
|
@@ -1203,10 +1202,10 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1203
1202
|
};
|
|
1204
1203
|
webhookexit: {
|
|
1205
1204
|
limit: string;
|
|
1206
|
-
|
|
1205
|
+
userId: string;
|
|
1207
1206
|
stake_currency: string;
|
|
1208
1207
|
event: string;
|
|
1209
|
-
|
|
1208
|
+
traderId: any;
|
|
1210
1209
|
pair: string;
|
|
1211
1210
|
fiat_currency: string;
|
|
1212
1211
|
trade_id: string;
|
|
@@ -1221,22 +1220,23 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1221
1220
|
};
|
|
1222
1221
|
webhookexitcancel: {
|
|
1223
1222
|
limit: string;
|
|
1224
|
-
|
|
1223
|
+
userId: string;
|
|
1225
1224
|
stake_currency: string;
|
|
1226
1225
|
event: string;
|
|
1227
|
-
|
|
1226
|
+
traderId: any;
|
|
1228
1227
|
pair: string;
|
|
1229
1228
|
profit_amount: string;
|
|
1230
1229
|
profit_ratio: string;
|
|
1231
1230
|
};
|
|
1232
1231
|
webhookexitfill: {
|
|
1233
|
-
traderId: any;
|
|
1234
|
-
event: string;
|
|
1235
1232
|
userId: string;
|
|
1233
|
+
event: string;
|
|
1234
|
+
traderId: any;
|
|
1236
1235
|
pair: string;
|
|
1237
1236
|
close_rate: string;
|
|
1238
1237
|
};
|
|
1239
1238
|
} | undefined;
|
|
1239
|
+
reset?: boolean | undefined;
|
|
1240
1240
|
host: string;
|
|
1241
1241
|
name: any;
|
|
1242
1242
|
provider: "docker";
|
|
@@ -1246,20 +1246,20 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1246
1246
|
_id: string | {};
|
|
1247
1247
|
createdAt: any;
|
|
1248
1248
|
updatedAt: any;
|
|
1249
|
-
|
|
1250
|
-
strategyId: string | {};
|
|
1251
|
-
stake_amount: string | number;
|
|
1252
|
-
stake_currency: string;
|
|
1253
|
-
exchangeId: any;
|
|
1254
|
-
userId: any;
|
|
1249
|
+
connected: boolean;
|
|
1255
1250
|
which: string;
|
|
1251
|
+
userId: any;
|
|
1252
|
+
"traders/pods": any;
|
|
1256
1253
|
exchange: any;
|
|
1257
|
-
|
|
1254
|
+
exchangeId: any;
|
|
1255
|
+
stake_currency: string;
|
|
1256
|
+
stake_amount: string | number;
|
|
1258
1257
|
dry_run: boolean;
|
|
1259
1258
|
handling: string;
|
|
1260
1259
|
initial_state: string;
|
|
1261
1260
|
pairlists: any;
|
|
1262
1261
|
strategy: any;
|
|
1262
|
+
strategyId: string | {};
|
|
1263
1263
|
entry_pricing: {
|
|
1264
1264
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1265
1265
|
use_order_book?: boolean | undefined;
|
|
@@ -1279,12 +1279,12 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1279
1279
|
api_server: {
|
|
1280
1280
|
password: string;
|
|
1281
1281
|
enabled: boolean;
|
|
1282
|
+
username: string;
|
|
1282
1283
|
listen_ip_address: string;
|
|
1283
1284
|
listen_port: number;
|
|
1284
1285
|
verbosity: string;
|
|
1285
1286
|
jwt_secret_key: string;
|
|
1286
1287
|
CORS_origins: string[];
|
|
1287
|
-
username: string;
|
|
1288
1288
|
};
|
|
1289
1289
|
pod: string;
|
|
1290
1290
|
}, HookContext<TradersService<import("./traders.class").TradersParams>>>;
|
|
@@ -1341,7 +1341,6 @@ export declare const tradersQueryProperties: import("@feathersjs/typebox").TPick
|
|
|
1341
1341
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1342
1342
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
1343
1343
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
1344
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
1345
1344
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
1346
1345
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1347
1346
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1466,11 +1465,12 @@ export declare const tradersQueryProperties: import("@feathersjs/typebox").TPick
|
|
|
1466
1465
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
1467
1466
|
}>>;
|
|
1468
1467
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
1468
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1469
1469
|
host: import("@feathersjs/typebox").TString<string>;
|
|
1470
1470
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1471
1471
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1472
1472
|
"traders/pods": import("@feathersjs/typebox").TAny;
|
|
1473
|
-
}>, ["_id", "name", "running", "which", "provider", "userId", "pod", "host", "strategyId", "exchangeId", "api_server", "updatedAt"]>;
|
|
1473
|
+
}>, ["_id", "name", "running", "which", "provider", "userId", "pod", "host", "strategyId", "exchangeId", "api_server", "updatedAt", "max_open_trades", "dry_run_wallet", "stake_currency", "stake_amount"]>;
|
|
1474
1474
|
export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
1475
1475
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
1476
1476
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
@@ -1480,15 +1480,19 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1480
1480
|
provider: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1481
1481
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1482
1482
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1483
|
-
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1484
|
-
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1485
|
-
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1486
1483
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1484
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1485
|
+
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1486
|
+
stake_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1487
|
+
stake_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1488
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1489
|
+
dry_run_wallet: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1490
|
+
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1487
1491
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1488
1492
|
api_server: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1489
1493
|
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1490
1494
|
}>;
|
|
1491
|
-
$select: import("@feathersjs/typebox").TUnsafe<("host" | "name" | "provider" | "_id" | "updatedAt" | "
|
|
1495
|
+
$select: import("@feathersjs/typebox").TUnsafe<("host" | "name" | "provider" | "_id" | "updatedAt" | "which" | "userId" | "exchangeId" | "stake_currency" | "stake_amount" | "strategyId" | "dry_run_wallet" | "max_open_trades" | "running" | "api_server" | "pod")[]>;
|
|
1492
1496
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1493
1497
|
host: 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<{
|
|
1494
1498
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1496,8 +1500,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1496
1500
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1497
1501
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1498
1502
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1499
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1500
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1503
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1504
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1501
1505
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1502
1506
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1503
1507
|
} | undefined>]>>]>>;
|
|
@@ -1507,8 +1511,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1507
1511
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1508
1512
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1509
1513
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1510
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1511
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1514
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1515
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1512
1516
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1513
1517
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1514
1518
|
} | undefined>]>>]>>;
|
|
@@ -1518,8 +1522,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1518
1522
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1519
1523
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1520
1524
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1521
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1522
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1525
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1526
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1523
1527
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1524
1528
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1525
1529
|
} | undefined>]>>]>>;
|
|
@@ -1529,8 +1533,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1529
1533
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1530
1534
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1531
1535
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1532
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1533
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1536
|
+
$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<{}>]>>;
|
|
1537
|
+
$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<{}>]>>;
|
|
1534
1538
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1535
1539
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1536
1540
|
} | undefined>]>>]>>;
|
|
@@ -1540,52 +1544,96 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1540
1544
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1541
1545
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1542
1546
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1543
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1544
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1545
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
1546
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1547
|
-
} | undefined>]>>]>>;
|
|
1548
|
-
strategyId: 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<{
|
|
1549
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1550
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1551
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1552
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1553
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1554
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1555
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1547
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1548
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1556
1549
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1557
1550
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1558
1551
|
} | undefined>]>>]>>;
|
|
1559
|
-
|
|
1552
|
+
which: 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<{
|
|
1553
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
1554
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
1555
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1556
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1557
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1558
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1559
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1560
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
1561
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1562
|
+
} | undefined>]>>]>>;
|
|
1563
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1560
1564
|
$gt: import("@feathersjs/typebox").TAny;
|
|
1561
1565
|
$gte: import("@feathersjs/typebox").TAny;
|
|
1562
1566
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1563
1567
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1564
1568
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1565
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1566
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1569
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1570
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1567
1571
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1568
1572
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1569
1573
|
} | undefined>]>>]>>;
|
|
1570
|
-
|
|
1574
|
+
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1571
1575
|
$gt: import("@feathersjs/typebox").TAny;
|
|
1572
1576
|
$gte: import("@feathersjs/typebox").TAny;
|
|
1573
1577
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1574
1578
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1575
1579
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1576
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1577
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1580
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1581
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1578
1582
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1579
1583
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1580
1584
|
} | undefined>]>>]>>;
|
|
1581
|
-
|
|
1585
|
+
stake_currency: 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<{
|
|
1582
1586
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
1583
1587
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
1584
1588
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1585
1589
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1586
1590
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1587
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1588
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1591
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1592
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1593
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
1594
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1595
|
+
} | undefined>]>>]>>;
|
|
1596
|
+
stake_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1597
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
1598
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
1599
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
1600
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
1601
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
1602
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>>;
|
|
1603
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>>;
|
|
1604
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
1605
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1606
|
+
} | undefined>]>>]>>;
|
|
1607
|
+
strategyId: 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<{
|
|
1608
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1609
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1610
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1611
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1612
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1613
|
+
$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<{}>]>>;
|
|
1614
|
+
$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<{}>]>>;
|
|
1615
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
1616
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1617
|
+
} | undefined>]>>]>>;
|
|
1618
|
+
dry_run_wallet: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1619
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1620
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1621
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1622
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1623
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1624
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
1625
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
1626
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
1627
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1628
|
+
} | undefined>]>>]>>;
|
|
1629
|
+
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1630
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1631
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1632
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1633
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1634
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1635
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
1636
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
1589
1637
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1590
1638
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1591
1639
|
} | undefined>]>>]>>;
|
|
@@ -1595,8 +1643,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1595
1643
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1596
1644
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1597
1645
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1598
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1599
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1646
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1647
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1600
1648
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1601
1649
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1602
1650
|
} | undefined>]>>]>>;
|
|
@@ -1660,7 +1708,16 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1660
1708
|
username: import("@feathersjs/typebox").TString<string>;
|
|
1661
1709
|
password: import("@feathersjs/typebox").TString<string>;
|
|
1662
1710
|
}>;
|
|
1663
|
-
$in: import("@feathersjs/typebox").
|
|
1711
|
+
$in: import("@feathersjs/typebox").TObject<{
|
|
1712
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1713
|
+
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1714
|
+
listen_port: import("@feathersjs/typebox").TNumber;
|
|
1715
|
+
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
1716
|
+
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
1717
|
+
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1718
|
+
username: import("@feathersjs/typebox").TString<string>;
|
|
1719
|
+
password: import("@feathersjs/typebox").TString<string>;
|
|
1720
|
+
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1664
1721
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1665
1722
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1666
1723
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -1670,7 +1727,16 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1670
1727
|
username: import("@feathersjs/typebox").TString<string>;
|
|
1671
1728
|
password: import("@feathersjs/typebox").TString<string>;
|
|
1672
1729
|
}>>;
|
|
1673
|
-
$nin: import("@feathersjs/typebox").
|
|
1730
|
+
$nin: import("@feathersjs/typebox").TObject<{
|
|
1731
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1732
|
+
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1733
|
+
listen_port: import("@feathersjs/typebox").TNumber;
|
|
1734
|
+
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
1735
|
+
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
1736
|
+
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1737
|
+
username: import("@feathersjs/typebox").TString<string>;
|
|
1738
|
+
password: import("@feathersjs/typebox").TString<string>;
|
|
1739
|
+
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1674
1740
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1675
1741
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1676
1742
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -1689,8 +1755,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1689
1755
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1690
1756
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1691
1757
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1692
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1693
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1758
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1759
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1694
1760
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1695
1761
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1696
1762
|
} | undefined>]>>]>>;
|
|
@@ -1702,8 +1768,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1702
1768
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1703
1769
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1704
1770
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1705
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1706
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1771
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1772
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1707
1773
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1708
1774
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1709
1775
|
} | undefined>]>>]>>;
|
|
@@ -1713,8 +1779,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1713
1779
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1714
1780
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1715
1781
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1716
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1717
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1782
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1783
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1718
1784
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1719
1785
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1720
1786
|
} | undefined>]>>]>>;
|
|
@@ -1724,8 +1790,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1724
1790
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1725
1791
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1726
1792
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1727
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1728
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1793
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1794
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1729
1795
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1730
1796
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1731
1797
|
} | undefined>]>>]>>;
|
|
@@ -1735,8 +1801,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1735
1801
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1736
1802
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1737
1803
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1738
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1739
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1804
|
+
$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<{}>]>>;
|
|
1805
|
+
$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<{}>]>>;
|
|
1740
1806
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1741
1807
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1742
1808
|
} | undefined>]>>]>>;
|
|
@@ -1746,52 +1812,96 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1746
1812
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1747
1813
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1748
1814
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1749
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1750
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1815
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1816
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1751
1817
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1752
1818
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1753
1819
|
} | undefined>]>>]>>;
|
|
1754
|
-
|
|
1755
|
-
$gt: import("@feathersjs/typebox").
|
|
1756
|
-
$gte: import("@feathersjs/typebox").
|
|
1757
|
-
$lt: import("@feathersjs/typebox").
|
|
1758
|
-
$lte: import("@feathersjs/typebox").
|
|
1759
|
-
$ne: import("@feathersjs/typebox").
|
|
1760
|
-
$in: import("@feathersjs/typebox").
|
|
1761
|
-
$nin: import("@feathersjs/typebox").
|
|
1820
|
+
which: 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<{
|
|
1821
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
1822
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
1823
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1824
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1825
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1826
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1827
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1762
1828
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1763
1829
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1764
1830
|
} | undefined>]>>]>>;
|
|
1765
|
-
|
|
1831
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1766
1832
|
$gt: import("@feathersjs/typebox").TAny;
|
|
1767
1833
|
$gte: import("@feathersjs/typebox").TAny;
|
|
1768
1834
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1769
1835
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1770
1836
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1771
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1772
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1837
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1838
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1773
1839
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1774
1840
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1775
1841
|
} | undefined>]>>]>>;
|
|
1776
|
-
|
|
1842
|
+
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1777
1843
|
$gt: import("@feathersjs/typebox").TAny;
|
|
1778
1844
|
$gte: import("@feathersjs/typebox").TAny;
|
|
1779
1845
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1780
1846
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1781
1847
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1782
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1783
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1848
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1849
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1784
1850
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1785
1851
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1786
1852
|
} | undefined>]>>]>>;
|
|
1787
|
-
|
|
1853
|
+
stake_currency: 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<{
|
|
1788
1854
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
1789
1855
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
1790
1856
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1791
1857
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1792
1858
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1793
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1794
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1859
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1860
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1861
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
1862
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1863
|
+
} | undefined>]>>]>>;
|
|
1864
|
+
stake_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1865
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
1866
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
1867
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
1868
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
1869
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
1870
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>>;
|
|
1871
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>>;
|
|
1872
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
1873
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1874
|
+
} | undefined>]>>]>>;
|
|
1875
|
+
strategyId: 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<{
|
|
1876
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1877
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1878
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1879
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1880
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1881
|
+
$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<{}>]>>;
|
|
1882
|
+
$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<{}>]>>;
|
|
1883
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
1884
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1885
|
+
} | undefined>]>>]>>;
|
|
1886
|
+
dry_run_wallet: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1887
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1888
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1889
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1890
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1891
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1892
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
1893
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
1894
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
1895
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1896
|
+
} | undefined>]>>]>>;
|
|
1897
|
+
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1898
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1899
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1900
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1901
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1902
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1903
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
1904
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
1795
1905
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1796
1906
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1797
1907
|
} | undefined>]>>]>>;
|
|
@@ -1801,8 +1911,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1801
1911
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1802
1912
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1803
1913
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1804
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1805
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1914
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1915
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1806
1916
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1807
1917
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1808
1918
|
} | undefined>]>>]>>;
|
|
@@ -1866,7 +1976,16 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1866
1976
|
username: import("@feathersjs/typebox").TString<string>;
|
|
1867
1977
|
password: import("@feathersjs/typebox").TString<string>;
|
|
1868
1978
|
}>;
|
|
1869
|
-
$in: import("@feathersjs/typebox").
|
|
1979
|
+
$in: import("@feathersjs/typebox").TObject<{
|
|
1980
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1981
|
+
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1982
|
+
listen_port: import("@feathersjs/typebox").TNumber;
|
|
1983
|
+
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
1984
|
+
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
1985
|
+
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1986
|
+
username: import("@feathersjs/typebox").TString<string>;
|
|
1987
|
+
password: import("@feathersjs/typebox").TString<string>;
|
|
1988
|
+
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1870
1989
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1871
1990
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1872
1991
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -1876,7 +1995,16 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1876
1995
|
username: import("@feathersjs/typebox").TString<string>;
|
|
1877
1996
|
password: import("@feathersjs/typebox").TString<string>;
|
|
1878
1997
|
}>>;
|
|
1879
|
-
$nin: import("@feathersjs/typebox").
|
|
1998
|
+
$nin: import("@feathersjs/typebox").TObject<{
|
|
1999
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2000
|
+
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2001
|
+
listen_port: import("@feathersjs/typebox").TNumber;
|
|
2002
|
+
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
2003
|
+
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
2004
|
+
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2005
|
+
username: import("@feathersjs/typebox").TString<string>;
|
|
2006
|
+
password: import("@feathersjs/typebox").TString<string>;
|
|
2007
|
+
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1880
2008
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1881
2009
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1882
2010
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -1895,8 +2023,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1895
2023
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1896
2024
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1897
2025
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1898
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1899
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2026
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2027
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1900
2028
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1901
2029
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1902
2030
|
} | undefined>]>>]>>;
|
|
@@ -1909,8 +2037,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1909
2037
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1910
2038
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1911
2039
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1912
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1913
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2040
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2041
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1914
2042
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1915
2043
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1916
2044
|
} | undefined>]>>]>>;
|
|
@@ -1920,8 +2048,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1920
2048
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1921
2049
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1922
2050
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1923
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1924
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2051
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2052
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1925
2053
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1926
2054
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1927
2055
|
} | undefined>]>>]>>;
|
|
@@ -1931,8 +2059,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1931
2059
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1932
2060
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1933
2061
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1934
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1935
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
2062
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
2063
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1936
2064
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1937
2065
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1938
2066
|
} | undefined>]>>]>>;
|
|
@@ -1942,8 +2070,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1942
2070
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1943
2071
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1944
2072
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1945
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1946
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2073
|
+
$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<{}>]>>;
|
|
2074
|
+
$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<{}>]>>;
|
|
1947
2075
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1948
2076
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1949
2077
|
} | undefined>]>>]>>;
|
|
@@ -1953,52 +2081,96 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1953
2081
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1954
2082
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1955
2083
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1956
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1957
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2084
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2085
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1958
2086
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1959
2087
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1960
2088
|
} | undefined>]>>]>>;
|
|
1961
|
-
|
|
1962
|
-
$gt: import("@feathersjs/typebox").
|
|
1963
|
-
$gte: import("@feathersjs/typebox").
|
|
1964
|
-
$lt: import("@feathersjs/typebox").
|
|
1965
|
-
$lte: import("@feathersjs/typebox").
|
|
1966
|
-
$ne: import("@feathersjs/typebox").
|
|
1967
|
-
$in: import("@feathersjs/typebox").
|
|
1968
|
-
$nin: import("@feathersjs/typebox").
|
|
2089
|
+
which: 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<{
|
|
2090
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
2091
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
2092
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
2093
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
2094
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2095
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2096
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1969
2097
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1970
2098
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1971
2099
|
} | undefined>]>>]>>;
|
|
1972
|
-
|
|
2100
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1973
2101
|
$gt: import("@feathersjs/typebox").TAny;
|
|
1974
2102
|
$gte: import("@feathersjs/typebox").TAny;
|
|
1975
2103
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1976
2104
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1977
2105
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1978
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1979
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2106
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2107
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1980
2108
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1981
2109
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1982
2110
|
} | undefined>]>>]>>;
|
|
1983
|
-
|
|
2111
|
+
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1984
2112
|
$gt: import("@feathersjs/typebox").TAny;
|
|
1985
2113
|
$gte: import("@feathersjs/typebox").TAny;
|
|
1986
2114
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1987
2115
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1988
2116
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1989
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1990
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2117
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2118
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1991
2119
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1992
2120
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1993
2121
|
} | undefined>]>>]>>;
|
|
1994
|
-
|
|
2122
|
+
stake_currency: 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<{
|
|
1995
2123
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
1996
2124
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
1997
2125
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1998
2126
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1999
2127
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2000
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2001
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2128
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2129
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2130
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2131
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2132
|
+
} | undefined>]>>]>>;
|
|
2133
|
+
stake_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2134
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
2135
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
2136
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
2137
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
2138
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
2139
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>>;
|
|
2140
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>>;
|
|
2141
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2142
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2143
|
+
} | undefined>]>>]>>;
|
|
2144
|
+
strategyId: 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<{
|
|
2145
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2146
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2147
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2148
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2149
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2150
|
+
$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<{}>]>>;
|
|
2151
|
+
$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<{}>]>>;
|
|
2152
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2153
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2154
|
+
} | undefined>]>>]>>;
|
|
2155
|
+
dry_run_wallet: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2156
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2157
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2158
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2159
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2160
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2161
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2162
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2163
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2164
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2165
|
+
} | undefined>]>>]>>;
|
|
2166
|
+
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2167
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2168
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2169
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2170
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2171
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2172
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2173
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2002
2174
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2003
2175
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2004
2176
|
} | undefined>]>>]>>;
|
|
@@ -2008,8 +2180,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2008
2180
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2009
2181
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2010
2182
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2011
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2012
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2183
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2184
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2013
2185
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2014
2186
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2015
2187
|
} | undefined>]>>]>>;
|
|
@@ -2073,7 +2245,16 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2073
2245
|
username: import("@feathersjs/typebox").TString<string>;
|
|
2074
2246
|
password: import("@feathersjs/typebox").TString<string>;
|
|
2075
2247
|
}>;
|
|
2076
|
-
$in: import("@feathersjs/typebox").
|
|
2248
|
+
$in: import("@feathersjs/typebox").TObject<{
|
|
2249
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2250
|
+
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2251
|
+
listen_port: import("@feathersjs/typebox").TNumber;
|
|
2252
|
+
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
2253
|
+
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
2254
|
+
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2255
|
+
username: import("@feathersjs/typebox").TString<string>;
|
|
2256
|
+
password: import("@feathersjs/typebox").TString<string>;
|
|
2257
|
+
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2077
2258
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2078
2259
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2079
2260
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -2083,7 +2264,16 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2083
2264
|
username: import("@feathersjs/typebox").TString<string>;
|
|
2084
2265
|
password: import("@feathersjs/typebox").TString<string>;
|
|
2085
2266
|
}>>;
|
|
2086
|
-
$nin: import("@feathersjs/typebox").
|
|
2267
|
+
$nin: import("@feathersjs/typebox").TObject<{
|
|
2268
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2269
|
+
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2270
|
+
listen_port: import("@feathersjs/typebox").TNumber;
|
|
2271
|
+
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
2272
|
+
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
2273
|
+
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2274
|
+
username: import("@feathersjs/typebox").TString<string>;
|
|
2275
|
+
password: import("@feathersjs/typebox").TString<string>;
|
|
2276
|
+
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2087
2277
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2088
2278
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2089
2279
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -2102,8 +2292,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2102
2292
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
2103
2293
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
2104
2294
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2105
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2106
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2295
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2296
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2107
2297
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2108
2298
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2109
2299
|
} | undefined>]>>]>>;
|
|
@@ -2115,8 +2305,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2115
2305
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
2116
2306
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
2117
2307
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2118
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2119
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2308
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2309
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2120
2310
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2121
2311
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2122
2312
|
} | undefined>]>>]>>;
|
|
@@ -2126,8 +2316,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2126
2316
|
$lt: import("@feathersjs/typebox").TAny;
|
|
2127
2317
|
$lte: import("@feathersjs/typebox").TAny;
|
|
2128
2318
|
$ne: import("@feathersjs/typebox").TAny;
|
|
2129
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2130
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2319
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2320
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2131
2321
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2132
2322
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2133
2323
|
} | undefined>]>>]>>;
|
|
@@ -2137,8 +2327,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2137
2327
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2138
2328
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2139
2329
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2140
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
2141
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
2330
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
2331
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
2142
2332
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2143
2333
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2144
2334
|
} | undefined>]>>]>>;
|
|
@@ -2148,8 +2338,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2148
2338
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2149
2339
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2150
2340
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2151
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2152
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2341
|
+
$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<{}>]>>;
|
|
2342
|
+
$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<{}>]>>;
|
|
2153
2343
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2154
2344
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2155
2345
|
} | undefined>]>>]>>;
|
|
@@ -2159,52 +2349,96 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2159
2349
|
$lt: import("@feathersjs/typebox").TAny;
|
|
2160
2350
|
$lte: import("@feathersjs/typebox").TAny;
|
|
2161
2351
|
$ne: import("@feathersjs/typebox").TAny;
|
|
2162
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2163
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2352
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2353
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2164
2354
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2165
2355
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2166
2356
|
} | undefined>]>>]>>;
|
|
2167
|
-
|
|
2168
|
-
$gt: import("@feathersjs/typebox").
|
|
2169
|
-
$gte: import("@feathersjs/typebox").
|
|
2170
|
-
$lt: import("@feathersjs/typebox").
|
|
2171
|
-
$lte: import("@feathersjs/typebox").
|
|
2172
|
-
$ne: import("@feathersjs/typebox").
|
|
2173
|
-
$in: import("@feathersjs/typebox").
|
|
2174
|
-
$nin: import("@feathersjs/typebox").
|
|
2357
|
+
which: 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<{
|
|
2358
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
2359
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
2360
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
2361
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
2362
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2363
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2364
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2175
2365
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2176
2366
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2177
2367
|
} | undefined>]>>]>>;
|
|
2178
|
-
|
|
2368
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2179
2369
|
$gt: import("@feathersjs/typebox").TAny;
|
|
2180
2370
|
$gte: import("@feathersjs/typebox").TAny;
|
|
2181
2371
|
$lt: import("@feathersjs/typebox").TAny;
|
|
2182
2372
|
$lte: import("@feathersjs/typebox").TAny;
|
|
2183
2373
|
$ne: import("@feathersjs/typebox").TAny;
|
|
2184
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2185
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2374
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2375
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2186
2376
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2187
2377
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2188
2378
|
} | undefined>]>>]>>;
|
|
2189
|
-
|
|
2379
|
+
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2190
2380
|
$gt: import("@feathersjs/typebox").TAny;
|
|
2191
2381
|
$gte: import("@feathersjs/typebox").TAny;
|
|
2192
2382
|
$lt: import("@feathersjs/typebox").TAny;
|
|
2193
2383
|
$lte: import("@feathersjs/typebox").TAny;
|
|
2194
2384
|
$ne: import("@feathersjs/typebox").TAny;
|
|
2195
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2196
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2385
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2386
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2197
2387
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2198
2388
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2199
2389
|
} | undefined>]>>]>>;
|
|
2200
|
-
|
|
2390
|
+
stake_currency: 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<{
|
|
2201
2391
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
2202
2392
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
2203
2393
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
2204
2394
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
2205
2395
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2206
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2207
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2396
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2397
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2398
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2399
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2400
|
+
} | undefined>]>>]>>;
|
|
2401
|
+
stake_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2402
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
2403
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
2404
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
2405
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
2406
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>;
|
|
2407
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>>;
|
|
2408
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNumber]>>;
|
|
2409
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2410
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2411
|
+
} | undefined>]>>]>>;
|
|
2412
|
+
strategyId: 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<{
|
|
2413
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2414
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2415
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2416
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2417
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2418
|
+
$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<{}>]>>;
|
|
2419
|
+
$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<{}>]>>;
|
|
2420
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2421
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2422
|
+
} | undefined>]>>]>>;
|
|
2423
|
+
dry_run_wallet: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2424
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2425
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2426
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2427
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2428
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2429
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2430
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2431
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2432
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2433
|
+
} | undefined>]>>]>>;
|
|
2434
|
+
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2435
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2436
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2437
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2438
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2439
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2440
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2441
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2208
2442
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2209
2443
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2210
2444
|
} | undefined>]>>]>>;
|
|
@@ -2214,8 +2448,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2214
2448
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2215
2449
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2216
2450
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2217
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2218
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2451
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2452
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2219
2453
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2220
2454
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2221
2455
|
} | undefined>]>>]>>;
|
|
@@ -2279,7 +2513,16 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2279
2513
|
username: import("@feathersjs/typebox").TString<string>;
|
|
2280
2514
|
password: import("@feathersjs/typebox").TString<string>;
|
|
2281
2515
|
}>;
|
|
2282
|
-
$in: import("@feathersjs/typebox").
|
|
2516
|
+
$in: import("@feathersjs/typebox").TObject<{
|
|
2517
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2518
|
+
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2519
|
+
listen_port: import("@feathersjs/typebox").TNumber;
|
|
2520
|
+
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
2521
|
+
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
2522
|
+
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2523
|
+
username: import("@feathersjs/typebox").TString<string>;
|
|
2524
|
+
password: import("@feathersjs/typebox").TString<string>;
|
|
2525
|
+
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2283
2526
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2284
2527
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2285
2528
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -2289,7 +2532,16 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2289
2532
|
username: import("@feathersjs/typebox").TString<string>;
|
|
2290
2533
|
password: import("@feathersjs/typebox").TString<string>;
|
|
2291
2534
|
}>>;
|
|
2292
|
-
$nin: import("@feathersjs/typebox").
|
|
2535
|
+
$nin: import("@feathersjs/typebox").TObject<{
|
|
2536
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2537
|
+
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2538
|
+
listen_port: import("@feathersjs/typebox").TNumber;
|
|
2539
|
+
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
2540
|
+
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
2541
|
+
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2542
|
+
username: import("@feathersjs/typebox").TString<string>;
|
|
2543
|
+
password: import("@feathersjs/typebox").TString<string>;
|
|
2544
|
+
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2293
2545
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2294
2546
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2295
2547
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -2308,8 +2560,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2308
2560
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
2309
2561
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
2310
2562
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2311
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2312
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2563
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2564
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2313
2565
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2314
2566
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2315
2567
|
} | undefined>]>>]>>;
|
|
@@ -2325,15 +2577,19 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2325
2577
|
provider?: number | undefined;
|
|
2326
2578
|
_id?: number | undefined;
|
|
2327
2579
|
updatedAt?: number | undefined;
|
|
2328
|
-
strategyId?: number | undefined;
|
|
2329
|
-
exchangeId?: number | undefined;
|
|
2330
|
-
userId?: number | undefined;
|
|
2331
2580
|
which?: number | undefined;
|
|
2581
|
+
userId?: number | undefined;
|
|
2582
|
+
exchangeId?: number | undefined;
|
|
2583
|
+
stake_currency?: number | undefined;
|
|
2584
|
+
stake_amount?: number | undefined;
|
|
2585
|
+
strategyId?: number | undefined;
|
|
2586
|
+
dry_run_wallet?: number | undefined;
|
|
2587
|
+
max_open_trades?: number | undefined;
|
|
2332
2588
|
running?: number | undefined;
|
|
2333
2589
|
api_server?: number | undefined;
|
|
2334
2590
|
pod?: number | undefined;
|
|
2335
2591
|
};
|
|
2336
|
-
$select: ("host" | "name" | "provider" | "_id" | "updatedAt" | "
|
|
2592
|
+
$select: ("host" | "name" | "provider" | "_id" | "updatedAt" | "which" | "userId" | "exchangeId" | "stake_currency" | "stake_amount" | "strategyId" | "dry_run_wallet" | "max_open_trades" | "running" | "api_server" | "pod")[];
|
|
2337
2593
|
$and: ({
|
|
2338
2594
|
host?: string | Partial<{
|
|
2339
2595
|
$gt: string;
|
|
@@ -2341,8 +2597,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2341
2597
|
$lt: string;
|
|
2342
2598
|
$lte: string;
|
|
2343
2599
|
$ne: string;
|
|
2344
|
-
$in: string[];
|
|
2345
|
-
$nin: string[];
|
|
2600
|
+
$in: string | string[];
|
|
2601
|
+
$nin: string | string[];
|
|
2346
2602
|
} & {}> | undefined;
|
|
2347
2603
|
name?: any;
|
|
2348
2604
|
provider?: "docker" | Partial<{
|
|
@@ -2351,8 +2607,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2351
2607
|
$lt: "docker";
|
|
2352
2608
|
$lte: "docker";
|
|
2353
2609
|
$ne: "docker";
|
|
2354
|
-
$in: "docker"[];
|
|
2355
|
-
$nin: "docker"[];
|
|
2610
|
+
$in: "docker" | "docker"[];
|
|
2611
|
+
$nin: "docker" | "docker"[];
|
|
2356
2612
|
} & {}> | undefined;
|
|
2357
2613
|
_id?: string | {} | Partial<{
|
|
2358
2614
|
$gt: string | {};
|
|
@@ -2360,29 +2616,65 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2360
2616
|
$lt: string | {};
|
|
2361
2617
|
$lte: string | {};
|
|
2362
2618
|
$ne: string | {};
|
|
2363
|
-
$in: (string | {})[];
|
|
2364
|
-
$nin: (string | {})[];
|
|
2619
|
+
$in: string | {} | (string | {})[];
|
|
2620
|
+
$nin: string | {} | (string | {})[];
|
|
2365
2621
|
} & {}> | undefined;
|
|
2366
2622
|
updatedAt?: any;
|
|
2367
|
-
|
|
2368
|
-
$gt: string
|
|
2369
|
-
$gte: string
|
|
2370
|
-
$lt: string
|
|
2371
|
-
$lte: string
|
|
2372
|
-
$ne: string
|
|
2373
|
-
$in:
|
|
2374
|
-
$nin:
|
|
2623
|
+
which?: string | Partial<{
|
|
2624
|
+
$gt: string;
|
|
2625
|
+
$gte: string;
|
|
2626
|
+
$lt: string;
|
|
2627
|
+
$lte: string;
|
|
2628
|
+
$ne: string;
|
|
2629
|
+
$in: string | string[];
|
|
2630
|
+
$nin: string | string[];
|
|
2375
2631
|
} & {}> | undefined;
|
|
2376
|
-
exchangeId?: any;
|
|
2377
2632
|
userId?: any;
|
|
2378
|
-
|
|
2633
|
+
exchangeId?: any;
|
|
2634
|
+
stake_currency?: string | Partial<{
|
|
2379
2635
|
$gt: string;
|
|
2380
2636
|
$gte: string;
|
|
2381
2637
|
$lt: string;
|
|
2382
2638
|
$lte: string;
|
|
2383
2639
|
$ne: string;
|
|
2384
|
-
$in: string[];
|
|
2385
|
-
$nin: string[];
|
|
2640
|
+
$in: string | string[];
|
|
2641
|
+
$nin: string | string[];
|
|
2642
|
+
} & {}> | undefined;
|
|
2643
|
+
stake_amount?: string | number | Partial<{
|
|
2644
|
+
$gt: string | number;
|
|
2645
|
+
$gte: string | number;
|
|
2646
|
+
$lt: string | number;
|
|
2647
|
+
$lte: string | number;
|
|
2648
|
+
$ne: string | number;
|
|
2649
|
+
$in: string | number | (string | number)[];
|
|
2650
|
+
$nin: string | number | (string | number)[];
|
|
2651
|
+
} & {}> | undefined;
|
|
2652
|
+
strategyId?: string | {} | Partial<{
|
|
2653
|
+
$gt: string | {};
|
|
2654
|
+
$gte: string | {};
|
|
2655
|
+
$lt: string | {};
|
|
2656
|
+
$lte: string | {};
|
|
2657
|
+
$ne: string | {};
|
|
2658
|
+
$in: string | {} | (string | {})[];
|
|
2659
|
+
$nin: string | {} | (string | {})[];
|
|
2660
|
+
} & {}> | undefined;
|
|
2661
|
+
dry_run_wallet?: number | Partial<{
|
|
2662
|
+
$gt?: number | undefined;
|
|
2663
|
+
$gte?: number | undefined;
|
|
2664
|
+
$lt?: number | undefined;
|
|
2665
|
+
$lte?: number | undefined;
|
|
2666
|
+
$ne?: number | undefined;
|
|
2667
|
+
$in: number | number[];
|
|
2668
|
+
$nin: number | number[];
|
|
2669
|
+
} & {}> | undefined;
|
|
2670
|
+
max_open_trades?: number | Partial<{
|
|
2671
|
+
$gt?: number | undefined;
|
|
2672
|
+
$gte?: number | undefined;
|
|
2673
|
+
$lt?: number | undefined;
|
|
2674
|
+
$lte?: number | undefined;
|
|
2675
|
+
$ne?: number | undefined;
|
|
2676
|
+
$in: number | number[];
|
|
2677
|
+
$nin: number | number[];
|
|
2386
2678
|
} & {}> | undefined;
|
|
2387
2679
|
running?: boolean | Partial<{
|
|
2388
2680
|
$gt?: boolean | undefined;
|
|
@@ -2390,88 +2682,106 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2390
2682
|
$lt?: boolean | undefined;
|
|
2391
2683
|
$lte?: boolean | undefined;
|
|
2392
2684
|
$ne?: boolean | undefined;
|
|
2393
|
-
$in: boolean[];
|
|
2394
|
-
$nin: boolean[];
|
|
2685
|
+
$in: boolean | boolean[];
|
|
2686
|
+
$nin: boolean | boolean[];
|
|
2395
2687
|
} & {}> | undefined;
|
|
2396
2688
|
api_server?: {
|
|
2397
2689
|
password: string;
|
|
2398
2690
|
enabled: boolean;
|
|
2691
|
+
username: string;
|
|
2399
2692
|
listen_ip_address: string;
|
|
2400
2693
|
listen_port: number;
|
|
2401
2694
|
verbosity: string;
|
|
2402
2695
|
jwt_secret_key: string;
|
|
2403
2696
|
CORS_origins: string[];
|
|
2404
|
-
username: string;
|
|
2405
2697
|
} | Partial<{
|
|
2406
2698
|
$gt: {
|
|
2407
2699
|
password: string;
|
|
2408
2700
|
enabled: boolean;
|
|
2701
|
+
username: string;
|
|
2409
2702
|
listen_ip_address: string;
|
|
2410
2703
|
listen_port: number;
|
|
2411
2704
|
verbosity: string;
|
|
2412
2705
|
jwt_secret_key: string;
|
|
2413
2706
|
CORS_origins: string[];
|
|
2414
|
-
username: string;
|
|
2415
2707
|
};
|
|
2416
2708
|
$gte: {
|
|
2417
2709
|
password: string;
|
|
2418
2710
|
enabled: boolean;
|
|
2711
|
+
username: string;
|
|
2419
2712
|
listen_ip_address: string;
|
|
2420
2713
|
listen_port: number;
|
|
2421
2714
|
verbosity: string;
|
|
2422
2715
|
jwt_secret_key: string;
|
|
2423
2716
|
CORS_origins: string[];
|
|
2424
|
-
username: string;
|
|
2425
2717
|
};
|
|
2426
2718
|
$lt: {
|
|
2427
2719
|
password: string;
|
|
2428
2720
|
enabled: boolean;
|
|
2721
|
+
username: string;
|
|
2429
2722
|
listen_ip_address: string;
|
|
2430
2723
|
listen_port: number;
|
|
2431
2724
|
verbosity: string;
|
|
2432
2725
|
jwt_secret_key: string;
|
|
2433
2726
|
CORS_origins: string[];
|
|
2434
|
-
username: string;
|
|
2435
2727
|
};
|
|
2436
2728
|
$lte: {
|
|
2437
2729
|
password: string;
|
|
2438
2730
|
enabled: boolean;
|
|
2731
|
+
username: string;
|
|
2439
2732
|
listen_ip_address: string;
|
|
2440
2733
|
listen_port: number;
|
|
2441
2734
|
verbosity: string;
|
|
2442
2735
|
jwt_secret_key: string;
|
|
2443
2736
|
CORS_origins: string[];
|
|
2444
|
-
username: string;
|
|
2445
2737
|
};
|
|
2446
2738
|
$ne: {
|
|
2447
2739
|
password: string;
|
|
2448
2740
|
enabled: boolean;
|
|
2741
|
+
username: string;
|
|
2449
2742
|
listen_ip_address: string;
|
|
2450
2743
|
listen_port: number;
|
|
2451
2744
|
verbosity: string;
|
|
2452
2745
|
jwt_secret_key: string;
|
|
2453
2746
|
CORS_origins: string[];
|
|
2454
|
-
username: string;
|
|
2455
2747
|
};
|
|
2456
2748
|
$in: {
|
|
2457
2749
|
password: string;
|
|
2458
2750
|
enabled: boolean;
|
|
2751
|
+
username: string;
|
|
2459
2752
|
listen_ip_address: string;
|
|
2460
2753
|
listen_port: number;
|
|
2461
2754
|
verbosity: string;
|
|
2462
2755
|
jwt_secret_key: string;
|
|
2463
2756
|
CORS_origins: string[];
|
|
2757
|
+
} | {
|
|
2758
|
+
password: string;
|
|
2759
|
+
enabled: boolean;
|
|
2464
2760
|
username: string;
|
|
2761
|
+
listen_ip_address: string;
|
|
2762
|
+
listen_port: number;
|
|
2763
|
+
verbosity: string;
|
|
2764
|
+
jwt_secret_key: string;
|
|
2765
|
+
CORS_origins: string[];
|
|
2465
2766
|
}[];
|
|
2466
2767
|
$nin: {
|
|
2467
2768
|
password: string;
|
|
2468
2769
|
enabled: boolean;
|
|
2770
|
+
username: string;
|
|
2469
2771
|
listen_ip_address: string;
|
|
2470
2772
|
listen_port: number;
|
|
2471
2773
|
verbosity: string;
|
|
2472
2774
|
jwt_secret_key: string;
|
|
2473
2775
|
CORS_origins: string[];
|
|
2776
|
+
} | {
|
|
2777
|
+
password: string;
|
|
2778
|
+
enabled: boolean;
|
|
2474
2779
|
username: string;
|
|
2780
|
+
listen_ip_address: string;
|
|
2781
|
+
listen_port: number;
|
|
2782
|
+
verbosity: string;
|
|
2783
|
+
jwt_secret_key: string;
|
|
2784
|
+
CORS_origins: string[];
|
|
2475
2785
|
}[];
|
|
2476
2786
|
} & {}> | undefined;
|
|
2477
2787
|
pod?: string | Partial<{
|
|
@@ -2480,8 +2790,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2480
2790
|
$lt: string;
|
|
2481
2791
|
$lte: string;
|
|
2482
2792
|
$ne: string;
|
|
2483
|
-
$in: string[];
|
|
2484
|
-
$nin: string[];
|
|
2793
|
+
$in: string | string[];
|
|
2794
|
+
$nin: string | string[];
|
|
2485
2795
|
} & {}> | undefined;
|
|
2486
2796
|
} | {
|
|
2487
2797
|
$or: {
|
|
@@ -2491,8 +2801,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2491
2801
|
$lt: string;
|
|
2492
2802
|
$lte: string;
|
|
2493
2803
|
$ne: string;
|
|
2494
|
-
$in: string[];
|
|
2495
|
-
$nin: string[];
|
|
2804
|
+
$in: string | string[];
|
|
2805
|
+
$nin: string | string[];
|
|
2496
2806
|
} & {}> | undefined;
|
|
2497
2807
|
name?: any;
|
|
2498
2808
|
provider?: "docker" | Partial<{
|
|
@@ -2501,8 +2811,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2501
2811
|
$lt: "docker";
|
|
2502
2812
|
$lte: "docker";
|
|
2503
2813
|
$ne: "docker";
|
|
2504
|
-
$in: "docker"[];
|
|
2505
|
-
$nin: "docker"[];
|
|
2814
|
+
$in: "docker" | "docker"[];
|
|
2815
|
+
$nin: "docker" | "docker"[];
|
|
2506
2816
|
} & {}> | undefined;
|
|
2507
2817
|
_id?: string | {} | Partial<{
|
|
2508
2818
|
$gt: string | {};
|
|
@@ -2510,29 +2820,65 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2510
2820
|
$lt: string | {};
|
|
2511
2821
|
$lte: string | {};
|
|
2512
2822
|
$ne: string | {};
|
|
2513
|
-
$in: (string | {})[];
|
|
2514
|
-
$nin: (string | {})[];
|
|
2823
|
+
$in: string | {} | (string | {})[];
|
|
2824
|
+
$nin: string | {} | (string | {})[];
|
|
2515
2825
|
} & {}> | undefined;
|
|
2516
2826
|
updatedAt?: any;
|
|
2517
|
-
|
|
2518
|
-
$gt: string
|
|
2519
|
-
$gte: string
|
|
2520
|
-
$lt: string
|
|
2521
|
-
$lte: string
|
|
2522
|
-
$ne: string
|
|
2523
|
-
$in:
|
|
2524
|
-
$nin:
|
|
2827
|
+
which?: string | Partial<{
|
|
2828
|
+
$gt: string;
|
|
2829
|
+
$gte: string;
|
|
2830
|
+
$lt: string;
|
|
2831
|
+
$lte: string;
|
|
2832
|
+
$ne: string;
|
|
2833
|
+
$in: string | string[];
|
|
2834
|
+
$nin: string | string[];
|
|
2525
2835
|
} & {}> | undefined;
|
|
2526
|
-
exchangeId?: any;
|
|
2527
2836
|
userId?: any;
|
|
2528
|
-
|
|
2837
|
+
exchangeId?: any;
|
|
2838
|
+
stake_currency?: string | Partial<{
|
|
2529
2839
|
$gt: string;
|
|
2530
2840
|
$gte: string;
|
|
2531
2841
|
$lt: string;
|
|
2532
2842
|
$lte: string;
|
|
2533
2843
|
$ne: string;
|
|
2534
|
-
$in: string[];
|
|
2535
|
-
$nin: string[];
|
|
2844
|
+
$in: string | string[];
|
|
2845
|
+
$nin: string | string[];
|
|
2846
|
+
} & {}> | undefined;
|
|
2847
|
+
stake_amount?: string | number | Partial<{
|
|
2848
|
+
$gt: string | number;
|
|
2849
|
+
$gte: string | number;
|
|
2850
|
+
$lt: string | number;
|
|
2851
|
+
$lte: string | number;
|
|
2852
|
+
$ne: string | number;
|
|
2853
|
+
$in: string | number | (string | number)[];
|
|
2854
|
+
$nin: string | number | (string | number)[];
|
|
2855
|
+
} & {}> | undefined;
|
|
2856
|
+
strategyId?: string | {} | Partial<{
|
|
2857
|
+
$gt: string | {};
|
|
2858
|
+
$gte: string | {};
|
|
2859
|
+
$lt: string | {};
|
|
2860
|
+
$lte: string | {};
|
|
2861
|
+
$ne: string | {};
|
|
2862
|
+
$in: string | {} | (string | {})[];
|
|
2863
|
+
$nin: string | {} | (string | {})[];
|
|
2864
|
+
} & {}> | undefined;
|
|
2865
|
+
dry_run_wallet?: number | Partial<{
|
|
2866
|
+
$gt?: number | undefined;
|
|
2867
|
+
$gte?: number | undefined;
|
|
2868
|
+
$lt?: number | undefined;
|
|
2869
|
+
$lte?: number | undefined;
|
|
2870
|
+
$ne?: number | undefined;
|
|
2871
|
+
$in: number | number[];
|
|
2872
|
+
$nin: number | number[];
|
|
2873
|
+
} & {}> | undefined;
|
|
2874
|
+
max_open_trades?: number | Partial<{
|
|
2875
|
+
$gt?: number | undefined;
|
|
2876
|
+
$gte?: number | undefined;
|
|
2877
|
+
$lt?: number | undefined;
|
|
2878
|
+
$lte?: number | undefined;
|
|
2879
|
+
$ne?: number | undefined;
|
|
2880
|
+
$in: number | number[];
|
|
2881
|
+
$nin: number | number[];
|
|
2536
2882
|
} & {}> | undefined;
|
|
2537
2883
|
running?: boolean | Partial<{
|
|
2538
2884
|
$gt?: boolean | undefined;
|
|
@@ -2540,88 +2886,106 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2540
2886
|
$lt?: boolean | undefined;
|
|
2541
2887
|
$lte?: boolean | undefined;
|
|
2542
2888
|
$ne?: boolean | undefined;
|
|
2543
|
-
$in: boolean[];
|
|
2544
|
-
$nin: boolean[];
|
|
2889
|
+
$in: boolean | boolean[];
|
|
2890
|
+
$nin: boolean | boolean[];
|
|
2545
2891
|
} & {}> | undefined;
|
|
2546
2892
|
api_server?: {
|
|
2547
2893
|
password: string;
|
|
2548
2894
|
enabled: boolean;
|
|
2895
|
+
username: string;
|
|
2549
2896
|
listen_ip_address: string;
|
|
2550
2897
|
listen_port: number;
|
|
2551
2898
|
verbosity: string;
|
|
2552
2899
|
jwt_secret_key: string;
|
|
2553
2900
|
CORS_origins: string[];
|
|
2554
|
-
username: string;
|
|
2555
2901
|
} | Partial<{
|
|
2556
2902
|
$gt: {
|
|
2557
2903
|
password: string;
|
|
2558
2904
|
enabled: boolean;
|
|
2905
|
+
username: string;
|
|
2559
2906
|
listen_ip_address: string;
|
|
2560
2907
|
listen_port: number;
|
|
2561
2908
|
verbosity: string;
|
|
2562
2909
|
jwt_secret_key: string;
|
|
2563
2910
|
CORS_origins: string[];
|
|
2564
|
-
username: string;
|
|
2565
2911
|
};
|
|
2566
2912
|
$gte: {
|
|
2567
2913
|
password: string;
|
|
2568
2914
|
enabled: boolean;
|
|
2915
|
+
username: string;
|
|
2569
2916
|
listen_ip_address: string;
|
|
2570
2917
|
listen_port: number;
|
|
2571
2918
|
verbosity: string;
|
|
2572
2919
|
jwt_secret_key: string;
|
|
2573
2920
|
CORS_origins: string[];
|
|
2574
|
-
username: string;
|
|
2575
2921
|
};
|
|
2576
2922
|
$lt: {
|
|
2577
2923
|
password: string;
|
|
2578
2924
|
enabled: boolean;
|
|
2925
|
+
username: string;
|
|
2579
2926
|
listen_ip_address: string;
|
|
2580
2927
|
listen_port: number;
|
|
2581
2928
|
verbosity: string;
|
|
2582
2929
|
jwt_secret_key: string;
|
|
2583
2930
|
CORS_origins: string[];
|
|
2584
|
-
username: string;
|
|
2585
2931
|
};
|
|
2586
2932
|
$lte: {
|
|
2587
2933
|
password: string;
|
|
2588
2934
|
enabled: boolean;
|
|
2935
|
+
username: string;
|
|
2589
2936
|
listen_ip_address: string;
|
|
2590
2937
|
listen_port: number;
|
|
2591
2938
|
verbosity: string;
|
|
2592
2939
|
jwt_secret_key: string;
|
|
2593
2940
|
CORS_origins: string[];
|
|
2594
|
-
username: string;
|
|
2595
2941
|
};
|
|
2596
2942
|
$ne: {
|
|
2597
2943
|
password: string;
|
|
2598
2944
|
enabled: boolean;
|
|
2945
|
+
username: string;
|
|
2599
2946
|
listen_ip_address: string;
|
|
2600
2947
|
listen_port: number;
|
|
2601
2948
|
verbosity: string;
|
|
2602
2949
|
jwt_secret_key: string;
|
|
2603
2950
|
CORS_origins: string[];
|
|
2604
|
-
username: string;
|
|
2605
2951
|
};
|
|
2606
2952
|
$in: {
|
|
2607
2953
|
password: string;
|
|
2608
2954
|
enabled: boolean;
|
|
2955
|
+
username: string;
|
|
2609
2956
|
listen_ip_address: string;
|
|
2610
2957
|
listen_port: number;
|
|
2611
2958
|
verbosity: string;
|
|
2612
2959
|
jwt_secret_key: string;
|
|
2613
2960
|
CORS_origins: string[];
|
|
2961
|
+
} | {
|
|
2962
|
+
password: string;
|
|
2963
|
+
enabled: boolean;
|
|
2614
2964
|
username: string;
|
|
2965
|
+
listen_ip_address: string;
|
|
2966
|
+
listen_port: number;
|
|
2967
|
+
verbosity: string;
|
|
2968
|
+
jwt_secret_key: string;
|
|
2969
|
+
CORS_origins: string[];
|
|
2615
2970
|
}[];
|
|
2616
2971
|
$nin: {
|
|
2617
2972
|
password: string;
|
|
2618
2973
|
enabled: boolean;
|
|
2974
|
+
username: string;
|
|
2619
2975
|
listen_ip_address: string;
|
|
2620
2976
|
listen_port: number;
|
|
2621
2977
|
verbosity: string;
|
|
2622
2978
|
jwt_secret_key: string;
|
|
2623
2979
|
CORS_origins: string[];
|
|
2980
|
+
} | {
|
|
2981
|
+
password: string;
|
|
2982
|
+
enabled: boolean;
|
|
2624
2983
|
username: string;
|
|
2984
|
+
listen_ip_address: string;
|
|
2985
|
+
listen_port: number;
|
|
2986
|
+
verbosity: string;
|
|
2987
|
+
jwt_secret_key: string;
|
|
2988
|
+
CORS_origins: string[];
|
|
2625
2989
|
}[];
|
|
2626
2990
|
} & {}> | undefined;
|
|
2627
2991
|
pod?: string | Partial<{
|
|
@@ -2630,8 +2994,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2630
2994
|
$lt: string;
|
|
2631
2995
|
$lte: string;
|
|
2632
2996
|
$ne: string;
|
|
2633
|
-
$in: string[];
|
|
2634
|
-
$nin: string[];
|
|
2997
|
+
$in: string | string[];
|
|
2998
|
+
$nin: string | string[];
|
|
2635
2999
|
} & {}> | undefined;
|
|
2636
3000
|
}[];
|
|
2637
3001
|
})[];
|
|
@@ -2642,8 +3006,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2642
3006
|
$lt: string;
|
|
2643
3007
|
$lte: string;
|
|
2644
3008
|
$ne: string;
|
|
2645
|
-
$in: string[];
|
|
2646
|
-
$nin: string[];
|
|
3009
|
+
$in: string | string[];
|
|
3010
|
+
$nin: string | string[];
|
|
2647
3011
|
} & {}> | undefined;
|
|
2648
3012
|
name?: any;
|
|
2649
3013
|
provider?: "docker" | Partial<{
|
|
@@ -2652,8 +3016,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2652
3016
|
$lt: "docker";
|
|
2653
3017
|
$lte: "docker";
|
|
2654
3018
|
$ne: "docker";
|
|
2655
|
-
$in: "docker"[];
|
|
2656
|
-
$nin: "docker"[];
|
|
3019
|
+
$in: "docker" | "docker"[];
|
|
3020
|
+
$nin: "docker" | "docker"[];
|
|
2657
3021
|
} & {}> | undefined;
|
|
2658
3022
|
_id?: string | {} | Partial<{
|
|
2659
3023
|
$gt: string | {};
|
|
@@ -2661,29 +3025,65 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2661
3025
|
$lt: string | {};
|
|
2662
3026
|
$lte: string | {};
|
|
2663
3027
|
$ne: string | {};
|
|
2664
|
-
$in: (string | {})[];
|
|
2665
|
-
$nin: (string | {})[];
|
|
3028
|
+
$in: string | {} | (string | {})[];
|
|
3029
|
+
$nin: string | {} | (string | {})[];
|
|
2666
3030
|
} & {}> | undefined;
|
|
2667
3031
|
updatedAt?: any;
|
|
2668
|
-
|
|
2669
|
-
$gt: string
|
|
2670
|
-
$gte: string
|
|
2671
|
-
$lt: string
|
|
2672
|
-
$lte: string
|
|
2673
|
-
$ne: string
|
|
2674
|
-
$in:
|
|
2675
|
-
$nin:
|
|
3032
|
+
which?: string | Partial<{
|
|
3033
|
+
$gt: string;
|
|
3034
|
+
$gte: string;
|
|
3035
|
+
$lt: string;
|
|
3036
|
+
$lte: string;
|
|
3037
|
+
$ne: string;
|
|
3038
|
+
$in: string | string[];
|
|
3039
|
+
$nin: string | string[];
|
|
2676
3040
|
} & {}> | undefined;
|
|
2677
|
-
exchangeId?: any;
|
|
2678
3041
|
userId?: any;
|
|
2679
|
-
|
|
3042
|
+
exchangeId?: any;
|
|
3043
|
+
stake_currency?: string | Partial<{
|
|
2680
3044
|
$gt: string;
|
|
2681
3045
|
$gte: string;
|
|
2682
3046
|
$lt: string;
|
|
2683
3047
|
$lte: string;
|
|
2684
3048
|
$ne: string;
|
|
2685
|
-
$in: string[];
|
|
2686
|
-
$nin: string[];
|
|
3049
|
+
$in: string | string[];
|
|
3050
|
+
$nin: string | string[];
|
|
3051
|
+
} & {}> | undefined;
|
|
3052
|
+
stake_amount?: string | number | Partial<{
|
|
3053
|
+
$gt: string | number;
|
|
3054
|
+
$gte: string | number;
|
|
3055
|
+
$lt: string | number;
|
|
3056
|
+
$lte: string | number;
|
|
3057
|
+
$ne: string | number;
|
|
3058
|
+
$in: string | number | (string | number)[];
|
|
3059
|
+
$nin: string | number | (string | number)[];
|
|
3060
|
+
} & {}> | undefined;
|
|
3061
|
+
strategyId?: string | {} | Partial<{
|
|
3062
|
+
$gt: string | {};
|
|
3063
|
+
$gte: string | {};
|
|
3064
|
+
$lt: string | {};
|
|
3065
|
+
$lte: string | {};
|
|
3066
|
+
$ne: string | {};
|
|
3067
|
+
$in: string | {} | (string | {})[];
|
|
3068
|
+
$nin: string | {} | (string | {})[];
|
|
3069
|
+
} & {}> | undefined;
|
|
3070
|
+
dry_run_wallet?: number | Partial<{
|
|
3071
|
+
$gt?: number | undefined;
|
|
3072
|
+
$gte?: number | undefined;
|
|
3073
|
+
$lt?: number | undefined;
|
|
3074
|
+
$lte?: number | undefined;
|
|
3075
|
+
$ne?: number | undefined;
|
|
3076
|
+
$in: number | number[];
|
|
3077
|
+
$nin: number | number[];
|
|
3078
|
+
} & {}> | undefined;
|
|
3079
|
+
max_open_trades?: number | Partial<{
|
|
3080
|
+
$gt?: number | undefined;
|
|
3081
|
+
$gte?: number | undefined;
|
|
3082
|
+
$lt?: number | undefined;
|
|
3083
|
+
$lte?: number | undefined;
|
|
3084
|
+
$ne?: number | undefined;
|
|
3085
|
+
$in: number | number[];
|
|
3086
|
+
$nin: number | number[];
|
|
2687
3087
|
} & {}> | undefined;
|
|
2688
3088
|
running?: boolean | Partial<{
|
|
2689
3089
|
$gt?: boolean | undefined;
|
|
@@ -2691,88 +3091,106 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2691
3091
|
$lt?: boolean | undefined;
|
|
2692
3092
|
$lte?: boolean | undefined;
|
|
2693
3093
|
$ne?: boolean | undefined;
|
|
2694
|
-
$in: boolean[];
|
|
2695
|
-
$nin: boolean[];
|
|
3094
|
+
$in: boolean | boolean[];
|
|
3095
|
+
$nin: boolean | boolean[];
|
|
2696
3096
|
} & {}> | undefined;
|
|
2697
3097
|
api_server?: {
|
|
2698
3098
|
password: string;
|
|
2699
3099
|
enabled: boolean;
|
|
3100
|
+
username: string;
|
|
2700
3101
|
listen_ip_address: string;
|
|
2701
3102
|
listen_port: number;
|
|
2702
3103
|
verbosity: string;
|
|
2703
3104
|
jwt_secret_key: string;
|
|
2704
3105
|
CORS_origins: string[];
|
|
2705
|
-
username: string;
|
|
2706
3106
|
} | Partial<{
|
|
2707
3107
|
$gt: {
|
|
2708
3108
|
password: string;
|
|
2709
3109
|
enabled: boolean;
|
|
3110
|
+
username: string;
|
|
2710
3111
|
listen_ip_address: string;
|
|
2711
3112
|
listen_port: number;
|
|
2712
3113
|
verbosity: string;
|
|
2713
3114
|
jwt_secret_key: string;
|
|
2714
3115
|
CORS_origins: string[];
|
|
2715
|
-
username: string;
|
|
2716
3116
|
};
|
|
2717
3117
|
$gte: {
|
|
2718
3118
|
password: string;
|
|
2719
3119
|
enabled: boolean;
|
|
3120
|
+
username: string;
|
|
2720
3121
|
listen_ip_address: string;
|
|
2721
3122
|
listen_port: number;
|
|
2722
3123
|
verbosity: string;
|
|
2723
3124
|
jwt_secret_key: string;
|
|
2724
3125
|
CORS_origins: string[];
|
|
2725
|
-
username: string;
|
|
2726
3126
|
};
|
|
2727
3127
|
$lt: {
|
|
2728
3128
|
password: string;
|
|
2729
3129
|
enabled: boolean;
|
|
3130
|
+
username: string;
|
|
2730
3131
|
listen_ip_address: string;
|
|
2731
3132
|
listen_port: number;
|
|
2732
3133
|
verbosity: string;
|
|
2733
3134
|
jwt_secret_key: string;
|
|
2734
3135
|
CORS_origins: string[];
|
|
2735
|
-
username: string;
|
|
2736
3136
|
};
|
|
2737
3137
|
$lte: {
|
|
2738
3138
|
password: string;
|
|
2739
3139
|
enabled: boolean;
|
|
3140
|
+
username: string;
|
|
2740
3141
|
listen_ip_address: string;
|
|
2741
3142
|
listen_port: number;
|
|
2742
3143
|
verbosity: string;
|
|
2743
3144
|
jwt_secret_key: string;
|
|
2744
3145
|
CORS_origins: string[];
|
|
2745
|
-
username: string;
|
|
2746
3146
|
};
|
|
2747
3147
|
$ne: {
|
|
2748
3148
|
password: string;
|
|
2749
3149
|
enabled: boolean;
|
|
3150
|
+
username: string;
|
|
2750
3151
|
listen_ip_address: string;
|
|
2751
3152
|
listen_port: number;
|
|
2752
3153
|
verbosity: string;
|
|
2753
3154
|
jwt_secret_key: string;
|
|
2754
3155
|
CORS_origins: string[];
|
|
2755
|
-
username: string;
|
|
2756
3156
|
};
|
|
2757
3157
|
$in: {
|
|
2758
3158
|
password: string;
|
|
2759
3159
|
enabled: boolean;
|
|
3160
|
+
username: string;
|
|
2760
3161
|
listen_ip_address: string;
|
|
2761
3162
|
listen_port: number;
|
|
2762
3163
|
verbosity: string;
|
|
2763
3164
|
jwt_secret_key: string;
|
|
2764
3165
|
CORS_origins: string[];
|
|
3166
|
+
} | {
|
|
3167
|
+
password: string;
|
|
3168
|
+
enabled: boolean;
|
|
2765
3169
|
username: string;
|
|
3170
|
+
listen_ip_address: string;
|
|
3171
|
+
listen_port: number;
|
|
3172
|
+
verbosity: string;
|
|
3173
|
+
jwt_secret_key: string;
|
|
3174
|
+
CORS_origins: string[];
|
|
2766
3175
|
}[];
|
|
2767
3176
|
$nin: {
|
|
2768
3177
|
password: string;
|
|
2769
3178
|
enabled: boolean;
|
|
3179
|
+
username: string;
|
|
2770
3180
|
listen_ip_address: string;
|
|
2771
3181
|
listen_port: number;
|
|
2772
3182
|
verbosity: string;
|
|
2773
3183
|
jwt_secret_key: string;
|
|
2774
3184
|
CORS_origins: string[];
|
|
3185
|
+
} | {
|
|
3186
|
+
password: string;
|
|
3187
|
+
enabled: boolean;
|
|
2775
3188
|
username: string;
|
|
3189
|
+
listen_ip_address: string;
|
|
3190
|
+
listen_port: number;
|
|
3191
|
+
verbosity: string;
|
|
3192
|
+
jwt_secret_key: string;
|
|
3193
|
+
CORS_origins: string[];
|
|
2776
3194
|
}[];
|
|
2777
3195
|
} & {}> | undefined;
|
|
2778
3196
|
pod?: string | Partial<{
|
|
@@ -2781,8 +3199,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2781
3199
|
$lt: string;
|
|
2782
3200
|
$lte: string;
|
|
2783
3201
|
$ne: string;
|
|
2784
|
-
$in: string[];
|
|
2785
|
-
$nin: string[];
|
|
3202
|
+
$in: string | string[];
|
|
3203
|
+
$nin: string | string[];
|
|
2786
3204
|
} & {}> | undefined;
|
|
2787
3205
|
}[];
|
|
2788
3206
|
}> & {
|
|
@@ -2792,8 +3210,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2792
3210
|
$lt: string;
|
|
2793
3211
|
$lte: string;
|
|
2794
3212
|
$ne: string;
|
|
2795
|
-
$in: string[];
|
|
2796
|
-
$nin: string[];
|
|
3213
|
+
$in: string | string[];
|
|
3214
|
+
$nin: string | string[];
|
|
2797
3215
|
} & {}> | undefined;
|
|
2798
3216
|
name?: any;
|
|
2799
3217
|
provider?: "docker" | Partial<{
|
|
@@ -2802,8 +3220,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2802
3220
|
$lt: "docker";
|
|
2803
3221
|
$lte: "docker";
|
|
2804
3222
|
$ne: "docker";
|
|
2805
|
-
$in: "docker"[];
|
|
2806
|
-
$nin: "docker"[];
|
|
3223
|
+
$in: "docker" | "docker"[];
|
|
3224
|
+
$nin: "docker" | "docker"[];
|
|
2807
3225
|
} & {}> | undefined;
|
|
2808
3226
|
_id?: string | {} | Partial<{
|
|
2809
3227
|
$gt: string | {};
|
|
@@ -2811,29 +3229,65 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2811
3229
|
$lt: string | {};
|
|
2812
3230
|
$lte: string | {};
|
|
2813
3231
|
$ne: string | {};
|
|
2814
|
-
$in: (string | {})[];
|
|
2815
|
-
$nin: (string | {})[];
|
|
3232
|
+
$in: string | {} | (string | {})[];
|
|
3233
|
+
$nin: string | {} | (string | {})[];
|
|
2816
3234
|
} & {}> | undefined;
|
|
2817
3235
|
updatedAt?: any;
|
|
2818
|
-
|
|
2819
|
-
$gt: string
|
|
2820
|
-
$gte: string
|
|
2821
|
-
$lt: string
|
|
2822
|
-
$lte: string
|
|
2823
|
-
$ne: string
|
|
2824
|
-
$in:
|
|
2825
|
-
$nin:
|
|
3236
|
+
which?: string | Partial<{
|
|
3237
|
+
$gt: string;
|
|
3238
|
+
$gte: string;
|
|
3239
|
+
$lt: string;
|
|
3240
|
+
$lte: string;
|
|
3241
|
+
$ne: string;
|
|
3242
|
+
$in: string | string[];
|
|
3243
|
+
$nin: string | string[];
|
|
2826
3244
|
} & {}> | undefined;
|
|
2827
|
-
exchangeId?: any;
|
|
2828
3245
|
userId?: any;
|
|
2829
|
-
|
|
3246
|
+
exchangeId?: any;
|
|
3247
|
+
stake_currency?: string | Partial<{
|
|
2830
3248
|
$gt: string;
|
|
2831
3249
|
$gte: string;
|
|
2832
3250
|
$lt: string;
|
|
2833
3251
|
$lte: string;
|
|
2834
3252
|
$ne: string;
|
|
2835
|
-
$in: string[];
|
|
2836
|
-
$nin: string[];
|
|
3253
|
+
$in: string | string[];
|
|
3254
|
+
$nin: string | string[];
|
|
3255
|
+
} & {}> | undefined;
|
|
3256
|
+
stake_amount?: string | number | Partial<{
|
|
3257
|
+
$gt: string | number;
|
|
3258
|
+
$gte: string | number;
|
|
3259
|
+
$lt: string | number;
|
|
3260
|
+
$lte: string | number;
|
|
3261
|
+
$ne: string | number;
|
|
3262
|
+
$in: string | number | (string | number)[];
|
|
3263
|
+
$nin: string | number | (string | number)[];
|
|
3264
|
+
} & {}> | undefined;
|
|
3265
|
+
strategyId?: string | {} | Partial<{
|
|
3266
|
+
$gt: string | {};
|
|
3267
|
+
$gte: string | {};
|
|
3268
|
+
$lt: string | {};
|
|
3269
|
+
$lte: string | {};
|
|
3270
|
+
$ne: string | {};
|
|
3271
|
+
$in: string | {} | (string | {})[];
|
|
3272
|
+
$nin: string | {} | (string | {})[];
|
|
3273
|
+
} & {}> | undefined;
|
|
3274
|
+
dry_run_wallet?: number | Partial<{
|
|
3275
|
+
$gt?: number | undefined;
|
|
3276
|
+
$gte?: number | undefined;
|
|
3277
|
+
$lt?: number | undefined;
|
|
3278
|
+
$lte?: number | undefined;
|
|
3279
|
+
$ne?: number | undefined;
|
|
3280
|
+
$in: number | number[];
|
|
3281
|
+
$nin: number | number[];
|
|
3282
|
+
} & {}> | undefined;
|
|
3283
|
+
max_open_trades?: number | Partial<{
|
|
3284
|
+
$gt?: number | undefined;
|
|
3285
|
+
$gte?: number | undefined;
|
|
3286
|
+
$lt?: number | undefined;
|
|
3287
|
+
$lte?: number | undefined;
|
|
3288
|
+
$ne?: number | undefined;
|
|
3289
|
+
$in: number | number[];
|
|
3290
|
+
$nin: number | number[];
|
|
2837
3291
|
} & {}> | undefined;
|
|
2838
3292
|
running?: boolean | Partial<{
|
|
2839
3293
|
$gt?: boolean | undefined;
|
|
@@ -2841,88 +3295,106 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2841
3295
|
$lt?: boolean | undefined;
|
|
2842
3296
|
$lte?: boolean | undefined;
|
|
2843
3297
|
$ne?: boolean | undefined;
|
|
2844
|
-
$in: boolean[];
|
|
2845
|
-
$nin: boolean[];
|
|
3298
|
+
$in: boolean | boolean[];
|
|
3299
|
+
$nin: boolean | boolean[];
|
|
2846
3300
|
} & {}> | undefined;
|
|
2847
3301
|
api_server?: {
|
|
2848
3302
|
password: string;
|
|
2849
3303
|
enabled: boolean;
|
|
3304
|
+
username: string;
|
|
2850
3305
|
listen_ip_address: string;
|
|
2851
3306
|
listen_port: number;
|
|
2852
3307
|
verbosity: string;
|
|
2853
3308
|
jwt_secret_key: string;
|
|
2854
3309
|
CORS_origins: string[];
|
|
2855
|
-
username: string;
|
|
2856
3310
|
} | Partial<{
|
|
2857
3311
|
$gt: {
|
|
2858
3312
|
password: string;
|
|
2859
3313
|
enabled: boolean;
|
|
3314
|
+
username: string;
|
|
2860
3315
|
listen_ip_address: string;
|
|
2861
3316
|
listen_port: number;
|
|
2862
3317
|
verbosity: string;
|
|
2863
3318
|
jwt_secret_key: string;
|
|
2864
3319
|
CORS_origins: string[];
|
|
2865
|
-
username: string;
|
|
2866
3320
|
};
|
|
2867
3321
|
$gte: {
|
|
2868
3322
|
password: string;
|
|
2869
3323
|
enabled: boolean;
|
|
3324
|
+
username: string;
|
|
2870
3325
|
listen_ip_address: string;
|
|
2871
3326
|
listen_port: number;
|
|
2872
3327
|
verbosity: string;
|
|
2873
3328
|
jwt_secret_key: string;
|
|
2874
3329
|
CORS_origins: string[];
|
|
2875
|
-
username: string;
|
|
2876
3330
|
};
|
|
2877
3331
|
$lt: {
|
|
2878
3332
|
password: string;
|
|
2879
3333
|
enabled: boolean;
|
|
3334
|
+
username: string;
|
|
2880
3335
|
listen_ip_address: string;
|
|
2881
3336
|
listen_port: number;
|
|
2882
3337
|
verbosity: string;
|
|
2883
3338
|
jwt_secret_key: string;
|
|
2884
3339
|
CORS_origins: string[];
|
|
2885
|
-
username: string;
|
|
2886
3340
|
};
|
|
2887
3341
|
$lte: {
|
|
2888
3342
|
password: string;
|
|
2889
3343
|
enabled: boolean;
|
|
3344
|
+
username: string;
|
|
2890
3345
|
listen_ip_address: string;
|
|
2891
3346
|
listen_port: number;
|
|
2892
3347
|
verbosity: string;
|
|
2893
3348
|
jwt_secret_key: string;
|
|
2894
3349
|
CORS_origins: string[];
|
|
2895
|
-
username: string;
|
|
2896
3350
|
};
|
|
2897
3351
|
$ne: {
|
|
2898
3352
|
password: string;
|
|
2899
3353
|
enabled: boolean;
|
|
3354
|
+
username: string;
|
|
2900
3355
|
listen_ip_address: string;
|
|
2901
3356
|
listen_port: number;
|
|
2902
3357
|
verbosity: string;
|
|
2903
3358
|
jwt_secret_key: string;
|
|
2904
3359
|
CORS_origins: string[];
|
|
2905
|
-
username: string;
|
|
2906
3360
|
};
|
|
2907
3361
|
$in: {
|
|
2908
3362
|
password: string;
|
|
2909
3363
|
enabled: boolean;
|
|
3364
|
+
username: string;
|
|
2910
3365
|
listen_ip_address: string;
|
|
2911
3366
|
listen_port: number;
|
|
2912
3367
|
verbosity: string;
|
|
2913
3368
|
jwt_secret_key: string;
|
|
2914
3369
|
CORS_origins: string[];
|
|
3370
|
+
} | {
|
|
3371
|
+
password: string;
|
|
3372
|
+
enabled: boolean;
|
|
2915
3373
|
username: string;
|
|
3374
|
+
listen_ip_address: string;
|
|
3375
|
+
listen_port: number;
|
|
3376
|
+
verbosity: string;
|
|
3377
|
+
jwt_secret_key: string;
|
|
3378
|
+
CORS_origins: string[];
|
|
2916
3379
|
}[];
|
|
2917
3380
|
$nin: {
|
|
2918
3381
|
password: string;
|
|
2919
3382
|
enabled: boolean;
|
|
3383
|
+
username: string;
|
|
2920
3384
|
listen_ip_address: string;
|
|
2921
3385
|
listen_port: number;
|
|
2922
3386
|
verbosity: string;
|
|
2923
3387
|
jwt_secret_key: string;
|
|
2924
3388
|
CORS_origins: string[];
|
|
3389
|
+
} | {
|
|
3390
|
+
password: string;
|
|
3391
|
+
enabled: boolean;
|
|
2925
3392
|
username: string;
|
|
3393
|
+
listen_ip_address: string;
|
|
3394
|
+
listen_port: number;
|
|
3395
|
+
verbosity: string;
|
|
3396
|
+
jwt_secret_key: string;
|
|
3397
|
+
CORS_origins: string[];
|
|
2926
3398
|
}[];
|
|
2927
3399
|
} & {}> | undefined;
|
|
2928
3400
|
pod?: string | Partial<{
|
|
@@ -2931,7 +3403,7 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2931
3403
|
$lt: string;
|
|
2932
3404
|
$lte: string;
|
|
2933
3405
|
$ne: string;
|
|
2934
|
-
$in: string[];
|
|
2935
|
-
$nin: string[];
|
|
3406
|
+
$in: string | string[];
|
|
3407
|
+
$nin: string | string[];
|
|
2936
3408
|
} & {}> | undefined;
|
|
2937
3409
|
} & {}, HookContext<TradersService<import("./traders.class").TradersParams>>>;
|