@cryptorobot.ai/client 0.0.16 → 0.0.17

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.
@@ -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,13 @@ 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
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
152
+ enabled: import("@feathersjs/typebox").TBoolean;
153
+ apiId: import("@feathersjs/typebox").TAny;
154
+ apiHash: import("@feathersjs/typebox").TAny;
155
+ stringSession: import("@feathersjs/typebox").TAny;
156
+ }>>;
148
157
  }>]>;
149
158
  export type ApplicationConfiguration = Static<typeof configurationSchema>;
150
159
  export declare const configurationValidator: import("@feathersjs/schema").Validator<any, any>;
@@ -1,8 +1,8 @@
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
8
  }
@@ -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, 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>;
@@ -42,7 +42,6 @@ export declare const exchangesBalanceSchema: import("@feathersjs/typebox").TObje
42
42
  }>>>;
43
43
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
44
44
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
45
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
46
45
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
47
46
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
48
47
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -66,13 +65,13 @@ export declare const exchangesBalanceResolver: import("@feathersjs/schema").Reso
66
65
  name?: any;
67
66
  apiKey?: string | undefined;
68
67
  secret?: string | undefined;
69
- key?: string | undefined;
70
68
  avatar?: any;
71
69
  createdAt?: any;
72
70
  updatedAt?: any;
73
71
  userId?: string | {} | undefined;
74
72
  which?: string | undefined;
75
73
  connected?: boolean | undefined;
74
+ token?: string | undefined;
76
75
  downloaded?: {
77
76
  updatedAt: any;
78
77
  size: string;
@@ -109,7 +108,6 @@ export declare const exchangesBalanceResolver: import("@feathersjs/schema").Reso
109
108
  twofa?: string | undefined;
110
109
  privateKey?: string | undefined;
111
110
  walletAddress?: string | undefined;
112
- token?: string | undefined;
113
111
  __v?: any;
114
112
  _id: string | {};
115
113
  } | undefined;
@@ -123,13 +121,13 @@ export declare const exchangesBalanceExternalResolver: import("@feathersjs/schem
123
121
  name?: any;
124
122
  apiKey?: string | undefined;
125
123
  secret?: string | undefined;
126
- key?: string | undefined;
127
124
  avatar?: any;
128
125
  createdAt?: any;
129
126
  updatedAt?: any;
130
127
  userId?: string | {} | undefined;
131
128
  which?: string | undefined;
132
129
  connected?: boolean | undefined;
130
+ token?: string | undefined;
133
131
  downloaded?: {
134
132
  updatedAt: any;
135
133
  size: string;
@@ -166,7 +164,6 @@ export declare const exchangesBalanceExternalResolver: import("@feathersjs/schem
166
164
  twofa?: string | undefined;
167
165
  privateKey?: string | undefined;
168
166
  walletAddress?: string | undefined;
169
- token?: string | undefined;
170
167
  __v?: any;
171
168
  _id: string | {};
172
169
  } | undefined;
@@ -215,7 +212,6 @@ export declare const exchangesBalanceDataSchema: import("@feathersjs/typebox").T
215
212
  }>>>;
216
213
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
217
214
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
218
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
219
215
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
220
216
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
221
217
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -239,13 +235,13 @@ export declare const exchangesBalanceDataResolver: import("@feathersjs/schema").
239
235
  name?: any;
240
236
  apiKey?: string | undefined;
241
237
  secret?: string | undefined;
242
- key?: string | undefined;
243
238
  avatar?: any;
244
239
  createdAt?: any;
245
240
  updatedAt?: any;
246
241
  userId?: string | {} | undefined;
247
242
  which?: string | undefined;
248
243
  connected?: boolean | undefined;
244
+ token?: string | undefined;
249
245
  downloaded?: {
250
246
  updatedAt: any;
251
247
  size: string;
@@ -282,7 +278,6 @@ export declare const exchangesBalanceDataResolver: import("@feathersjs/schema").
282
278
  twofa?: string | undefined;
283
279
  privateKey?: string | undefined;
284
280
  walletAddress?: string | undefined;
285
- token?: string | undefined;
286
281
  __v?: any;
287
282
  _id: string | {};
288
283
  } | undefined;
@@ -331,7 +326,6 @@ export declare const exchangesBalancePatchSchema: import("@feathersjs/typebox").
331
326
  }>>>;
