@cryptorobot.ai/client 0.0.16 → 0.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/lib/configuration.d.ts +17 -0
  2. package/lib/helpers/app.helper.d.ts +4 -0
  3. package/lib/helpers/logging.helper.d.ts +7 -6
  4. package/lib/helpers/queue.helper.d.ts +5 -0
  5. package/lib/helpers/telegram.helper.d.ts +7 -0
  6. package/lib/helpers/trader.helper.d.ts +2 -0
  7. package/lib/hooks/bootstrap-user-telegram.d.ts +2 -0
  8. package/lib/hooks/bootstrap-user-traders.d.ts +2 -0
  9. package/lib/hooks/init-data-folder.d.ts +2 -0
  10. package/lib/hooks/setup-aws-sdk.d.ts +2 -0
  11. package/lib/hooks/setup-cronjobs.d.ts +2 -0
  12. package/lib/hooks/setup-queues.d.ts +3 -0
  13. package/lib/hooks/setup-telegram-client.d.ts +3 -0
  14. package/lib/hooks/telegram-create-group.d.ts +2 -0
  15. package/lib/hooks/telegram-delete-group.d.ts +2 -0
  16. package/lib/hooks/telegram-update-group.d.ts +2 -0
  17. package/lib/hooks/tickers-fetch.d.ts +1 -1
  18. package/lib/hooks/traders/pods-process-worker.d.ts +1 -1
  19. package/lib/services/exchanges/balance/balance.schema.d.ts +12 -44
  20. package/lib/services/exchanges/download/download.schema.d.ts +16 -48
  21. package/lib/services/exchanges/exchanges.schema.d.ts +12 -44
  22. package/lib/services/exchanges/ticker/ticker.schema.d.ts +12 -44
  23. package/lib/services/messages/messages.schema.d.ts +24 -8
  24. package/lib/services/strategies/strategies.schema.d.ts +384 -104
  25. package/lib/services/traders/pods/api/api.schema.d.ts +1076 -268
  26. package/lib/services/traders/pods/pods.schema.d.ts +736 -208
  27. package/lib/services/traders/traders.schema.d.ts +340 -60
  28. package/lib/services/users/users.schema.d.ts +24 -8
  29. package/lib/telegram-get-credentials.d.ts +1 -0
  30. package/package.json +1 -1
@@ -96,6 +96,7 @@ export declare const configurationSchema: import("@feathersjs/typebox").TInterse
96
96
  port: import("@feathersjs/typebox").TNumber;
97
97
  public: import("@feathersjs/typebox").TString<string>;
98
98
  protocol: import("@feathersjs/typebox").TString<string>;
99
+ database: import("@feathersjs/typebox").TString<string>;
99
100
  project: import("@feathersjs/typebox").TObject<{
100
101
  name: import("@feathersjs/typebox").TString<string>;
101
102
  address: import("@feathersjs/typebox").TString<string>;
@@ -108,6 +109,7 @@ export declare const configurationSchema: import("@feathersjs/typebox").TInterse
108
109
  minRefreshIntervalBalancesInMinutes: import("@feathersjs/typebox").TNumber;
109
110
  proxies: import("@feathersjs/typebox").TAny;
110
111
  }>;
112
+ queues: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
111
113
  storage: import("@feathersjs/typebox").TString<string>;
112
114
  configurationId: import("@feathersjs/typebox").TString<string>;
113
115
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -145,6 +147,21 @@ export declare const configurationSchema: import("@feathersjs/typebox").TInterse
145
147
  }>;
146
148
  testData: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
147
149
  mixpanel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
150
+ telegramClient: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
151
+ awsClient: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
152
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
153
+ enabled: import("@feathersjs/typebox").TBoolean;
154
+ apiId: import("@feathersjs/typebox").TAny;
155
+ apiHash: import("@feathersjs/typebox").TAny;
156
+ stringSession: import("@feathersjs/typebox").TAny;
157
+ }>>;
158
+ logs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
159
+ driver: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"awslogs">]>;
160
+ credentials: import("@feathersjs/typebox").TObject<{
161
+ AWS_ACCESS_KEY_ID: import("@feathersjs/typebox").TString<string>;
162
+ AWS_SECRET_ACCESS_KEY: import("@feathersjs/typebox").TString<string>;
163
+ }>;
164
+ }>>;
148
165
  }>]>;
149
166
  export type ApplicationConfiguration = Static<typeof configurationSchema>;
150
167
  export declare const configurationValidator: import("@feathersjs/schema").Validator<any, any>;
