@cryptorobot.ai/client 0.0.38 → 0.0.39
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 +4 -1
- 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/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/messages/messages.schema.d.ts +64 -32
- package/lib/src/services/strategies/backtest/backtest.schema.d.ts +127 -60
- package/lib/src/services/strategies/backtest/results/results.schema.d.ts +8 -8
- package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +4 -4
- package/lib/src/services/strategies/indicators/indicators.schema.d.ts +4 -4
- 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 +28 -28
- package/lib/src/services/strategies/templates/templates.schema.d.ts +4 -4
- package/lib/src/services/traders/pods/api/api.schema.d.ts +380 -290
- package/lib/src/services/traders/pods/pods.schema.d.ts +310 -310
- package/lib/src/services/traders/traders.schema.d.ts +138 -138
- 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
|
@@ -691,6 +691,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
691
691
|
}>>>>;
|
|
692
692
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
693
693
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
694
|
+
requestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
694
695
|
action: import("@feathersjs/typebox").TString<string>;
|
|
695
696
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
696
697
|
result: import("@feathersjs/typebox").TAny;
|
|
@@ -703,60 +704,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
703
704
|
stop?: boolean | undefined;
|
|
704
705
|
provider: "docker";
|
|
705
706
|
_id: string | {};
|
|
706
|
-
options: any;
|
|
707
|
-
exchange: Partial<{
|
|
708
|
-
password?: string | undefined;
|
|
709
|
-
name?: any;
|
|
710
|
-
apiKey?: string | null | undefined;
|
|
711
|
-
token?: string | undefined;
|
|
712
|
-
secret?: string | null | undefined;
|
|
713
|
-
_id?: string | {} | undefined;
|
|
714
|
-
avatar?: any;
|
|
715
|
-
createdAt?: any;
|
|
716
|
-
updatedAt?: any;
|
|
717
|
-
error?: any;
|
|
718
|
-
login?: string | undefined;
|
|
719
|
-
userId?: string | {} | undefined;
|
|
720
|
-
connected?: boolean | undefined;
|
|
721
|
-
downloaded?: {
|
|
722
|
-
updatedAt: any;
|
|
723
|
-
size: string;
|
|
724
|
-
pairs: {};
|
|
725
|
-
sizes: any[];
|
|
726
|
-
} | undefined;
|
|
727
|
-
ccxt_config?: any;
|
|
728
|
-
balances?: {
|
|
729
|
-
total?: any;
|
|
730
|
-
errors?: any;
|
|
731
|
-
updatedAt: any;
|
|
732
|
-
items: {
|
|
733
|
-
total?: number | undefined;
|
|
734
|
-
symbol: string;
|
|
735
|
-
fiat: number;
|
|
736
|
-
}[];
|
|
737
|
-
sum: any;
|
|
738
|
-
quotation: any;
|
|
739
|
-
} | undefined;
|
|
740
|
-
tags?: any;
|
|
741
|
-
background?: any;
|
|
742
|
-
blacklist?: {
|
|
743
|
-
left: string;
|
|
744
|
-
right: string;
|
|
745
|
-
}[] | undefined;
|
|
746
|
-
whitelist?: any[] | undefined;
|
|
747
|
-
ccxt_async_config?: any;
|
|
748
|
-
which?: string | undefined;
|
|
749
|
-
stakeCurrencies?: any[] | undefined;
|
|
750
|
-
popularStakeCurrency?: string | null | undefined;
|
|
751
|
-
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
752
|
-
requiredCredentials?: any;
|
|
753
|
-
uid?: string | undefined;
|
|
754
|
-
twofa?: string | undefined;
|
|
755
|
-
privateKey?: string | undefined;
|
|
756
|
-
walletAddress?: string | undefined;
|
|
757
|
-
__v?: any;
|
|
758
|
-
}>;
|
|
759
|
-
exchangeId: string;
|
|
760
707
|
strategy: Partial<{
|
|
761
708
|
traders?: {
|
|
762
709
|
telegram?: {
|
|
@@ -795,7 +742,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
795
742
|
balance_dust_level: number;
|
|
796
743
|
} | undefined;
|
|
797
744
|
_id?: string | {} | undefined;
|
|
798
|
-
running?: boolean | undefined;
|
|
799
745
|
plugins?: {
|
|
800
746
|
number_assets?: number | undefined;
|
|
801
747
|
refresh_period?: number | undefined;
|
|
@@ -812,6 +758,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
812
758
|
exit: number;
|
|
813
759
|
} | undefined;
|
|
814
760
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
761
|
+
running?: boolean | undefined;
|
|
815
762
|
tradable_balance_ratio?: number | undefined;
|
|
816
763
|
webhook?: {
|
|
817
764
|
url: string;
|
|
@@ -901,10 +848,11 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
901
848
|
key: string;
|
|
902
849
|
createdAt: any;
|
|
903
850
|
updatedAt: any;
|
|
904
|
-
"traders/pods": any;
|
|
905
|
-
userId: any;
|
|
906
851
|
connected: boolean;
|
|
907
852
|
which: string;
|
|
853
|
+
userId: any;
|
|
854
|
+
strategy: any;
|
|
855
|
+
"traders/pods": any;
|
|
908
856
|
exchange: any;
|
|
909
857
|
exchangeId: any;
|
|
910
858
|
stake_currency: string;
|
|
@@ -913,7 +861,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
913
861
|
handling: string;
|
|
914
862
|
initial_state: string;
|
|
915
863
|
pairlists: any;
|
|
916
|
-
strategy: any;
|
|
917
864
|
strategyId: string | {};
|
|
918
865
|
entry_pricing: {
|
|
919
866
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -945,16 +892,16 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
945
892
|
_id?: string | {} | undefined;
|
|
946
893
|
createdAt?: any;
|
|
947
894
|
updatedAt?: any;
|
|
895
|
+
userId?: string | {} | undefined;
|
|
948
896
|
'strategies/templates'?: {
|
|
949
897
|
_id?: string | {} | undefined;
|
|
950
898
|
createdAt?: any;
|
|
951
899
|
updatedAt?: any;
|
|
952
900
|
values: any;
|
|
953
901
|
name: string;
|
|
954
|
-
description: string;
|
|
955
902
|
type: string;
|
|
903
|
+
description: string;
|
|
956
904
|
} | undefined;
|
|
957
|
-
userId?: string | {} | undefined;
|
|
958
905
|
file?: any;
|
|
959
906
|
templateId?: string | {} | undefined;
|
|
960
907
|
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
@@ -987,8 +934,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
987
934
|
max_allowed_drawdown?: unknown;
|
|
988
935
|
only_per_pair?: unknown;
|
|
989
936
|
enabled: boolean;
|
|
990
|
-
method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
|
|
991
937
|
type: "coolDownPeriod" | "lowProfitPairs" | "stoplossGuard" | "maxDrawdown";
|
|
938
|
+
method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
|
|
992
939
|
}[] | undefined;
|
|
993
940
|
buywhen?: {
|
|
994
941
|
value?: number | undefined;
|
|
@@ -1011,6 +958,60 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1011
958
|
name: any;
|
|
1012
959
|
'strategies/indicators': any;
|
|
1013
960
|
}>;
|
|
961
|
+
options: any;
|
|
962
|
+
exchange: Partial<{
|
|
963
|
+
password?: string | undefined;
|
|
964
|
+
name?: any;
|
|
965
|
+
apiKey?: string | null | undefined;
|
|
966
|
+
token?: string | undefined;
|
|
967
|
+
secret?: string | null | undefined;
|
|
968
|
+
error?: any;
|
|
969
|
+
_id?: string | {} | undefined;
|
|
970
|
+
createdAt?: any;
|
|
971
|
+
updatedAt?: any;
|
|
972
|
+
connected?: boolean | undefined;
|
|
973
|
+
downloaded?: {
|
|
974
|
+
updatedAt: any;
|
|
975
|
+
size: string;
|
|
976
|
+
pairs: {};
|
|
977
|
+
sizes: any[];
|
|
978
|
+
} | undefined;
|
|
979
|
+
ccxt_config?: any;
|
|
980
|
+
balances?: {
|
|
981
|
+
total?: any;
|
|
982
|
+
errors?: any;
|
|
983
|
+
updatedAt: any;
|
|
984
|
+
items: {
|
|
985
|
+
total?: number | undefined;
|
|
986
|
+
symbol: string;
|
|
987
|
+
fiat: number;
|
|
988
|
+
}[];
|
|
989
|
+
sum: any;
|
|
990
|
+
quotation: any;
|
|
991
|
+
} | undefined;
|
|
992
|
+
tags?: any;
|
|
993
|
+
background?: any;
|
|
994
|
+
avatar?: any;
|
|
995
|
+
blacklist?: {
|
|
996
|
+
left: string;
|
|
997
|
+
right: string;
|
|
998
|
+
}[] | undefined;
|
|
999
|
+
whitelist?: any[] | undefined;
|
|
1000
|
+
ccxt_async_config?: any;
|
|
1001
|
+
which?: string | undefined;
|
|
1002
|
+
stakeCurrencies?: any[] | undefined;
|
|
1003
|
+
popularStakeCurrency?: string | null | undefined;
|
|
1004
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
1005
|
+
requiredCredentials?: any;
|
|
1006
|
+
uid?: string | undefined;
|
|
1007
|
+
login?: string | undefined;
|
|
1008
|
+
twofa?: string | undefined;
|
|
1009
|
+
privateKey?: string | undefined;
|
|
1010
|
+
walletAddress?: string | undefined;
|
|
1011
|
+
userId?: string | {} | undefined;
|
|
1012
|
+
__v?: any;
|
|
1013
|
+
}>;
|
|
1014
|
+
exchangeId: string;
|
|
1014
1015
|
strategyId: string | {};
|
|
1015
1016
|
pod: any;
|
|
1016
1017
|
trader: Partial<{
|
|
@@ -1050,7 +1051,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1050
1051
|
balance_dust_level: number;
|
|
1051
1052
|
} | undefined;
|
|
1052
1053
|
_id?: string | {} | undefined;
|
|
1053
|
-
running?: boolean | undefined;
|
|
1054
1054
|
plugins?: {
|
|
1055
1055
|
number_assets?: number | undefined;
|
|
1056
1056
|
refresh_period?: number | undefined;
|
|
@@ -1067,6 +1067,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1067
1067
|
exit: number;
|
|
1068
1068
|
} | undefined;
|
|
1069
1069
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1070
|
+
running?: boolean | undefined;
|
|
1070
1071
|
tradable_balance_ratio?: number | undefined;
|
|
1071
1072
|
webhook?: {
|
|
1072
1073
|
url: string;
|
|
@@ -1156,10 +1157,11 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1156
1157
|
key: string;
|
|
1157
1158
|
createdAt: any;
|
|
1158
1159
|
updatedAt: any;
|
|
1159
|
-
"traders/pods": any;
|
|
1160
|
-
userId: any;
|
|
1161
1160
|
connected: boolean;
|
|
1162
1161
|
which: string;
|
|
1162
|
+
userId: any;
|
|
1163
|
+
strategy: any;
|
|
1164
|
+
"traders/pods": any;
|
|
1163
1165
|
exchange: any;
|
|
1164
1166
|
exchangeId: any;
|
|
1165
1167
|
stake_currency: string;
|
|
@@ -1168,7 +1170,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1168
1170
|
handling: string;
|
|
1169
1171
|
initial_state: string;
|
|
1170
1172
|
pairlists: any;
|
|
1171
|
-
strategy: any;
|
|
1172
1173
|
strategyId: string | {};
|
|
1173
1174
|
entry_pricing: {
|
|
1174
1175
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -1236,7 +1237,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1236
1237
|
balance_dust_level: number;
|
|
1237
1238
|
} | undefined;
|
|
1238
1239
|
_id?: string | {} | undefined;
|
|
1239
|
-
running?: boolean | undefined;
|
|
1240
1240
|
plugins?: {
|
|
1241
1241
|
number_assets?: number | undefined;
|
|
1242
1242
|
refresh_period?: number | undefined;
|
|
@@ -1253,6 +1253,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1253
1253
|
exit: number;
|
|
1254
1254
|
} | undefined;
|
|
1255
1255
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1256
|
+
running?: boolean | undefined;
|
|
1256
1257
|
tradable_balance_ratio?: number | undefined;
|
|
1257
1258
|
webhook?: {
|
|
1258
1259
|
url: string;
|
|
@@ -1342,10 +1343,11 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1342
1343
|
key: string;
|
|
1343
1344
|
createdAt: any;
|
|
1344
1345
|
updatedAt: any;
|
|
1345
|
-
"traders/pods": any;
|
|
1346
|
-
userId: any;
|
|
1347
1346
|
connected: boolean;
|
|
1348
1347
|
which: string;
|
|
1348
|
+
userId: any;
|
|
1349
|
+
strategy: any;
|
|
1350
|
+
"traders/pods": any;
|
|
1349
1351
|
exchange: any;
|
|
1350
1352
|
exchangeId: any;
|
|
1351
1353
|
stake_currency: string;
|
|
@@ -1354,7 +1356,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1354
1356
|
handling: string;
|
|
1355
1357
|
initial_state: string;
|
|
1356
1358
|
pairlists: any;
|
|
1357
|
-
strategy: any;
|
|
1358
1359
|
strategyId: string | {};
|
|
1359
1360
|
entry_pricing: {
|
|
1360
1361
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -1383,6 +1384,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1383
1384
|
CORS_origins: string[];
|
|
1384
1385
|
};
|
|
1385
1386
|
}> | undefined;
|
|
1387
|
+
requestId?: string | undefined;
|
|
1386
1388
|
_id: string | {};
|
|
1387
1389
|
createdAt: any;
|
|
1388
1390
|
updatedAt: any;
|
|
@@ -1397,60 +1399,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1397
1399
|
stop?: boolean | undefined;
|
|
1398
1400
|
provider: "docker";
|
|
1399
1401
|
_id: string | {};
|
|
1400
|
-
options: any;
|
|
1401
|
-
exchange: Partial<{
|
|
1402
|
-
password?: string | undefined;
|
|
1403
|
-
name?: any;
|
|
1404
|
-
apiKey?: string | null | undefined;
|
|
1405
|
-
token?: string | undefined;
|
|
1406
|
-
secret?: string | null | undefined;
|
|
1407
|
-
_id?: string | {} | undefined;
|
|
1408
|
-
avatar?: any;
|
|
1409
|
-
createdAt?: any;
|
|
1410
|
-
updatedAt?: any;
|
|
1411
|
-
error?: any;
|
|
1412
|
-
login?: string | undefined;
|
|
1413
|
-
userId?: string | {} | undefined;
|
|
1414
|
-
connected?: boolean | undefined;
|
|
1415
|
-
downloaded?: {
|
|
1416
|
-
updatedAt: any;
|
|
1417
|
-
size: string;
|
|
1418
|
-
pairs: {};
|
|
1419
|
-
sizes: any[];
|
|
1420
|
-
} | undefined;
|
|
1421
|
-
ccxt_config?: any;
|
|
1422
|
-
balances?: {
|
|
1423
|
-
total?: any;
|
|
1424
|
-
errors?: any;
|
|
1425
|
-
updatedAt: any;
|
|
1426
|
-
items: {
|
|
1427
|
-
total?: number | undefined;
|
|
1428
|
-
symbol: string;
|
|
1429
|
-
fiat: number;
|
|
1430
|
-
}[];
|
|
1431
|
-
sum: any;
|
|
1432
|
-
quotation: any;
|
|
1433
|
-
} | undefined;
|
|
1434
|
-
tags?: any;
|
|
1435
|
-
background?: any;
|
|
1436
|
-
blacklist?: {
|
|
1437
|
-
left: string;
|
|
1438
|
-
right: string;
|
|
1439
|
-
}[] | undefined;
|
|
1440
|
-
whitelist?: any[] | undefined;
|
|
1441
|
-
ccxt_async_config?: any;
|
|
1442
|
-
which?: string | undefined;
|
|
1443
|
-
stakeCurrencies?: any[] | undefined;
|
|
1444
|
-
popularStakeCurrency?: string | null | undefined;
|
|
1445
|
-
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
1446
|
-
requiredCredentials?: any;
|
|
1447
|
-
uid?: string | undefined;
|
|
1448
|
-
twofa?: string | undefined;
|
|
1449
|
-
privateKey?: string | undefined;
|
|
1450
|
-
walletAddress?: string | undefined;
|
|
1451
|
-
__v?: any;
|
|
1452
|
-
}>;
|
|
1453
|
-
exchangeId: string;
|
|
1454
1402
|
strategy: Partial<{
|
|
1455
1403
|
traders?: {
|
|
1456
1404
|
telegram?: {
|
|
@@ -1489,7 +1437,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1489
1437
|
balance_dust_level: number;
|
|
1490
1438
|
} | undefined;
|
|
1491
1439
|
_id?: string | {} | undefined;
|
|
1492
|
-
running?: boolean | undefined;
|
|
1493
1440
|
plugins?: {
|
|
1494
1441
|
number_assets?: number | undefined;
|
|
1495
1442
|
refresh_period?: number | undefined;
|
|
@@ -1506,6 +1453,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1506
1453
|
exit: number;
|
|
1507
1454
|
} | undefined;
|
|
1508
1455
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1456
|
+
running?: boolean | undefined;
|
|
1509
1457
|
tradable_balance_ratio?: number | undefined;
|
|
1510
1458
|
webhook?: {
|
|
1511
1459
|
url: string;
|
|
@@ -1595,10 +1543,11 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1595
1543
|
key: string;
|
|
1596
1544
|
createdAt: any;
|
|
1597
1545
|
updatedAt: any;
|
|
1598
|
-
"traders/pods": any;
|
|
1599
|
-
userId: any;
|
|
1600
1546
|
connected: boolean;
|
|
1601
1547
|
which: string;
|
|
1548
|
+
userId: any;
|
|
1549
|
+
strategy: any;
|
|
1550
|
+
"traders/pods": any;
|
|
1602
1551
|
exchange: any;
|
|
1603
1552
|
exchangeId: any;
|
|
1604
1553
|
stake_currency: string;
|
|
@@ -1607,7 +1556,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1607
1556
|
handling: string;
|
|
1608
1557
|
initial_state: string;
|
|
1609
1558
|
pairlists: any;
|
|
1610
|
-
strategy: any;
|
|
1611
1559
|
strategyId: string | {};
|
|
1612
1560
|
entry_pricing: {
|
|
1613
1561
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -1639,16 +1587,16 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1639
1587
|
_id?: string | {} | undefined;
|
|
1640
1588
|
createdAt?: any;
|
|
1641
1589
|
updatedAt?: any;
|
|
1590
|
+
userId?: string | {} | undefined;
|
|
1642
1591
|
'strategies/templates'?: {
|
|
1643
1592
|
_id?: string | {} | undefined;
|
|
1644
1593
|
createdAt?: any;
|
|
1645
1594
|
updatedAt?: any;
|
|
1646
1595
|
values: any;
|
|
1647
1596
|
name: string;
|
|
1648
|
-
description: string;
|
|
1649
1597
|
type: string;
|
|
1598
|
+
description: string;
|
|
1650
1599
|
} | undefined;
|
|
1651
|
-
userId?: string | {} | undefined;
|
|
1652
1600
|
file?: any;
|
|
1653
1601
|
templateId?: string | {} | undefined;
|
|
1654
1602
|
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
@@ -1681,8 +1629,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1681
1629
|
max_allowed_drawdown?: unknown;
|
|
1682
1630
|
only_per_pair?: unknown;
|
|
1683
1631
|
enabled: boolean;
|
|
1684
|
-
method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
|
|
1685
1632
|
type: "coolDownPeriod" | "lowProfitPairs" | "stoplossGuard" | "maxDrawdown";
|
|
1633
|
+
method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
|
|
1686
1634
|
}[] | undefined;
|
|
1687
1635
|
buywhen?: {
|
|
1688
1636
|
value?: number | undefined;
|
|
@@ -1705,6 +1653,60 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1705
1653
|
name: any;
|
|
1706
1654
|
'strategies/indicators': any;
|
|
1707
1655
|
}>;
|
|
1656
|
+
options: any;
|
|
1657
|
+
exchange: Partial<{
|
|
1658
|
+
password?: string | undefined;
|
|
1659
|
+
name?: any;
|
|
1660
|
+
apiKey?: string | null | undefined;
|
|
1661
|
+
token?: string | undefined;
|
|
1662
|
+
secret?: string | null | undefined;
|
|
1663
|
+
error?: any;
|
|
1664
|
+
_id?: string | {} | undefined;
|
|
1665
|
+
createdAt?: any;
|
|
1666
|
+
updatedAt?: any;
|
|
1667
|
+
connected?: boolean | undefined;
|
|
1668
|
+
downloaded?: {
|
|
1669
|
+
updatedAt: any;
|
|
1670
|
+
size: string;
|
|
1671
|
+
pairs: {};
|
|
1672
|
+
sizes: any[];
|
|
1673
|
+
} | undefined;
|
|
1674
|
+
ccxt_config?: any;
|
|
1675
|
+
balances?: {
|
|
1676
|
+
total?: any;
|
|
1677
|
+
errors?: any;
|
|
1678
|
+
updatedAt: any;
|
|
1679
|
+
items: {
|
|
1680
|
+
total?: number | undefined;
|
|
1681
|
+
symbol: string;
|
|
1682
|
+
fiat: number;
|
|
1683
|
+
}[];
|
|
1684
|
+
sum: any;
|
|
1685
|
+
quotation: any;
|
|
1686
|
+
} | undefined;
|
|
1687
|
+
tags?: any;
|
|
1688
|
+
background?: any;
|
|
1689
|
+
avatar?: any;
|
|
1690
|
+
blacklist?: {
|
|
1691
|
+
left: string;
|
|
1692
|
+
right: string;
|
|
1693
|
+
}[] | undefined;
|
|
1694
|
+
whitelist?: any[] | undefined;
|
|
1695
|
+
ccxt_async_config?: any;
|
|
1696
|
+
which?: string | undefined;
|
|
1697
|
+
stakeCurrencies?: any[] | undefined;
|
|
1698
|
+
popularStakeCurrency?: string | null | undefined;
|
|
1699
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
1700
|
+
requiredCredentials?: any;
|
|
1701
|
+
uid?: string | undefined;
|
|
1702
|
+
login?: string | undefined;
|
|
1703
|
+
twofa?: string | undefined;
|
|
1704
|
+
privateKey?: string | undefined;
|
|
1705
|
+
walletAddress?: string | undefined;
|
|
1706
|
+
userId?: string | {} | undefined;
|
|
1707
|
+
__v?: any;
|
|
1708
|
+
}>;
|
|
1709
|
+
exchangeId: string;
|
|
1708
1710
|
strategyId: string | {};
|
|
1709
1711
|
pod: any;
|
|
1710
1712
|
trader: Partial<{
|
|
@@ -1744,7 +1746,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1744
1746
|
balance_dust_level: number;
|
|
1745
1747
|
} | undefined;
|
|
1746
1748
|
_id?: string | {} | undefined;
|
|
1747
|
-
running?: boolean | undefined;
|
|
1748
1749
|
plugins?: {
|
|
1749
1750
|
number_assets?: number | undefined;
|
|
1750
1751
|
refresh_period?: number | undefined;
|
|
@@ -1761,6 +1762,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1761
1762
|
exit: number;
|
|
1762
1763
|
} | undefined;
|
|
1763
1764
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1765
|
+
running?: boolean | undefined;
|
|
1764
1766
|
tradable_balance_ratio?: number | undefined;
|
|
1765
1767
|
webhook?: {
|
|
1766
1768
|
url: string;
|
|
@@ -1850,10 +1852,11 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1850
1852
|
key: string;
|
|
1851
1853
|
createdAt: any;
|
|
1852
1854
|
updatedAt: any;
|
|
1853
|
-
"traders/pods": any;
|
|
1854
|
-
userId: any;
|
|
1855
1855
|
connected: boolean;
|
|
1856
1856
|
which: string;
|
|
1857
|
+
userId: any;
|
|
1858
|
+
strategy: any;
|
|
1859
|
+
"traders/pods": any;
|
|
1857
1860
|
exchange: any;
|
|
1858
1861
|
exchangeId: any;
|
|
1859
1862
|
stake_currency: string;
|
|
@@ -1862,7 +1865,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1862
1865
|
handling: string;
|
|
1863
1866
|
initial_state: string;
|
|
1864
1867
|
pairlists: any;
|
|
1865
|
-
strategy: any;
|
|
1866
1868
|
strategyId: string | {};
|
|
1867
1869
|
entry_pricing: {
|
|
1868
1870
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -1930,7 +1932,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1930
1932
|
balance_dust_level: number;
|
|
1931
1933
|
} | undefined;
|
|
1932
1934
|
_id?: string | {} | undefined;
|
|
1933
|
-
running?: boolean | undefined;
|
|
1934
1935
|
plugins?: {
|
|
1935
1936
|
number_assets?: number | undefined;
|
|
1936
1937
|
refresh_period?: number | undefined;
|
|
@@ -1947,6 +1948,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1947
1948
|
exit: number;
|
|
1948
1949
|
} | undefined;
|
|
1949
1950
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1951
|
+
running?: boolean | undefined;
|
|
1950
1952
|
tradable_balance_ratio?: number | undefined;
|
|
1951
1953
|
webhook?: {
|
|
1952
1954
|
url: string;
|
|
@@ -2036,10 +2038,11 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
2036
2038
|
key: string;
|
|
2037
2039
|
createdAt: any;
|
|
2038
2040
|
updatedAt: any;
|
|
2039
|
-
"traders/pods": any;
|
|
2040
|
-
userId: any;
|
|
2041
2041
|
connected: boolean;
|
|
2042
2042
|
which: string;
|
|
2043
|
+
userId: any;
|
|
2044
|
+
strategy: any;
|
|
2045
|
+
"traders/pods": any;
|
|
2043
2046
|
exchange: any;
|
|
2044
2047
|
exchangeId: any;
|
|
2045
2048
|
stake_currency: string;
|
|
@@ -2048,7 +2051,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
2048
2051
|
handling: string;
|
|
2049
2052
|
initial_state: string;
|
|
2050
2053
|
pairlists: any;
|
|
2051
|
-
strategy: any;
|
|
2052
2054
|
strategyId: string | {};
|
|
2053
2055
|
entry_pricing: {
|
|
2054
2056
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -2077,6 +2079,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
2077
2079
|
CORS_origins: string[];
|
|
2078
2080
|
};
|
|
2079
2081
|
}> | undefined;
|
|
2082
|
+
requestId?: string | undefined;
|
|
2080
2083
|
_id: string | {};
|
|
2081
2084
|
createdAt: any;
|
|
2082
2085
|
updatedAt: any;
|
|
@@ -2775,72 +2778,19 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2775
2778
|
}>>>>;
|
|
2776
2779
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
2777
2780
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
2781
|
+
requestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2778
2782
|
action: import("@feathersjs/typebox").TString<string>;
|
|
2779
|
-
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2780
|
-
result: import("@feathersjs/typebox").TAny;
|
|
2781
|
-
}>, ["traderId", "action", "options"]>;
|
|
2782
|
-
export type TradersPodsApiData = Static<typeof tradersPodsApiDataSchema>;
|
|
2783
|
-
export declare const tradersPodsApiDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
2784
|
-
export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Resolver<{
|
|
2785
|
-
'traders/pods'?: Partial<{
|
|
2786
|
-
host?: string | undefined;
|
|
2787
|
-
stop?: boolean | undefined;
|
|
2788
|
-
provider: "docker";
|
|
2789
|
-
_id: string | {};
|
|
2790
|
-
options: any;
|
|
2791
|
-
exchange: Partial<{
|
|
2792
|
-
password?: string | undefined;
|
|
2793
|
-
name?: any;
|
|
2794
|
-
apiKey?: string | null | undefined;
|
|
2795
|
-
token?: string | undefined;
|
|
2796
|
-
secret?: string | null | undefined;
|
|
2797
|
-
_id?: string | {} | undefined;
|
|
2798
|
-
avatar?: any;
|
|
2799
|
-
createdAt?: any;
|
|
2800
|
-
updatedAt?: any;
|
|
2801
|
-
error?: any;
|
|
2802
|
-
login?: string | undefined;
|
|
2803
|
-
userId?: string | {} | undefined;
|
|
2804
|
-
connected?: boolean | undefined;
|
|
2805
|
-
downloaded?: {
|
|
2806
|
-
updatedAt: any;
|
|
2807
|
-
size: string;
|
|
2808
|
-
pairs: {};
|
|
2809
|
-
sizes: any[];
|
|
2810
|
-
} | undefined;
|
|
2811
|
-
ccxt_config?: any;
|
|
2812
|
-
balances?: {
|
|
2813
|
-
total?: any;
|
|
2814
|
-
errors?: any;
|
|
2815
|
-
updatedAt: any;
|
|
2816
|
-
items: {
|
|
2817
|
-
total?: number | undefined;
|
|
2818
|
-
symbol: string;
|
|
2819
|
-
fiat: number;
|
|
2820
|
-
}[];
|
|
2821
|
-
sum: any;
|
|
2822
|
-
quotation: any;
|
|
2823
|
-
} | undefined;
|
|
2824
|
-
tags?: any;
|
|
2825
|
-
background?: any;
|
|
2826
|
-
blacklist?: {
|
|
2827
|
-
left: string;
|
|
2828
|
-
right: string;
|
|
2829
|
-
}[] | undefined;
|
|
2830
|
-
whitelist?: any[] | undefined;
|
|
2831
|
-
ccxt_async_config?: any;
|
|
2832
|
-
which?: string | undefined;
|
|
2833
|
-
stakeCurrencies?: any[] | undefined;
|
|
2834
|
-
popularStakeCurrency?: string | null | undefined;
|
|
2835
|
-
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
2836
|
-
requiredCredentials?: any;
|
|
2837
|
-
uid?: string | undefined;
|
|
2838
|
-
twofa?: string | undefined;
|
|
2839
|
-
privateKey?: string | undefined;
|
|
2840
|
-
walletAddress?: string | undefined;
|
|
2841
|
-
__v?: any;
|
|
2842
|
-
}>;
|
|
2843
|
-
exchangeId: string;
|
|
2783
|
+
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2784
|
+
result: import("@feathersjs/typebox").TAny;
|
|
2785
|
+
}>, ["traderId", "action", "options", "requestId"]>;
|
|
2786
|
+
export type TradersPodsApiData = Static<typeof tradersPodsApiDataSchema>;
|
|
2787
|
+
export declare const tradersPodsApiDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
2788
|
+
export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Resolver<{
|
|
2789
|
+
'traders/pods'?: Partial<{
|
|
2790
|
+
host?: string | undefined;
|
|
2791
|
+
stop?: boolean | undefined;
|
|
2792
|
+
provider: "docker";
|
|
2793
|
+
_id: string | {};
|
|
2844
2794
|
strategy: Partial<{
|
|
2845
2795
|
traders?: {
|
|
2846
2796
|
telegram?: {
|
|
@@ -2879,7 +2829,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2879
2829
|
balance_dust_level: number;
|
|
2880
2830
|
} | undefined;
|
|
2881
2831
|
_id?: string | {} | undefined;
|
|
2882
|
-
running?: boolean | undefined;
|
|
2883
2832
|
plugins?: {
|
|
2884
2833
|
number_assets?: number | undefined;
|
|
2885
2834
|
refresh_period?: number | undefined;
|
|
@@ -2896,6 +2845,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2896
2845
|
exit: number;
|
|
2897
2846
|
} | undefined;
|
|
2898
2847
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
2848
|
+
running?: boolean | undefined;
|
|
2899
2849
|
tradable_balance_ratio?: number | undefined;
|
|
2900
2850
|
webhook?: {
|
|
2901
2851
|
url: string;
|
|
@@ -2985,10 +2935,11 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2985
2935
|
key: string;
|
|
2986
2936
|
createdAt: any;
|
|
2987
2937
|
updatedAt: any;
|
|
2988
|
-
"traders/pods": any;
|
|
2989
|
-
userId: any;
|
|
2990
2938
|
connected: boolean;
|
|
2991
2939
|
which: string;
|
|
2940
|
+
userId: any;
|
|
2941
|
+
strategy: any;
|
|
2942
|
+
"traders/pods": any;
|
|
2992
2943
|
exchange: any;
|
|
2993
2944
|
exchangeId: any;
|
|
2994
2945
|
stake_currency: string;
|
|
@@ -2997,7 +2948,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2997
2948
|
handling: string;
|
|
2998
2949
|
initial_state: string;
|
|
2999
2950
|
pairlists: any;
|
|
3000
|
-
strategy: any;
|
|
3001
2951
|
strategyId: string | {};
|
|
3002
2952
|
entry_pricing: {
|
|
3003
2953
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -3029,16 +2979,16 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3029
2979
|
_id?: string | {} | undefined;
|
|
3030
2980
|
createdAt?: any;
|
|
3031
2981
|
updatedAt?: any;
|
|
2982
|
+
userId?: string | {} | undefined;
|
|
3032
2983
|
'strategies/templates'?: {
|
|
3033
2984
|
_id?: string | {} | undefined;
|
|
3034
2985
|
createdAt?: any;
|
|
3035
2986
|
updatedAt?: any;
|
|
3036
2987
|
values: any;
|
|
3037
2988
|
name: string;
|
|
3038
|
-
description: string;
|
|
3039
2989
|
type: string;
|
|
2990
|
+
description: string;
|
|
3040
2991
|
} | undefined;
|
|
3041
|
-
userId?: string | {} | undefined;
|
|
3042
2992
|
file?: any;
|
|
3043
2993
|
templateId?: string | {} | undefined;
|
|
3044
2994
|
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
@@ -3071,8 +3021,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3071
3021
|
max_allowed_drawdown?: unknown;
|
|
3072
3022
|
only_per_pair?: unknown;
|
|
3073
3023
|
enabled: boolean;
|
|
3074
|
-
method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
|
|
3075
3024
|
type: "coolDownPeriod" | "lowProfitPairs" | "stoplossGuard" | "maxDrawdown";
|
|
3025
|
+
method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
|
|
3076
3026
|
}[] | undefined;
|
|
3077
3027
|
buywhen?: {
|
|
3078
3028
|
value?: number | undefined;
|
|
@@ -3095,6 +3045,60 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3095
3045
|
name: any;
|
|
3096
3046
|
'strategies/indicators': any;
|
|
3097
3047
|
}>;
|
|
3048
|
+
options: any;
|
|
3049
|
+
exchange: Partial<{
|
|
3050
|
+
password?: string | undefined;
|
|
3051
|
+
name?: any;
|
|
3052
|
+
apiKey?: string | null | undefined;
|
|
3053
|
+
token?: string | undefined;
|
|
3054
|
+
secret?: string | null | undefined;
|
|
3055
|
+
error?: any;
|
|
3056
|
+
_id?: string | {} | undefined;
|
|
3057
|
+
createdAt?: any;
|
|
3058
|
+
updatedAt?: any;
|
|
3059
|
+
connected?: boolean | undefined;
|
|
3060
|
+
downloaded?: {
|
|
3061
|
+
updatedAt: any;
|
|
3062
|
+
size: string;
|
|
3063
|
+
pairs: {};
|
|
3064
|
+
sizes: any[];
|
|
3065
|
+
} | undefined;
|
|
3066
|
+
ccxt_config?: any;
|
|
3067
|
+
balances?: {
|
|
3068
|
+
total?: any;
|
|
3069
|
+
errors?: any;
|
|
3070
|
+
updatedAt: any;
|
|
3071
|
+
items: {
|
|
3072
|
+
total?: number | undefined;
|
|
3073
|
+
symbol: string;
|
|
3074
|
+
fiat: number;
|
|
3075
|
+
}[];
|
|
3076
|
+
sum: any;
|
|
3077
|
+
quotation: any;
|
|
3078
|
+
} | undefined;
|
|
3079
|
+
tags?: any;
|
|
3080
|
+
background?: any;
|
|
3081
|
+
avatar?: any;
|
|
3082
|
+
blacklist?: {
|
|
3083
|
+
left: string;
|
|
3084
|
+
right: string;
|
|
3085
|
+
}[] | undefined;
|
|
3086
|
+
whitelist?: any[] | undefined;
|
|
3087
|
+
ccxt_async_config?: any;
|
|
3088
|
+
which?: string | undefined;
|
|
3089
|
+
stakeCurrencies?: any[] | undefined;
|
|
3090
|
+
popularStakeCurrency?: string | null | undefined;
|
|
3091
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
3092
|
+
requiredCredentials?: any;
|
|
3093
|
+
uid?: string | undefined;
|
|
3094
|
+
login?: string | undefined;
|
|
3095
|
+
twofa?: string | undefined;
|
|
3096
|
+
privateKey?: string | undefined;
|
|
3097
|
+
walletAddress?: string | undefined;
|
|
3098
|
+
userId?: string | {} | undefined;
|
|
3099
|
+
__v?: any;
|
|
3100
|
+
}>;
|
|
3101
|
+
exchangeId: string;
|
|
3098
3102
|
strategyId: string | {};
|
|
3099
3103
|
pod: any;
|
|
3100
3104
|
trader: Partial<{
|
|
@@ -3134,7 +3138,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3134
3138
|
balance_dust_level: number;
|
|
3135
3139
|
} | undefined;
|
|
3136
3140
|
_id?: string | {} | undefined;
|
|
3137
|
-
running?: boolean | undefined;
|
|
3138
3141
|
plugins?: {
|
|
3139
3142
|
number_assets?: number | undefined;
|
|
3140
3143
|
refresh_period?: number | undefined;
|
|
@@ -3151,6 +3154,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3151
3154
|
exit: number;
|
|
3152
3155
|
} | undefined;
|
|
3153
3156
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
3157
|
+
running?: boolean | undefined;
|
|
3154
3158
|
tradable_balance_ratio?: number | undefined;
|
|
3155
3159
|
webhook?: {
|
|
3156
3160
|
url: string;
|
|
@@ -3240,10 +3244,11 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3240
3244
|
key: string;
|
|
3241
3245
|
createdAt: any;
|
|
3242
3246
|
updatedAt: any;
|
|
3243
|
-
"traders/pods": any;
|
|
3244
|
-
userId: any;
|
|
3245
3247
|
connected: boolean;
|
|
3246
3248
|
which: string;
|
|
3249
|
+
userId: any;
|
|
3250
|
+
strategy: any;
|
|
3251
|
+
"traders/pods": any;
|
|
3247
3252
|
exchange: any;
|
|
3248
3253
|
exchangeId: any;
|
|
3249
3254
|
stake_currency: string;
|
|
@@ -3252,7 +3257,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3252
3257
|
handling: string;
|
|
3253
3258
|
initial_state: string;
|
|
3254
3259
|
pairlists: any;
|
|
3255
|
-
strategy: any;
|
|
3256
3260
|
strategyId: string | {};
|
|
3257
3261
|
entry_pricing: {
|
|
3258
3262
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -3320,7 +3324,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3320
3324
|
balance_dust_level: number;
|
|
3321
3325
|
} | undefined;
|
|
3322
3326
|
_id?: string | {} | undefined;
|
|
3323
|
-
running?: boolean | undefined;
|
|
3324
3327
|
plugins?: {
|
|
3325
3328
|
number_assets?: number | undefined;
|
|
3326
3329
|
refresh_period?: number | undefined;
|
|
@@ -3337,6 +3340,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3337
3340
|
exit: number;
|
|
3338
3341
|
} | undefined;
|
|
3339
3342
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
3343
|
+
running?: boolean | undefined;
|
|
3340
3344
|
tradable_balance_ratio?: number | undefined;
|
|
3341
3345
|
webhook?: {
|
|
3342
3346
|
url: string;
|
|
@@ -3426,10 +3430,11 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3426
3430
|
key: string;
|
|
3427
3431
|
createdAt: any;
|
|
3428
3432
|
updatedAt: any;
|
|
3429
|
-
"traders/pods": any;
|
|
3430
|
-
userId: any;
|
|
3431
3433
|
connected: boolean;
|
|
3432
3434
|
which: string;
|
|
3435
|
+
userId: any;
|
|
3436
|
+
strategy: any;
|
|
3437
|
+
"traders/pods": any;
|
|
3433
3438
|
exchange: any;
|
|
3434
3439
|
exchangeId: any;
|
|
3435
3440
|
stake_currency: string;
|
|
@@ -3438,7 +3443,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3438
3443
|
handling: string;
|
|
3439
3444
|
initial_state: string;
|
|
3440
3445
|
pairlists: any;
|
|
3441
|
-
strategy: any;
|
|
3442
3446
|
strategyId: string | {};
|
|
3443
3447
|
entry_pricing: {
|
|
3444
3448
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -3467,6 +3471,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3467
3471
|
CORS_origins: string[];
|
|
3468
3472
|
};
|
|
3469
3473
|
}> | undefined;
|
|
3474
|
+
requestId?: string | undefined;
|
|
3470
3475
|
_id: string | {};
|
|
3471
3476
|
createdAt: any;
|
|
3472
3477
|
updatedAt: any;
|
|
@@ -4165,6 +4170,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
4165
4170
|
}>>>>;
|
|
4166
4171
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
4167
4172
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
4173
|
+
requestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4168
4174
|
action: import("@feathersjs/typebox").TString<string>;
|
|
4169
4175
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
4170
4176
|
result: import("@feathersjs/typebox").TAny;
|
|
@@ -4177,60 +4183,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4177
4183
|
stop?: boolean | undefined;
|
|
4178
4184
|
provider: "docker";
|
|
4179
4185
|
_id: string | {};
|
|
4180
|
-
options: any;
|
|
4181
|
-
exchange: Partial<{
|
|
4182
|
-
password?: string | undefined;
|
|
4183
|
-
name?: any;
|
|
4184
|
-
apiKey?: string | null | undefined;
|
|
4185
|
-
token?: string | undefined;
|
|
4186
|
-
secret?: string | null | undefined;
|
|
4187
|
-
_id?: string | {} | undefined;
|
|
4188
|
-
avatar?: any;
|
|
4189
|
-
createdAt?: any;
|
|
4190
|
-
updatedAt?: any;
|
|
4191
|
-
error?: any;
|
|
4192
|
-
login?: string | undefined;
|
|
4193
|
-
userId?: string | {} | undefined;
|
|
4194
|
-
connected?: boolean | undefined;
|
|
4195
|
-
downloaded?: {
|
|
4196
|
-
updatedAt: any;
|
|
4197
|
-
size: string;
|
|
4198
|
-
pairs: {};
|
|
4199
|
-
sizes: any[];
|
|
4200
|
-
} | undefined;
|
|
4201
|
-
ccxt_config?: any;
|
|
4202
|
-
balances?: {
|
|
4203
|
-
total?: any;
|
|
4204
|
-
errors?: any;
|
|
4205
|
-
updatedAt: any;
|
|
4206
|
-
items: {
|
|
4207
|
-
total?: number | undefined;
|
|
4208
|
-
symbol: string;
|
|
4209
|
-
fiat: number;
|
|
4210
|
-
}[];
|
|
4211
|
-
sum: any;
|
|
4212
|
-
quotation: any;
|
|
4213
|
-
} | undefined;
|
|
4214
|
-
tags?: any;
|
|
4215
|
-
background?: any;
|
|
4216
|
-
blacklist?: {
|
|
4217
|
-
left: string;
|
|
4218
|
-
right: string;
|
|
4219
|
-
}[] | undefined;
|
|
4220
|
-
whitelist?: any[] | undefined;
|
|
4221
|
-
ccxt_async_config?: any;
|
|
4222
|
-
which?: string | undefined;
|
|
4223
|
-
stakeCurrencies?: any[] | undefined;
|
|
4224
|
-
popularStakeCurrency?: string | null | undefined;
|
|
4225
|
-
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
4226
|
-
requiredCredentials?: any;
|
|
4227
|
-
uid?: string | undefined;
|
|
4228
|
-
twofa?: string | undefined;
|
|
4229
|
-
privateKey?: string | undefined;
|
|
4230
|
-
walletAddress?: string | undefined;
|
|
4231
|
-
__v?: any;
|
|
4232
|
-
}>;
|
|
4233
|
-
exchangeId: string;
|
|
4234
4186
|
strategy: Partial<{
|
|
4235
4187
|
traders?: {
|
|
4236
4188
|
telegram?: {
|
|
@@ -4269,7 +4221,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4269
4221
|
balance_dust_level: number;
|
|
4270
4222
|
} | undefined;
|
|
4271
4223
|
_id?: string | {} | undefined;
|
|
4272
|
-
running?: boolean | undefined;
|
|
4273
4224
|
plugins?: {
|
|
4274
4225
|
number_assets?: number | undefined;
|
|
4275
4226
|
refresh_period?: number | undefined;
|
|
@@ -4286,6 +4237,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4286
4237
|
exit: number;
|
|
4287
4238
|
} | undefined;
|
|
4288
4239
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
4240
|
+
running?: boolean | undefined;
|
|
4289
4241
|
tradable_balance_ratio?: number | undefined;
|
|
4290
4242
|
webhook?: {
|
|
4291
4243
|
url: string;
|
|
@@ -4375,10 +4327,11 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4375
4327
|
key: string;
|
|
4376
4328
|
createdAt: any;
|
|
4377
4329
|
updatedAt: any;
|
|
4378
|
-
"traders/pods": any;
|
|
4379
|
-
userId: any;
|
|
4380
4330
|
connected: boolean;
|
|
4381
4331
|
which: string;
|
|
4332
|
+
userId: any;
|
|
4333
|
+
strategy: any;
|
|
4334
|
+
"traders/pods": any;
|
|
4382
4335
|
exchange: any;
|
|
4383
4336
|
exchangeId: any;
|
|
4384
4337
|
stake_currency: string;
|
|
@@ -4387,7 +4340,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4387
4340
|
handling: string;
|
|
4388
4341
|
initial_state: string;
|
|
4389
4342
|
pairlists: any;
|
|
4390
|
-
strategy: any;
|
|
4391
4343
|
strategyId: string | {};
|
|
4392
4344
|
entry_pricing: {
|
|
4393
4345
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -4419,16 +4371,16 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4419
4371
|
_id?: string | {} | undefined;
|
|
4420
4372
|
createdAt?: any;
|
|
4421
4373
|
updatedAt?: any;
|
|
4374
|
+
userId?: string | {} | undefined;
|
|
4422
4375
|
'strategies/templates'?: {
|
|
4423
4376
|
_id?: string | {} | undefined;
|
|
4424
4377
|
createdAt?: any;
|
|
4425
4378
|
updatedAt?: any;
|
|
4426
4379
|
values: any;
|
|
4427
4380
|
name: string;
|
|
4428
|
-
description: string;
|
|
4429
4381
|
type: string;
|
|
4382
|
+
description: string;
|
|
4430
4383
|
} | undefined;
|
|
4431
|
-
userId?: string | {} | undefined;
|
|
4432
4384
|
file?: any;
|
|
4433
4385
|
templateId?: string | {} | undefined;
|
|
4434
4386
|
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
@@ -4461,8 +4413,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4461
4413
|
max_allowed_drawdown?: unknown;
|
|
4462
4414
|
only_per_pair?: unknown;
|
|
4463
4415
|
enabled: boolean;
|
|
4464
|
-
method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
|
|
4465
4416
|
type: "coolDownPeriod" | "lowProfitPairs" | "stoplossGuard" | "maxDrawdown";
|
|
4417
|
+
method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
|
|
4466
4418
|
}[] | undefined;
|
|
4467
4419
|
buywhen?: {
|
|
4468
4420
|
value?: number | undefined;
|
|
@@ -4485,6 +4437,60 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4485
4437
|
name: any;
|
|
4486
4438
|
'strategies/indicators': any;
|
|
4487
4439
|
}>;
|
|
4440
|
+
options: any;
|
|
4441
|
+
exchange: Partial<{
|
|
4442
|
+
password?: string | undefined;
|
|
4443
|
+
name?: any;
|
|
4444
|
+
apiKey?: string | null | undefined;
|
|
4445
|
+
token?: string | undefined;
|
|
4446
|
+
secret?: string | null | undefined;
|
|
4447
|
+
error?: any;
|
|
4448
|
+
_id?: string | {} | undefined;
|
|
4449
|
+
createdAt?: any;
|
|
4450
|
+
updatedAt?: any;
|
|
4451
|
+
connected?: boolean | undefined;
|
|
4452
|
+
downloaded?: {
|
|
4453
|
+
updatedAt: any;
|
|
4454
|
+
size: string;
|
|
4455
|
+
pairs: {};
|
|
4456
|
+
sizes: any[];
|
|
4457
|
+
} | undefined;
|
|
4458
|
+
ccxt_config?: any;
|
|
4459
|
+
balances?: {
|
|
4460
|
+
total?: any;
|
|
4461
|
+
errors?: any;
|
|
4462
|
+
updatedAt: any;
|
|
4463
|
+
items: {
|
|
4464
|
+
total?: number | undefined;
|
|
4465
|
+
symbol: string;
|
|
4466
|
+
fiat: number;
|
|
4467
|
+
}[];
|
|
4468
|
+
sum: any;
|
|
4469
|
+
quotation: any;
|
|
4470
|
+
} | undefined;
|
|
4471
|
+
tags?: any;
|
|
4472
|
+
background?: any;
|
|
4473
|
+
avatar?: any;
|
|
4474
|
+
blacklist?: {
|
|
4475
|
+
left: string;
|
|
4476
|
+
right: string;
|
|
4477
|
+
}[] | undefined;
|
|
4478
|
+
whitelist?: any[] | undefined;
|
|
4479
|
+
ccxt_async_config?: any;
|
|
4480
|
+
which?: string | undefined;
|
|
4481
|
+
stakeCurrencies?: any[] | undefined;
|
|
4482
|
+
popularStakeCurrency?: string | null | undefined;
|
|
4483
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
4484
|
+
requiredCredentials?: any;
|
|
4485
|
+
uid?: string | undefined;
|
|
4486
|
+
login?: string | undefined;
|
|
4487
|
+
twofa?: string | undefined;
|
|
4488
|
+
privateKey?: string | undefined;
|
|
4489
|
+
walletAddress?: string | undefined;
|
|
4490
|
+
userId?: string | {} | undefined;
|
|
4491
|
+
__v?: any;
|
|
4492
|
+
}>;
|
|
4493
|
+
exchangeId: string;
|
|
4488
4494
|
strategyId: string | {};
|
|
4489
4495
|
pod: any;
|
|
4490
4496
|
trader: Partial<{
|
|
@@ -4524,7 +4530,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4524
4530
|
balance_dust_level: number;
|
|
4525
4531
|
} | undefined;
|
|
4526
4532
|
_id?: string | {} | undefined;
|
|
4527
|
-
running?: boolean | undefined;
|
|
4528
4533
|
plugins?: {
|
|
4529
4534
|
number_assets?: number | undefined;
|
|
4530
4535
|
refresh_period?: number | undefined;
|
|
@@ -4541,6 +4546,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4541
4546
|
exit: number;
|
|
4542
4547
|
} | undefined;
|
|
4543
4548
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
4549
|
+
running?: boolean | undefined;
|
|
4544
4550
|
tradable_balance_ratio?: number | undefined;
|
|
4545
4551
|
webhook?: {
|
|
4546
4552
|
url: string;
|
|
@@ -4630,10 +4636,11 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4630
4636
|
key: string;
|
|
4631
4637
|
createdAt: any;
|
|
4632
4638
|
updatedAt: any;
|
|
4633
|
-
"traders/pods": any;
|
|
4634
|
-
userId: any;
|
|
4635
4639
|
connected: boolean;
|
|
4636
4640
|
which: string;
|
|
4641
|
+
userId: any;
|
|
4642
|
+
strategy: any;
|
|
4643
|
+
"traders/pods": any;
|
|
4637
4644
|
exchange: any;
|
|
4638
4645
|
exchangeId: any;
|
|
4639
4646
|
stake_currency: string;
|
|
@@ -4642,7 +4649,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4642
4649
|
handling: string;
|
|
4643
4650
|
initial_state: string;
|
|
4644
4651
|
pairlists: any;
|
|
4645
|
-
strategy: any;
|
|
4646
4652
|
strategyId: string | {};
|
|
4647
4653
|
entry_pricing: {
|
|
4648
4654
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -4710,7 +4716,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4710
4716
|
balance_dust_level: number;
|
|
4711
4717
|
} | undefined;
|
|
4712
4718
|
_id?: string | {} | undefined;
|
|
4713
|
-
running?: boolean | undefined;
|
|
4714
4719
|
plugins?: {
|
|
4715
4720
|
number_assets?: number | undefined;
|
|
4716
4721
|
refresh_period?: number | undefined;
|
|
@@ -4727,6 +4732,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4727
4732
|
exit: number;
|
|
4728
4733
|
} | undefined;
|
|
4729
4734
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
4735
|
+
running?: boolean | undefined;
|
|
4730
4736
|
tradable_balance_ratio?: number | undefined;
|
|
4731
4737
|
webhook?: {
|
|
4732
4738
|
url: string;
|
|
@@ -4816,10 +4822,11 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4816
4822
|
key: string;
|
|
4817
4823
|
createdAt: any;
|
|
4818
4824
|
updatedAt: any;
|
|
4819
|
-
"traders/pods": any;
|
|
4820
|
-
userId: any;
|
|
4821
4825
|
connected: boolean;
|
|
4822
4826
|
which: string;
|
|
4827
|
+
userId: any;
|
|
4828
|
+
strategy: any;
|
|
4829
|
+
"traders/pods": any;
|
|
4823
4830
|
exchange: any;
|
|
4824
4831
|
exchangeId: any;
|
|
4825
4832
|
stake_currency: string;
|
|
@@ -4828,7 +4835,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4828
4835
|
handling: string;
|
|
4829
4836
|
initial_state: string;
|
|
4830
4837
|
pairlists: any;
|
|
4831
|
-
strategy: any;
|
|
4832
4838
|
strategyId: string | {};
|
|
4833
4839
|
entry_pricing: {
|
|
4834
4840
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
@@ -4857,6 +4863,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4857
4863
|
CORS_origins: string[];
|
|
4858
4864
|
};
|
|
4859
4865
|
}> | undefined;
|
|
4866
|
+
requestId?: string | undefined;
|
|
4860
4867
|
_id: string | {};
|
|
4861
4868
|
createdAt: any;
|
|
4862
4869
|
updatedAt: any;
|
|
@@ -5555,10 +5562,11 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5555
5562
|
}>>>>;
|
|
5556
5563
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
5557
5564
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
5565
|
+
requestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5558
5566
|
action: import("@feathersjs/typebox").TString<string>;
|
|
5559
5567
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5560
5568
|
result: import("@feathersjs/typebox").TAny;
|
|
5561
|
-
}>, ["_id", "traderId", "userId", "action", "createdAt", "result"]>;
|
|
5569
|
+
}>, ["_id", "traderId", "userId", "action", "createdAt", "result", "requestId"]>;
|
|
5562
5570
|
export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
5563
5571
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
5564
5572
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
@@ -5568,9 +5576,10 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5568
5576
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5569
5577
|
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5570
5578
|
result: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5579
|
+
requestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5571
5580
|
action: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5572
5581
|
}>;
|
|
5573
|
-
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "userId" | "traderId" | "result" | "action")[]>;
|
|
5582
|
+
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "userId" | "traderId" | "result" | "requestId" | "action")[]>;
|
|
5574
5583
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5575
5584
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5576
5585
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -5627,6 +5636,17 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5627
5636
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5628
5637
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5629
5638
|
} | undefined>]>>]>>;
|
|
5639
|
+
requestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5640
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5641
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5642
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5643
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5644
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5645
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
5646
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
5647
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
5648
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5649
|
+
} | undefined>]>>]>>;
|
|
5630
5650
|
action: 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<{
|
|
5631
5651
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
5632
5652
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5695,6 +5715,17 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5695
5715
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5696
5716
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5697
5717
|
} | undefined>]>>]>>;
|
|
5718
|
+
requestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5719
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5720
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5721
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5722
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5723
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5724
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
5725
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
5726
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
5727
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5728
|
+
} | undefined>]>>]>>;
|
|
5698
5729
|
action: 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<{
|
|
5699
5730
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
5700
5731
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5764,6 +5795,17 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5764
5795
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5765
5796
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5766
5797
|
} | undefined>]>>]>>;
|
|
5798
|
+
requestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5799
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5800
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5801
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5802
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5803
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5804
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
5805
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
5806
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
5807
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5808
|
+
} | undefined>]>>]>>;
|
|
5767
5809
|
action: 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<{
|
|
5768
5810
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
5769
5811
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5832,6 +5874,17 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5832
5874
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5833
5875
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5834
5876
|
} | undefined>]>>]>>;
|
|
5877
|
+
requestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5878
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5879
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5880
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5881
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5882
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5883
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
5884
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
5885
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
5886
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5887
|
+
} | undefined>]>>]>>;
|
|
5835
5888
|
action: 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<{
|
|
5836
5889
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
5837
5890
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5855,9 +5908,10 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5855
5908
|
userId?: number | undefined;
|
|
5856
5909
|
traderId?: number | undefined;
|
|
5857
5910
|
result?: number | undefined;
|
|
5911
|
+
requestId?: number | undefined;
|
|
5858
5912
|
action?: number | undefined;
|
|
5859
5913
|
};
|
|
5860
|
-
$select: ("_id" | "createdAt" | "userId" | "traderId" | "result" | "action")[];
|
|
5914
|
+
$select: ("_id" | "createdAt" | "userId" | "traderId" | "result" | "requestId" | "action")[];
|
|
5861
5915
|
$and: ({
|
|
5862
5916
|
_id?: string | {} | Partial<{
|
|
5863
5917
|
$gt: string | {};
|
|
@@ -5872,6 +5926,15 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5872
5926
|
userId?: any;
|
|
5873
5927
|
traderId?: any;
|
|
5874
5928
|
result?: any;
|
|
5929
|
+
requestId?: string | Partial<{
|
|
5930
|
+
$gt?: string | undefined;
|
|
5931
|
+
$gte?: string | undefined;
|
|
5932
|
+
$lt?: string | undefined;
|
|
5933
|
+
$lte?: string | undefined;
|
|
5934
|
+
$ne?: string | undefined;
|
|
5935
|
+
$in: string | string[];
|
|
5936
|
+
$nin: string | string[];
|
|
5937
|
+
} & {}> | undefined;
|
|
5875
5938
|
action?: string | Partial<{
|
|
5876
5939
|
$gt: string;
|
|
5877
5940
|
$gte: string;
|
|
@@ -5896,6 +5959,15 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5896
5959
|
userId?: any;
|
|
5897
5960
|
traderId?: any;
|
|
5898
5961
|
result?: any;
|
|
5962
|
+
requestId?: string | Partial<{
|
|
5963
|
+
$gt?: string | undefined;
|
|
5964
|
+
$gte?: string | undefined;
|
|
5965
|
+
$lt?: string | undefined;
|
|
5966
|
+
$lte?: string | undefined;
|
|
5967
|
+
$ne?: string | undefined;
|
|
5968
|
+
$in: string | string[];
|
|
5969
|
+
$nin: string | string[];
|
|
5970
|
+
} & {}> | undefined;
|
|
5899
5971
|
action?: string | Partial<{
|
|
5900
5972
|
$gt: string;
|
|
5901
5973
|
$gte: string;
|
|
@@ -5921,6 +5993,15 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5921
5993
|
userId?: any;
|
|
5922
5994
|
traderId?: any;
|
|
5923
5995
|
result?: any;
|
|
5996
|
+
requestId?: string | Partial<{
|
|
5997
|
+
$gt?: string | undefined;
|
|
5998
|
+
$gte?: string | undefined;
|
|
5999
|
+
$lt?: string | undefined;
|
|
6000
|
+
$lte?: string | undefined;
|
|
6001
|
+
$ne?: string | undefined;
|
|
6002
|
+
$in: string | string[];
|
|
6003
|
+
$nin: string | string[];
|
|
6004
|
+
} & {}> | undefined;
|
|
5924
6005
|
action?: string | Partial<{
|
|
5925
6006
|
$gt: string;
|
|
5926
6007
|
$gte: string;
|
|
@@ -5945,6 +6026,15 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5945
6026
|
userId?: any;
|
|
5946
6027
|
traderId?: any;
|
|
5947
6028
|
result?: any;
|
|
6029
|
+
requestId?: string | Partial<{
|
|
6030
|
+
$gt?: string | undefined;
|
|
6031
|
+
$gte?: string | undefined;
|
|
6032
|
+
$lt?: string | undefined;
|
|
6033
|
+
$lte?: string | undefined;
|
|
6034
|
+
$ne?: string | undefined;
|
|
6035
|
+
$in: string | string[];
|
|
6036
|
+
$nin: string | string[];
|
|
6037
|
+
} & {}> | undefined;
|
|
5948
6038
|
action?: string | Partial<{
|
|
5949
6039
|
$gt: string;
|
|
5950
6040
|
$gte: string;
|