@cryptorobot.ai/client 0.0.15 → 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.
Files changed (29) hide show
  1. package/lib/configuration.d.ts +9 -0
  2. package/lib/helpers/logging.helper.d.ts +6 -6
  3. package/lib/helpers/queue.helper.d.ts +5 -0
  4. package/lib/helpers/telegram.helper.d.ts +7 -0
  5. package/lib/helpers/trader.helper.d.ts +2 -0
  6. package/lib/hooks/bootstrap-user-exchanges.d.ts +2 -0
  7. package/lib/hooks/bootstrap-user-strategies.d.ts +2 -0
  8. package/lib/hooks/bootstrap-user-telegram.d.ts +2 -0
  9. package/lib/hooks/bootstrap-user-traders.d.ts +2 -0
  10. package/lib/hooks/setup-cronjobs.d.ts +2 -0
  11. package/lib/hooks/setup-queues.d.ts +3 -0
  12. package/lib/hooks/setup-telegram-client.d.ts +3 -0
  13. package/lib/hooks/telegram-create-group.d.ts +2 -0
  14. package/lib/hooks/telegram-delete-group.d.ts +2 -0
  15. package/lib/hooks/telegram-update-group.d.ts +2 -0
  16. package/lib/hooks/tickers-fetch.d.ts +1 -1
  17. package/lib/hooks/traders/pods-process-worker.d.ts +1 -1
  18. package/lib/services/exchanges/balance/balance.schema.d.ts +4 -12
  19. package/lib/services/exchanges/download/download.schema.d.ts +8 -16
  20. package/lib/services/exchanges/exchanges.schema.d.ts +57 -15
  21. package/lib/services/exchanges/ticker/ticker.schema.d.ts +4 -12
  22. package/lib/services/messages/messages.schema.d.ts +101 -3
  23. package/lib/services/strategies/strategies.schema.d.ts +360 -80
  24. package/lib/services/traders/pods/api/api.schema.d.ts +1044 -212
  25. package/lib/services/traders/pods/pods.schema.d.ts +704 -152
  26. package/lib/services/traders/traders.schema.d.ts +340 -60
  27. package/lib/services/users/users.schema.d.ts +16 -0
  28. package/lib/telegram-get-credentials.d.ts +1 -0
  29. package/package.json +1 -1
@@ -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>;
@@ -422,18 +414,19 @@ export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPi
422
414
  token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
423
415
  userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
424
416
  __v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
425
- }>, ["_id", "name", "userId", "which", "connected"]>;
417
+ }>, ["_id", "name", "userId", "which", "updatedAt", "connected"]>;
426
418
  export declare const exchangesQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
427
419
  $limit: import("@feathersjs/typebox").TNumber;
428
420
  $skip: import("@feathersjs/typebox").TNumber;
429
421
  $sort: import("@feathersjs/typebox").TObject<{
430
422
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
431
423
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
424
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
432
425
  userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
433
426
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
434
427
  connected: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
435
428
  }>;
436
- $select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "userId" | "which" | "connected")[]>;
429
+ $select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "updatedAt" | "userId" | "which" | "connected")[]>;
437
430
  $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
438
431
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
439
432
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -457,6 +450,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
457
450
  }>, import("@feathersjs/typebox").TObject<{
458
451
  [key: string]: import("@feathersjs/typebox").TSchema;
459
452
  } | undefined>]>>]>>;
453
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
454
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
455
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
456
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
457
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
458
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
459
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
460
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
461
+ }>, import("@feathersjs/typebox").TObject<{
462
+ [key: string]: import("@feathersjs/typebox").TSchema;
463
+ } | undefined>]>>]>>;
460
464
  userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
461
465
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
462
466
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
@@ -514,6 +518,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
514
518
  }>, import("@feathersjs/typebox").TObject<{
515
519
  [key: string]: import("@feathersjs/typebox").TSchema;
516
520
  } | undefined>]>>]>>;
521
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
522
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
523
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
524
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
525
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
526
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
527
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
528
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
529
+ }>, import("@feathersjs/typebox").TObject<{
530
+ [key: string]: import("@feathersjs/typebox").TSchema;
531
+ } | undefined>]>>]>>;
517
532
  userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
518
533
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
519
534
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
@@ -572,6 +587,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
572
587
  }>, import("@feathersjs/typebox").TObject<{
573
588
  [key: string]: import("@feathersjs/typebox").TSchema;
574
589
  } | undefined>]>>]>>;
590
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
591
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
592
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
593
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
594
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
595
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
596
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
597
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
598
+ }>, import("@feathersjs/typebox").TObject<{
599
+ [key: string]: import("@feathersjs/typebox").TSchema;
600
+ } | undefined>]>>]>>;
575
601
  userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
576
602
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
577
603
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
@@ -629,6 +655,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
629
655
  }>, import("@feathersjs/typebox").TObject<{
630
656
  [key: string]: import("@feathersjs/typebox").TSchema;
631
657
  } | undefined>]>>]>>;
658
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
659
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
660
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
661
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
662
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
663
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
664
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
665
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
666
+ }>, import("@feathersjs/typebox").TObject<{
667
+ [key: string]: import("@feathersjs/typebox").TSchema;
668
+ } | undefined>]>>]>>;
632
669
  userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
633
670
  $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
634
671
  $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
@@ -671,11 +708,12 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
671
708
  $sort: {
672
709
  name?: number | undefined;
673
710
  _id?: number | undefined;
711
+ updatedAt?: number | undefined;
674
712
  userId?: number | undefined;
675
713
  which?: number | undefined;
676
714
  connected?: number | undefined;
677
715
  };
678
- $select: ("name" | "_id" | "userId" | "which" | "connected")[];
716
+ $select: ("name" | "_id" | "updatedAt" | "userId" | "which" | "connected")[];
679
717
  $and: ({
680
718
  name?: any;
681
719
  _id?: string | {} | Partial<{
@@ -687,6 +725,7 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
687
725
  $in: (string | {})[];
688
726
  $nin: (string | {})[];
689
727
  } & {}> | undefined;
728
+ updatedAt?: any;
690
729
  userId?: string | {} | Partial<{
691
730
  $gt?: string | {} | undefined;
692
731
  $gte?: string | {} | undefined;
@@ -726,6 +765,7 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
726
765
  $in: (string | {})[];
727
766
  $nin: (string | {})[];
728
767
  } & {}> | undefined;
768
+ updatedAt?: any;
729
769
  userId?: string | {} | Partial<{
730
770
  $gt?: string | {} | undefined;
731
771
  $gte?: string | {} | undefined;
@@ -766,6 +806,7 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
766
806
  $in: (string | {})[];
767
807
  $nin: (string | {})[];
768
808
  } & {}> | undefined;
809
+ updatedAt?: any;
769
810
  userId?: string | {} | Partial<{
770
811
  $gt?: string | {} | undefined;
771
812
  $gte?: string | {} | undefined;
@@ -805,6 +846,7 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
805
846
  $in: (string | {})[];
806
847
  $nin: (string | {})[];
807
848
  } & {}> | undefined;
849
+ updatedAt?: any;
808
850
  userId?: string | {} | Partial<{
809
851
  $gt?: string | {} | undefined;
810
852
  $gte?: string | {} | undefined;
@@ -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>;