@@ -5,8 +5,12 @@ export declare class AppHelper {
5
5
  getConfig(): Promise<any>;
6
6
  setConfig(params: any): Promise<any>;
7
7
  getUserPath(context: HookContext): PathLike;
8
+ getFullUserPath(context: HookContext): PathLike;
8
9
  getLogsPath(context: HookContext): PathLike;
10
+ getFullLogsPath(context: HookContext): PathLike;
9
11
  getDataDownloadConfigPath(context: HookContext): PathLike;
10
12
  getDataDownloadPath(context: HookContext): PathLike;
13
+ checkFolderPermissions(path: PathLike): Promise<boolean>;
14
+ changeFolderPermissions(path: PathLike, mode: string): Promise<boolean>;
11
15
  getFolderSize(folderPath: any): Promise<number>;
12
16
  }
@@ -1,8 +1,9 @@
1
1
  export default class Log {
2
- static info(message: any, context: any, filename?: any, extra?: any): void;
3
- static warn(message: any, context: any, filename?: any, extra?: any): void;
4
- static debug(message: any, context: any, filename?: any, extra?: any): void;
5
- static error(message: any, context: any, filename?: any, extra?: any): void;
6
- static silly(message: any, context: any, filename?: any, extra?: any): void;
7
- static verbose(message: any, context: any, filename?: any, extra?: any): void;
2
+ static info(message: any, context?: any, filename?: any, extra?: any): void;
3
+ static warn(message: any, context?: any, filename?: any, extra?: any): void;
4
+ static debug(message: any, context?: any, filename?: any, extra?: any): void;
5
+ static error(message: any, context?: any, filename?: any, extra?: any): void;
6
+ static silly(message: any, context?: any, filename?: any, extra?: any): void;
7
+ static verbose(message: any, context?: any, filename?: any, extra?: any): void;
8
+ static container(message: any, context?: any, filename?: any, extra?: any): void;
8
9
  }
@@ -0,0 +1,5 @@
1
+ import { HookContext } from '@feathersjs/feathers';
2
+ export declare class QueueHelper {
3
+ constructor();
4
+ getQueue(context: HookContext, id: string): Promise<any>;
5
+ }
@@ -0,0 +1,7 @@
1
+ export declare class TelegramHelper {
2
+ client: any;
3
+ constructor();
4
+ createGroup(title: string): Promise<any>;
5
+ updateGroup(chat_id: any, title: string): Promise<any>;
6
+ deleteGroup(chat_id: any): Promise<any>;
7
+ }
@@ -1,10 +1,12 @@
1
1
  /// <reference types="node" />
2
2
  import { HookContext } from '@feathersjs/feathers';
3
3
  import { PathLike } from 'fs';
4
+ import { Traders } from 'src/services/traders/traders.schema';
4
5
  export declare class TraderHelper {
5
6
  getWebhookUrl(context: HookContext): PathLike;
6
7
  getTradersDataPath(context: HookContext): PathLike;
7
8
  getRelativeTradersDataPath(context: HookContext): PathLike;
8
9
  generateWebhooks(context: HookContext): any;
9
10
  generateApiServer(context: HookContext): any;
11
+ generateTelegram(chat_id: any, invite_link: string): Pick<Traders, 'telegram'>;
10
12
  }
@@ -0,0 +1,2 @@
1
+ import type { HookContext } from '../declarations';
2
+ export declare const bootstrapUserTelegram: (context: HookContext) => Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { HookContext } from '../declarations';
2
+ export declare const bootstrapUserTraders: (context: HookContext) => Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { HookContext } from '../declarations';
2
+ export declare const initDataFolder: (context: HookContext) => Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { HookContext, NextFunction } from '../declarations';
2
+ export declare const setupAWSSdk: (context: HookContext, next: NextFunction) => Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { HookContext, NextFunction } from '../declarations';
2
+ export declare const setupCronjobs: (context: HookContext, next: NextFunction) => Promise<void>;
@@ -0,0 +1,3 @@
1
+ import type { HookContext } from '../declarations';
2
+ import { NextFunction } from '@feathersjs/feathers';
3
+ export declare const setupQueues: (context: HookContext, next: NextFunction) => Promise<void>;
@@ -0,0 +1,3 @@
1
+ import type { HookContext } from '../declarations';
2
+ import { NextFunction } from '@feathersjs/feathers';
3
+ export declare const setupTelegramClient: (context: HookContext, next: NextFunction) => Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { HookContext } from '../declarations';
2
+ export declare const telegramCreateGroup: (context: HookContext) => Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { HookContext } from '../declarations';
2
+ export declare const telegramDeleteGroup: (context: HookContext) => Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { HookContext } from '../declarations';
2
+ export declare const telegramUpdateGroup: (context: HookContext) => Promise<void>;
@@ -1,2 +1,2 @@
1
1
  import type { HookContext } from '../declarations';
