@cryptorobot.ai/client 0.0.35 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/configuration.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +1 -0
- package/lib/helpers/mailer.helper.d.ts +14 -0
- package/lib/helpers/reports.helper.d.ts +5 -0
- package/lib/helpers/subscription.helper.d.ts +7 -15
- package/lib/hooks/get-pods-container-inspect.d.ts +2 -0
- package/lib/hooks/whitelist-set-default-by-volume.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +28 -4
- package/lib/services/exchanges/download/download.schema.d.ts +28 -4
- package/lib/services/exchanges/exchanges.schema.d.ts +246 -90
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +28 -4
- package/lib/services/homepage/homepage.schema.d.ts +9 -1
- package/lib/services/strategies/backtest/backtest.schema.d.ts +56 -56
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +4 -4
- package/lib/services/strategies/strategies.schema.d.ts +93 -11
- package/lib/services/traders/pods/api/api.schema.d.ts +52 -28
- package/lib/services/traders/pods/events/events.class.d.ts +1 -1
- package/lib/services/traders/pods/events/events.schema.d.ts +8 -0
- package/lib/services/traders/pods/pods.schema.d.ts +44 -20
- package/lib/services/traders/traders.schema.d.ts +247 -115
- package/package.json +1 -1
package/lib/configuration.d.ts
CHANGED
|
@@ -118,6 +118,7 @@ export declare const configurationSchema: import("@feathersjs/typebox").TInterse
|
|
|
118
118
|
port: import("@feathersjs/typebox").TNumber;
|
|
119
119
|
user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
120
120
|
pass: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
121
|
+
bcc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
121
122
|
secure: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
122
123
|
from: import("@feathersjs/typebox").TString<string>;
|
|
123
124
|
}>;
|
|
@@ -37,6 +37,7 @@ export declare class CCXT {
|
|
|
37
37
|
* @returns A promise that resolves to an array of required credentials.
|
|
38
38
|
*/
|
|
39
39
|
getRequiredCredentials(exchange: any): Promise<any>;
|
|
40
|
+
fetchTickers(exchange: any): Promise<any>;
|
|
40
41
|
/**
|
|
41
42
|
* Validates the required credentials for an exchange.
|
|
42
43
|
*
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Application } from '@feathersjs/feathers';
|
|
2
|
+
export interface Email {
|
|
3
|
+
from?: string | undefined | null;
|
|
4
|
+
to?: string | undefined | null;
|
|
5
|
+
bcc?: string | undefined | null;
|
|
6
|
+
subject?: string | null;
|
|
7
|
+
html?: string | null;
|
|
8
|
+
text?: string | null;
|
|
9
|
+
}
|
|
10
|
+
export declare class MailerHelper {
|
|
11
|
+
client: any;
|
|
12
|
+
constructor();
|
|
13
|
+
static sendEmailWithMjml(type: string, email: Email, data: any): Promise<Application>;
|
|
14
|
+
}
|
|
@@ -1,32 +1,24 @@
|
|
|
1
1
|
import { HookContext } from '@feathersjs/feathers';
|
|
2
|
+
import { User } from 'src/services/users/users.schema';
|
|
2
3
|
/** SubscriptionHelper class provides methods for checking user subscriptions and limits. */
|
|
3
4
|
export declare class SubscriptionHelper {
|
|
4
5
|
private limits;
|
|
5
6
|
getLimits(context: HookContext): {
|
|
6
|
-
traders: number;
|
|
7
7
|
backtest: {
|
|
8
8
|
threshold: {
|
|
9
9
|
cpu: number;
|
|
10
10
|
};
|
|
11
|
+
cpu: number;
|
|
11
12
|
simultaneous: number;
|
|
12
13
|
memory: number;
|
|
13
|
-
cpu: number;
|
|
14
14
|
};
|
|
15
|
+
traders: number;
|
|
15
16
|
};
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
*
|
|
19
|
-
* @param {HookContext} context - The hook context object.
|
|
20
|
-
* @returns {boolean} - Returns true if the user has an active subscription, otherwise undefined.
|
|
21
|
-
*/
|
|
22
|
-
hasActiveSubscription(context: HookContext): true | undefined;
|
|
23
|
-
/**
|
|
24
|
-
* Checks if the user has a trial subscription.
|
|
25
|
-
*
|
|
26
|
-
* @param {HookContext} context - The hook context object.
|
|
27
|
-
* @returns {boolean} - Returns true if the user has a trial subscription, otherwise undefined.
|
|
28
|
-
*/
|
|
17
|
+
hasActiveOrTrialSubscription(user: User): true | undefined;
|
|
18
|
+
hasCanceledSubscription(user: User): true | undefined;
|
|
29
19
|
hasFreeTrialSubscriptionExpired(context: HookContext): void;
|
|
20
|
+
isTrialActive(context: HookContext): boolean | undefined;
|
|
21
|
+
getTrialExpirationDate(context: HookContext): string | undefined;
|
|
30
22
|
/**
|
|
31
23
|
* Checks if the user can trade with real money.
|
|
32
24
|
*
|
|
@@ -39,6 +39,9 @@ export declare const exchangesBalanceSchema: import("@feathersjs/typebox").TObje
|
|
|
39
39
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
40
40
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
41
41
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
42
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
43
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
44
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
42
45
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
43
46
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
44
47
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -70,6 +73,7 @@ export declare const exchangesBalanceResolver: import("@feathersjs/schema").Reso
|
|
|
70
73
|
updatedAt?: any;
|
|
71
74
|
error?: any;
|
|
72
75
|
login?: string | undefined;
|
|
76
|
+
userId?: string | {} | undefined;
|
|
73
77
|
connected?: boolean | undefined;
|
|
74
78
|
downloaded?: {
|
|
75
79
|
updatedAt: any;
|
|
@@ -99,12 +103,14 @@ export declare const exchangesBalanceResolver: import("@feathersjs/schema").Reso
|
|
|
99
103
|
whitelist?: any[] | undefined;
|
|
100
104
|
ccxt_async_config?: any;
|
|
101
105
|
which?: string | undefined;
|
|
106
|
+
stakeCurrencies?: any[] | undefined;
|
|
107
|
+
popularStakeCurrency?: string | null | undefined;
|
|
108
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
102
109
|
requiredCredentials?: any;
|
|
103
110
|
uid?: string | undefined;
|
|
104
111
|
twofa?: string | undefined;
|
|
105
112
|
privateKey?: string | undefined;
|
|
106
113
|
walletAddress?: string | undefined;
|
|
107
|
-
userId?: string | {} | undefined;
|
|
108
114
|
__v?: any;
|
|
109
115
|
} | undefined;
|
|
110
116
|
_id: string | {};
|
|
@@ -124,6 +130,7 @@ export declare const exchangesBalanceExternalResolver: import("@feathersjs/schem
|
|
|
124
130
|
updatedAt?: any;
|
|
125
131
|
error?: any;
|
|
126
132
|
login?: string | undefined;
|
|
133
|
+
userId?: string | {} | undefined;
|
|
127
134
|
connected?: boolean | undefined;
|
|
128
135
|
downloaded?: {
|
|
129
136
|
updatedAt: any;
|
|
@@ -153,12 +160,14 @@ export declare const exchangesBalanceExternalResolver: import("@feathersjs/schem
|
|
|
153
160
|
whitelist?: any[] | undefined;
|
|
154
161
|
ccxt_async_config?: any;
|
|
155
162
|
which?: string | undefined;
|
|
163
|
+
stakeCurrencies?: any[] | undefined;
|
|
164
|
+
popularStakeCurrency?: string | null | undefined;
|
|
165
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
156
166
|
requiredCredentials?: any;
|
|
157
167
|
uid?: string | undefined;
|
|
158
168
|
twofa?: string | undefined;
|
|
159
169
|
privateKey?: string | undefined;
|
|
160
170
|
walletAddress?: string | undefined;
|
|
161
|
-
userId?: string | {} | undefined;
|
|
162
171
|
__v?: any;
|
|
163
172
|
} | undefined;
|
|
164
173
|
_id: string | {};
|
|
@@ -203,6 +212,9 @@ export declare const exchangesBalanceDataSchema: import("@feathersjs/typebox").T
|
|
|
203
212
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
204
213
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
205
214
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
215
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
216
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
217
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
206
218
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
207
219
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
208
220
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -234,6 +246,7 @@ export declare const exchangesBalanceDataResolver: import("@feathersjs/schema").
|
|
|
234
246
|
updatedAt?: any;
|
|
235
247
|
error?: any;
|
|
236
248
|
login?: string | undefined;
|
|
249
|
+
userId?: string | {} | undefined;
|
|
237
250
|
connected?: boolean | undefined;
|
|
238
251
|
downloaded?: {
|
|
239
252
|
updatedAt: any;
|
|
@@ -263,12 +276,14 @@ export declare const exchangesBalanceDataResolver: import("@feathersjs/schema").
|
|
|
263
276
|
whitelist?: any[] | undefined;
|
|
264
277
|
ccxt_async_config?: any;
|
|
265
278
|
which?: string | undefined;
|
|
279
|
+
stakeCurrencies?: any[] | undefined;
|
|
280
|
+
popularStakeCurrency?: string | null | undefined;
|
|
281
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
266
282
|
requiredCredentials?: any;
|
|
267
283
|
uid?: string | undefined;
|
|
268
284
|
twofa?: string | undefined;
|
|
269
285
|
privateKey?: string | undefined;
|
|
270
286
|
walletAddress?: string | undefined;
|
|
271
|
-
userId?: string | {} | undefined;
|
|
272
287
|
__v?: any;
|
|
273
288
|
} | undefined;
|
|
274
289
|
_id: string | {};
|
|
@@ -313,6 +328,9 @@ export declare const exchangesBalancePatchSchema: import("@feathersjs/typebox").
|
|
|
313
328
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
314
329
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
315
330
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
331
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
332
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
333
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
316
334
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
317
335
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
318
336
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -344,6 +362,7 @@ export declare const exchangesBalancePatchResolver: import("@feathersjs/schema")
|
|
|
344
362
|
updatedAt?: any;
|
|
345
363
|
error?: any;
|
|
346
364
|
login?: string | undefined;
|
|
365
|
+
userId?: string | {} | undefined;
|
|
347
366
|
connected?: boolean | undefined;
|
|
348
367
|
downloaded?: {
|
|
349
368
|
updatedAt: any;
|
|
@@ -373,12 +392,14 @@ export declare const exchangesBalancePatchResolver: import("@feathersjs/schema")
|
|
|
373
392
|
whitelist?: any[] | undefined;
|
|
374
393
|
ccxt_async_config?: any;
|
|
375
394
|
which?: string | undefined;
|
|
395
|
+
stakeCurrencies?: any[] | undefined;
|
|
396
|
+
popularStakeCurrency?: string | null | undefined;
|
|
397
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
376
398
|
requiredCredentials?: any;
|
|
377
399
|
uid?: string | undefined;
|
|
378
400
|
twofa?: string | undefined;
|
|
379
401
|
privateKey?: string | undefined;
|
|
380
402
|
walletAddress?: string | undefined;
|
|
381
|
-
userId?: string | {} | undefined;
|
|
382
403
|
__v?: any;
|
|
383
404
|
} | undefined;
|
|
384
405
|
_id: string | {};
|
|
@@ -423,6 +444,9 @@ export declare const exchangesBalanceQueryProperties: import("@feathersjs/typebo
|
|
|
423
444
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
424
445
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
425
446
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
447
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
448
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
449
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
426
450
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
427
451
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
428
452
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -40,6 +40,9 @@ export declare const exchangesDownloadSchema: import("@feathersjs/typebox").TObj
|
|
|
40
40
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
41
41
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
42
42
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
43
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
44
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
45
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
43
46
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
44
47
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
45
48
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -90,6 +93,7 @@ export declare const exchangesDownloadResolver: import("@feathersjs/schema").Res
|
|
|
90
93
|
updatedAt?: any;
|
|
91
94
|
error?: any;
|
|
92
95
|
login?: string | undefined;
|
|
96
|
+
userId?: string | {} | undefined;
|
|
93
97
|
connected?: boolean | undefined;
|
|
94
98
|
downloaded?: {
|
|
95
99
|
updatedAt: any;
|
|
@@ -119,12 +123,14 @@ export declare const exchangesDownloadResolver: import("@feathersjs/schema").Res
|
|
|
119
123
|
whitelist?: any[] | undefined;
|
|
120
124
|
ccxt_async_config?: any;
|
|
121
125
|
which?: string | undefined;
|
|
126
|
+
stakeCurrencies?: any[] | undefined;
|
|
127
|
+
popularStakeCurrency?: string | null | undefined;
|
|
128
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
122
129
|
requiredCredentials?: any;
|
|
123
130
|
uid?: string | undefined;
|
|
124
131
|
twofa?: string | undefined;
|
|
125
132
|
privateKey?: string | undefined;
|
|
126
133
|
walletAddress?: string | undefined;
|
|
127
|
-
userId?: string | {} | undefined;
|
|
128
134
|
__v?: any;
|
|
129
135
|
} | undefined;
|
|
130
136
|
webhook?: {
|
|
@@ -164,6 +170,7 @@ export declare const exchangesDownloadExternalResolver: import("@feathersjs/sche
|
|
|
164
170
|
updatedAt?: any;
|
|
165
171
|
error?: any;
|
|
166
172
|
login?: string | undefined;
|
|
173
|
+
userId?: string | {} | undefined;
|
|
167
174
|
connected?: boolean | undefined;
|
|
168
175
|
downloaded?: {
|
|
169
176
|
updatedAt: any;
|
|
@@ -193,12 +200,14 @@ export declare const exchangesDownloadExternalResolver: import("@feathersjs/sche
|
|
|
193
200
|
whitelist?: any[] | undefined;
|
|
194
201
|
ccxt_async_config?: any;
|
|
195
202
|
which?: string | undefined;
|
|
203
|
+
stakeCurrencies?: any[] | undefined;
|
|
204
|
+
popularStakeCurrency?: string | null | undefined;
|
|
205
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
196
206
|
requiredCredentials?: any;
|
|
197
207
|
uid?: string | undefined;
|
|
198
208
|
twofa?: string | undefined;
|
|
199
209
|
privateKey?: string | undefined;
|
|
200
210
|
walletAddress?: string | undefined;
|
|
201
|
-
userId?: string | {} | undefined;
|
|
202
211
|
__v?: any;
|
|
203
212
|
} | undefined;
|
|
204
213
|
webhook?: {
|
|
@@ -264,6 +273,9 @@ export declare const exchangesDownloadDataSchema: import("@feathersjs/typebox").
|
|
|
264
273
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
265
274
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
266
275
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
276
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
277
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
278
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
267
279
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
268
280
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
269
281
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -314,6 +326,7 @@ export declare const exchangesDownloadDataResolver: import("@feathersjs/schema")
|
|
|
314
326
|
updatedAt?: any;
|
|
315
327
|
error?: any;
|
|
316
328
|
login?: string | undefined;
|
|
329
|
+
userId?: string | {} | undefined;
|
|
317
330
|
connected?: boolean | undefined;
|
|
318
331
|
downloaded?: {
|
|
319
332
|
updatedAt: any;
|
|
@@ -343,12 +356,14 @@ export declare const exchangesDownloadDataResolver: import("@feathersjs/schema")
|
|
|
343
356
|
whitelist?: any[] | undefined;
|
|
344
357
|
ccxt_async_config?: any;
|
|
345
358
|
which?: string | undefined;
|
|
359
|
+
stakeCurrencies?: any[] | undefined;
|
|
360
|
+
popularStakeCurrency?: string | null | undefined;
|
|
361
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
346
362
|
requiredCredentials?: any;
|
|
347
363
|
uid?: string | undefined;
|
|
348
364
|
twofa?: string | undefined;
|
|
349
365
|
privateKey?: string | undefined;
|
|
350
366
|
walletAddress?: string | undefined;
|
|
351
|
-
userId?: string | {} | undefined;
|
|
352
367
|
__v?: any;
|
|
353
368
|
} | undefined;
|
|
354
369
|
webhook?: {
|
|
@@ -414,6 +429,9 @@ export declare const exchangesDownloadPatchSchema: import("@feathersjs/typebox")
|
|
|
414
429
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
415
430
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
416
431
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
432
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
433
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
434
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
417
435
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
418
436
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
419
437
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -464,6 +482,7 @@ export declare const exchangesDownloadPatchResolver: import("@feathersjs/schema"
|
|
|
464
482
|
updatedAt?: any;
|
|
465
483
|
error?: any;
|
|
466
484
|
login?: string | undefined;
|
|
485
|
+
userId?: string | {} | undefined;
|
|
467
486
|
connected?: boolean | undefined;
|
|
468
487
|
downloaded?: {
|
|
469
488
|
updatedAt: any;
|
|
@@ -493,12 +512,14 @@ export declare const exchangesDownloadPatchResolver: import("@feathersjs/schema"
|
|
|
493
512
|
whitelist?: any[] | undefined;
|
|
494
513
|
ccxt_async_config?: any;
|
|
495
514
|
which?: string | undefined;
|
|
515
|
+
stakeCurrencies?: any[] | undefined;
|
|
516
|
+
popularStakeCurrency?: string | null | undefined;
|
|
517
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
496
518
|
requiredCredentials?: any;
|
|
497
519
|
uid?: string | undefined;
|
|
498
520
|
twofa?: string | undefined;
|
|
499
521
|
privateKey?: string | undefined;
|
|
500
522
|
walletAddress?: string | undefined;
|
|
501
|
-
userId?: string | {} | undefined;
|
|
502
523
|
__v?: any;
|
|
503
524
|
} | undefined;
|
|
504
525
|
webhook?: {
|
|
@@ -564,6 +585,9 @@ export declare const exchangesDownloadQueryProperties: import("@feathersjs/typeb
|
|
|
564
585
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
565
586
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
566
587
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
588
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
589
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
590
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
567
591
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
568
592
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
569
593
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|