@cryptorobot.ai/client 0.0.17 → 0.0.19
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 +8 -0
- package/lib/helpers/app.helper.d.ts +4 -0
- package/lib/helpers/logging.helper.d.ts +1 -0
- package/lib/hooks/init-data-folder.d.ts +2 -0
- package/lib/hooks/setup-aws-sdk.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +8 -32
- package/lib/services/exchanges/download/download.schema.d.ts +8 -32
- package/lib/services/exchanges/exchanges.schema.d.ts +8 -32
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +8 -32
- package/lib/services/messages/messages.schema.d.ts +16 -8
- package/lib/services/strategies/strategies.schema.d.ts +40 -40
- package/lib/services/traders/pods/api/api.schema.d.ts +56 -72
- package/lib/services/traders/pods/pods.schema.d.ts +48 -72
- package/lib/services/users/users.schema.d.ts +16 -8
- package/package.json +1 -1
|
@@ -257,16 +257,6 @@ export type Strategies = Static<typeof strategiesSchema>;
|
|
|
257
257
|
export declare const strategiesValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
258
258
|
export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
259
259
|
_id?: string | {} | undefined;
|
|
260
|
-
createdAt?: any;
|
|
261
|
-
updatedAt?: any;
|
|
262
|
-
'strategies/templates'?: {
|
|
263
|
-
_id?: string | {} | undefined;
|
|
264
|
-
values: any;
|
|
265
|
-
name: string;
|
|
266
|
-
createdAt: any;
|
|
267
|
-
description: string;
|
|
268
|
-
type: string;
|
|
269
|
-
} | undefined;
|
|
270
260
|
traders?: {
|
|
271
261
|
telegram?: {
|
|
272
262
|
access_hash?: string | null | undefined;
|
|
@@ -450,6 +440,16 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
450
440
|
};
|
|
451
441
|
pod: string;
|
|
452
442
|
}[] | undefined;
|
|
443
|
+
createdAt?: any;
|
|
444
|
+
updatedAt?: any;
|
|
445
|
+
'strategies/templates'?: {
|
|
446
|
+
_id?: string | {} | undefined;
|
|
447
|
+
values: any;
|
|
448
|
+
name: string;
|
|
449
|
+
createdAt: any;
|
|
450
|
+
description: string;
|
|
451
|
+
type: string;
|
|
452
|
+
} | undefined;
|
|
453
453
|
stoploss?: number | undefined;
|
|
454
454
|
minimal_roi?: {
|
|
455
455
|
minutes: number;
|
|
@@ -509,16 +509,6 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
509
509
|
}, HookContext<StrategiesService<import("./strategies.class").StrategiesParams>>>;
|
|
510
510
|
export declare const strategiesExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
511
511
|
_id?: string | {} | undefined;
|
|
512
|
-
createdAt?: any;
|
|
513
|
-
updatedAt?: any;
|
|
514
|
-
'strategies/templates'?: {
|
|
515
|
-
_id?: string | {} | undefined;
|
|
516
|
-
values: any;
|
|
517
|
-
name: string;
|
|
518
|
-
createdAt: any;
|
|
519
|
-
description: string;
|
|
520
|
-
type: string;
|
|
521
|
-
} | undefined;
|
|
522
512
|
traders?: {
|
|
523
513
|
telegram?: {
|
|
524
514
|
access_hash?: string | null | undefined;
|
|
@@ -702,6 +692,16 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
702
692
|
};
|
|
703
693
|
pod: string;
|
|
704
694
|
}[] | undefined;
|
|
695
|
+
createdAt?: any;
|
|
696
|
+
updatedAt?: any;
|
|
697
|
+
'strategies/templates'?: {
|
|
698
|
+
_id?: string | {} | undefined;
|
|
699
|
+
values: any;
|
|
700
|
+
name: string;
|
|
701
|
+
createdAt: any;
|
|
702
|
+
description: string;
|
|
703
|
+
type: string;
|
|
704
|
+
} | undefined;
|
|
705
705
|
stoploss?: number | undefined;
|
|
706
706
|
minimal_roi?: {
|
|
707
707
|
minutes: number;
|
|
@@ -1015,16 +1015,6 @@ export type StrategiesData = Static<typeof strategiesDataSchema>;
|
|
|
1015
1015
|
export declare const strategiesDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
1016
1016
|
export declare const strategiesDataResolver: import("@feathersjs/schema").Resolver<{
|
|
1017
1017
|
_id?: string | {} | undefined;
|
|
1018
|
-
createdAt?: any;
|
|
1019
|
-
updatedAt?: any;
|
|
1020
|
-
'strategies/templates'?: {
|
|
1021
|
-
_id?: string | {} | undefined;
|
|
1022
|
-
values: any;
|
|
1023
|
-
name: string;
|
|
1024
|
-
createdAt: any;
|
|
1025
|
-
description: string;
|
|
1026
|
-
type: string;
|
|
1027
|
-
} | undefined;
|
|
1028
1018
|
traders?: {
|
|
1029
1019
|
telegram?: {
|
|
1030
1020
|
access_hash?: string | null | undefined;
|
|
@@ -1208,6 +1198,16 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1208
1198
|
};
|
|
1209
1199
|
pod: string;
|
|
1210
1200
|
}[] | undefined;
|
|
1201
|
+
createdAt?: any;
|
|
1202
|
+
updatedAt?: any;
|
|
1203
|
+
'strategies/templates'?: {
|
|
1204
|
+
_id?: string | {} | undefined;
|
|
1205
|
+
values: any;
|
|
1206
|
+
name: string;
|
|
1207
|
+
createdAt: any;
|
|
1208
|
+
description: string;
|
|
1209
|
+
type: string;
|
|
1210
|
+
} | undefined;
|
|
1211
1211
|
stoploss?: number | undefined;
|
|
1212
1212
|
minimal_roi?: {
|
|
1213
1213
|
minutes: number;
|
|
@@ -1521,16 +1521,6 @@ export type StrategiesPatch = Static<typeof strategiesPatchSchema>;
|
|
|
1521
1521
|
export declare const strategiesPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
1522
1522
|
export declare const strategiesPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
1523
1523
|
_id?: string | {} | undefined;
|
|
1524
|
-
createdAt?: any;
|
|
1525
|
-
updatedAt?: any;
|
|
1526
|
-
'strategies/templates'?: {
|
|
1527
|
-
_id?: string | {} | undefined;
|
|
1528
|
-
values: any;
|
|
1529
|
-
name: string;
|
|
1530
|
-
createdAt: any;
|
|
1531
|
-
description: string;
|
|
1532
|
-
type: string;
|
|
1533
|
-
} | undefined;
|
|
1534
1524
|
traders?: {
|
|
1535
1525
|
telegram?: {
|
|
1536
1526
|
access_hash?: string | null | undefined;
|
|
@@ -1714,6 +1704,16 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1714
1704
|
};
|
|
1715
1705
|
pod: string;
|
|
1716
1706
|
}[] | undefined;
|
|
1707
|
+
createdAt?: any;
|
|
1708
|
+
updatedAt?: any;
|
|
1709
|
+
'strategies/templates'?: {
|
|
1710
|
+
_id?: string | {} | undefined;
|
|
1711
|
+
values: any;
|
|
1712
|
+
name: string;
|
|
1713
|
+
createdAt: any;
|
|
1714
|
+
description: string;
|
|
1715
|
+
type: string;
|
|
1716
|
+
} | undefined;
|
|
1717
1717
|
stoploss?: number | undefined;
|
|
1718
1718
|
minimal_roi?: {
|
|
1719
1719
|
minutes: number;
|
|
@@ -406,10 +406,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
406
406
|
left: import("@feathersjs/typebox").TString<string>;
|
|
407
407
|
right: import("@feathersjs/typebox").TString<string>;
|
|
408
408
|
}>>>;
|
|
409
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
410
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
411
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
412
|
-
}>>>;
|
|
409
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
413
410
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
414
411
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
415
412
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -685,6 +682,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
685
682
|
options: import("@feathersjs/typebox").TAny;
|
|
686
683
|
}>>>>;
|
|
687
684
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
685
|
+
updatedAt: import("@feathersjs/typebox").TAny;
|
|
688
686
|
action: import("@feathersjs/typebox").TString<string>;
|
|
689
687
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
690
688
|
result: import("@feathersjs/typebox").TAny;
|
|
@@ -738,10 +736,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
738
736
|
left: string;
|
|
739
737
|
right: string;
|
|
740
738
|
}[] | undefined;
|
|
741
|
-
whitelist?:
|
|
742
|
-
left: string;
|
|
743
|
-
right: string;
|
|
744
|
-
}[] | undefined;
|
|
739
|
+
whitelist?: any[] | undefined;
|
|
745
740
|
ccxt_async_config?: any;
|
|
746
741
|
requiredCredentials?: any;
|
|
747
742
|
uid?: string | undefined;
|
|
@@ -754,16 +749,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
754
749
|
}>;
|
|
755
750
|
strategy: Partial<{
|
|
756
751
|
_id?: string | {} | undefined;
|
|
757
|
-
createdAt?: any;
|
|
758
|
-
updatedAt?: any;
|
|
759
|
-
'strategies/templates'?: {
|
|
760
|
-
_id?: string | {} | undefined;
|
|
761
|
-
values: any;
|
|
762
|
-
name: string;
|
|
763
|
-
createdAt: any;
|
|
764
|
-
description: string;
|
|
765
|
-
type: string;
|
|
766
|
-
} | undefined;
|
|
767
752
|
traders?: {
|
|
768
753
|
telegram?: {
|
|
769
754
|
access_hash?: string | null | undefined;
|
|
@@ -947,6 +932,16 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
947
932
|
};
|
|
948
933
|
pod: string;
|
|
949
934
|
}[] | undefined;
|
|
935
|
+
createdAt?: any;
|
|
936
|
+
updatedAt?: any;
|
|
937
|
+
'strategies/templates'?: {
|
|
938
|
+
_id?: string | {} | undefined;
|
|
939
|
+
values: any;
|
|
940
|
+
name: string;
|
|
941
|
+
createdAt: any;
|
|
942
|
+
description: string;
|
|
943
|
+
type: string;
|
|
944
|
+
} | undefined;
|
|
950
945
|
stoploss?: number | undefined;
|
|
951
946
|
minimal_roi?: {
|
|
952
947
|
minutes: number;
|
|
@@ -1374,6 +1369,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1374
1369
|
}> | undefined;
|
|
1375
1370
|
_id: string | {};
|
|
1376
1371
|
createdAt: any;
|
|
1372
|
+
updatedAt: any;
|
|
1377
1373
|
traderId: any;
|
|
1378
1374
|
userId: any;
|
|
1379
1375
|
action: string;
|
|
@@ -1426,10 +1422,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1426
1422
|
left: string;
|
|
1427
1423
|
right: string;
|
|
1428
1424
|
}[] | undefined;
|
|
1429
|
-
whitelist?:
|
|
1430
|
-
left: string;
|
|
1431
|
-
right: string;
|
|
1432
|
-
}[] | undefined;
|
|
1425
|
+
whitelist?: any[] | undefined;
|
|
1433
1426
|
ccxt_async_config?: any;
|
|
1434
1427
|
requiredCredentials?: any;
|
|
1435
1428
|
uid?: string | undefined;
|
|
@@ -1442,16 +1435,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1442
1435
|
}>;
|
|
1443
1436
|
strategy: Partial<{
|
|
1444
1437
|
_id?: string | {} | undefined;
|
|
1445
|
-
createdAt?: any;
|
|
1446
|
-
updatedAt?: any;
|
|
1447
|
-
'strategies/templates'?: {
|
|
1448
|
-
_id?: string | {} | undefined;
|
|
1449
|
-
values: any;
|
|
1450
|
-
name: string;
|
|
1451
|
-
createdAt: any;
|
|
1452
|
-
description: string;
|
|
1453
|
-
type: string;
|
|
1454
|
-
} | undefined;
|
|
1455
1438
|
traders?: {
|
|
1456
1439
|
telegram?: {
|
|
1457
1440
|
access_hash?: string | null | undefined;
|
|
@@ -1635,6 +1618,16 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1635
1618
|
};
|
|
1636
1619
|
pod: string;
|
|
1637
1620
|
}[] | undefined;
|
|
1621
|
+
createdAt?: any;
|
|
1622
|
+
updatedAt?: any;
|
|
1623
|
+
'strategies/templates'?: {
|
|
1624
|
+
_id?: string | {} | undefined;
|
|
1625
|
+
values: any;
|
|
1626
|
+
name: string;
|
|
1627
|
+
createdAt: any;
|
|
1628
|
+
description: string;
|
|
1629
|
+
type: string;
|
|
1630
|
+
} | undefined;
|
|
1638
1631
|
stoploss?: number | undefined;
|
|
1639
1632
|
minimal_roi?: {
|
|
1640
1633
|
minutes: number;
|
|
@@ -2062,6 +2055,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
2062
2055
|
}> | undefined;
|
|
2063
2056
|
_id: string | {};
|
|
2064
2057
|
createdAt: any;
|
|
2058
|
+
updatedAt: any;
|
|
2065
2059
|
traderId: any;
|
|
2066
2060
|
userId: any;
|
|
2067
2061
|
action: string;
|
|
@@ -2472,10 +2466,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2472
2466
|
left: import("@feathersjs/typebox").TString<string>;
|
|
2473
2467
|
right: import("@feathersjs/typebox").TString<string>;
|
|
2474
2468
|
}>>>;
|
|
2475
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
2476
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
2477
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
2478
|
-
}>>>;
|
|
2469
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
2479
2470
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2480
2471
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2481
2472
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2751,6 +2742,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2751
2742
|
options: import("@feathersjs/typebox").TAny;
|
|
2752
2743
|
}>>>>;
|
|
2753
2744
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
2745
|
+
updatedAt: import("@feathersjs/typebox").TAny;
|
|
2754
2746
|
action: import("@feathersjs/typebox").TString<string>;
|
|
2755
2747
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2756
2748
|
result: import("@feathersjs/typebox").TAny;
|
|
@@ -2804,10 +2796,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2804
2796
|
left: string;
|
|
2805
2797
|
right: string;
|
|
2806
2798
|
}[] | undefined;
|
|
2807
|
-
whitelist?:
|
|
2808
|
-
left: string;
|
|
2809
|
-
right: string;
|
|
2810
|
-
}[] | undefined;
|
|
2799
|
+
whitelist?: any[] | undefined;
|
|
2811
2800
|
ccxt_async_config?: any;
|
|
2812
2801
|
requiredCredentials?: any;
|
|
2813
2802
|
uid?: string | undefined;
|
|
@@ -2820,16 +2809,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2820
2809
|
}>;
|
|
2821
2810
|
strategy: Partial<{
|
|
2822
2811
|
_id?: string | {} | undefined;
|
|
2823
|
-
createdAt?: any;
|
|
2824
|
-
updatedAt?: any;
|
|
2825
|
-
'strategies/templates'?: {
|
|
2826
|
-
_id?: string | {} | undefined;
|
|
2827
|
-
values: any;
|
|
2828
|
-
name: string;
|
|
2829
|
-
createdAt: any;
|
|
2830
|
-
description: string;
|
|
2831
|
-
type: string;
|
|
2832
|
-
} | undefined;
|
|
2833
2812
|
traders?: {
|
|
2834
2813
|
telegram?: {
|
|
2835
2814
|
access_hash?: string | null | undefined;
|
|
@@ -3013,6 +2992,16 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3013
2992
|
};
|
|
3014
2993
|
pod: string;
|
|
3015
2994
|
}[] | undefined;
|
|
2995
|
+
createdAt?: any;
|
|
2996
|
+
updatedAt?: any;
|
|
2997
|
+
'strategies/templates'?: {
|
|
2998
|
+
_id?: string | {} | undefined;
|
|
2999
|
+
values: any;
|
|
3000
|
+
name: string;
|
|
3001
|
+
createdAt: any;
|
|
3002
|
+
description: string;
|
|
3003
|
+
type: string;
|
|
3004
|
+
} | undefined;
|
|
3016
3005
|
stoploss?: number | undefined;
|
|
3017
3006
|
minimal_roi?: {
|
|
3018
3007
|
minutes: number;
|
|
@@ -3440,6 +3429,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3440
3429
|
}> | undefined;
|
|
3441
3430
|
_id: string | {};
|
|
3442
3431
|
createdAt: any;
|
|
3432
|
+
updatedAt: any;
|
|
3443
3433
|
traderId: any;
|
|
3444
3434
|
userId: any;
|
|
3445
3435
|
action: string;
|
|
@@ -3850,10 +3840,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3850
3840
|
left: import("@feathersjs/typebox").TString<string>;
|
|
3851
3841
|
right: import("@feathersjs/typebox").TString<string>;
|
|
3852
3842
|
}>>>;
|
|
3853
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
3854
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
3855
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
3856
|
-
}>>>;
|
|
3843
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
3857
3844
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3858
3845
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3859
3846
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -4129,6 +4116,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
4129
4116
|
options: import("@feathersjs/typebox").TAny;
|
|
4130
4117
|
}>>>>;
|
|
4131
4118
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
4119
|
+
updatedAt: import("@feathersjs/typebox").TAny;
|
|
4132
4120
|
action: import("@feathersjs/typebox").TString<string>;
|
|
4133
4121
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
4134
4122
|
result: import("@feathersjs/typebox").TAny;
|
|
@@ -4182,10 +4170,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4182
4170
|
left: string;
|
|
4183
4171
|
right: string;
|
|
4184
4172
|
}[] | undefined;
|
|
4185
|
-
whitelist?:
|
|
4186
|
-
left: string;
|
|
4187
|
-
right: string;
|
|
4188
|
-
}[] | undefined;
|
|
4173
|
+
whitelist?: any[] | undefined;
|
|
4189
4174
|
ccxt_async_config?: any;
|
|
4190
4175
|
requiredCredentials?: any;
|
|
4191
4176
|
uid?: string | undefined;
|
|
@@ -4198,16 +4183,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4198
4183
|
}>;
|
|
4199
4184
|
strategy: Partial<{
|
|
4200
4185
|
_id?: string | {} | undefined;
|
|
4201
|
-
createdAt?: any;
|
|
4202
|
-
updatedAt?: any;
|
|
4203
|
-
'strategies/templates'?: {
|
|
4204
|
-
_id?: string | {} | undefined;
|
|
4205
|
-
values: any;
|
|
4206
|
-
name: string;
|
|
4207
|
-
createdAt: any;
|
|
4208
|
-
description: string;
|
|
4209
|
-
type: string;
|
|
4210
|
-
} | undefined;
|
|
4211
4186
|
traders?: {
|
|
4212
4187
|
telegram?: {
|
|
4213
4188
|
access_hash?: string | null | undefined;
|
|
@@ -4391,6 +4366,16 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4391
4366
|
};
|
|
4392
4367
|
pod: string;
|
|
4393
4368
|
}[] | undefined;
|
|
4369
|
+
createdAt?: any;
|
|
4370
|
+
updatedAt?: any;
|
|
4371
|
+
'strategies/templates'?: {
|
|
4372
|
+
_id?: string | {} | undefined;
|
|
4373
|
+
values: any;
|
|
4374
|
+
name: string;
|
|
4375
|
+
createdAt: any;
|
|
4376
|
+
description: string;
|
|
4377
|
+
type: string;
|
|
4378
|
+
} | undefined;
|
|
4394
4379
|
stoploss?: number | undefined;
|
|
4395
4380
|
minimal_roi?: {
|
|
4396
4381
|
minutes: number;
|
|
@@ -4818,6 +4803,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4818
4803
|
}> | undefined;
|
|
4819
4804
|
_id: string | {};
|
|
4820
4805
|
createdAt: any;
|
|
4806
|
+
updatedAt: any;
|
|
4821
4807
|
traderId: any;
|
|
4822
4808
|
userId: any;
|
|
4823
4809
|
action: string;
|
|
@@ -5228,10 +5214,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5228
5214
|
left: import("@feathersjs/typebox").TString<string>;
|
|
5229
5215
|
right: import("@feathersjs/typebox").TString<string>;
|
|
5230
5216
|
}>>>;
|
|
5231
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
5232
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
5233
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
5234
|
-
}>>>;
|
|
5217
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
5235
5218
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5236
5219
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5237
5220
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -5507,6 +5490,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5507
5490
|
options: import("@feathersjs/typebox").TAny;
|
|
5508
5491
|
}>>>>;
|
|
5509
5492
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
5493
|
+
updatedAt: import("@feathersjs/typebox").TAny;
|
|
5510
5494
|
action: import("@feathersjs/typebox").TString<string>;
|
|
5511
5495
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5512
5496
|
result: import("@feathersjs/typebox").TAny;
|
|
@@ -219,10 +219,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
219
219
|
left: import("@feathersjs/typebox").TString<string>;
|
|
220
220
|
right: import("@feathersjs/typebox").TString<string>;
|
|
221
221
|
}>>>;
|
|
222
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
223
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
224
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
225
|
-
}>>>;
|
|
222
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
226
223
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
227
224
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
228
225
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -544,10 +541,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
544
541
|
left: string;
|
|
545
542
|
right: string;
|
|
546
543
|
}[] | undefined;
|
|
547
|
-
whitelist?:
|
|
548
|
-
left: string;
|
|
549
|
-
right: string;
|
|
550
|
-
}[] | undefined;
|
|
544
|
+
whitelist?: any[] | undefined;
|
|
551
545
|
ccxt_async_config?: any;
|
|
552
546
|
requiredCredentials?: any;
|
|
553
547
|
uid?: string | undefined;
|
|
@@ -560,16 +554,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
560
554
|
}>;
|
|
561
555
|
strategy: Partial<{
|
|
562
556
|
_id?: string | {} | undefined;
|
|
563
|
-
createdAt?: any;
|
|
564
|
-
updatedAt?: any;
|
|
565
|
-
'strategies/templates'?: {
|
|
566
|
-
_id?: string | {} | undefined;
|
|
567
|
-
values: any;
|
|
568
|
-
name: string;
|
|
569
|
-
createdAt: any;
|
|
570
|
-
description: string;
|
|
571
|
-
type: string;
|
|
572
|
-
} | undefined;
|
|
573
557
|
traders?: {
|
|
574
558
|
telegram?: {
|
|
575
559
|
access_hash?: string | null | undefined;
|
|
@@ -753,6 +737,16 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
753
737
|
};
|
|
754
738
|
pod: string;
|
|
755
739
|
}[] | undefined;
|
|
740
|
+
createdAt?: any;
|
|
741
|
+
updatedAt?: any;
|
|
742
|
+
'strategies/templates'?: {
|
|
743
|
+
_id?: string | {} | undefined;
|
|
744
|
+
values: any;
|
|
745
|
+
name: string;
|
|
746
|
+
createdAt: any;
|
|
747
|
+
description: string;
|
|
748
|
+
type: string;
|
|
749
|
+
} | undefined;
|
|
756
750
|
stoploss?: number | undefined;
|
|
757
751
|
minimal_roi?: {
|
|
758
752
|
minutes: number;
|
|
@@ -1040,10 +1034,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1040
1034
|
left: string;
|
|
1041
1035
|
right: string;
|
|
1042
1036
|
}[] | undefined;
|
|
1043
|
-
whitelist?:
|
|
1044
|
-
left: string;
|
|
1045
|
-
right: string;
|
|
1046
|
-
}[] | undefined;
|
|
1037
|
+
whitelist?: any[] | undefined;
|
|
1047
1038
|
ccxt_async_config?: any;
|
|
1048
1039
|
requiredCredentials?: any;
|
|
1049
1040
|
uid?: string | undefined;
|
|
@@ -1056,16 +1047,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1056
1047
|
}>;
|
|
1057
1048
|
strategy: Partial<{
|
|
1058
1049
|
_id?: string | {} | undefined;
|
|
1059
|
-
createdAt?: any;
|
|
1060
|
-
updatedAt?: any;
|
|
1061
|
-
'strategies/templates'?: {
|
|
1062
|
-
_id?: string | {} | undefined;
|
|
1063
|
-
values: any;
|
|
1064
|
-
name: string;
|
|
1065
|
-
createdAt: any;
|
|
1066
|
-
description: string;
|
|
1067
|
-
type: string;
|
|
1068
|
-
} | undefined;
|
|
1069
1050
|
traders?: {
|
|
1070
1051
|
telegram?: {
|
|
1071
1052
|
access_hash?: string | null | undefined;
|
|
@@ -1249,6 +1230,16 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1249
1230
|
};
|
|
1250
1231
|
pod: string;
|
|
1251
1232
|
}[] | undefined;
|
|
1233
|
+
createdAt?: any;
|
|
1234
|
+
updatedAt?: any;
|
|
1235
|
+
'strategies/templates'?: {
|
|
1236
|
+
_id?: string | {} | undefined;
|
|
1237
|
+
values: any;
|
|
1238
|
+
name: string;
|
|
1239
|
+
createdAt: any;
|
|
1240
|
+
description: string;
|
|
1241
|
+
type: string;
|
|
1242
|
+
} | undefined;
|
|
1252
1243
|
stoploss?: number | undefined;
|
|
1253
1244
|
minimal_roi?: {
|
|
1254
1245
|
minutes: number;
|
|
@@ -1709,10 +1700,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1709
1700
|
left: import("@feathersjs/typebox").TString<string>;
|
|
1710
1701
|
right: import("@feathersjs/typebox").TString<string>;
|
|
1711
1702
|
}>>>;
|
|
1712
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
1713
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
1714
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
1715
|
-
}>>>;
|
|
1703
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
1716
1704
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
1717
1705
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1718
1706
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2034,10 +2022,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2034
2022
|
left: string;
|
|
2035
2023
|
right: string;
|
|
2036
2024
|
}[] | undefined;
|
|
2037
|
-
whitelist?:
|
|
2038
|
-
left: string;
|
|
2039
|
-
right: string;
|
|
2040
|
-
}[] | undefined;
|
|
2025
|
+
whitelist?: any[] | undefined;
|
|
2041
2026
|
ccxt_async_config?: any;
|
|
2042
2027
|
requiredCredentials?: any;
|
|
2043
2028
|
uid?: string | undefined;
|
|
@@ -2050,16 +2035,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2050
2035
|
}>;
|
|
2051
2036
|
strategy: Partial<{
|
|
2052
2037
|
_id?: string | {} | undefined;
|
|
2053
|
-
createdAt?: any;
|
|
2054
|
-
updatedAt?: any;
|
|
2055
|
-
'strategies/templates'?: {
|
|
2056
|
-
_id?: string | {} | undefined;
|
|
2057
|
-
values: any;
|
|
2058
|
-
name: string;
|
|
2059
|
-
createdAt: any;
|
|
2060
|
-
description: string;
|
|
2061
|
-
type: string;
|
|
2062
|
-
} | undefined;
|
|
2063
2038
|
traders?: {
|
|
2064
2039
|
telegram?: {
|
|
2065
2040
|
access_hash?: string | null | undefined;
|
|
@@ -2243,6 +2218,16 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2243
2218
|
};
|
|
2244
2219
|
pod: string;
|
|
2245
2220
|
}[] | undefined;
|
|
2221
|
+
createdAt?: any;
|
|
2222
|
+
updatedAt?: any;
|
|
2223
|
+
'strategies/templates'?: {
|
|
2224
|
+
_id?: string | {} | undefined;
|
|
2225
|
+
values: any;
|
|
2226
|
+
name: string;
|
|
2227
|
+
createdAt: any;
|
|
2228
|
+
description: string;
|
|
2229
|
+
type: string;
|
|
2230
|
+
} | undefined;
|
|
2246
2231
|
stoploss?: number | undefined;
|
|
2247
2232
|
minimal_roi?: {
|
|
2248
2233
|
minutes: number;
|
|
@@ -2703,10 +2688,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2703
2688
|
left: import("@feathersjs/typebox").TString<string>;
|
|
2704
2689
|
right: import("@feathersjs/typebox").TString<string>;
|
|
2705
2690
|
}>>>;
|
|
2706
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
2707
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
2708
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
2709
|
-
}>>>;
|
|
2691
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
2710
2692
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2711
2693
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2712
2694
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -3028,10 +3010,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3028
3010
|
left: string;
|
|
3029
3011
|
right: string;
|
|
3030
3012
|
}[] | undefined;
|
|
3031
|
-
whitelist?:
|
|
3032
|
-
left: string;
|
|
3033
|
-
right: string;
|
|
3034
|
-
}[] | undefined;
|
|
3013
|
+
whitelist?: any[] | undefined;
|
|
3035
3014
|
ccxt_async_config?: any;
|
|
3036
3015
|
requiredCredentials?: any;
|
|
3037
3016
|
uid?: string | undefined;
|
|
@@ -3044,16 +3023,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3044
3023
|
}>;
|
|
3045
3024
|
strategy: Partial<{
|
|
3046
3025
|
_id?: string | {} | undefined;
|
|
3047
|
-
createdAt?: any;
|
|
3048
|
-
updatedAt?: any;
|
|
3049
|
-
'strategies/templates'?: {
|
|
3050
|
-
_id?: string | {} | undefined;
|
|
3051
|
-
values: any;
|
|
3052
|
-
name: string;
|
|
3053
|
-
createdAt: any;
|
|
3054
|
-
description: string;
|
|
3055
|
-
type: string;
|
|
3056
|
-
} | undefined;
|
|
3057
3026
|
traders?: {
|
|
3058
3027
|
telegram?: {
|
|
3059
3028
|
access_hash?: string | null | undefined;
|
|
@@ -3237,6 +3206,16 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3237
3206
|
};
|
|
3238
3207
|
pod: string;
|
|
3239
3208
|
}[] | undefined;
|
|
3209
|
+
createdAt?: any;
|
|
3210
|
+
updatedAt?: any;
|
|
3211
|
+
'strategies/templates'?: {
|
|
3212
|
+
_id?: string | {} | undefined;
|
|
3213
|
+
values: any;
|
|
3214
|
+
name: string;
|
|
3215
|
+
createdAt: any;
|
|
3216
|
+
description: string;
|
|
3217
|
+
type: string;
|
|
3218
|
+
} | undefined;
|
|
3240
3219
|
stoploss?: number | undefined;
|
|
3241
3220
|
minimal_roi?: {
|
|
3242
3221
|
minutes: number;
|
|
@@ -3697,10 +3676,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3697
3676
|
left: import("@feathersjs/typebox").TString<string>;
|
|
3698
3677
|
right: import("@feathersjs/typebox").TString<string>;
|
|
3699
3678
|
}>>>;
|
|
3700
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
3701
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
3702
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
3703
|
-
}>>>;
|
|
3679
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
3704
3680
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3705
3681
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3706
3682
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|