2
- export declare const tickersFetch: (context: HookContext) => Promise<HookContext>;
2
+ export declare const tickersFetch: (context: HookContext) => Promise<HookContext | undefined>;
@@ -1,2 +1,2 @@
1
1
  import type { HookContext } from '../../declarations';
2
- export declare const podsProcessWorker: (context: HookContext) => Promise<any>;
2
+ export declare const podsProcessWorker: (context: HookContext) => Promise<void>;
@@ -36,13 +36,9 @@ export declare const exchangesBalanceSchema: import("@feathersjs/typebox").TObje
36
36
  left: import("@feathersjs/typebox").TString<string>;
37
37
  right: import("@feathersjs/typebox").TString<string>;
38
38
  }>>>;
39
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
40
- left: import("@feathersjs/typebox").TString<string>;
41
- right: import("@feathersjs/typebox").TString<string>;
42
- }>>>;
39
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
43
40
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
44
41
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
45
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
46
42
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
47
43
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
48
44
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -66,13 +62,13 @@ export declare const exchangesBalanceResolver: import("@feathersjs/schema").Reso
66
62
  name?: any;
67
63
  apiKey?: string | undefined;
68
64
  secret?: string | undefined;
69
- key?: string | undefined;
70
65
  avatar?: any;
71
66
  createdAt?: any;
72
67
  updatedAt?: any;
73
68
  userId?: string | {} | undefined;
74
69
  which?: string | undefined;
75
70
  connected?: boolean | undefined;
71
+ token?: string | undefined;
76
72
  downloaded?: {
77
73
  updatedAt: any;
78
74
  size: string;
@@ -98,10 +94,7 @@ export declare const exchangesBalanceResolver: import("@feathersjs/schema").Reso
98
94
  left: string;
99
95
  right: string;
100
96
  }[] | undefined;
101
- whitelist?: {
102
- left: string;
103
- right: string;
104
- }[] | undefined;
97
+ whitelist?: any[] | undefined;
105
98
  ccxt_async_config?: any;
106
99
  requiredCredentials?: any;
107
100
  uid?: string | undefined;
@@ -109,7 +102,6 @@ export declare const exchangesBalanceResolver: import("@feathersjs/schema").Reso
109
102
  twofa?: string | undefined;
110
103
  privateKey?: string | undefined;
111
104
  walletAddress?: string | undefined;
112
- token?: string | undefined;
113
105
  __v?: any;
114
106
  _id: string | {};
115
107
  } | undefined;
@@ -123,13 +115,13 @@ export declare const exchangesBalanceExternalResolver: import("@feathersjs/schem
123
115
  name?: any;
124
116
  apiKey?: string | undefined;
125
117
  secret?: string | undefined;
126
- key?: string | undefined;
127
118
  avatar?: any;
128
119
  createdAt?: any;
129
120
  updatedAt?: any;
130
121
  userId?: string | {} | undefined;
131
122
  which?: string | undefined;
132
123
  connected?: boolean | undefined;
124
+ token?: string | undefined;
133
125
  downloaded?: {
134
126
  updatedAt: any;
135
127
  size: string;
@@ -155,10 +147,7 @@ export declare const exchangesBalanceExternalResolver: import("@feathersjs/schem
155
147
  left: string;
156
148
  right: string;
157
149
  }[] | undefined;
158
- whitelist?: {
159
- left: string;
160
- right: string;
161
- }[] | undefined;
150
+ whitelist?: any[] | undefined;
162
151
  ccxt_async_config?: any;
163
152
  requiredCredentials?: any;
164
153
  uid?: string | undefined;
@@ -166,7 +155,6 @@ export declare const exchangesBalanceExternalResolver: import("@feathersjs/schem
166
155
  twofa?: string | undefined;
167
156
  privateKey?: string | undefined;
168
157
  walletAddress?: string | undefined;
169
- token?: string | undefined;
170
158
  __v?: any;
171
159
  _id: string | {};
172
160
  } | undefined;
@@ -209,13 +197,9 @@ export declare const exchangesBalanceDataSchema: import("@feathersjs/typebox").T
209
197
  left: import("@feathersjs/typebox").TString<string>;
210
198
  right: import("@feathersjs/typebox").TString<string>;
211
199
  }>>>;
212
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
213
- left: import("@feathersjs/typebox").TString<string>;
214
- right: import("@feathersjs/typebox").TString<string>;
215
- }>>>;
200
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
216
201
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
217
202
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
218
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
219
203
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
220
204
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
221
205
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -239,13 +223,13 @@ export declare const exchangesBalanceDataResolver: import("@feathersjs/schema").
239
223
  name?: any;