332
327
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
333
328
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
334
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
335
329
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
336
330
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
337
331
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -355,13 +349,13 @@ export declare const exchangesBalancePatchResolver: import("@feathersjs/schema")
355
349
  name?: any;
356
350
  apiKey?: string | undefined;
357
351
  secret?: string | undefined;
358
- key?: string | undefined;
359
352
  avatar?: any;
360
353
  createdAt?: any;
361
354
  updatedAt?: any;
362
355
  userId?: string | {} | undefined;
363
356
  which?: string | undefined;
364
357
  connected?: boolean | undefined;
358
+ token?: string | undefined;
365
359
  downloaded?: {
366
360
  updatedAt: any;
367
361
  size: string;
@@ -398,7 +392,6 @@ export declare const exchangesBalancePatchResolver: import("@feathersjs/schema")
398
392
  twofa?: string | undefined;
399
393
  privateKey?: string | undefined;
400
394
  walletAddress?: string | undefined;
401
- token?: string | undefined;
402
395
  __v?: any;
403
396
  _id: string | {};
404
397
  } | undefined;
@@ -447,7 +440,6 @@ export declare const exchangesBalanceQueryProperties: import("@feathersjs/typebo
447
440
  }>>>;
448
441
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
449
442
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
450
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
451
443
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
452
444
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
453
445
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -43,7 +43,6 @@ export declare const exchangesDownloadSchema: import("@feathersjs/typebox").TObj
43
43
  }>>>;
44
44
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
45
45
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
46
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
47
46
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
48
47
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
49
48
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -86,13 +85,13 @@ export declare const exchangesDownloadResolver: import("@feathersjs/schema").Res
86
85
  name?: any;
87
86
  apiKey?: string | undefined;
88
87
  secret?: string | undefined;
89
- key?: string | undefined;
90
88
  avatar?: any;
91
89
  createdAt?: any;
92
90
  updatedAt?: any;
93
91
  userId?: string | {} | undefined;
94
92
  which?: string | undefined;
95
93
  connected?: boolean | undefined;
94
+ token?: string | undefined;
96
95
  downloaded?: {
97
96
  updatedAt: any;
98
97
  size: string;
@@ -129,14 +128,13 @@ export declare const exchangesDownloadResolver: import("@feathersjs/schema").Res
129
128
  twofa?: string | undefined;
130
129
  privateKey?: string | undefined;
131
130
  walletAddress?: string | undefined;
132
- token?: string | undefined;
133
131
  __v?: any;
134
132
  _id: string | {};
135
133
  } | undefined;
