@cryptorobot.ai/client 0.0.35 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/configuration.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +1 -0
- package/lib/helpers/mailer.helper.d.ts +14 -0
- package/lib/helpers/reports.helper.d.ts +5 -0
- package/lib/helpers/subscription.helper.d.ts +7 -15
- package/lib/hooks/get-pods-container-inspect.d.ts +2 -0
- package/lib/hooks/whitelist-set-default-by-volume.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +28 -4
- package/lib/services/exchanges/download/download.schema.d.ts +28 -4
- package/lib/services/exchanges/exchanges.schema.d.ts +246 -90
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +28 -4
- package/lib/services/homepage/homepage.schema.d.ts +9 -1
- package/lib/services/strategies/backtest/backtest.schema.d.ts +56 -56
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +4 -4
- package/lib/services/strategies/strategies.schema.d.ts +93 -11
- package/lib/services/traders/pods/api/api.schema.d.ts +52 -28
- package/lib/services/traders/pods/events/events.class.d.ts +1 -1
- package/lib/services/traders/pods/events/events.schema.d.ts +8 -0
- package/lib/services/traders/pods/pods.schema.d.ts +44 -20
- package/lib/services/traders/traders.schema.d.ts +247 -115
- package/package.json +1 -1
|
@@ -223,6 +223,9 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
223
223
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
224
224
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
225
225
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
226
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
227
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
228
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
226
229
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
227
230
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
228
231
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -518,6 +521,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
518
521
|
updatedAt?: any;
|
|
519
522
|
error?: any;
|
|
520
523
|
login?: string | undefined;
|
|
524
|
+
userId?: string | {} | undefined;
|
|
521
525
|
connected?: boolean | undefined;
|
|
522
526
|
downloaded?: {
|
|
523
527
|
updatedAt: any;
|
|
@@ -547,12 +551,14 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
547
551
|
whitelist?: any[] | undefined;
|
|
548
552
|
ccxt_async_config?: any;
|
|
549
553
|
which?: string | undefined;
|
|
554
|
+
stakeCurrencies?: any[] | undefined;
|
|
555
|
+
popularStakeCurrency?: string | null | undefined;
|
|
556
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
550
557
|
requiredCredentials?: any;
|
|
551
558
|
uid?: string | undefined;
|
|
552
559
|
twofa?: string | undefined;
|
|
553
560
|
privateKey?: string | undefined;
|
|
554
561
|
walletAddress?: string | undefined;
|
|
555
|
-
userId?: string | {} | undefined;
|
|
556
562
|
__v?: any;
|
|
557
563
|
}>;
|
|
558
564
|
exchangeId: string;
|
|
@@ -594,6 +600,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
594
600
|
balance_dust_level: number;
|
|
595
601
|
} | undefined;
|
|
596
602
|
_id?: string | {} | undefined;
|
|
603
|
+
running?: boolean | undefined;
|
|
597
604
|
plugins?: {
|
|
598
605
|
number_assets?: number | undefined;
|
|
599
606
|
refresh_period?: number | undefined;
|
|
@@ -610,7 +617,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
610
617
|
exit: number;
|
|
611
618
|
} | undefined;
|
|
612
619
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
613
|
-
running?: boolean | undefined;
|
|
614
620
|
tradable_balance_ratio?: number | undefined;
|
|
615
621
|
webhook?: {
|
|
616
622
|
url: string;
|
|
@@ -700,9 +706,9 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
700
706
|
key: string;
|
|
701
707
|
createdAt: any;
|
|
702
708
|
updatedAt: any;
|
|
709
|
+
userId: any;
|
|
703
710
|
connected: boolean;
|
|
704
711
|
which: string;
|
|
705
|
-
userId: any;
|
|
706
712
|
"traders/pods": any;
|
|
707
713
|
exchange: any;
|
|
708
714
|
exchangeId: any;
|
|
@@ -849,6 +855,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
849
855
|
balance_dust_level: number;
|
|
850
856
|
} | undefined;
|
|
851
857
|
_id?: string | {} | undefined;
|
|
858
|
+
running?: boolean | undefined;
|
|
852
859
|
plugins?: {
|
|
853
860
|
number_assets?: number | undefined;
|
|
854
861
|
refresh_period?: number | undefined;
|
|
@@ -865,7 +872,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
865
872
|
exit: number;
|
|
866
873
|
} | undefined;
|
|
867
874
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
868
|
-
running?: boolean | undefined;
|
|
869
875
|
tradable_balance_ratio?: number | undefined;
|
|
870
876
|
webhook?: {
|
|
871
877
|
url: string;
|
|
@@ -955,9 +961,9 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
955
961
|
key: string;
|
|
956
962
|
createdAt: any;
|
|
957
963
|
updatedAt: any;
|
|
964
|
+
userId: any;
|
|
958
965
|
connected: boolean;
|
|
959
966
|
which: string;
|
|
960
|
-
userId: any;
|
|
961
967
|
"traders/pods": any;
|
|
962
968
|
exchange: any;
|
|
963
969
|
exchangeId: any;
|
|
@@ -1015,6 +1021,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1015
1021
|
updatedAt?: any;
|
|
1016
1022
|
error?: any;
|
|
1017
1023
|
login?: string | undefined;
|
|
1024
|
+
userId?: string | {} | undefined;
|
|
1018
1025
|
connected?: boolean | undefined;
|
|
1019
1026
|
downloaded?: {
|
|
1020
1027
|
updatedAt: any;
|
|
@@ -1044,12 +1051,14 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1044
1051
|
whitelist?: any[] | undefined;
|
|
1045
1052
|
ccxt_async_config?: any;
|
|
1046
1053
|
which?: string | undefined;
|
|
1054
|
+
stakeCurrencies?: any[] | undefined;
|
|
1055
|
+
popularStakeCurrency?: string | null | undefined;
|
|
1056
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
1047
1057
|
requiredCredentials?: any;
|
|
1048
1058
|
uid?: string | undefined;
|
|
1049
1059
|
twofa?: string | undefined;
|
|
1050
1060
|
privateKey?: string | undefined;
|
|
1051
1061
|
walletAddress?: string | undefined;
|
|
1052
|
-
userId?: string | {} | undefined;
|
|
1053
1062
|
__v?: any;
|
|
1054
1063
|
}>;
|
|
1055
1064
|
exchangeId: string;
|
|
@@ -1091,6 +1100,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1091
1100
|
balance_dust_level: number;
|
|
1092
1101
|
} | undefined;
|
|
1093
1102
|
_id?: string | {} | undefined;
|
|
1103
|
+
running?: boolean | undefined;
|
|
1094
1104
|
plugins?: {
|
|
1095
1105
|
number_assets?: number | undefined;
|
|
1096
1106
|
refresh_period?: number | undefined;
|
|
@@ -1107,7 +1117,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1107
1117
|
exit: number;
|
|
1108
1118
|
} | undefined;
|
|
1109
1119
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1110
|
-
running?: boolean | undefined;
|
|
1111
1120
|
tradable_balance_ratio?: number | undefined;
|
|
1112
1121
|
webhook?: {
|
|
1113
1122
|
url: string;
|
|
@@ -1197,9 +1206,9 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1197
1206
|
key: string;
|
|
1198
1207
|
createdAt: any;
|
|
1199
1208
|
updatedAt: any;
|
|
1209
|
+
userId: any;
|
|
1200
1210
|
connected: boolean;
|
|
1201
1211
|
which: string;
|
|
1202
|
-
userId: any;
|
|
1203
1212
|
"traders/pods": any;
|
|
1204
1213
|
exchange: any;
|
|
1205
1214
|
exchangeId: any;
|
|
@@ -1346,6 +1355,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1346
1355
|
balance_dust_level: number;
|
|
1347
1356
|
} | undefined;
|
|
1348
1357
|
_id?: string | {} | undefined;
|
|
1358
|
+
running?: boolean | undefined;
|
|
1349
1359
|
plugins?: {
|
|
1350
1360
|
number_assets?: number | undefined;
|
|
1351
1361
|
refresh_period?: number | undefined;
|
|
@@ -1362,7 +1372,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1362
1372
|
exit: number;
|
|
1363
1373
|
} | undefined;
|
|
1364
1374
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1365
|
-
running?: boolean | undefined;
|
|
1366
1375
|
tradable_balance_ratio?: number | undefined;
|
|
1367
1376
|
webhook?: {
|
|
1368
1377
|
url: string;
|
|
@@ -1452,9 +1461,9 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1452
1461
|
key: string;
|
|
1453
1462
|
createdAt: any;
|
|
1454
1463
|
updatedAt: any;
|
|
1464
|
+
userId: any;
|
|
1455
1465
|
connected: boolean;
|
|
1456
1466
|
which: string;
|
|
1457
|
-
userId: any;
|
|
1458
1467
|
"traders/pods": any;
|
|
1459
1468
|
exchange: any;
|
|
1460
1469
|
exchangeId: any;
|
|
@@ -1716,6 +1725,9 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1716
1725
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
1717
1726
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
1718
1727
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1728
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
1729
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
1730
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1719
1731
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
1720
1732
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
1721
1733
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -2011,6 +2023,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2011
2023
|
updatedAt?: any;
|
|
2012
2024
|
error?: any;
|
|
2013
2025
|
login?: string | undefined;
|
|
2026
|
+
userId?: string | {} | undefined;
|
|
2014
2027
|
connected?: boolean | undefined;
|
|
2015
2028
|
downloaded?: {
|
|
2016
2029
|
updatedAt: any;
|
|
@@ -2040,12 +2053,14 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2040
2053
|
whitelist?: any[] | undefined;
|
|
2041
2054
|
ccxt_async_config?: any;
|
|
2042
2055
|
which?: string | undefined;
|
|
2056
|
+
stakeCurrencies?: any[] | undefined;
|
|
2057
|
+
popularStakeCurrency?: string | null | undefined;
|
|
2058
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
2043
2059
|
requiredCredentials?: any;
|
|
2044
2060
|
uid?: string | undefined;
|
|
2045
2061
|
twofa?: string | undefined;
|
|
2046
2062
|
privateKey?: string | undefined;
|
|
2047
2063
|
walletAddress?: string | undefined;
|
|
2048
|
-
userId?: string | {} | undefined;
|
|
2049
2064
|
__v?: any;
|
|
2050
2065
|
}>;
|
|
2051
2066
|
exchangeId: string;
|
|
@@ -2087,6 +2102,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2087
2102
|
balance_dust_level: number;
|
|
2088
2103
|
} | undefined;
|
|
2089
2104
|
_id?: string | {} | undefined;
|
|
2105
|
+
running?: boolean | undefined;
|
|
2090
2106
|
plugins?: {
|
|
2091
2107
|
number_assets?: number | undefined;
|
|
2092
2108
|
refresh_period?: number | undefined;
|
|
@@ -2103,7 +2119,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2103
2119
|
exit: number;
|
|
2104
2120
|
} | undefined;
|
|
2105
2121
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
2106
|
-
running?: boolean | undefined;
|
|
2107
2122
|
tradable_balance_ratio?: number | undefined;
|
|
2108
2123
|
webhook?: {
|
|
2109
2124
|
url: string;
|
|
@@ -2193,9 +2208,9 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2193
2208
|
key: string;
|
|
2194
2209
|
createdAt: any;
|
|
2195
2210
|
updatedAt: any;
|
|
2211
|
+
userId: any;
|
|
2196
2212
|
connected: boolean;
|
|
2197
2213
|
which: string;
|
|
2198
|
-
userId: any;
|
|
2199
2214
|
"traders/pods": any;
|
|
2200
2215
|
exchange: any;
|
|
2201
2216
|
exchangeId: any;
|
|
@@ -2342,6 +2357,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2342
2357
|
balance_dust_level: number;
|
|
2343
2358
|
} | undefined;
|
|
2344
2359
|
_id?: string | {} | undefined;
|
|
2360
|
+
running?: boolean | undefined;
|
|
2345
2361
|
plugins?: {
|
|
2346
2362
|
number_assets?: number | undefined;
|
|
2347
2363
|
refresh_period?: number | undefined;
|
|
@@ -2358,7 +2374,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2358
2374
|
exit: number;
|
|
2359
2375
|
} | undefined;
|
|
2360
2376
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
2361
|
-
running?: boolean | undefined;
|
|
2362
2377
|
tradable_balance_ratio?: number | undefined;
|
|
2363
2378
|
webhook?: {
|
|
2364
2379
|
url: string;
|
|
@@ -2448,9 +2463,9 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2448
2463
|
key: string;
|
|
2449
2464
|
createdAt: any;
|
|
2450
2465
|
updatedAt: any;
|
|
2466
|
+
userId: any;
|
|
2451
2467
|
connected: boolean;
|
|
2452
2468
|
which: string;
|
|
2453
|
-
userId: any;
|
|
2454
2469
|
"traders/pods": any;
|
|
2455
2470
|
exchange: any;
|
|
2456
2471
|
exchangeId: any;
|
|
@@ -2712,6 +2727,9 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2712
2727
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
2713
2728
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2714
2729
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2730
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
2731
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
2732
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2715
2733
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
2716
2734
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
2717
2735
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -3007,6 +3025,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3007
3025
|
updatedAt?: any;
|
|
3008
3026
|
error?: any;
|
|
3009
3027
|
login?: string | undefined;
|
|
3028
|
+
userId?: string | {} | undefined;
|
|
3010
3029
|
connected?: boolean | undefined;
|
|
3011
3030
|
downloaded?: {
|
|
3012
3031
|
updatedAt: any;
|
|
@@ -3036,12 +3055,14 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3036
3055
|
whitelist?: any[] | undefined;
|
|
3037
3056
|
ccxt_async_config?: any;
|
|
3038
3057
|
which?: string | undefined;
|
|
3058
|
+
stakeCurrencies?: any[] | undefined;
|
|
3059
|
+
popularStakeCurrency?: string | null | undefined;
|
|
3060
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
3039
3061
|
requiredCredentials?: any;
|
|
3040
3062
|
uid?: string | undefined;
|
|
3041
3063
|
twofa?: string | undefined;
|
|
3042
3064
|
privateKey?: string | undefined;
|
|
3043
3065
|
walletAddress?: string | undefined;
|
|
3044
|
-
userId?: string | {} | undefined;
|
|
3045
3066
|
__v?: any;
|
|
3046
3067
|
}>;
|
|
3047
3068
|
exchangeId: string;
|
|
@@ -3083,6 +3104,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3083
3104
|
balance_dust_level: number;
|
|
3084
3105
|
} | undefined;
|
|
3085
3106
|
_id?: string | {} | undefined;
|
|
3107
|
+
running?: boolean | undefined;
|
|
3086
3108
|
plugins?: {
|
|
3087
3109
|
number_assets?: number | undefined;
|
|
3088
3110
|
refresh_period?: number | undefined;
|
|
@@ -3099,7 +3121,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3099
3121
|
exit: number;
|
|
3100
3122
|
} | undefined;
|
|
3101
3123
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
3102
|
-
running?: boolean | undefined;
|
|
3103
3124
|
tradable_balance_ratio?: number | undefined;
|
|
3104
3125
|
webhook?: {
|
|
3105
3126
|
url: string;
|
|
@@ -3189,9 +3210,9 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3189
3210
|
key: string;
|
|
3190
3211
|
createdAt: any;
|
|
3191
3212
|
updatedAt: any;
|
|
3213
|
+
userId: any;
|
|
3192
3214
|
connected: boolean;
|
|
3193
3215
|
which: string;
|
|
3194
|
-
userId: any;
|
|
3195
3216
|
"traders/pods": any;
|
|
3196
3217
|
exchange: any;
|
|
3197
3218
|
exchangeId: any;
|
|
@@ -3338,6 +3359,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3338
3359
|
balance_dust_level: number;
|
|
3339
3360
|
} | undefined;
|
|
3340
3361
|
_id?: string | {} | undefined;
|
|
3362
|
+
running?: boolean | undefined;
|
|
3341
3363
|
plugins?: {
|
|
3342
3364
|
number_assets?: number | undefined;
|
|
3343
3365
|
refresh_period?: number | undefined;
|
|
@@ -3354,7 +3376,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3354
3376
|
exit: number;
|
|
3355
3377
|
} | undefined;
|
|
3356
3378
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
3357
|
-
running?: boolean | undefined;
|
|
3358
3379
|
tradable_balance_ratio?: number | undefined;
|
|
3359
3380
|
webhook?: {
|
|
3360
3381
|
url: string;
|
|
@@ -3444,9 +3465,9 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3444
3465
|
key: string;
|
|
3445
3466
|
createdAt: any;
|
|
3446
3467
|
updatedAt: any;
|
|
3468
|
+
userId: any;
|
|
3447
3469
|
connected: boolean;
|
|
3448
3470
|
which: string;
|
|
3449
|
-
userId: any;
|
|
3450
3471
|
"traders/pods": any;
|
|
3451
3472
|
exchange: any;
|
|
3452
3473
|
exchangeId: any;
|
|
@@ -3708,6 +3729,9 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3708
3729
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
3709
3730
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3710
3731
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3732
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
3733
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
3734
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3711
3735
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
3712
3736
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
3713
3737
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|