240
224
  apiKey?: string | undefined;
241
225
  secret?: string | undefined;
242
- key?: string | undefined;
243
226
  avatar?: any;
244
227
  createdAt?: any;
245
228
  updatedAt?: any;
246
229
  userId?: string | {} | undefined;
247
230
  which?: string | undefined;
248
231
  connected?: boolean | undefined;
232
+ token?: string | undefined;
249
233
  downloaded?: {
250
234
  updatedAt: any;
251
235
  size: string;
@@ -271,10 +255,7 @@ export declare const exchangesBalanceDataResolver: import("@feathersjs/schema").
271
255
  left: string;
272
256
  right: string;
273
257
  }[] | undefined;
274
- whitelist?: {
275
- left: string;
276
- right: string;
277
- }[] | undefined;
258
+ whitelist?: any[] | undefined;
278
259
  ccxt_async_config?: any;
279
260
  requiredCredentials?: any;
280
261
  uid?: string | undefined;
@@ -282,7 +263,6 @@ export declare const exchangesBalanceDataResolver: import("@feathersjs/schema").
282
263
  twofa?: string | undefined;
283
264
  privateKey?: string | undefined;
284
265
  walletAddress?: string | undefined;
285
- token?: string | undefined;
286
266
  __v?: any;
287
267
  _id: string | {};
288
268
  } | undefined;
@@ -325,13 +305,9 @@ export declare const exchangesBalancePatchSchema: import("@feathersjs/typebox").
325
305
  left: import("@feathersjs/typebox").TString<string>;
326
306
  right: import("@feathersjs/typebox").TString<string>;
327
307
  }>>>;
328
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
329
- left: import("@feathersjs/typebox").TString<string>;
330
- right: import("@feathersjs/typebox").TString<string>;
331
- }>>>;
308
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
332
309
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
333
310
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
334
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
335
311
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
336
312
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
337
313
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -355,13 +331,13 @@ export declare const exchangesBalancePatchResolver: import("@feathersjs/schema")
355
331
  name?: any;
356
332
  apiKey?: string | undefined;
357
333
  secret?: string | undefined;
358
- key?: string | undefined;
359
334
  avatar?: any;
360
335
  createdAt?: any;
361
336
  updatedAt?: any;
362
337
  userId?: string | {} | undefined;
363
338
  which?: string | undefined;
364
339
  connected?: boolean | undefined;
340
+ token?: string | undefined;
365
341
  downloaded?: {
366
342
  updatedAt: any;
367
343
  size: string;
@@ -387,10 +363,7 @@ export declare const exchangesBalancePatchResolver: import("@feathersjs/schema")
387
363
  left: string;
388
364
  right: string;
389
365
  }[] | undefined;
390
- whitelist?: {
391
- left: string;
392
- right: string;
393
- }[] | undefined;
366
+ whitelist?: any[] | undefined;
394
367
  ccxt_async_config?: any;
395
368
  requiredCredentials?: any;
396
369
  uid?: string | undefined;
@@ -398,7 +371,6 @@ export declare const exchangesBalancePatchResolver: import("@feathersjs/schema")
398
371
  twofa?: string | undefined;
399
372
  privateKey?: string | undefined;
400
373
  walletAddress?: string | undefined;
401
- token?: string | undefined;
402
374
  __v?: any;
403
375
  _id: string | {};
404
376
  } | undefined;
@@ -441,13 +413,9 @@ export declare const exchangesBalanceQueryProperties: import("@feathersjs/typebo
441
413
  left: import("@feathersjs/typebox").TString<string>;
442
414
  right: import("@feathersjs/typebox").TString<string>;
443
415
  }>>>;
444
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
445
- left: import("@feathersjs/typebox").TString<string>;
446
- right: import("@feathersjs/typebox").TString<string>;
447
- }>>>;
416
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
448
417
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
449
418
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
450
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
451
419
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
452
420
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
453
421
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -37,13 +37,9 @@ export declare const exchangesDownloadSchema: import("@feathersjs/typebox").TObj
37
37
  left: import("@feathersjs/typebox").TString<string>;