136
134
  webhook?: {
137
135
  url: string;
138
- format: any;
139
136
  enabled: boolean;
137
+ format: any;
140
138
  webhookstatus: {
141
139
  event: string;
142
140
  status: string;
@@ -163,13 +161,13 @@ export declare const exchangesDownloadExternalResolver: import("@feathersjs/sche
163
161
  name?: any;
164
162
  apiKey?: string | undefined;
165
163
  secret?: string | undefined;
166
- key?: string | undefined;
167
164
  avatar?: any;
168
165
  createdAt?: any;
169
166
  updatedAt?: any;
170
167
  userId?: string | {} | undefined;
171
168
  which?: string | undefined;
172
169
  connected?: boolean | undefined;
170
+ token?: string | undefined;
173
171
  downloaded?: {
174
172
  updatedAt: any;
175
173
  size: string;
@@ -206,14 +204,13 @@ export declare const exchangesDownloadExternalResolver: import("@feathersjs/sche
206
204
  twofa?: string | undefined;
207
205
  privateKey?: string | undefined;
208
206
  walletAddress?: string | undefined;
209
- token?: string | undefined;
210
207
  __v?: any;
211
208
  _id: string | {};
212
209
  } | undefined;
213
210
  webhook?: {
214
211
  url: string;
215
- format: any;
216
212
  enabled: boolean;
213
+ format: any;
217
214
  webhookstatus: {
218
215
  event: string;
219
216
  status: string;
@@ -276,7 +273,6 @@ export declare const exchangesDownloadDataSchema: import("@feathersjs/typebox").
276
273
  }>>>;
277
274
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
278
275
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
279
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
280
276
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
281
277
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
282
278
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -319,13 +315,13 @@ export declare const exchangesDownloadDataResolver: import("@feathersjs/schema")
319
315
  name?: any;
320
316
  apiKey?: string | undefined;
321
317
  secret?: string | undefined;
322
- key?: string | undefined;
323
318
  avatar?: any;
324
319
  createdAt?: any;
325
320
  updatedAt?: any;
326
321
  userId?: string | {} | undefined;
327
322
  which?: string | undefined;
328
323
  connected?: boolean | undefined;
324
+ token?: string | undefined;
329
325
  downloaded?: {
330
326
  updatedAt: any;
331
327
  size: string;
@@ -362,14 +358,13 @@ export declare const exchangesDownloadDataResolver: import("@feathersjs/schema")
362
358
  twofa?: string | undefined;
363
359
  privateKey?: string | undefined;
364
360
  walletAddress?: string | undefined;
365
- token?: string | undefined;
366
361
  __v?: any;
367
362
  _id: string | {};
368
363
  } | undefined;
369
364
  webhook?: {
370
365
  url: string;
371
- format: any;
372
366
  enabled: boolean;
367
+ format: any;
373
368
  webhookstatus: {
374
369
  event: string;
375
370
  status: string;
@@ -432,7 +427,6 @@ export declare const exchangesDownloadPatchSchema: import("@feathersjs/typebox")
432
427
  }>>>;
433
428
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
434
429
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
435
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
436
430
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
437
431
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
438
432
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -475,13 +469,13 @@ export declare const exchangesDownloadPatchResolver: import("@feathersjs/schema"
475
469
  name?: any;
476
470
  apiKey?: string | undefined;
477
471
  secret?: string | undefined;
478
- key?: string | undefined;
479
472
  avatar?: any;
480
473
  createdAt?: any;
481
474
  updatedAt?: any;
482
475
  userId?: string | {} | undefined;
483
476
  which?: string | undefined;
484
477
  connected?: boolean | undefined;
478
+ token?: string | undefined;
485
479
  downloaded?: {
486
480
  updatedAt: any;
487
481
  size: string;
@@ -518,14 +512,13 @@ export declare const exchangesDownloadPatchResolver: import("@feathersjs/schema"
518
512
  twofa?: string | undefined;
519
513
  privateKey?: string | undefined;
520
514
  walletAddress?: string | undefined;
521
- token?: string | undefined;
522
515
  __v?: any;
523
516
  _id: string | {};
524
517
  } | undefined;
525
518
  webhook?: {
526
519
  url: string;
527
- format: any;
528
520
  enabled: boolean;
521
+ format: any;
529
522
  webhookstatus: {
530
523
  event: string;
531
524
  status: string;
@@ -588,7 +581,6 @@ export declare const exchangesDownloadQueryProperties: import("@feathersjs/typeb
588
581
  }>>>;
589
582
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
590
583
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
591
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
592
584
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
593
585
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
594
586
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -39,7 +39,6 @@ export declare const exchangesSchema: import("@feathersjs/typebox").TObject<{
39
39
  }>>>;
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
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
43
42
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
44
43
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
45
44
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -60,13 +59,13 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
60
59
  name?: any;
61
60
  apiKey?: string | undefined;
62
61
  secret?: string | undefined;
63
- key?: string | undefined;
64
62
  avatar?: any;
65
63
  createdAt?: any;
66
64
  updatedAt?: any;
67
65
  userId?: string | {} | undefined;
68
66
  which?: string | undefined;
69
67
  connected?: boolean | undefined;
68
+ token?: string | undefined;
70
69
  downloaded?: {
71
70
  updatedAt: any;
72
71
  size: string;
@@ -103,7 +102,6 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
103
102
  twofa?: string | undefined;
104
103
  privateKey?: string | undefined;
105
104
  walletAddress?: string | undefined;
106
- token?: string | undefined;
107
105
  __v?: any;
108
106
  _id: string | {};
109
107
  }, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
@@ -112,13 +110,13 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
112
110
  name?: any;
113
111
  apiKey?: string | undefined;
114
112
  secret?: string | undefined;
115
- key?: string | undefined;
116
113
  avatar?: any;
117
114
  createdAt?: any;
118
115
  updatedAt?: any;
119
116
  userId?: string | {} | undefined;
120
117
  which?: string | undefined;
121
118
  connected?: boolean | undefined;
119
+ token?: string | undefined;
122
120
  downloaded?: {
123
121
  updatedAt: any;
124
122
  size: string;
@@ -155,7 +153,6 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
155
153
  twofa?: string | undefined;
156
154
  privateKey?: string | undefined;
157
155
  walletAddress?: string | undefined;
158
- token?: string | undefined;
159
156
  __v?: any;
160
157
  _id: string | {};
161
158
  }, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
@@ -197,7 +194,6 @@ export declare const exchangesDataSchema: import("@feathersjs/typebox").TPick<im
197
194
  }>>>;
198
195
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
199
196
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
200
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
201
197
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
202
198
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
203
199
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -218,13 +214,13 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
218
214
  name?: any;
219
215
  apiKey?: string | undefined;
220
216
  secret?: string | undefined;
221
- key?: string | undefined;
222
217
  avatar?: any;
223
218
  createdAt?: any;
224
219
  updatedAt?: any;
225
220
  userId?: string | {} | undefined;
226
221
  which?: string | undefined;
227
222
  connected?: boolean | undefined;
223
+ token?: string | undefined;
228
224
  downloaded?: {
229
225
  updatedAt: any;
230
226
  size: string;
@@ -261,7 +257,6 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
261
257
  twofa?: string | undefined;
262
258
  privateKey?: string | undefined;
263
259
  walletAddress?: string | undefined;
264
- token?: string | undefined;
265
260
  __v?: any;
266
261
  _id: string | {};
267
262
  }, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
@@ -303,7 +298,6 @@ export declare const exchangesPatchSchema: import("@feathersjs/typebox").TPartia
303
298
  }>>>;
304
299
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
305
300
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
306
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
307
301
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
308
302
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
309
303
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -324,13 +318,13 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
324
318
  name?: any;
325
319
  apiKey?: string | undefined;
326
320
  secret?: string | undefined;
327
- key?: string | undefined;
328
321
  avatar?: any;
329
322
  createdAt?: any;
330
323
  updatedAt?: any;
331
324
  userId?: string | {} | undefined;
332
325
  which?: string | undefined;
333
326
  connected?: boolean | undefined;
327
+ token?: string | undefined;
334
328
  downloaded?: {
335
329
  updatedAt: any;
336
330
  size: string;
@@ -367,7 +361,6 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
367
361
  twofa?: string | undefined;
368
362
  privateKey?: string | undefined;
369
363
  walletAddress?: string | undefined;
370
- token?: string | undefined;
371
364
  __v?: any;
372
365
  _id: string | {};
373
366
  }, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
@@ -409,7 +402,6 @@ export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPi
409
402
  }>>>;
410
403
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
411
404
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
412
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
413
405
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
414
406
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
415
407
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -42,7 +42,6 @@ export declare const exchangesTickerSchema: import("@feathersjs/typebox").TObjec
42
42
  }>>>;
43
43
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
44
44
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
45
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
46
45
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
47
46
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
48
47
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -71,13 +70,13 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
71
70
  name?: any;
72
71
  apiKey?: string | undefined;
73
72
  secret?: string | undefined;
74
- key?: string | undefined;
75
73
  avatar?: any;
76
74
  createdAt?: any;
77
75
  updatedAt?: any;
78
76
  userId?: string | {} | undefined;
79
77
  which?: string | undefined;
80
78
  connected?: boolean | undefined;
79
+ token?: string | undefined;
81
80
  downloaded?: {
82
81
  updatedAt: any;
83
82
  size: string;
@@ -114,7 +113,6 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
114
113
  twofa?: string | undefined;
115
114
  privateKey?: string | undefined;
116
115
  walletAddress?: string | undefined;
117
- token?: string | undefined;
118
116
  __v?: any;
119
117
  _id: string | {};
120
118
  } | undefined;
@@ -130,13 +128,13 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
130
128
  name?: any;
131
129
  apiKey?: string | undefined;
132
130
  secret?: string | undefined;
133
- key?: string | undefined;
134
131
  avatar?: any;
135
132
  createdAt?: any;
136
133
  updatedAt?: any;
137
134
  userId?: string | {} | undefined;
138
135
  which?: string | undefined;
139
136
  connected?: boolean | undefined;
137
+ token?: string | undefined;
140
138
  downloaded?: {
141
139
  updatedAt: any;
142
140
  size: string;
@@ -173,7 +171,6 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
173
171
  twofa?: string | undefined;
174
172
  privateKey?: string | undefined;
175
173
  walletAddress?: string | undefined;
176
- token?: string | undefined;
177
174
  __v?: any;
178
175
  _id: string | {};
179
176
  } | undefined;
@@ -221,7 +218,6 @@ export declare const exchangesTickerDataSchema: import("@feathersjs/typebox").TP
221
218
  }>>>;
222
219
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
223
220
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
224
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
225
221
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
226
222
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
227
223
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -250,13 +246,13 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
250
246
  name?: any;
251
247
  apiKey?: string | undefined;
252
248
  secret?: string | undefined;
253
- key?: string | undefined;
254
249
  avatar?: any;
255
250
  createdAt?: any;
256
251
  updatedAt?: any;
257
252
  userId?: string | {} | undefined;
258
253
  which?: string | undefined;
259
254
  connected?: boolean | undefined;
255
+ token?: string | undefined;
260
256
  downloaded?: {
261
257
  updatedAt: any;
262
258
  size: string;
@@ -293,7 +289,6 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
293
289
  twofa?: string | undefined;
294
290
  privateKey?: string | undefined;
295
291
  walletAddress?: string | undefined;
296
- token?: string | undefined;
297
292
  __v?: any;
298
293
  _id: string | {};
299
294
  } | undefined;
@@ -341,7 +336,6 @@ export declare const exchangesTickerPatchSchema: import("@feathersjs/typebox").T
341
336
  }>>>;
342
337
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
343
338
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
344
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
345
339
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
346
340
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
347
341
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -370,13 +364,13 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
370
364
  name?: any;
371
365
  apiKey?: string | undefined;
372
366
  secret?: string | undefined;
373
- key?: string | undefined;
374
367
  avatar?: any;
375
368
  createdAt?: any;
376
369
  updatedAt?: any;
377
370
  userId?: string | {} | undefined;
378
371
  which?: string | undefined;
379
372
  connected?: boolean | undefined;
373
+ token?: string | undefined;
380
374
  downloaded?: {
381
375
  updatedAt: any;
382
376
  size: string;
@@ -413,7 +407,6 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
413
407
  twofa?: string | undefined;
414
408
  privateKey?: string | undefined;
415
409
  walletAddress?: string | undefined;
416
- token?: string | undefined;
417
410
  __v?: any;
418
411
  _id: string | {};
419
412
  } | undefined;
@@ -461,7 +454,6 @@ export declare const exchangesTickerQueryProperties: import("@feathersjs/typebox
461
454
  }>>>;
462
455
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
463
456
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
464
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
465
457
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
466
458
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
467
459
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;