@cryptorobot.ai/client 0.0.17 → 0.0.18
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 +48 -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>>;
|
|
@@ -738,10 +735,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
738
735
|
left: string;
|
|
739
736
|
right: string;
|
|
740
737
|
}[] | undefined;
|
|
741
|
-
whitelist?:
|
|
742
|
-
left: string;
|
|
743
|
-
right: string;
|
|
744
|
-
}[] | undefined;
|
|
738
|
+
whitelist?: any[] | undefined;
|
|
745
739
|
ccxt_async_config?: any;
|
|
746
740
|
requiredCredentials?: any;
|
|
747
741
|
uid?: string | undefined;
|
|
@@ -754,16 +748,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
754
748
|
}>;
|
|
755
749
|
strategy: Partial<{
|
|
756
750
|
_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
751
|
traders?: {
|
|
768
752
|
telegram?: {
|
|
769
753
|
access_hash?: string | null | undefined;
|
|
@@ -947,6 +931,16 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
947
931
|
};
|
|
948
932
|
pod: string;
|
|
949
933
|
}[] | undefined;
|
|
934
|
+
createdAt?: any;
|
|
935
|
+
updatedAt?: any;
|
|
936
|
+
'strategies/templates'?: {
|
|
937
|
+
_id?: string | {} | undefined;
|
|
938
|
+
values: any;
|
|
939
|
+
name: string;
|
|
940
|
+
createdAt: any;
|
|
941
|
+
description: string;
|
|
942
|
+
type: string;
|
|
943
|
+
} | undefined;
|
|
950
944
|
stoploss?: number | undefined;
|
|
951
945
|
minimal_roi?: {
|
|
952
946
|
minutes: number;
|
|
@@ -1426,10 +1420,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1426
1420
|
left: string;
|
|
1427
1421
|
right: string;
|
|
1428
1422
|
}[] | undefined;
|
|
1429
|
-
whitelist?:
|
|
1430
|
-
left: string;
|
|
1431
|
-
right: string;
|
|
1432
|
-
}[] | undefined;
|
|
1423
|
+
whitelist?: any[] | undefined;
|
|
1433
1424
|
ccxt_async_config?: any;
|
|
1434
1425
|
requiredCredentials?: any;
|
|
1435
1426
|
uid?: string | undefined;
|
|
@@ -1442,16 +1433,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1442
1433
|
}>;
|
|
1443
1434
|
strategy: Partial<{
|
|
1444
1435
|
_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
1436
|
traders?: {
|
|
1456
1437
|
telegram?: {
|
|
1457
1438
|
access_hash?: string | null | undefined;
|
|
@@ -1635,6 +1616,16 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1635
1616
|
};
|
|
1636
1617
|
pod: string;
|
|
1637
1618
|
}[] | undefined;
|
|
1619
|
+
createdAt?: any;
|
|
1620
|
+
updatedAt?: any;
|
|
1621
|
+
'strategies/templates'?: {
|
|
1622
|
+
_id?: string | {} | undefined;
|
|
1623
|
+
values: any;
|
|
1624
|
+
name: string;
|
|
1625
|
+
createdAt: any;
|
|
1626
|
+
description: string;
|
|
1627
|
+
type: string;
|
|
1628
|
+
} | undefined;
|
|
1638
1629
|
stoploss?: number | undefined;
|
|
1639
1630
|
minimal_roi?: {
|
|
1640
1631
|
minutes: number;
|
|
@@ -2472,10 +2463,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2472
2463
|
left: import("@feathersjs/typebox").TString<string>;
|
|
2473
2464
|
right: import("@feathersjs/typebox").TString<string>;
|
|
2474
2465
|
}>>>;
|
|
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
|
-
}>>>;
|
|
2466
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
2479
2467
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2480
2468
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2481
2469
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2804,10 +2792,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2804
2792
|
left: string;
|
|
2805
2793
|
right: string;
|
|
2806
2794
|
}[] | undefined;
|
|
2807
|
-
whitelist?:
|
|
2808
|
-
left: string;
|
|
2809
|
-
right: string;
|
|
2810
|
-
}[] | undefined;
|
|
2795
|
+
whitelist?: any[] | undefined;
|
|
2811
2796
|
ccxt_async_config?: any;
|
|
2812
2797
|
requiredCredentials?: any;
|
|
2813
2798
|
uid?: string | undefined;
|
|
@@ -2820,16 +2805,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2820
2805
|
}>;
|
|
2821
2806
|
strategy: Partial<{
|
|
2822
2807
|
_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
2808
|
traders?: {
|
|
2834
2809
|
telegram?: {
|
|
2835
2810
|
access_hash?: string | null | undefined;
|
|
@@ -3013,6 +2988,16 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3013
2988
|
};
|
|
3014
2989
|
pod: string;
|
|
3015
2990
|
}[] | undefined;
|
|
2991
|
+
createdAt?: any;
|
|
2992
|
+
updatedAt?: any;
|
|
2993
|
+
'strategies/templates'?: {
|
|
2994
|
+
_id?: string | {} | undefined;
|
|
2995
|
+
values: any;
|
|
2996
|
+
name: string;
|
|
2997
|
+
createdAt: any;
|
|
2998
|
+
description: string;
|
|
2999
|
+
type: string;
|
|
3000
|
+
} | undefined;
|
|
3016
3001
|
stoploss?: number | undefined;
|
|
3017
3002
|
minimal_roi?: {
|
|
3018
3003
|
minutes: number;
|
|
@@ -3850,10 +3835,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3850
3835
|
left: import("@feathersjs/typebox").TString<string>;
|
|
3851
3836
|
right: import("@feathersjs/typebox").TString<string>;
|
|
3852
3837
|
}>>>;
|
|
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
|
-
}>>>;
|
|
3838
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
3857
3839
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3858
3840
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3859
3841
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -4182,10 +4164,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4182
4164
|
left: string;
|
|
4183
4165
|
right: string;
|
|
4184
4166
|
}[] | undefined;
|
|
4185
|
-
whitelist?:
|
|
4186
|
-
left: string;
|
|
4187
|
-
right: string;
|
|
4188
|
-
}[] | undefined;
|
|
4167
|
+
whitelist?: any[] | undefined;
|
|
4189
4168
|
ccxt_async_config?: any;
|
|
4190
4169
|
requiredCredentials?: any;
|
|
4191
4170
|
uid?: string | undefined;
|
|
@@ -4198,16 +4177,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4198
4177
|
}>;
|
|
4199
4178
|
strategy: Partial<{
|
|
4200
4179
|
_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
4180
|
traders?: {
|
|
4212
4181
|
telegram?: {
|
|
4213
4182
|
access_hash?: string | null | undefined;
|
|
@@ -4391,6 +4360,16 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4391
4360
|
};
|
|
4392
4361
|
pod: string;
|
|
4393
4362
|
}[] | undefined;
|
|
4363
|
+
createdAt?: any;
|
|
4364
|
+
updatedAt?: any;
|
|
4365
|
+
'strategies/templates'?: {
|
|
4366
|
+
_id?: string | {} | undefined;
|
|
4367
|
+
values: any;
|
|
4368
|
+
name: string;
|
|
4369
|
+
createdAt: any;
|
|
4370
|
+
description: string;
|
|
4371
|
+
type: string;
|
|
4372
|
+
} | undefined;
|
|
4394
4373
|
stoploss?: number | undefined;
|
|
4395
4374
|
minimal_roi?: {
|
|
4396
4375
|
minutes: number;
|
|
@@ -5228,10 +5207,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5228
5207
|
left: import("@feathersjs/typebox").TString<string>;
|
|
5229
5208
|
right: import("@feathersjs/typebox").TString<string>;
|
|
5230
5209
|
}>>>;
|
|
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
|
-
}>>>;
|
|
5210
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
5235
5211
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5236
5212
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5237
5213
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -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>>;
|