38
38
  right: import("@feathersjs/typebox").TString<string>;
39
39
  }>>>;
40
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
41
- left: import("@feathersjs/typebox").TString<string>;
42
- right: import("@feathersjs/typebox").TString<string>;
43
- }>>>;
40
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
44
41
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
45
42
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
46
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
47
43
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
48
44
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
49
45
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -86,13 +82,13 @@ export declare const exchangesDownloadResolver: import("@feathersjs/schema").Res
86
82
  name?: any;
87
83
  apiKey?: string | undefined;
88
84
  secret?: string | undefined;
89
- key?: string | undefined;
90
85
  avatar?: any;
91
86
  createdAt?: any;
92
87
  updatedAt?: any;
93
88
  userId?: string | {} | undefined;
94
89
  which?: string | undefined;
95
90
  connected?: boolean | undefined;
91
+ token?: string | undefined;
96
92
  downloaded?: {
97
93
  updatedAt: any;
98
94
  size: string;
@@ -118,10 +114,7 @@ export declare const exchangesDownloadResolver: import("@feathersjs/schema").Res
118
114
  left: string;
119
115
  right: string;
120
116
  }[] | undefined;
121
- whitelist?: {
122
- left: string;
123
- right: string;
124
- }[] | undefined;
117
+ whitelist?: any[] | undefined;
125
118
  ccxt_async_config?: any;
126
119
  requiredCredentials?: any;
127
120
  uid?: string | undefined;
@@ -129,14 +122,13 @@ export declare const exchangesDownloadResolver: import("@feathersjs/schema").Res
129
122
  twofa?: string | undefined;
130
123
  privateKey?: string | undefined;
131
124
  walletAddress?: string | undefined;
132
- token?: string | undefined;
133
125
  __v?: any;
134
126
  _id: string | {};
135
127
  } | undefined;
