@cryptorobot.ai/client 0.0.34 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/configuration.d.ts +30 -0
- package/lib/helpers/ccxt.helper.d.ts +1 -0
- package/lib/helpers/mailer.helper.d.ts +14 -0
- package/lib/helpers/reports.helper.d.ts +5 -0
- package/lib/helpers/subscription.helper.d.ts +7 -15
- package/lib/hooks/get-pods-container-inspect.d.ts +2 -0
- package/lib/hooks/whitelist-set-default-by-volume.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +28 -4
- package/lib/services/exchanges/download/download.schema.d.ts +28 -4
- package/lib/services/exchanges/exchanges.schema.d.ts +246 -90
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +28 -4
- package/lib/services/homepage/homepage.schema.d.ts +9 -1
- package/lib/services/messages/messages.schema.d.ts +40 -8
- package/lib/services/strategies/backtest/backtest.schema.d.ts +56 -56
- package/lib/services/strategies/backtest/results/results.schema.d.ts +4 -4
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +4 -4
- package/lib/services/strategies/strategies.schema.d.ts +97 -15
- package/lib/services/traders/pods/api/api.schema.d.ts +56 -32
- package/lib/services/traders/pods/events/events.class.d.ts +1 -1
- package/lib/services/traders/pods/events/events.schema.d.ts +8 -0
- package/lib/services/traders/pods/pods.schema.d.ts +48 -24
- package/lib/services/traders/traders.schema.d.ts +247 -115
- package/lib/services/users/users.schema.d.ts +40 -8
- package/package.json +1 -1
|
@@ -36,6 +36,10 @@ export declare const userSchema: import("@feathersjs/typebox").TObject<{
|
|
|
36
36
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
37
37
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
38
38
|
}>>;
|
|
39
|
+
trial: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
40
|
+
active: import("@feathersjs/typebox").TBoolean;
|
|
41
|
+
expires: import("@feathersjs/typebox").TString<string>;
|
|
42
|
+
}>>;
|
|
39
43
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
40
44
|
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
41
45
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
@@ -70,6 +74,11 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
70
74
|
android?: string | undefined;
|
|
71
75
|
} | undefined;
|
|
72
76
|
country?: string | undefined;
|
|
77
|
+
subscription?: any;
|
|
78
|
+
trial?: {
|
|
79
|
+
active: boolean;
|
|
80
|
+
expires: string;
|
|
81
|
+
} | undefined;
|
|
73
82
|
stripe?: any;
|
|
74
83
|
_id?: string | {} | undefined;
|
|
75
84
|
googleId?: any;
|
|
@@ -85,7 +94,6 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
85
94
|
paymentIntent?: any;
|
|
86
95
|
'stripe.id'?: any;
|
|
87
96
|
customerInfo?: any;
|
|
88
|
-
subscription?: any;
|
|
89
97
|
plan?: string | undefined;
|
|
90
98
|
appearance?: {
|
|
91
99
|
scheme?: string | undefined;
|
|
@@ -111,7 +119,7 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
111
119
|
resetExpires?: number | null | undefined;
|
|
112
120
|
resetAttempts?: number | null | undefined;
|
|
113
121
|
anon?: boolean | undefined;
|
|
114
|
-
onboarding?: "
|
|
122
|
+
onboarding?: "traders" | "strategies" | "telegram" | null | undefined;
|
|
115
123
|
contactId?: string | undefined;
|
|
116
124
|
createdAt?: any;
|
|
117
125
|
updatedAt?: any;
|
|
@@ -129,6 +137,11 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
129
137
|
android?: string | undefined;
|
|
130
138
|
} | undefined;
|
|
131
139
|
country?: string | undefined;
|
|
140
|
+
subscription?: any;
|
|
141
|
+
trial?: {
|
|
142
|
+
active: boolean;
|
|
143
|
+
expires: string;
|
|
144
|
+
} | undefined;
|
|
132
145
|
stripe?: any;
|
|
133
146
|
_id?: string | {} | undefined;
|
|
134
147
|
googleId?: any;
|
|
@@ -144,7 +157,6 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
144
157
|
paymentIntent?: any;
|
|
145
158
|
'stripe.id'?: any;
|
|
146
159
|
customerInfo?: any;
|
|
147
|
-
subscription?: any;
|
|
148
160
|
plan?: string | undefined;
|
|
149
161
|
appearance?: {
|
|
150
162
|
scheme?: string | undefined;
|
|
@@ -170,7 +182,7 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
170
182
|
resetExpires?: number | null | undefined;
|
|
171
183
|
resetAttempts?: number | null | undefined;
|
|
172
184
|
anon?: boolean | undefined;
|
|
173
|
-
onboarding?: "
|
|
185
|
+
onboarding?: "traders" | "strategies" | "telegram" | null | undefined;
|
|
174
186
|
contactId?: string | undefined;
|
|
175
187
|
createdAt?: any;
|
|
176
188
|
updatedAt?: any;
|
|
@@ -215,6 +227,10 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
215
227
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
216
228
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
217
229
|
}>>;
|
|
230
|
+
trial: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
231
|
+
active: import("@feathersjs/typebox").TBoolean;
|
|
232
|
+
expires: import("@feathersjs/typebox").TString<string>;
|
|
233
|
+
}>>;
|
|
218
234
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
219
235
|
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
220
236
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
@@ -249,6 +265,11 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
249
265
|
android?: string | undefined;
|
|
250
266
|
} | undefined;
|
|
251
267
|
country?: string | undefined;
|
|
268
|
+
subscription?: any;
|
|
269
|
+
trial?: {
|
|
270
|
+
active: boolean;
|
|
271
|
+
expires: string;
|
|
272
|
+
} | undefined;
|
|
252
273
|
stripe?: any;
|
|
253
274
|
_id?: string | {} | undefined;
|
|
254
275
|
googleId?: any;
|
|
@@ -264,7 +285,6 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
264
285
|
paymentIntent?: any;
|
|
265
286
|
'stripe.id'?: any;
|
|
266
287
|
customerInfo?: any;
|
|
267
|
-
subscription?: any;
|
|
268
288
|
plan?: string | undefined;
|
|
269
289
|
appearance?: {
|
|
270
290
|
scheme?: string | undefined;
|
|
@@ -290,7 +310,7 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
290
310
|
resetExpires?: number | null | undefined;
|
|
291
311
|
resetAttempts?: number | null | undefined;
|
|
292
312
|
anon?: boolean | undefined;
|
|
293
|
-
onboarding?: "
|
|
313
|
+
onboarding?: "traders" | "strategies" | "telegram" | null | undefined;
|
|
294
314
|
contactId?: string | undefined;
|
|
295
315
|
createdAt?: any;
|
|
296
316
|
updatedAt?: any;
|
|
@@ -335,6 +355,10 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
|
|
|
335
355
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
336
356
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
337
357
|
}>>;
|
|
358
|
+
trial: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
359
|
+
active: import("@feathersjs/typebox").TBoolean;
|
|
360
|
+
expires: import("@feathersjs/typebox").TString<string>;
|
|
361
|
+
}>>;
|
|
338
362
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
339
363
|
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
340
364
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
@@ -369,6 +393,11 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
369
393
|
android?: string | undefined;
|
|
370
394
|
} | undefined;
|
|
371
395
|
country?: string | undefined;
|
|
396
|
+
subscription?: any;
|
|
397
|
+
trial?: {
|
|
398
|
+
active: boolean;
|
|
399
|
+
expires: string;
|
|
400
|
+
} | undefined;
|
|
372
401
|
stripe?: any;
|
|
373
402
|
_id?: string | {} | undefined;
|
|
374
403
|
googleId?: any;
|
|
@@ -384,7 +413,6 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
384
413
|
paymentIntent?: any;
|
|
385
414
|
'stripe.id'?: any;
|
|
386
415
|
customerInfo?: any;
|
|
387
|
-
subscription?: any;
|
|
388
416
|
plan?: string | undefined;
|
|
389
417
|
appearance?: {
|
|
390
418
|
scheme?: string | undefined;
|
|
@@ -410,7 +438,7 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
410
438
|
resetExpires?: number | null | undefined;
|
|
411
439
|
resetAttempts?: number | null | undefined;
|
|
412
440
|
anon?: boolean | undefined;
|
|
413
|
-
onboarding?: "
|
|
441
|
+
onboarding?: "traders" | "strategies" | "telegram" | null | undefined;
|
|
414
442
|
contactId?: string | undefined;
|
|
415
443
|
createdAt?: any;
|
|
416
444
|
updatedAt?: any;
|
|
@@ -455,6 +483,10 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
455
483
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
456
484
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
457
485
|
}>>;
|
|
486
|
+
trial: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
487
|
+
active: import("@feathersjs/typebox").TBoolean;
|
|
488
|
+
expires: import("@feathersjs/typebox").TString<string>;
|
|
489
|
+
}>>;
|
|
458
490
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
459
491
|
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
460
492
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|