@cryptorobot.ai/client 0.0.32 → 0.0.35
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/app.d.ts +1 -0
- package/lib/client.d.ts +2 -0
- package/lib/client.js +7 -5
- package/lib/configuration.d.ts +41 -1
- package/lib/helpers/app.helper.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +2 -0
- package/lib/helpers/deployments.helper.d.ts +1 -1
- package/lib/helpers/funnel.helper.d.ts +2 -0
- package/lib/helpers/push-notification.helper.d.ts +1 -0
- package/lib/hooks/application/setup-ccxt-load-marketplaces-mocked.d.ts +3 -0
- package/lib/hooks/application/setup-fs.d.ts +3 -0
- package/lib/hooks/revenuecat-is-subscription-active.d.ts +2 -0
- package/lib/services/auth-management/auth-management.shared.js +1 -12
- package/lib/services/config/config.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.schema.d.ts +32 -24
- package/lib/services/exchanges/download/download.schema.d.ts +32 -24
- package/lib/services/exchanges/exchanges.d.ts +1 -0
- package/lib/services/exchanges/exchanges.schema.d.ts +85 -77
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +32 -24
- package/lib/services/index.d.ts +1 -1
- package/lib/services/messages/messages.schema.d.ts +80 -32
- package/lib/services/strategies/backtest/backtest.d.ts +1 -0
- package/lib/services/strategies/backtest/backtest.schema.d.ts +133 -197
- package/lib/services/strategies/backtest/results/results.schema.d.ts +4 -4
- package/lib/services/strategies/indicators/indicators.schema.d.ts +61 -61
- package/lib/services/strategies/strategies.d.ts +1 -0
- package/lib/services/strategies/strategies.schema.d.ts +36 -20
- package/lib/services/strategies/templates/templates.schema.d.ts +9 -1
- package/lib/services/stripe/webhooks/webhooks.class.d.ts +26 -0
- package/lib/services/stripe/webhooks/webhooks.d.ts +9 -0
- package/lib/services/stripe/webhooks/webhooks.shared.d.ts +13 -0
- package/lib/services/stripe/webhooks/webhooks.shared.js +13 -0
- package/lib/services/traders/pods/api/api.schema.d.ts +116 -76
- package/lib/services/traders/pods/pods.schema.d.ts +92 -60
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +217 -3
- package/lib/services/traders/traders.schema.d.ts +141 -133
- package/lib/services/users/users.d.ts +1 -0
- package/lib/services/users/users.helper.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +236 -88
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
6
6
|
traderId: import("@feathersjs/typebox").TAny;
|
|
7
7
|
userId: import("@feathersjs/typebox").TAny;
|
|
8
8
|
trader: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
9
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
9
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
10
10
|
name: import("@feathersjs/typebox").TAny;
|
|
11
11
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
12
12
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -181,7 +181,8 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
181
181
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
182
182
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
183
183
|
}>>;
|
|
184
|
-
pod: import("@feathersjs/typebox").
|
|
184
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
185
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
185
186
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
186
187
|
host: import("@feathersjs/typebox").TString<string>;
|
|
187
188
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -192,7 +193,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
192
193
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
193
194
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
194
195
|
trader: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
195
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
196
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
196
197
|
name: import("@feathersjs/typebox").TAny;
|
|
197
198
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
198
199
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -367,7 +368,8 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
367
368
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
368
369
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
369
370
|
}>>;
|
|
370
|
-
pod: import("@feathersjs/typebox").
|
|
371
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
372
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
371
373
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
372
374
|
host: import("@feathersjs/typebox").TString<string>;
|
|
373
375
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -375,7 +377,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
375
377
|
"traders/pods": import("@feathersjs/typebox").TAny;
|
|
376
378
|
}>>>;
|
|
377
379
|
exchange: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
378
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
380
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
379
381
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
380
382
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
381
383
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -409,8 +411,8 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
409
411
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
410
412
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
411
413
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
412
|
-
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
413
|
-
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
414
|
+
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
415
|
+
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
414
416
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
415
417
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
416
418
|
uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -419,6 +421,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
419
421
|
privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
420
422
|
walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
421
423
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
424
|
+
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
422
425
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
423
426
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
424
427
|
}>>>;
|
|
@@ -484,7 +487,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
484
487
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
485
488
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
486
489
|
traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
487
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
490
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
488
491
|
name: import("@feathersjs/typebox").TAny;
|
|
489
492
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
490
493
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -659,7 +662,8 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
659
662
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
660
663
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
661
664
|
}>>;
|
|
662
|
-
pod: import("@feathersjs/typebox").
|
|
665
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
666
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
663
667
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
664
668
|
host: import("@feathersjs/typebox").TString<string>;
|
|
665
669
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -672,6 +676,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
672
676
|
type: import("@feathersjs/typebox").TString<string>;
|
|
673
677
|
description: import("@feathersjs/typebox").TString<string>;
|
|
674
678
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
679
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
675
680
|
values: import("@feathersjs/typebox").TAny;
|
|
676
681
|
}>>>;
|
|
677
682
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -699,12 +704,14 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
699
704
|
exchange: Partial<{
|
|
700
705
|
password?: string | undefined;
|
|
701
706
|
name?: any;
|
|
702
|
-
apiKey?: string | undefined;
|
|
707
|
+
apiKey?: string | null | undefined;
|
|
703
708
|
token?: string | undefined;
|
|
704
|
-
secret?: string | undefined;
|
|
709
|
+
secret?: string | null | undefined;
|
|
710
|
+
_id?: string | {} | undefined;
|
|
705
711
|
avatar?: any;
|
|
706
712
|
createdAt?: any;
|
|
707
713
|
updatedAt?: any;
|
|
714
|
+
error?: any;
|
|
708
715
|
login?: string | undefined;
|
|
709
716
|
connected?: boolean | undefined;
|
|
710
717
|
downloaded?: {
|
|
@@ -742,11 +749,9 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
742
749
|
walletAddress?: string | undefined;
|
|
743
750
|
userId?: string | {} | undefined;
|
|
744
751
|
__v?: any;
|
|
745
|
-
_id: string | {};
|
|
746
752
|
}>;
|
|
747
753
|
exchangeId: string;
|
|
748
754
|
strategy: Partial<{
|
|
749
|
-
_id?: string | {} | undefined;
|
|
750
755
|
traders?: {
|
|
751
756
|
telegram?: {
|
|
752
757
|
access_hash?: string | null | undefined;
|
|
@@ -783,6 +788,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
783
788
|
reload: boolean;
|
|
784
789
|
balance_dust_level: number;
|
|
785
790
|
} | undefined;
|
|
791
|
+
_id?: string | {} | undefined;
|
|
786
792
|
plugins?: {
|
|
787
793
|
number_assets?: number | undefined;
|
|
788
794
|
refresh_period?: number | undefined;
|
|
@@ -878,6 +884,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
878
884
|
close_rate: string;
|
|
879
885
|
};
|
|
880
886
|
} | undefined;
|
|
887
|
+
pod?: {} | undefined;
|
|
888
|
+
_include?: any;
|
|
881
889
|
reset?: boolean | undefined;
|
|
882
890
|
host: string;
|
|
883
891
|
name: any;
|
|
@@ -885,7 +893,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
885
893
|
strategies: string[];
|
|
886
894
|
secret: string;
|
|
887
895
|
key: string;
|
|
888
|
-
_id: string | {};
|
|
889
896
|
createdAt: any;
|
|
890
897
|
updatedAt: any;
|
|
891
898
|
connected: boolean;
|
|
@@ -928,14 +935,15 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
928
935
|
jwt_secret_key: string;
|
|
929
936
|
CORS_origins: string[];
|
|
930
937
|
};
|
|
931
|
-
pod: string;
|
|
932
938
|
}[] | undefined;
|
|
939
|
+
_id?: string | {} | undefined;
|
|
933
940
|
createdAt?: any;
|
|
934
941
|
updatedAt?: any;
|
|
935
942
|
userId?: string | {} | undefined;
|
|
936
943
|
'strategies/templates'?: {
|
|
937
944
|
_id?: string | {} | undefined;
|
|
938
945
|
createdAt?: any;
|
|
946
|
+
updatedAt?: any;
|
|
939
947
|
values: any;
|
|
940
948
|
name: string;
|
|
941
949
|
description: string;
|
|
@@ -1035,6 +1043,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1035
1043
|
reload: boolean;
|
|
1036
1044
|
balance_dust_level: number;
|
|
1037
1045
|
} | undefined;
|
|
1046
|
+
_id?: string | {} | undefined;
|
|
1038
1047
|
plugins?: {
|
|
1039
1048
|
number_assets?: number | undefined;
|
|
1040
1049
|
refresh_period?: number | undefined;
|
|
@@ -1130,6 +1139,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1130
1139
|
close_rate: string;
|
|
1131
1140
|
};
|
|
1132
1141
|
} | undefined;
|
|
1142
|
+
pod?: {} | undefined;
|
|
1143
|
+
_include?: any;
|
|
1133
1144
|
reset?: boolean | undefined;
|
|
1134
1145
|
host: string;
|
|
1135
1146
|
name: any;
|
|
@@ -1137,7 +1148,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1137
1148
|
strategies: string[];
|
|
1138
1149
|
secret: string;
|
|
1139
1150
|
key: string;
|
|
1140
|
-
_id: string | {};
|
|
1141
1151
|
createdAt: any;
|
|
1142
1152
|
updatedAt: any;
|
|
1143
1153
|
connected: boolean;
|
|
@@ -1180,7 +1190,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1180
1190
|
jwt_secret_key: string;
|
|
1181
1191
|
CORS_origins: string[];
|
|
1182
1192
|
};
|
|
1183
|
-
pod: string;
|
|
1184
1193
|
}>;
|
|
1185
1194
|
}> | undefined;
|
|
1186
1195
|
options?: any;
|
|
@@ -1220,6 +1229,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1220
1229
|
reload: boolean;
|
|
1221
1230
|
balance_dust_level: number;
|
|
1222
1231
|
} | undefined;
|
|
1232
|
+
_id?: string | {} | undefined;
|
|
1223
1233
|
plugins?: {
|
|
1224
1234
|
number_assets?: number | undefined;
|
|
1225
1235
|
refresh_period?: number | undefined;
|
|
@@ -1315,6 +1325,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1315
1325
|
close_rate: string;
|
|
1316
1326
|
};
|
|
1317
1327
|
} | undefined;
|
|
1328
|
+
pod?: {} | undefined;
|
|
1329
|
+
_include?: any;
|
|
1318
1330
|
reset?: boolean | undefined;
|
|
1319
1331
|
host: string;
|
|
1320
1332
|
name: any;
|
|
@@ -1322,7 +1334,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1322
1334
|
strategies: string[];
|
|
1323
1335
|
secret: string;
|
|
1324
1336
|
key: string;
|
|
1325
|
-
_id: string | {};
|
|
1326
1337
|
createdAt: any;
|
|
1327
1338
|
updatedAt: any;
|
|
1328
1339
|
connected: boolean;
|
|
@@ -1365,7 +1376,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1365
1376
|
jwt_secret_key: string;
|
|
1366
1377
|
CORS_origins: string[];
|
|
1367
1378
|
};
|
|
1368
|
-
pod: string;
|
|
1369
1379
|
}> | undefined;
|
|
1370
1380
|
_id: string | {};
|
|
1371
1381
|
createdAt: any;
|
|
@@ -1385,12 +1395,14 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1385
1395
|
exchange: Partial<{
|
|
1386
1396
|
password?: string | undefined;
|
|
1387
1397
|
name?: any;
|
|
1388
|
-
apiKey?: string | undefined;
|
|
1398
|
+
apiKey?: string | null | undefined;
|
|
1389
1399
|
token?: string | undefined;
|
|
1390
|
-
secret?: string | undefined;
|
|
1400
|
+
secret?: string | null | undefined;
|
|
1401
|
+
_id?: string | {} | undefined;
|
|
1391
1402
|
avatar?: any;
|
|
1392
1403
|
createdAt?: any;
|
|
1393
1404
|
updatedAt?: any;
|
|
1405
|
+
error?: any;
|
|
1394
1406
|
login?: string | undefined;
|
|
1395
1407
|
connected?: boolean | undefined;
|
|
1396
1408
|
downloaded?: {
|
|
@@ -1428,11 +1440,9 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1428
1440
|
walletAddress?: string | undefined;
|
|
1429
1441
|
userId?: string | {} | undefined;
|
|
1430
1442
|
__v?: any;
|
|
1431
|
-
_id: string | {};
|
|
1432
1443
|
}>;
|
|
1433
1444
|
exchangeId: string;
|
|
1434
1445
|
strategy: Partial<{
|
|
1435
|
-
_id?: string | {} | undefined;
|
|
1436
1446
|
traders?: {
|
|
1437
1447
|
telegram?: {
|
|
1438
1448
|
access_hash?: string | null | undefined;
|
|
@@ -1469,6 +1479,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1469
1479
|
reload: boolean;
|
|
1470
1480
|
balance_dust_level: number;
|
|
1471
1481
|
} | undefined;
|
|
1482
|
+
_id?: string | {} | undefined;
|
|
1472
1483
|
plugins?: {
|
|
1473
1484
|
number_assets?: number | undefined;
|
|
1474
1485
|
refresh_period?: number | undefined;
|
|
@@ -1564,6 +1575,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1564
1575
|
close_rate: string;
|
|
1565
1576
|
};
|
|
1566
1577
|
} | undefined;
|
|
1578
|
+
pod?: {} | undefined;
|
|
1579
|
+
_include?: any;
|
|
1567
1580
|
reset?: boolean | undefined;
|
|
1568
1581
|
host: string;
|
|
1569
1582
|
name: any;
|
|
@@ -1571,7 +1584,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1571
1584
|
strategies: string[];
|
|
1572
1585
|
secret: string;
|
|
1573
1586
|
key: string;
|
|
1574
|
-
_id: string | {};
|
|
1575
1587
|
createdAt: any;
|
|
1576
1588
|
updatedAt: any;
|
|
1577
1589
|
connected: boolean;
|
|
@@ -1614,14 +1626,15 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1614
1626
|
jwt_secret_key: string;
|
|
1615
1627
|
CORS_origins: string[];
|
|
1616
1628
|
};
|
|
1617
|
-
pod: string;
|
|
1618
1629
|
}[] | undefined;
|
|
1630
|
+
_id?: string | {} | undefined;
|
|
1619
1631
|
createdAt?: any;
|
|
1620
1632
|
updatedAt?: any;
|
|
1621
1633
|
userId?: string | {} | undefined;
|
|
1622
1634
|
'strategies/templates'?: {
|
|
1623
1635
|
_id?: string | {} | undefined;
|
|
1624
1636
|
createdAt?: any;
|
|
1637
|
+
updatedAt?: any;
|
|
1625
1638
|
values: any;
|
|
1626
1639
|
name: string;
|
|
1627
1640
|
description: string;
|
|
@@ -1721,6 +1734,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1721
1734
|
reload: boolean;
|
|
1722
1735
|
balance_dust_level: number;
|
|
1723
1736
|
} | undefined;
|
|
1737
|
+
_id?: string | {} | undefined;
|
|
1724
1738
|
plugins?: {
|
|
1725
1739
|
number_assets?: number | undefined;
|
|
1726
1740
|
refresh_period?: number | undefined;
|
|
@@ -1816,6 +1830,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1816
1830
|
close_rate: string;
|
|
1817
1831
|
};
|
|
1818
1832
|
} | undefined;
|
|
1833
|
+
pod?: {} | undefined;
|
|
1834
|
+
_include?: any;
|
|
1819
1835
|
reset?: boolean | undefined;
|
|
1820
1836
|
host: string;
|
|
1821
1837
|
name: any;
|
|
@@ -1823,7 +1839,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1823
1839
|
strategies: string[];
|
|
1824
1840
|
secret: string;
|
|
1825
1841
|
key: string;
|
|
1826
|
-
_id: string | {};
|
|
1827
1842
|
createdAt: any;
|
|
1828
1843
|
updatedAt: any;
|
|
1829
1844
|
connected: boolean;
|
|
@@ -1866,7 +1881,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1866
1881
|
jwt_secret_key: string;
|
|
1867
1882
|
CORS_origins: string[];
|
|
1868
1883
|
};
|
|
1869
|
-
pod: string;
|
|
1870
1884
|
}>;
|
|
1871
1885
|
}> | undefined;
|
|
1872
1886
|
options?: any;
|
|
@@ -1906,6 +1920,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1906
1920
|
reload: boolean;
|
|
1907
1921
|
balance_dust_level: number;
|
|
1908
1922
|
} | undefined;
|
|
1923
|
+
_id?: string | {} | undefined;
|
|
1909
1924
|
plugins?: {
|
|
1910
1925
|
number_assets?: number | undefined;
|
|
1911
1926
|
refresh_period?: number | undefined;
|
|
@@ -2001,6 +2016,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
2001
2016
|
close_rate: string;
|
|
2002
2017
|
};
|
|
2003
2018
|
} | undefined;
|
|
2019
|
+
pod?: {} | undefined;
|
|
2020
|
+
_include?: any;
|
|
2004
2021
|
reset?: boolean | undefined;
|
|
2005
2022
|
host: string;
|
|
2006
2023
|
name: any;
|
|
@@ -2008,7 +2025,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
2008
2025
|
strategies: string[];
|
|
2009
2026
|
secret: string;
|
|
2010
2027
|
key: string;
|
|
2011
|
-
_id: string | {};
|
|
2012
2028
|
createdAt: any;
|
|
2013
2029
|
updatedAt: any;
|
|
2014
2030
|
connected: boolean;
|
|
@@ -2051,7 +2067,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
2051
2067
|
jwt_secret_key: string;
|
|
2052
2068
|
CORS_origins: string[];
|
|
2053
2069
|
};
|
|
2054
|
-
pod: string;
|
|
2055
2070
|
}> | undefined;
|
|
2056
2071
|
_id: string | {};
|
|
2057
2072
|
createdAt: any;
|
|
@@ -2066,7 +2081,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2066
2081
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2067
2082
|
userId: import("@feathersjs/typebox").TAny;
|
|
2068
2083
|
trader: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
2069
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2084
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2070
2085
|
name: import("@feathersjs/typebox").TAny;
|
|
2071
2086
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
2072
2087
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -2241,7 +2256,8 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2241
2256
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
2242
2257
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2243
2258
|
}>>;
|
|
2244
|
-
pod: import("@feathersjs/typebox").
|
|
2259
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2260
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2245
2261
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2246
2262
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2247
2263
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -2252,7 +2268,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2252
2268
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
2253
2269
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2254
2270
|
trader: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
2255
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2271
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2256
2272
|
name: import("@feathersjs/typebox").TAny;
|
|
2257
2273
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
2258
2274
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -2427,7 +2443,8 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2427
2443
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
2428
2444
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2429
2445
|
}>>;
|
|
2430
|
-
pod: import("@feathersjs/typebox").
|
|
2446
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2447
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2431
2448
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2432
2449
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2433
2450
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -2435,7 +2452,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2435
2452
|
"traders/pods": import("@feathersjs/typebox").TAny;
|
|
2436
2453
|
}>>>;
|
|
2437
2454
|
exchange: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
2438
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2455
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2439
2456
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2440
2457
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2441
2458
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -2469,8 +2486,8 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2469
2486
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
2470
2487
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2471
2488
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2472
|
-
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2473
|
-
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2489
|
+
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
2490
|
+
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
2474
2491
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2475
2492
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2476
2493
|
uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2479,6 +2496,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2479
2496
|
privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2480
2497
|
walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2481
2498
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2499
|
+
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2482
2500
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
2483
2501
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2484
2502
|
}>>>;
|
|
@@ -2544,7 +2562,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2544
2562
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
2545
2563
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2546
2564
|
traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
2547
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2565
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2548
2566
|
name: import("@feathersjs/typebox").TAny;
|
|
2549
2567
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
2550
2568
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -2719,7 +2737,8 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2719
2737
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
2720
2738
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2721
2739
|
}>>;
|
|
2722
|
-
pod: import("@feathersjs/typebox").
|
|
2740
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2741
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2723
2742
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2724
2743
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2725
2744
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -2732,6 +2751,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2732
2751
|
type: import("@feathersjs/typebox").TString<string>;
|
|
2733
2752
|
description: import("@feathersjs/typebox").TString<string>;
|
|
2734
2753
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2754
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2735
2755
|
values: import("@feathersjs/typebox").TAny;
|
|
2736
2756
|
}>>>;
|
|
2737
2757
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -2759,12 +2779,14 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2759
2779
|
exchange: Partial<{
|
|
2760
2780
|
password?: string | undefined;
|
|
2761
2781
|
name?: any;
|
|
2762
|
-
apiKey?: string | undefined;
|
|
2782
|
+
apiKey?: string | null | undefined;
|
|
2763
2783
|
token?: string | undefined;
|
|
2764
|
-
secret?: string | undefined;
|
|
2784
|
+
secret?: string | null | undefined;
|
|
2785
|
+
_id?: string | {} | undefined;
|
|
2765
2786
|
avatar?: any;
|
|
2766
2787
|
createdAt?: any;
|
|
2767
2788
|
updatedAt?: any;
|
|
2789
|
+
error?: any;
|
|
2768
2790
|
login?: string | undefined;
|
|
2769
2791
|
connected?: boolean | undefined;
|
|
2770
2792
|
downloaded?: {
|
|
@@ -2802,11 +2824,9 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2802
2824
|
walletAddress?: string | undefined;
|
|
2803
2825
|
userId?: string | {} | undefined;
|
|
2804
2826
|
__v?: any;
|
|
2805
|
-
_id: string | {};
|
|
2806
2827
|
}>;
|
|
2807
2828
|
exchangeId: string;
|
|
2808
2829
|
strategy: Partial<{
|
|
2809
|
-
_id?: string | {} | undefined;
|
|
2810
2830
|
traders?: {
|
|
2811
2831
|
telegram?: {
|
|
2812
2832
|
access_hash?: string | null | undefined;
|
|
@@ -2843,6 +2863,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2843
2863
|
reload: boolean;
|
|
2844
2864
|
balance_dust_level: number;
|
|
2845
2865
|
} | undefined;
|
|
2866
|
+
_id?: string | {} | undefined;
|
|
2846
2867
|
plugins?: {
|
|
2847
2868
|
number_assets?: number | undefined;
|
|
2848
2869
|
refresh_period?: number | undefined;
|
|
@@ -2938,6 +2959,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2938
2959
|
close_rate: string;
|
|
2939
2960
|
};
|
|
2940
2961
|
} | undefined;
|
|
2962
|
+
pod?: {} | undefined;
|
|
2963
|
+
_include?: any;
|
|
2941
2964
|
reset?: boolean | undefined;
|
|
2942
2965
|
host: string;
|
|
2943
2966
|
name: any;
|
|
@@ -2945,7 +2968,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2945
2968
|
strategies: string[];
|
|
2946
2969
|
secret: string;
|
|
2947
2970
|
key: string;
|
|
2948
|
-
_id: string | {};
|
|
2949
2971
|
createdAt: any;
|
|
2950
2972
|
updatedAt: any;
|
|
2951
2973
|
connected: boolean;
|
|
@@ -2988,14 +3010,15 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2988
3010
|
jwt_secret_key: string;
|
|
2989
3011
|
CORS_origins: string[];
|
|
2990
3012
|
};
|
|
2991
|
-
pod: string;
|
|
2992
3013
|
}[] | undefined;
|
|
3014
|
+
_id?: string | {} | undefined;
|
|
2993
3015
|
createdAt?: any;
|
|
2994
3016
|
updatedAt?: any;
|
|
2995
3017
|
userId?: string | {} | undefined;
|
|
2996
3018
|
'strategies/templates'?: {
|
|
2997
3019
|
_id?: string | {} | undefined;
|
|
2998
3020
|
createdAt?: any;
|
|
3021
|
+
updatedAt?: any;
|
|
2999
3022
|
values: any;
|
|
3000
3023
|
name: string;
|
|
3001
3024
|
description: string;
|
|
@@ -3095,6 +3118,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3095
3118
|
reload: boolean;
|
|
3096
3119
|
balance_dust_level: number;
|
|
3097
3120
|
} | undefined;
|
|
3121
|
+
_id?: string | {} | undefined;
|
|
3098
3122
|
plugins?: {
|
|
3099
3123
|
number_assets?: number | undefined;
|
|
3100
3124
|
refresh_period?: number | undefined;
|
|
@@ -3190,6 +3214,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3190
3214
|
close_rate: string;
|
|
3191
3215
|
};
|
|
3192
3216
|
} | undefined;
|
|
3217
|
+
pod?: {} | undefined;
|
|
3218
|
+
_include?: any;
|
|
3193
3219
|
reset?: boolean | undefined;
|
|
3194
3220
|
host: string;
|
|
3195
3221
|
name: any;
|
|
@@ -3197,7 +3223,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3197
3223
|
strategies: string[];
|
|
3198
3224
|
secret: string;
|
|
3199
3225
|
key: string;
|
|
3200
|
-
_id: string | {};
|
|
3201
3226
|
createdAt: any;
|
|
3202
3227
|
updatedAt: any;
|
|
3203
3228
|
connected: boolean;
|
|
@@ -3240,7 +3265,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3240
3265
|
jwt_secret_key: string;
|
|
3241
3266
|
CORS_origins: string[];
|
|
3242
3267
|
};
|
|
3243
|
-
pod: string;
|
|
3244
3268
|
}>;
|
|
3245
3269
|
}> | undefined;
|
|
3246
3270
|
options?: any;
|
|
@@ -3280,6 +3304,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3280
3304
|
reload: boolean;
|
|
3281
3305
|
balance_dust_level: number;
|
|
3282
3306
|
} | undefined;
|
|
3307
|
+
_id?: string | {} | undefined;
|
|
3283
3308
|
plugins?: {
|
|
3284
3309
|
number_assets?: number | undefined;
|
|
3285
3310
|
refresh_period?: number | undefined;
|
|
@@ -3375,6 +3400,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3375
3400
|
close_rate: string;
|
|
3376
3401
|
};
|
|
3377
3402
|
} | undefined;
|
|
3403
|
+
pod?: {} | undefined;
|
|
3404
|
+
_include?: any;
|
|
3378
3405
|
reset?: boolean | undefined;
|
|
3379
3406
|
host: string;
|
|
3380
3407
|
name: any;
|
|
@@ -3382,7 +3409,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3382
3409
|
strategies: string[];
|
|
3383
3410
|
secret: string;
|
|
3384
3411
|
key: string;
|
|
3385
|
-
_id: string | {};
|
|
3386
3412
|
createdAt: any;
|
|
3387
3413
|
updatedAt: any;
|
|
3388
3414
|
connected: boolean;
|
|
@@ -3425,7 +3451,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3425
3451
|
jwt_secret_key: string;
|
|
3426
3452
|
CORS_origins: string[];
|
|
3427
3453
|
};
|
|
3428
|
-
pod: string;
|
|
3429
3454
|
}> | undefined;
|
|
3430
3455
|
_id: string | {};
|
|
3431
3456
|
createdAt: any;
|
|
@@ -3440,7 +3465,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3440
3465
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3441
3466
|
userId: import("@feathersjs/typebox").TAny;
|
|
3442
3467
|
trader: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
3443
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
3468
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
3444
3469
|
name: import("@feathersjs/typebox").TAny;
|
|
3445
3470
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
3446
3471
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -3615,7 +3640,8 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3615
3640
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
3616
3641
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
3617
3642
|
}>>;
|
|
3618
|
-
pod: import("@feathersjs/typebox").
|
|
3643
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
3644
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3619
3645
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3620
3646
|
host: import("@feathersjs/typebox").TString<string>;
|
|
3621
3647
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -3626,7 +3652,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3626
3652
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
3627
3653
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
3628
3654
|
trader: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
3629
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
3655
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
3630
3656
|
name: import("@feathersjs/typebox").TAny;
|
|
3631
3657
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
3632
3658
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -3801,7 +3827,8 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3801
3827
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
3802
3828
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
3803
3829
|
}>>;
|
|
3804
|
-
pod: import("@feathersjs/typebox").
|
|
3830
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
3831
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3805
3832
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3806
3833
|
host: import("@feathersjs/typebox").TString<string>;
|
|
3807
3834
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -3809,7 +3836,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3809
3836
|
"traders/pods": import("@feathersjs/typebox").TAny;
|
|
3810
3837
|
}>>>;
|
|
3811
3838
|
exchange: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
3812
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
3839
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
3813
3840
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3814
3841
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3815
3842
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -3843,8 +3870,8 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3843
3870
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
3844
3871
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3845
3872
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3846
|
-
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3847
|
-
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3873
|
+
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
3874
|
+
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
3848
3875
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3849
3876
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3850
3877
|
uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -3853,6 +3880,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3853
3880
|
privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3854
3881
|
walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3855
3882
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3883
|
+
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3856
3884
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
3857
3885
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3858
3886
|
}>>>;
|
|
@@ -3918,7 +3946,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3918
3946
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
3919
3947
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3920
3948
|
traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
3921
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
3949
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
3922
3950
|
name: import("@feathersjs/typebox").TAny;
|
|
3923
3951
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
3924
3952
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -4093,7 +4121,8 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
4093
4121
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
4094
4122
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
4095
4123
|
}>>;
|
|
4096
|
-
pod: import("@feathersjs/typebox").
|
|
4124
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
4125
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
4097
4126
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4098
4127
|
host: import("@feathersjs/typebox").TString<string>;
|
|
4099
4128
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -4106,6 +4135,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
4106
4135
|
type: import("@feathersjs/typebox").TString<string>;
|
|
4107
4136
|
description: import("@feathersjs/typebox").TString<string>;
|
|
4108
4137
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
4138
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
4109
4139
|
values: import("@feathersjs/typebox").TAny;
|
|
4110
4140
|
}>>>;
|
|
4111
4141
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -4133,12 +4163,14 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4133
4163
|
exchange: Partial<{
|
|
4134
4164
|
password?: string | undefined;
|
|
4135
4165
|
name?: any;
|
|
4136
|
-
apiKey?: string | undefined;
|
|
4166
|
+
apiKey?: string | null | undefined;
|
|
4137
4167
|
token?: string | undefined;
|
|
4138
|
-
secret?: string | undefined;
|
|
4168
|
+
secret?: string | null | undefined;
|
|
4169
|
+
_id?: string | {} | undefined;
|
|
4139
4170
|
avatar?: any;
|
|
4140
4171
|
createdAt?: any;
|
|
4141
4172
|
updatedAt?: any;
|
|
4173
|
+
error?: any;
|
|
4142
4174
|
login?: string | undefined;
|
|
4143
4175
|
connected?: boolean | undefined;
|
|
4144
4176
|
downloaded?: {
|
|
@@ -4176,11 +4208,9 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4176
4208
|
walletAddress?: string | undefined;
|
|
4177
4209
|
userId?: string | {} | undefined;
|
|
4178
4210
|
__v?: any;
|
|
4179
|
-
_id: string | {};
|
|
4180
4211
|
}>;
|
|
4181
4212
|
exchangeId: string;
|
|
4182
4213
|
strategy: Partial<{
|
|
4183
|
-
_id?: string | {} | undefined;
|
|
4184
4214
|
traders?: {
|
|
4185
4215
|
telegram?: {
|
|
4186
4216
|
access_hash?: string | null | undefined;
|
|
@@ -4217,6 +4247,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4217
4247
|
reload: boolean;
|
|
4218
4248
|
balance_dust_level: number;
|
|
4219
4249
|
} | undefined;
|
|
4250
|
+
_id?: string | {} | undefined;
|
|
4220
4251
|
plugins?: {
|
|
4221
4252
|
number_assets?: number | undefined;
|
|
4222
4253
|
refresh_period?: number | undefined;
|
|
@@ -4312,6 +4343,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4312
4343
|
close_rate: string;
|
|
4313
4344
|
};
|
|
4314
4345
|
} | undefined;
|
|
4346
|
+
pod?: {} | undefined;
|
|
4347
|
+
_include?: any;
|
|
4315
4348
|
reset?: boolean | undefined;
|
|
4316
4349
|
host: string;
|
|
4317
4350
|
name: any;
|
|
@@ -4319,7 +4352,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4319
4352
|
strategies: string[];
|
|
4320
4353
|
secret: string;
|
|
4321
4354
|
key: string;
|
|
4322
|
-
_id: string | {};
|
|
4323
4355
|
createdAt: any;
|
|
4324
4356
|
updatedAt: any;
|
|
4325
4357
|
connected: boolean;
|
|
@@ -4362,14 +4394,15 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4362
4394
|
jwt_secret_key: string;
|
|
4363
4395
|
CORS_origins: string[];
|
|
4364
4396
|
};
|
|
4365
|
-
pod: string;
|
|
4366
4397
|
}[] | undefined;
|
|
4398
|
+
_id?: string | {} | undefined;
|
|
4367
4399
|
createdAt?: any;
|
|
4368
4400
|
updatedAt?: any;
|
|
4369
4401
|
userId?: string | {} | undefined;
|
|
4370
4402
|
'strategies/templates'?: {
|
|
4371
4403
|
_id?: string | {} | undefined;
|
|
4372
4404
|
createdAt?: any;
|
|
4405
|
+
updatedAt?: any;
|
|
4373
4406
|
values: any;
|
|
4374
4407
|
name: string;
|
|
4375
4408
|
description: string;
|
|
@@ -4469,6 +4502,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4469
4502
|
reload: boolean;
|
|
4470
4503
|
balance_dust_level: number;
|
|
4471
4504
|
} | undefined;
|
|
4505
|
+
_id?: string | {} | undefined;
|
|
4472
4506
|
plugins?: {
|
|
4473
4507
|
number_assets?: number | undefined;
|
|
4474
4508
|
refresh_period?: number | undefined;
|
|
@@ -4564,6 +4598,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4564
4598
|
close_rate: string;
|
|
4565
4599
|
};
|
|
4566
4600
|
} | undefined;
|
|
4601
|
+
pod?: {} | undefined;
|
|
4602
|
+
_include?: any;
|
|
4567
4603
|
reset?: boolean | undefined;
|
|
4568
4604
|
host: string;
|
|
4569
4605
|
name: any;
|
|
@@ -4571,7 +4607,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4571
4607
|
strategies: string[];
|
|
4572
4608
|
secret: string;
|
|
4573
4609
|
key: string;
|
|
4574
|
-
_id: string | {};
|
|
4575
4610
|
createdAt: any;
|
|
4576
4611
|
updatedAt: any;
|
|
4577
4612
|
connected: boolean;
|
|
@@ -4614,7 +4649,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4614
4649
|
jwt_secret_key: string;
|
|
4615
4650
|
CORS_origins: string[];
|
|
4616
4651
|
};
|
|
4617
|
-
pod: string;
|
|
4618
4652
|
}>;
|
|
4619
4653
|
}> | undefined;
|
|
4620
4654
|
options?: any;
|
|
@@ -4654,6 +4688,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4654
4688
|
reload: boolean;
|
|
4655
4689
|
balance_dust_level: number;
|
|
4656
4690
|
} | undefined;
|
|
4691
|
+
_id?: string | {} | undefined;
|
|
4657
4692
|
plugins?: {
|
|
4658
4693
|
number_assets?: number | undefined;
|
|
4659
4694
|
refresh_period?: number | undefined;
|
|
@@ -4749,6 +4784,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4749
4784
|
close_rate: string;
|
|
4750
4785
|
};
|
|
4751
4786
|
} | undefined;
|
|
4787
|
+
pod?: {} | undefined;
|
|
4788
|
+
_include?: any;
|
|
4752
4789
|
reset?: boolean | undefined;
|
|
4753
4790
|
host: string;
|
|
4754
4791
|
name: any;
|
|
@@ -4756,7 +4793,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4756
4793
|
strategies: string[];
|
|
4757
4794
|
secret: string;
|
|
4758
4795
|
key: string;
|
|
4759
|
-
_id: string | {};
|
|
4760
4796
|
createdAt: any;
|
|
4761
4797
|
updatedAt: any;
|
|
4762
4798
|
connected: boolean;
|
|
@@ -4799,7 +4835,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4799
4835
|
jwt_secret_key: string;
|
|
4800
4836
|
CORS_origins: string[];
|
|
4801
4837
|
};
|
|
4802
|
-
pod: string;
|
|
4803
4838
|
}> | undefined;
|
|
4804
4839
|
_id: string | {};
|
|
4805
4840
|
createdAt: any;
|
|
@@ -4814,7 +4849,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4814
4849
|
traderId: import("@feathersjs/typebox").TAny;
|
|
4815
4850
|
userId: import("@feathersjs/typebox").TAny;
|
|
4816
4851
|
trader: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
4817
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
4852
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4818
4853
|
name: import("@feathersjs/typebox").TAny;
|
|
4819
4854
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
4820
4855
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -4989,7 +5024,8 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4989
5024
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
4990
5025
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
4991
5026
|
}>>;
|
|
4992
|
-
pod: import("@feathersjs/typebox").
|
|
5027
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
5028
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
4993
5029
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4994
5030
|
host: import("@feathersjs/typebox").TString<string>;
|
|
4995
5031
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -5000,7 +5036,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5000
5036
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5001
5037
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
5002
5038
|
trader: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
5003
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
5039
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5004
5040
|
name: import("@feathersjs/typebox").TAny;
|
|
5005
5041
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
5006
5042
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -5175,7 +5211,8 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5175
5211
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
5176
5212
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
5177
5213
|
}>>;
|
|
5178
|
-
pod: import("@feathersjs/typebox").
|
|
5214
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
5215
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5179
5216
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5180
5217
|
host: import("@feathersjs/typebox").TString<string>;
|
|
5181
5218
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -5183,7 +5220,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5183
5220
|
"traders/pods": import("@feathersjs/typebox").TAny;
|
|
5184
5221
|
}>>>;
|
|
5185
5222
|
exchange: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
5186
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
5223
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5187
5224
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5188
5225
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5189
5226
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -5217,8 +5254,8 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5217
5254
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
5218
5255
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5219
5256
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5220
|
-
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5221
|
-
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5257
|
+
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
5258
|
+
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
5222
5259
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5223
5260
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5224
5261
|
uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -5227,6 +5264,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5227
5264
|
privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5228
5265
|
walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5229
5266
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5267
|
+
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5230
5268
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
5231
5269
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5232
5270
|
}>>>;
|
|
@@ -5292,7 +5330,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5292
5330
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
5293
5331
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5294
5332
|
traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
5295
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
5333
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5296
5334
|
name: import("@feathersjs/typebox").TAny;
|
|
5297
5335
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
5298
5336
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -5467,7 +5505,8 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5467
5505
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
5468
5506
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
5469
5507
|
}>>;
|
|
5470
|
-
pod: import("@feathersjs/typebox").
|
|
5508
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
5509
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5471
5510
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5472
5511
|
host: import("@feathersjs/typebox").TString<string>;
|
|
5473
5512
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -5480,6 +5519,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5480
5519
|
type: import("@feathersjs/typebox").TString<string>;
|
|
5481
5520
|
description: import("@feathersjs/typebox").TString<string>;
|
|
5482
5521
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5522
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5483
5523
|
values: import("@feathersjs/typebox").TAny;
|
|
5484
5524
|
}>>>;
|
|
5485
5525
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|