136
128
  webhook?: {
137
129
  url: string;
138
- format: any;
139
130
  enabled: boolean;
131
+ format: any;
140
132
  webhookstatus: {
141
133
  event: string;
142
134
  status: string;
@@ -163,13 +155,13 @@ export declare const exchangesDownloadExternalResolver: import("@feathersjs/sche
163
155
  name?: any;
164
156
  apiKey?: string | undefined;
165
157
  secret?: string | undefined;
166
- key?: string | undefined;
167
158
  avatar?: any;
168
159
  createdAt?: any;
169
160
  updatedAt?: any;
170
161
  userId?: string | {} | undefined;
171
162
  which?: string | undefined;
172
163
  connected?: boolean | undefined;
164
+ token?: string | undefined;
173
165
  downloaded?: {
174
166
  updatedAt: any;
175
167
  size: string;
@@ -195,10 +187,7 @@ export declare const exchangesDownloadExternalResolver: import("@feathersjs/sche
195
187
  left: string;
196
188
  right: string;
197
189
  }[] | undefined;
198
- whitelist?: {
199
- left: string;
200
- right: string;
201
- }[] | undefined;
190
+ whitelist?: any[] | undefined;
202
191
  ccxt_async_config?: any;
203
192
  requiredCredentials?: any;
204
193
  uid?: string | undefined;
@@ -206,14 +195,13 @@ export declare const exchangesDownloadExternalResolver: import("@feathersjs/sche
206
195
  twofa?: string | undefined;
207
196
  privateKey?: string | undefined;
208
197
  walletAddress?: string | undefined;
209
- token?: string | undefined;
210
198
  __v?: any;
211
199
  _id: string | {};
212
200
  } | undefined;
213
201
  webhook?: {
214
202
  url: string;
215
- format: any;
216
203
  enabled: boolean;
204
+ format: any;
217
205
  webhookstatus: {
218
206
  event: string;
219
207
  status: string;
@@ -270,13 +258,9 @@ export declare const exchangesDownloadDataSchema: import("@feathersjs/typebox").
270
258
  left: import("@feathersjs/typebox").TString<string>;
271
259
  right: import("@feathersjs/typebox").TString<string>;
272
260
  }>>>;
273
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
274
- left: import("@feathersjs/typebox").TString<string>;
275
- right: import("@feathersjs/typebox").TString<string>;
276
- }>>>;
261
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
277
262
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
278
263
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
279
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
280
264
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
281
265
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
282
266
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -319,13 +303,13 @@ export declare const exchangesDownloadDataResolver: import("@feathersjs/schema")
319
303
  name?: any;
320
304
  apiKey?: string | undefined;
321
305
  secret?: string | undefined;
322
- key?: string | undefined;
323
306
  avatar?: any;
324
307
  createdAt?: any;
325
308
  updatedAt?: any;
326
309
  userId?: string | {} | undefined;
327
310
  which?: string | undefined;
328
311
  connected?: boolean | undefined;
312
+ token?: string | undefined;
329
313
  downloaded?: {
330
314
  updatedAt: any;
331
315
  size: string;
@@ -351,10 +335,7 @@ export declare const exchangesDownloadDataResolver: import("@feathersjs/schema")
351
335
  left: string;
352
336
  right: string;
353
337
  }[] | undefined;
354
- whitelist?: {
355
- left: string;
356
- right: string;
357
- }[] | undefined;
338
+ whitelist?: any[] | undefined;
358
339
  ccxt_async_config?: any;
359
340
  requiredCredentials?: any;
360
341
  uid?: string | undefined;
@@ -362,14 +343,13 @@ export declare const exchangesDownloadDataResolver: import("@feathersjs/schema")
362
343
  twofa?: string | undefined;
363
344
  privateKey?: string | undefined;
364
345
  walletAddress?: string | undefined;
365
- token?: string | undefined;
366
346
  __v?: any;
367
347
  _id: string | {};
368
348
  } | undefined;
369
349
  webhook?: {
370
350
  url: string;
371
- format: any;
372
351
  enabled: boolean;
352
+ format: any;
373
353
  webhookstatus: {
374
354
  event: string;
375
355
  status: string;
@@ -426,13 +406,9 @@ export declare const exchangesDownloadPatchSchema: import("@feathersjs/typebox")
426
406
  left: import("@feathersjs/typebox").TString<string>;
427
407
  right: import("@feathersjs/typebox").TString<string>;
428
408
  }>>>;
429
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
430
- left: import("@feathersjs/typebox").TString<string>;
431
- right: import("@feathersjs/typebox").TString<string>;
432
- }>>>;
409
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
433
410
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
434
411
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
435
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
436
412
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
437
413
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
438
414
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -475,13 +451,13 @@ export declare const exchangesDownloadPatchResolver: import("@feathersjs/schema"
475
451
  name?: any;
476
452
  apiKey?: string | undefined;
477
453
  secret?: string | undefined;
478
- key?: string | undefined;
479
454
  avatar?: any;
480
455
  createdAt?: any;
481
456
  updatedAt?: any;
482
457
  userId?: string | {} | undefined;
483
458
  which?: string | undefined;
484
459
  connected?: boolean | undefined;
460
+ token?: string | undefined;
485
461
  downloaded?: {
486
462
  updatedAt: any;
487
463
  size: string;
@@ -507,10 +483,7 @@ export declare const exchangesDownloadPatchResolver: import("@feathersjs/schema"
507
483
  left: string;
508
484
  right: string;
509
485
  }[] | undefined;
510
- whitelist?: {
511
- left: string;
512
- right: string;
513
- }[] | undefined;
486
+ whitelist?: any[] | undefined;
514
487
  ccxt_async_config?: any;
515
488
  requiredCredentials?: any;
516
489
  uid?: string | undefined;
@@ -518,14 +491,13 @@ export declare const exchangesDownloadPatchResolver: import("@feathersjs/schema"
518
491
  twofa?: string | undefined;
519
492
  privateKey?: string | undefined;
520
493
  walletAddress?: string | undefined;
521
- token?: string | undefined;
522
494
  __v?: any;
523
495
  _id: string | {};
524
496
  } | undefined;
525
497
  webhook?: {
526
498
  url: string;
527
- format: any;
528
499
  enabled: boolean;
500
+ format: any;
529
501
  webhookstatus: {
530
502
  event: string;
531
503
  status: string;
@@ -582,13 +554,9 @@ export declare const exchangesDownloadQueryProperties: import("@feathersjs/typeb
582
554
  left: import("@feathersjs/typebox").TString<string>;
583
555
  right: import("@feathersjs/typebox").TString<string>;
584
556
  }>>>;
585
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
586
- left: import("@feathersjs/typebox").TString<string>;
587
- right: import("@feathersjs/typebox").TString<string>;
588
- }>>>;
557
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
589
558
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
590
559
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
591
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
592
560
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
593
561
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
594
562
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;