@cryptorobot.ai/client 0.0.38 → 0.0.40
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/src/client.js +33 -3
- package/lib/src/services/agents/agents.class.d.ts +11 -0
- package/lib/src/services/agents/agents.d.ts +11 -0
- package/lib/src/services/agents/agents.schema.d.ts +2371 -0
- package/lib/src/services/agents/agents.shared.d.ts +13 -0
- package/lib/src/services/agents/agents.shared.js +13 -0
- package/lib/src/services/agents/prepare/prepare.class.d.ts +18 -0
- package/lib/src/services/agents/prepare/prepare.d.ts +11 -0
- package/lib/src/services/agents/prepare/prepare.schema.d.ts +285 -0
- package/lib/src/services/agents/prepare/prepare.shared.d.ts +13 -0
- package/lib/src/services/agents/prepare/prepare.shared.js +13 -0
- package/lib/src/services/agents/sessions/conversations/conversations.class.d.ts +11 -0
- package/lib/src/services/agents/sessions/conversations/conversations.d.ts +11 -0
- package/lib/src/services/agents/sessions/conversations/conversations.schema.d.ts +2561 -0
- package/lib/src/services/agents/sessions/conversations/conversations.shared.d.ts +13 -0
- package/lib/src/services/agents/sessions/conversations/conversations.shared.js +13 -0
- package/lib/src/services/agents/sessions/sessions.class.d.ts +11 -0
- package/lib/src/services/agents/sessions/sessions.d.ts +11 -0
- package/lib/src/services/agents/sessions/sessions.schema.d.ts +803 -0
- package/lib/src/services/agents/sessions/sessions.shared.d.ts +13 -0
- package/lib/src/services/agents/sessions/sessions.shared.js +13 -0
- package/lib/src/services/events/events.class.d.ts +11 -0
- package/lib/src/services/events/events.d.ts +11 -0
- package/lib/src/services/events/events.schema.d.ts +786 -0
- package/lib/src/services/events/events.shared.d.ts +13 -0
- package/lib/src/services/events/events.shared.js +13 -0
- package/lib/src/services/events/triggers/triggers.class.d.ts +11 -0
- package/lib/src/services/events/triggers/triggers.d.ts +11 -0
- package/lib/src/services/events/triggers/triggers.schema.d.ts +1582 -0
- package/lib/src/services/events/triggers/triggers.shared.d.ts +13 -0
- package/lib/src/services/events/triggers/triggers.shared.js +13 -0
- package/lib/src/services/events/types/types.class.d.ts +11 -0
- package/lib/src/services/events/types/types.d.ts +11 -0
- package/lib/src/services/events/types/types.schema.d.ts +688 -0
- package/lib/src/services/events/types/types.shared.d.ts +13 -0
- package/lib/src/services/events/types/types.shared.js +13 -0
- package/lib/src/services/exchanges/balance/balance.schema.d.ts +16 -16
- package/lib/src/services/exchanges/download/download.schema.d.ts +58 -17
- package/lib/src/services/exchanges/download/download.shared.d.ts +1 -1
- package/lib/src/services/exchanges/download/download.shared.js +1 -1
- package/lib/src/services/exchanges/download/webhooks/webhooks.schema.d.ts +4 -4
- package/lib/src/services/exchanges/exchanges.schema.d.ts +100 -100
- package/lib/src/services/exchanges/ohlcv/ohlcv.class.d.ts +19 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.d.ts +11 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.schema.d.ts +507 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.shared.d.ts +13 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.shared.js +13 -0
- package/lib/src/services/exchanges/ticker/ticker.schema.d.ts +68 -68
- package/lib/src/services/extensions/extensions.class.d.ts +11 -0
- package/lib/src/services/extensions/extensions.d.ts +11 -0
- package/lib/src/services/extensions/extensions.schema.d.ts +1275 -0
- package/lib/src/services/extensions/extensions.shared.d.ts +13 -0
- package/lib/src/services/extensions/extensions.shared.js +13 -0
- package/lib/src/services/keys/KeysService.d.ts +13 -0
- package/lib/src/services/keys/keys.class.d.ts +11 -0
- package/lib/src/services/keys/keys.d.ts +11 -0
- package/lib/src/services/keys/keys.schema.d.ts +719 -0
- package/lib/src/services/keys/keys.shared.d.ts +14 -0
- package/lib/src/services/keys/keys.shared.js +13 -0
- package/lib/src/services/messages/messages.schema.d.ts +64 -32
- package/lib/src/services/restricted/restricted.class.d.ts +26 -0
- package/lib/src/services/restricted/restricted.d.ts +21 -0
- package/lib/src/services/restricted/restricted.shared.d.ts +13 -0
- package/lib/src/services/restricted/restricted.shared.js +13 -0
- package/lib/src/services/strategies/backtest/backtest.schema.d.ts +127 -60
- package/lib/src/services/strategies/backtest/results/results.schema.d.ts +36 -36
- package/lib/src/services/strategies/generate/generate.class.d.ts +11 -0
- package/lib/src/services/strategies/generate/generate.d.ts +11 -0
- package/lib/src/services/strategies/generate/generate.schema.d.ts +429 -0
- package/lib/src/services/strategies/generate/generate.shared.d.ts +13 -0
- package/lib/src/services/strategies/generate/generate.shared.js +13 -0
- package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +16 -8
- package/lib/src/services/strategies/indicators/indicators.schema.d.ts +177 -97
- package/lib/src/services/strategies/indicators/talib/talib.class.d.ts +11 -0
- package/lib/src/services/strategies/indicators/talib/talib.d.ts +11 -0
- package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +443 -0
- package/lib/src/services/strategies/indicators/talib/talib.shared.d.ts +13 -0
- package/lib/src/services/strategies/indicators/talib/talib.shared.js +13 -0
- package/lib/src/services/strategies/strategies.schema.d.ts +2732 -327
- package/lib/src/services/strategies/templates/templates.schema.d.ts +2146 -16
- package/lib/src/services/tools/openapi/openapi.class.d.ts +34 -0
- package/lib/src/services/tools/openapi/openapi.d.ts +10 -0
- package/lib/src/services/tools/openapi/openapi.shared.d.ts +13 -0
- package/lib/src/services/tools/openapi/openapi.shared.js +13 -0
- package/lib/src/services/tools/tools.class.d.ts +11 -0
- package/lib/src/services/tools/tools.d.ts +11 -0
- package/lib/src/services/tools/tools.schema.d.ts +269 -0
- package/lib/src/services/tools/tools.shared.d.ts +13 -0
- package/lib/src/services/tools/tools.shared.js +13 -0
- package/lib/src/services/traders/pods/api/api.schema.d.ts +1650 -464
- package/lib/src/services/traders/pods/events/events.schema.d.ts +4 -4
- package/lib/src/services/traders/pods/pods.schema.d.ts +1539 -443
- package/lib/src/services/traders/traders.schema.d.ts +142 -142
- package/lib/src/services/users/users.class.d.ts +178 -3
- package/lib/src/services/users/users.schema.d.ts +123 -85
- package/lib/src/services/users/users.shared.d.ts +4 -3
- package/lib/src/services/users/users.shared.js +1 -1
- package/package.json +2 -3
- package/readme.md +1 -2
|
@@ -224,7 +224,6 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
224
224
|
balance_dust_level: number;
|
|
225
225
|
} | undefined;
|
|
226
226
|
_id?: string | {} | undefined;
|
|
227
|
-
running?: boolean | undefined;
|
|
228
227
|
plugins?: {
|
|
229
228
|
number_assets?: number | undefined;
|
|
230
229
|
refresh_period?: number | undefined;
|
|
@@ -241,6 +240,7 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
241
240
|
exit: number;
|
|
242
241
|
} | undefined;
|
|
243
242
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
243
|
+
running?: boolean | undefined;
|
|
244
244
|
tradable_balance_ratio?: number | undefined;
|
|
245
245
|
webhook?: {
|
|
246
246
|
url: string;
|
|
@@ -325,15 +325,16 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
325
325
|
host: string;
|
|
326
326
|
name: any;
|
|
327
327
|
provider: "docker";
|
|
328
|
-
strategies: string[];
|
|
329
328
|
secret: string;
|
|
330
329
|
key: string;
|
|
331
330
|
createdAt: any;
|
|
332
331
|
updatedAt: any;
|
|
333
|
-
"traders/pods": any;
|
|
334
|
-
userId: any;
|
|
335
332
|
connected: boolean;
|
|
336
333
|
which: string;
|
|
334
|
+
userId: any;
|
|
335
|
+
strategy: any;
|
|
336
|
+
strategies: string[];
|
|
337
|
+
"traders/pods": any;
|
|
337
338
|
exchange: any;
|
|
338
339
|
exchangeId: any;
|
|
339
340
|
stake_currency: string;
|
|
@@ -342,7 +343,6 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
342
343
|
handling: string;
|
|
343
344
|
initial_state: string;
|
|
344
345
|
pairlists: any;
|
|
345
|
-
strategy: any;
|
|
346
346
|
strategyId: string | {};
|
|
347
347
|
entry_pricing: {
|
|
348
348
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -408,7 +408,6 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
408
408
|
balance_dust_level: number;
|
|
409
409
|
} | undefined;
|
|
410
410
|
_id?: string | {} | undefined;
|
|
411
|
-
running?: boolean | undefined;
|
|
412
411
|
plugins?: {
|
|
413
412
|
number_assets?: number | undefined;
|
|
414
413
|
refresh_period?: number | undefined;
|
|
@@ -425,6 +424,7 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
425
424
|
exit: number;
|
|
426
425
|
} | undefined;
|
|
427
426
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
427
|
+
running?: boolean | undefined;
|
|
428
428
|
tradable_balance_ratio?: number | undefined;
|
|
429
429
|
webhook?: {
|
|
430
430
|
url: string;
|
|
@@ -509,15 +509,16 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
509
509
|
host: string;
|
|
510
510
|
name: any;
|
|
511
511
|
provider: "docker";
|
|
512
|
-
strategies: string[];
|
|
513
512
|
secret: string;
|
|
514
513
|
key: string;
|
|
515
514
|
createdAt: any;
|
|
516
515
|
updatedAt: any;
|
|
517
|
-
"traders/pods": any;
|
|
518
|
-
userId: any;
|
|
519
516
|
connected: boolean;
|
|
520
517
|
which: string;
|
|
518
|
+
userId: any;
|
|
519
|
+
strategy: any;
|
|
520
|
+
strategies: string[];
|
|
521
|
+
"traders/pods": any;
|
|
521
522
|
exchange: any;
|
|
522
523
|
exchangeId: any;
|
|
523
524
|
stake_currency: string;
|
|
@@ -526,7 +527,6 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
526
527
|
handling: string;
|
|
527
528
|
initial_state: string;
|
|
528
529
|
pairlists: any;
|
|
529
|
-
strategy: any;
|
|
530
530
|
strategyId: string | {};
|
|
531
531
|
entry_pricing: {
|
|
532
532
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -778,7 +778,6 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
778
778
|
balance_dust_level: number;
|
|
779
779
|
} | undefined;
|
|
780
780
|
_id?: string | {} | undefined;
|
|
781
|
-
running?: boolean | undefined;
|
|
782
781
|
plugins?: {
|
|
783
782
|
number_assets?: number | undefined;
|
|
784
783
|
refresh_period?: number | undefined;
|
|
@@ -795,6 +794,7 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
795
794
|
exit: number;
|
|
796
795
|
} | undefined;
|
|
797
796
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
797
|
+
running?: boolean | undefined;
|
|
798
798
|
tradable_balance_ratio?: number | undefined;
|
|
799
799
|
webhook?: {
|
|
800
800
|
url: string;
|
|
@@ -879,15 +879,16 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
879
879
|
host: string;
|
|
880
880
|
name: any;
|
|
881
881
|
provider: "docker";
|
|
882
|
-
strategies: string[];
|
|
883
882
|
secret: string;
|
|
884
883
|
key: string;
|
|
885
884
|
createdAt: any;
|
|
886
885
|
updatedAt: any;
|
|
887
|
-
"traders/pods": any;
|
|
888
|
-
userId: any;
|
|
889
886
|
connected: boolean;
|
|
890
887
|
which: string;
|
|
888
|
+
userId: any;
|
|
889
|
+
strategy: any;
|
|
890
|
+
strategies: string[];
|
|
891
|
+
"traders/pods": any;
|
|
891
892
|
exchange: any;
|
|
892
893
|
exchangeId: any;
|
|
893
894
|
stake_currency: string;
|
|
@@ -896,7 +897,6 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
896
897
|
handling: string;
|
|
897
898
|
initial_state: string;
|
|
898
899
|
pairlists: any;
|
|
899
|
-
strategy: any;
|
|
900
900
|
strategyId: string | {};
|
|
901
901
|
entry_pricing: {
|
|
902
902
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -1148,7 +1148,6 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1148
1148
|
balance_dust_level: number;
|
|
1149
1149
|
} | undefined;
|
|
1150
1150
|
_id?: string | {} | undefined;
|
|
1151
|
-
running?: boolean | undefined;
|
|
1152
1151
|
plugins?: {
|
|
1153
1152
|
number_assets?: number | undefined;
|
|
1154
1153
|
refresh_period?: number | undefined;
|
|
@@ -1165,6 +1164,7 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1165
1164
|
exit: number;
|
|
1166
1165
|
} | undefined;
|
|
1167
1166
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1167
|
+
running?: boolean | undefined;
|
|
1168
1168
|
tradable_balance_ratio?: number | undefined;
|
|
1169
1169
|
webhook?: {
|
|
1170
1170
|
url: string;
|
|
@@ -1249,15 +1249,16 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1249
1249
|
host: string;
|
|
1250
1250
|
name: any;
|
|
1251
1251
|
provider: "docker";
|
|
1252
|
-
strategies: string[];
|
|
1253
1252
|
secret: string;
|
|
1254
1253
|
key: string;
|
|
1255
1254
|
createdAt: any;
|
|
1256
1255
|
updatedAt: any;
|
|
1257
|
-
"traders/pods": any;
|
|
1258
|
-
userId: any;
|
|
1259
1256
|
connected: boolean;
|
|
1260
1257
|
which: string;
|
|
1258
|
+
userId: any;
|
|
1259
|
+
strategy: any;
|
|
1260
|
+
strategies: string[];
|
|
1261
|
+
"traders/pods": any;
|
|
1261
1262
|
exchange: any;
|
|
1262
1263
|
exchangeId: any;
|
|
1263
1264
|
stake_currency: string;
|
|
@@ -1266,7 +1267,6 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1266
1267
|
handling: string;
|
|
1267
1268
|
initial_state: string;
|
|
1268
1269
|
pairlists: any;
|
|
1269
|
-
strategy: any;
|
|
1270
1270
|
strategyId: string | {};
|
|
1271
1271
|
entry_pricing: {
|
|
1272
1272
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -1489,9 +1489,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1489
1489
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1490
1490
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1491
1491
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1492
|
-
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1493
|
-
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1494
1492
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1493
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1495
1494
|
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1496
1495
|
stake_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1497
1496
|
stake_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
@@ -1499,10 +1498,11 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1499
1498
|
dry_run_wallet: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1500
1499
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1501
1500
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1501
|
+
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1502
1502
|
api_server: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1503
1503
|
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
1504
1504
|
}>;
|
|
1505
|
-
$select: import("@feathersjs/typebox").TUnsafe<("host" | "name" | "provider" | "_id" | "createdAt" | "updatedAt" | "
|
|
1505
|
+
$select: import("@feathersjs/typebox").TUnsafe<("host" | "name" | "provider" | "_id" | "createdAt" | "updatedAt" | "which" | "userId" | "exchangeId" | "stake_currency" | "stake_amount" | "strategyId" | "dry_run_wallet" | "max_open_trades" | "fiat_display_currency" | "running" | "api_server" | "pod")[]>;
|
|
1506
1506
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1507
1507
|
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<{
|
|
1508
1508
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1570,14 +1570,14 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1570
1570
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1571
1571
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1572
1572
|
} | undefined>]>>]>>;
|
|
1573
|
-
|
|
1574
|
-
$gt: import("@feathersjs/typebox").
|
|
1575
|
-
$gte: import("@feathersjs/typebox").
|
|
1576
|
-
$lt: import("@feathersjs/typebox").
|
|
1577
|
-
$lte: import("@feathersjs/typebox").
|
|
1578
|
-
$ne: import("@feathersjs/typebox").
|
|
1579
|
-
$in: import("@feathersjs/typebox").
|
|
1580
|
-
$nin: import("@feathersjs/typebox").
|
|
1573
|
+
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<{
|
|
1574
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
1575
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
1576
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1577
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1578
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1579
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1580
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1581
1581
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1582
1582
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1583
1583
|
} | undefined>]>>]>>;
|
|
@@ -1592,17 +1592,6 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1592
1592
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1593
1593
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1594
1594
|
} | undefined>]>>]>>;
|
|
1595
|
-
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<{
|
|
1596
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
1597
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
1598
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1599
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1600
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1601
|
-
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1602
|
-
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1603
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
1604
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1605
|
-
} | undefined>]>>]>>;
|
|
1606
1595
|
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<{
|
|
1607
1596
|
$gt: import("@feathersjs/typebox").TAny;
|
|
1608
1597
|
$gte: import("@feathersjs/typebox").TAny;
|
|
@@ -1680,6 +1669,17 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1680
1669
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1681
1670
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1682
1671
|
} | undefined>]>>]>>;
|
|
1672
|
+
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1673
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1674
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1675
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1676
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1677
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1678
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1679
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1680
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
1681
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1682
|
+
} | undefined>]>>]>>;
|
|
1683
1683
|
api_server: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
|
|
1684
1684
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1685
1685
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1860,14 +1860,14 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1860
1860
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1861
1861
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1862
1862
|
} | undefined>]>>]>>;
|
|
1863
|
-
|
|
1864
|
-
$gt: import("@feathersjs/typebox").
|
|
1865
|
-
$gte: import("@feathersjs/typebox").
|
|
1866
|
-
$lt: import("@feathersjs/typebox").
|
|
1867
|
-
$lte: import("@feathersjs/typebox").
|
|
1868
|
-
$ne: import("@feathersjs/typebox").
|
|
1869
|
-
$in: import("@feathersjs/typebox").
|
|
1870
|
-
$nin: import("@feathersjs/typebox").
|
|
1863
|
+
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<{
|
|
1864
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
1865
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
1866
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1867
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1868
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1869
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1870
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1871
1871
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1872
1872
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1873
1873
|
} | undefined>]>>]>>;
|
|
@@ -1882,17 +1882,6 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1882
1882
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1883
1883
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1884
1884
|
} | undefined>]>>]>>;
|
|
1885
|
-
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<{
|
|
1886
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
1887
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
1888
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1889
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1890
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1891
|
-
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1892
|
-
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1893
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
1894
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1895
|
-
} | undefined>]>>]>>;
|
|
1896
1885
|
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<{
|
|
1897
1886
|
$gt: import("@feathersjs/typebox").TAny;
|
|
1898
1887
|
$gte: import("@feathersjs/typebox").TAny;
|
|
@@ -1970,6 +1959,17 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1970
1959
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1971
1960
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1972
1961
|
} | undefined>]>>]>>;
|
|
1962
|
+
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1963
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1964
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1965
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1966
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1967
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1968
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1969
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1970
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
1971
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1972
|
+
} | undefined>]>>]>>;
|
|
1973
1973
|
api_server: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
|
|
1974
1974
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1975
1975
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2151,14 +2151,14 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2151
2151
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2152
2152
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2153
2153
|
} | undefined>]>>]>>;
|
|
2154
|
-
|
|
2155
|
-
$gt: import("@feathersjs/typebox").
|
|
2156
|
-
$gte: import("@feathersjs/typebox").
|
|
2157
|
-
$lt: import("@feathersjs/typebox").
|
|
2158
|
-
$lte: import("@feathersjs/typebox").
|
|
2159
|
-
$ne: import("@feathersjs/typebox").
|
|
2160
|
-
$in: import("@feathersjs/typebox").
|
|
2161
|
-
$nin: import("@feathersjs/typebox").
|
|
2154
|
+
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<{
|
|
2155
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
2156
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
2157
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
2158
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
2159
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2160
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2161
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2162
2162
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2163
2163
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2164
2164
|
} | undefined>]>>]>>;
|
|
@@ -2173,17 +2173,6 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2173
2173
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2174
2174
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2175
2175
|
} | undefined>]>>]>>;
|
|
2176
|
-
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<{
|
|
2177
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
2178
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
2179
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
2180
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
2181
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2182
|
-
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2183
|
-
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2184
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
2185
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2186
|
-
} | undefined>]>>]>>;
|
|
2187
2176
|
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<{
|
|
2188
2177
|
$gt: import("@feathersjs/typebox").TAny;
|
|
2189
2178
|
$gte: import("@feathersjs/typebox").TAny;
|
|
@@ -2261,6 +2250,17 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2261
2250
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2262
2251
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2263
2252
|
} | undefined>]>>]>>;
|
|
2253
|
+
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2254
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2255
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2256
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2257
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2258
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2259
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2260
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2261
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2262
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2263
|
+
} | undefined>]>>]>>;
|
|
2264
2264
|
api_server: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
|
|
2265
2265
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2266
2266
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2441,14 +2441,14 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2441
2441
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2442
2442
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2443
2443
|
} | undefined>]>>]>>;
|
|
2444
|
-
|
|
2445
|
-
$gt: import("@feathersjs/typebox").
|
|
2446
|
-
$gte: import("@feathersjs/typebox").
|
|
2447
|
-
$lt: import("@feathersjs/typebox").
|
|
2448
|
-
$lte: import("@feathersjs/typebox").
|
|
2449
|
-
$ne: import("@feathersjs/typebox").
|
|
2450
|
-
$in: import("@feathersjs/typebox").
|
|
2451
|
-
$nin: import("@feathersjs/typebox").
|
|
2444
|
+
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<{
|
|
2445
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
2446
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
2447
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
2448
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
2449
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2450
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2451
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2452
2452
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2453
2453
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2454
2454
|
} | undefined>]>>]>>;
|
|
@@ -2463,17 +2463,6 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2463
2463
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2464
2464
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2465
2465
|
} | undefined>]>>]>>;
|
|
2466
|
-
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<{
|
|
2467
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
2468
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
2469
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
2470
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
2471
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2472
|
-
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2473
|
-
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2474
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
2475
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2476
|
-
} | undefined>]>>]>>;
|
|
2477
2466
|
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<{
|
|
2478
2467
|
$gt: import("@feathersjs/typebox").TAny;
|
|
2479
2468
|
$gte: import("@feathersjs/typebox").TAny;
|
|
@@ -2551,6 +2540,17 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2551
2540
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2552
2541
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2553
2542
|
} | undefined>]>>]>>;
|
|
2543
|
+
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2544
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2545
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2546
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2547
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2548
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2549
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2550
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2551
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2552
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2553
|
+
} | undefined>]>>]>>;
|
|
2554
2554
|
api_server: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
|
|
2555
2555
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2556
2556
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2676,9 +2676,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2676
2676
|
_id?: number | undefined;
|
|
2677
2677
|
createdAt?: number | undefined;
|
|
2678
2678
|
updatedAt?: number | undefined;
|
|
2679
|
-
running?: number | undefined;
|
|
2680
|
-
userId?: number | undefined;
|
|
2681
2679
|
which?: number | undefined;
|
|
2680
|
+
userId?: number | undefined;
|
|
2682
2681
|
exchangeId?: number | undefined;
|
|
2683
2682
|
stake_currency?: number | undefined;
|
|
2684
2683
|
stake_amount?: number | undefined;
|
|
@@ -2686,10 +2685,11 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2686
2685
|
dry_run_wallet?: number | undefined;
|
|
2687
2686
|
max_open_trades?: number | undefined;
|
|
2688
2687
|
fiat_display_currency?: number | undefined;
|
|
2688
|
+
running?: number | undefined;
|
|
2689
2689
|
api_server?: number | undefined;
|
|
2690
2690
|
pod?: number | undefined;
|
|
2691
2691
|
};
|
|
2692
|
-
$select: ("host" | "name" | "provider" | "_id" | "createdAt" | "updatedAt" | "
|
|
2692
|
+
$select: ("host" | "name" | "provider" | "_id" | "createdAt" | "updatedAt" | "which" | "userId" | "exchangeId" | "stake_currency" | "stake_amount" | "strategyId" | "dry_run_wallet" | "max_open_trades" | "fiat_display_currency" | "running" | "api_server" | "pod")[];
|
|
2693
2693
|
$and: ({
|
|
2694
2694
|
host?: string | Partial<{
|
|
2695
2695
|
$gt: string;
|
|
@@ -2721,16 +2721,6 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2721
2721
|
} & {}> | undefined;
|
|
2722
2722
|
createdAt?: any;
|
|
2723
2723
|
updatedAt?: any;
|
|
2724
|
-
running?: boolean | Partial<{
|
|
2725
|
-
$gt?: boolean | undefined;
|
|
2726
|
-
$gte?: boolean | undefined;
|
|
2727
|
-
$lt?: boolean | undefined;
|
|
2728
|
-
$lte?: boolean | undefined;
|
|
2729
|
-
$ne?: boolean | undefined;
|
|
2730
|
-
$in: boolean | boolean[];
|
|
2731
|
-
$nin: boolean | boolean[];
|
|
2732
|
-
} & {}> | undefined;
|
|
2733
|
-
userId?: any;
|
|
2734
2724
|
which?: string | Partial<{
|
|
2735
2725
|
$gt: string;
|
|
2736
2726
|
$gte: string;
|
|
@@ -2740,6 +2730,7 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2740
2730
|
$in: string | string[];
|
|
2741
2731
|
$nin: string | string[];
|
|
2742
2732
|
} & {}> | undefined;
|
|
2733
|
+
userId?: any;
|
|
2743
2734
|
exchangeId?: any;
|
|
2744
2735
|
stake_currency?: string | Partial<{
|
|
2745
2736
|
$gt: string;
|
|
@@ -2795,6 +2786,15 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2795
2786
|
$in: string | string[];
|
|
2796
2787
|
$nin: string | string[];
|
|
2797
2788
|
} & {}> | undefined;
|
|
2789
|
+
running?: boolean | Partial<{
|
|
2790
|
+
$gt?: boolean | undefined;
|
|
2791
|
+
$gte?: boolean | undefined;
|
|
2792
|
+
$lt?: boolean | undefined;
|
|
2793
|
+
$lte?: boolean | undefined;
|
|
2794
|
+
$ne?: boolean | undefined;
|
|
2795
|
+
$in: boolean | boolean[];
|
|
2796
|
+
$nin: boolean | boolean[];
|
|
2797
|
+
} & {}> | undefined;
|
|
2798
2798
|
api_server?: {
|
|
2799
2799
|
password: string;
|
|
2800
2800
|
enabled: boolean;
|
|
@@ -2935,16 +2935,6 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2935
2935
|
} & {}> | undefined;
|
|
2936
2936
|
createdAt?: any;
|
|
2937
2937
|
updatedAt?: any;
|
|
2938
|
-
running?: boolean | Partial<{
|
|
2939
|
-
$gt?: boolean | undefined;
|
|
2940
|
-
$gte?: boolean | undefined;
|
|
2941
|
-
$lt?: boolean | undefined;
|
|
2942
|
-
$lte?: boolean | undefined;
|
|
2943
|
-
$ne?: boolean | undefined;
|
|
2944
|
-
$in: boolean | boolean[];
|
|
2945
|
-
$nin: boolean | boolean[];
|
|
2946
|
-
} & {}> | undefined;
|
|
2947
|
-
userId?: any;
|
|
2948
2938
|
which?: string | Partial<{
|
|
2949
2939
|
$gt: string;
|
|
2950
2940
|
$gte: string;
|
|
@@ -2954,6 +2944,7 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2954
2944
|
$in: string | string[];
|
|
2955
2945
|
$nin: string | string[];
|
|
2956
2946
|
} & {}> | undefined;
|
|
2947
|
+
userId?: any;
|
|
2957
2948
|
exchangeId?: any;
|
|
2958
2949
|
stake_currency?: string | Partial<{
|
|
2959
2950
|
$gt: string;
|
|
@@ -3009,6 +3000,15 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
3009
3000
|
$in: string | string[];
|
|
3010
3001
|
$nin: string | string[];
|
|
3011
3002
|
} & {}> | undefined;
|
|
3003
|
+
running?: boolean | Partial<{
|
|
3004
|
+
$gt?: boolean | undefined;
|
|
3005
|
+
$gte?: boolean | undefined;
|
|
3006
|
+
$lt?: boolean | undefined;
|
|
3007
|
+
$lte?: boolean | undefined;
|
|
3008
|
+
$ne?: boolean | undefined;
|
|
3009
|
+
$in: boolean | boolean[];
|
|
3010
|
+
$nin: boolean | boolean[];
|
|
3011
|
+
} & {}> | undefined;
|
|
3012
3012
|
api_server?: {
|
|
3013
3013
|
password: string;
|
|
3014
3014
|
enabled: boolean;
|
|
@@ -3150,16 +3150,6 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
3150
3150
|
} & {}> | undefined;
|
|
3151
3151
|
createdAt?: any;
|
|
3152
3152
|
updatedAt?: any;
|
|
3153
|
-
running?: boolean | Partial<{
|
|
3154
|
-
$gt?: boolean | undefined;
|
|
3155
|
-
$gte?: boolean | undefined;
|
|
3156
|
-
$lt?: boolean | undefined;
|
|
3157
|
-
$lte?: boolean | undefined;
|
|
3158
|
-
$ne?: boolean | undefined;
|
|
3159
|
-
$in: boolean | boolean[];
|
|
3160
|
-
$nin: boolean | boolean[];
|
|
3161
|
-
} & {}> | undefined;
|
|
3162
|
-
userId?: any;
|
|
3163
3153
|
which?: string | Partial<{
|
|
3164
3154
|
$gt: string;
|
|
3165
3155
|
$gte: string;
|
|
@@ -3169,6 +3159,7 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
3169
3159
|
$in: string | string[];
|
|
3170
3160
|
$nin: string | string[];
|
|
3171
3161
|
} & {}> | undefined;
|
|
3162
|
+
userId?: any;
|
|
3172
3163
|
exchangeId?: any;
|
|
3173
3164
|
stake_currency?: string | Partial<{
|
|
3174
3165
|
$gt: string;
|
|
@@ -3224,6 +3215,15 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
3224
3215
|
$in: string | string[];
|
|
3225
3216
|
$nin: string | string[];
|
|
3226
3217
|
} & {}> | undefined;
|
|
3218
|
+
running?: boolean | Partial<{
|
|
3219
|
+
$gt?: boolean | undefined;
|
|
3220
|
+
$gte?: boolean | undefined;
|
|
3221
|
+
$lt?: boolean | undefined;
|
|
3222
|
+
$lte?: boolean | undefined;
|
|
3223
|
+
$ne?: boolean | undefined;
|
|
3224
|
+
$in: boolean | boolean[];
|
|
3225
|
+
$nin: boolean | boolean[];
|
|
3226
|
+
} & {}> | undefined;
|
|
3227
3227
|
api_server?: {
|
|
3228
3228
|
password: string;
|
|
3229
3229
|
enabled: boolean;
|
|
@@ -3364,16 +3364,6 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
3364
3364
|
} & {}> | undefined;
|
|
3365
3365
|
createdAt?: any;
|
|
3366
3366
|
updatedAt?: any;
|
|
3367
|
-
running?: boolean | Partial<{
|
|
3368
|
-
$gt?: boolean | undefined;
|
|
3369
|
-
$gte?: boolean | undefined;
|
|
3370
|
-
$lt?: boolean | undefined;
|
|
3371
|
-
$lte?: boolean | undefined;
|
|
3372
|
-
$ne?: boolean | undefined;
|
|
3373
|
-
$in: boolean | boolean[];
|
|
3374
|
-
$nin: boolean | boolean[];
|
|
3375
|
-
} & {}> | undefined;
|
|
3376
|
-
userId?: any;
|
|
3377
3367
|
which?: string | Partial<{
|
|
3378
3368
|
$gt: string;
|
|
3379
3369
|
$gte: string;
|
|
@@ -3383,6 +3373,7 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
3383
3373
|
$in: string | string[];
|
|
3384
3374
|
$nin: string | string[];
|
|
3385
3375
|
} & {}> | undefined;
|
|
3376
|
+
userId?: any;
|
|
3386
3377
|
exchangeId?: any;
|
|
3387
3378
|
stake_currency?: string | Partial<{
|
|
3388
3379
|
$gt: string;
|
|
@@ -3438,6 +3429,15 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
3438
3429
|
$in: string | string[];
|
|
3439
3430
|
$nin: string | string[];
|
|
3440
3431
|
} & {}> | undefined;
|
|
3432
|
+
running?: boolean | Partial<{
|
|
3433
|
+
$gt?: boolean | undefined;
|
|
3434
|
+
$gte?: boolean | undefined;
|
|
3435
|
+
$lt?: boolean | undefined;
|
|
3436
|
+
$lte?: boolean | undefined;
|
|
3437
|
+
$ne?: boolean | undefined;
|
|
3438
|
+
$in: boolean | boolean[];
|
|
3439
|
+
$nin: boolean | boolean[];
|
|
3440
|
+
} & {}> | undefined;
|
|
3441
3441
|
api_server?: {
|
|
3442
3442
|
password: string;
|
|
3443
3443
|
enabled: boolean;
|