@cryptorobot.ai/client 0.0.32 → 0.0.34

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 (40) hide show
  1. package/lib/app.d.ts +1 -0
  2. package/lib/client.d.ts +2 -0
  3. package/lib/client.js +7 -5
  4. package/lib/configuration.d.ts +12 -1
  5. package/lib/helpers/app.helper.d.ts +1 -0
  6. package/lib/helpers/ccxt.helper.d.ts +2 -0
  7. package/lib/helpers/deployments.helper.d.ts +1 -1
  8. package/lib/helpers/funnel.helper.d.ts +2 -0
  9. package/lib/helpers/push-notification.helper.d.ts +1 -0
  10. package/lib/hooks/application/setup-ccxt-load-marketplaces-mocked.d.ts +3 -0
  11. package/lib/hooks/application/setup-fs.d.ts +3 -0
  12. package/lib/hooks/revenuecat-is-subscription-active.d.ts +2 -0
  13. package/lib/services/auth-management/auth-management.shared.js +1 -12
  14. package/lib/services/config/config.class.d.ts +1 -1
  15. package/lib/services/exchanges/balance/balance.class.d.ts +1 -1
  16. package/lib/services/exchanges/balance/balance.schema.d.ts +32 -24
  17. package/lib/services/exchanges/download/download.schema.d.ts +32 -24
  18. package/lib/services/exchanges/exchanges.d.ts +1 -0
  19. package/lib/services/exchanges/exchanges.schema.d.ts +85 -77
  20. package/lib/services/exchanges/ticker/ticker.schema.d.ts +32 -24
  21. package/lib/services/index.d.ts +1 -1
  22. package/lib/services/messages/messages.schema.d.ts +40 -24
  23. package/lib/services/strategies/backtest/backtest.d.ts +1 -0
  24. package/lib/services/strategies/backtest/backtest.schema.d.ts +133 -197
  25. package/lib/services/strategies/indicators/indicators.schema.d.ts +61 -61
  26. package/lib/services/strategies/strategies.d.ts +1 -0
  27. package/lib/services/strategies/strategies.schema.d.ts +32 -16
  28. package/lib/services/strategies/templates/templates.schema.d.ts +9 -1
  29. package/lib/services/stripe/webhooks/webhooks.class.d.ts +26 -0
  30. package/lib/services/stripe/webhooks/webhooks.d.ts +9 -0
  31. package/lib/services/stripe/webhooks/webhooks.shared.d.ts +13 -0
  32. package/lib/services/stripe/webhooks/webhooks.shared.js +13 -0
  33. package/lib/services/traders/pods/api/api.schema.d.ts +112 -72
  34. package/lib/services/traders/pods/pods.schema.d.ts +88 -56
  35. package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +217 -3
  36. package/lib/services/traders/traders.schema.d.ts +141 -133
  37. package/lib/services/users/users.d.ts +1 -0
  38. package/lib/services/users/users.helper.d.ts +1 -1
  39. package/lib/services/users/users.schema.d.ts +196 -80
  40. package/package.json +1 -1
@@ -5,7 +5,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
5
5
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
6
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
7
7
  trader: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
8
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
8
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
9
9
  name: import("@feathersjs/typebox").TAny;
10
10
  createdAt: import("@feathersjs/typebox").TAny;
11
11
  updatedAt: import("@feathersjs/typebox").TAny;
@@ -180,7 +180,8 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
180
180
  reload: import("@feathersjs/typebox").TBoolean;
181
181
  balance_dust_level: import("@feathersjs/typebox").TNumber;
182
182
  }>>;
183
- pod: import("@feathersjs/typebox").TString<string>;
183
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
184
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
184
185
  reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
185
186
  host: import("@feathersjs/typebox").TString<string>;
186
187
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -188,7 +189,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
188
189
  "traders/pods": import("@feathersjs/typebox").TAny;
189
190
  }>>>;
190
191
  exchange: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
191
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
192
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
192
193
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
193
194
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
194
195
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -222,8 +223,8 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
222
223
  whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
223
224
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
224
225
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
225
- apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
226
- secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
226
+ apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
227
+ secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
227
228
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
228
229
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
229
230
  uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -232,6 +233,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
232
233
  privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
233
234
  walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
234
235
  token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
236
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
235
237
  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<{}>]>]>>;
236
238
  __v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
237
239
  }>>>;
@@ -297,7 +299,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
297
299
  results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
298
300
  configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
299
301
  traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
300
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
302
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
301
303
  name: import("@feathersjs/typebox").TAny;
302
304
  createdAt: import("@feathersjs/typebox").TAny;
303
305
  updatedAt: import("@feathersjs/typebox").TAny;
@@ -472,7 +474,8 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
472
474
  reload: import("@feathersjs/typebox").TBoolean;
473
475
  balance_dust_level: import("@feathersjs/typebox").TNumber;
474
476
  }>>;
475
- pod: import("@feathersjs/typebox").TString<string>;
477
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
478
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
476
479
  reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
477
480
  host: import("@feathersjs/typebox").TString<string>;
478
481
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -485,6 +488,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
485
488
  type: import("@feathersjs/typebox").TString<string>;
486
489
  description: import("@feathersjs/typebox").TString<string>;
487
490
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
491
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
488
492
  values: import("@feathersjs/typebox").TAny;
489
493
  }>>>;
490
494
  'strategies/indicators': import("@feathersjs/typebox").TAny;
@@ -505,12 +509,14 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
505
509
  exchange: Partial<{
506
510
  password?: string | undefined;
507
511
  name?: any;
508
- apiKey?: string | undefined;
512
+ apiKey?: string | null | undefined;
509
513
  token?: string | undefined;
510
- secret?: string | undefined;
514
+ secret?: string | null | undefined;
515
+ _id?: string | {} | undefined;
511
516
  avatar?: any;
512
517
  createdAt?: any;
513
518
  updatedAt?: any;
519
+ error?: any;
514
520
  login?: string | undefined;
515
521
  connected?: boolean | undefined;
516
522
  downloaded?: {
@@ -548,7 +554,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
548
554
  walletAddress?: string | undefined;
549
555
  userId?: string | {} | undefined;
550
556
  __v?: any;
551
- _id: string | {};
552
557
  }>;
553
558
  exchangeId: string;
554
559
  strategy: Partial<{
@@ -589,6 +594,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
589
594
  reload: boolean;
590
595
  balance_dust_level: number;
591
596
  } | undefined;
597
+ _id?: string | {} | undefined;
592
598
  plugins?: {
593
599
  number_assets?: number | undefined;
594
600
  refresh_period?: number | undefined;
@@ -684,6 +690,8 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
684
690
  close_rate: string;
685
691
  };
686
692
  } | undefined;
693
+ pod?: {} | undefined;
694
+ _include?: any;
687
695
  reset?: boolean | undefined;
688
696
  host: string;
689
697
  name: any;
@@ -691,7 +699,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
691
699
  strategies: string[];
692
700
  secret: string;
693
701
  key: string;
694
- _id: string | {};
695
702
  createdAt: any;
696
703
  updatedAt: any;
697
704
  connected: boolean;
@@ -734,7 +741,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
734
741
  jwt_secret_key: string;
735
742
  CORS_origins: string[];
736
743
  };
737
- pod: string;
738
744
  }[] | undefined;
739
745
  createdAt?: any;
740
746
  updatedAt?: any;
@@ -742,6 +748,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
742
748
  'strategies/templates'?: {
743
749
  _id?: string | {} | undefined;
744
750
  createdAt?: any;
751
+ updatedAt?: any;
745
752
  values: any;
746
753
  name: string;
747
754
  description: string;
@@ -841,6 +848,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
841
848
  reload: boolean;
842
849
  balance_dust_level: number;
843
850
  } | undefined;
851
+ _id?: string | {} | undefined;
844
852
  plugins?: {
845
853
  number_assets?: number | undefined;
846
854
  refresh_period?: number | undefined;
@@ -936,6 +944,8 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
936
944
  close_rate: string;
937
945
  };
938
946
  } | undefined;
947
+ pod?: {} | undefined;
948
+ _include?: any;
939
949
  reset?: boolean | undefined;
940
950
  host: string;
941
951
  name: any;
@@ -943,7 +953,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
943
953
  strategies: string[];
944
954
  secret: string;
945
955
  key: string;
946
- _id: string | {};
947
956
  createdAt: any;
948
957
  updatedAt: any;
949
958
  connected: boolean;
@@ -986,7 +995,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
986
995
  jwt_secret_key: string;
987
996
  CORS_origins: string[];
988
997
  };
989
- pod: string;
990
998
  }>;
991
999
  }, HookContext<TradersPodsService<import("./pods.class").TradersPodsParams>>>;
992
1000
  export declare const tradersPodsExternalResolver: import("@feathersjs/schema").Resolver<{
@@ -998,12 +1006,14 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
998
1006
  exchange: Partial<{
999
1007
  password?: string | undefined;
1000
1008
  name?: any;
1001
- apiKey?: string | undefined;
1009
+ apiKey?: string | null | undefined;
1002
1010
  token?: string | undefined;
1003
- secret?: string | undefined;
1011
+ secret?: string | null | undefined;
1012
+ _id?: string | {} | undefined;
1004
1013
  avatar?: any;
1005
1014
  createdAt?: any;
1006
1015
  updatedAt?: any;
1016
+ error?: any;
1007
1017
  login?: string | undefined;
1008
1018
  connected?: boolean | undefined;
1009
1019
  downloaded?: {
@@ -1041,7 +1051,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1041
1051
  walletAddress?: string | undefined;
1042
1052
  userId?: string | {} | undefined;
1043
1053
  __v?: any;
1044
- _id: string | {};
1045
1054
  }>;
1046
1055
  exchangeId: string;
1047
1056
  strategy: Partial<{
@@ -1082,6 +1091,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1082
1091
  reload: boolean;
1083
1092
  balance_dust_level: number;
1084
1093
  } | undefined;
1094
+ _id?: string | {} | undefined;
1085
1095
  plugins?: {
1086
1096
  number_assets?: number | undefined;
1087
1097
  refresh_period?: number | undefined;
@@ -1177,6 +1187,8 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1177
1187
  close_rate: string;
1178
1188
  };
1179
1189
  } | undefined;
1190
+ pod?: {} | undefined;
1191
+ _include?: any;
1180
1192
  reset?: boolean | undefined;
1181
1193
  host: string;
1182
1194
  name: any;
@@ -1184,7 +1196,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1184
1196
  strategies: string[];
1185
1197
  secret: string;
1186
1198
  key: string;
1187
- _id: string | {};
1188
1199
  createdAt: any;
1189
1200
  updatedAt: any;
1190
1201
  connected: boolean;
@@ -1227,7 +1238,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1227
1238
  jwt_secret_key: string;
1228
1239
  CORS_origins: string[];
1229
1240
  };
1230
- pod: string;
1231
1241
  }[] | undefined;
1232
1242
  createdAt?: any;
1233
1243
  updatedAt?: any;
@@ -1235,6 +1245,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1235
1245
  'strategies/templates'?: {
1236
1246
  _id?: string | {} | undefined;
1237
1247
  createdAt?: any;
1248
+ updatedAt?: any;
1238
1249
  values: any;
1239
1250
  name: string;
1240
1251
  description: string;
@@ -1334,6 +1345,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1334
1345
  reload: boolean;
1335
1346
  balance_dust_level: number;
1336
1347
  } | undefined;
1348
+ _id?: string | {} | undefined;
1337
1349
  plugins?: {
1338
1350
  number_assets?: number | undefined;
1339
1351
  refresh_period?: number | undefined;
@@ -1429,6 +1441,8 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1429
1441
  close_rate: string;
1430
1442
  };
1431
1443
  } | undefined;
1444
+ pod?: {} | undefined;
1445
+ _include?: any;
1432
1446
  reset?: boolean | undefined;
1433
1447
  host: string;
1434
1448
  name: any;
@@ -1436,7 +1450,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1436
1450
  strategies: string[];
1437
1451
  secret: string;
1438
1452
  key: string;
1439
- _id: string | {};
1440
1453
  createdAt: any;
1441
1454
  updatedAt: any;
1442
1455
  connected: boolean;
@@ -1479,14 +1492,13 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1479
1492
  jwt_secret_key: string;
1480
1493
  CORS_origins: string[];
1481
1494
  };
1482
- pod: string;
1483
1495
  }>;
1484
1496
  }, HookContext<TradersPodsService<import("./pods.class").TradersPodsParams>>>;
1485
1497
  export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
1486
1498
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1487
1499
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
1488
1500
  trader: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
1489
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1501
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1490
1502
  name: import("@feathersjs/typebox").TAny;
1491
1503
  createdAt: import("@feathersjs/typebox").TAny;
1492
1504
  updatedAt: import("@feathersjs/typebox").TAny;
@@ -1661,7 +1673,8 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1661
1673
  reload: import("@feathersjs/typebox").TBoolean;
1662
1674
  balance_dust_level: import("@feathersjs/typebox").TNumber;
1663
1675
  }>>;
1664
- pod: import("@feathersjs/typebox").TString<string>;
1676
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
1677
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1665
1678
  reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1666
1679
  host: import("@feathersjs/typebox").TString<string>;
1667
1680
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -1669,7 +1682,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1669
1682
  "traders/pods": import("@feathersjs/typebox").TAny;
1670
1683
  }>>>;
1671
1684
  exchange: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
1672
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1685
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1673
1686
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1674
1687
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1675
1688
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -1703,8 +1716,8 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1703
1716
  whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1704
1717
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1705
1718
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1706
- apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1707
- secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1719
+ apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
1720
+ secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
1708
1721
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1709
1722
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1710
1723
  uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -1713,6 +1726,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1713
1726
  privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1714
1727
  walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1715
1728
  token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1729
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1716
1730
  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<{}>]>]>>;
1717
1731
  __v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1718
1732
  }>>>;
@@ -1778,7 +1792,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1778
1792
  results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
1779
1793
  configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1780
1794
  traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
1781
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1795
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1782
1796
  name: import("@feathersjs/typebox").TAny;
1783
1797
  createdAt: import("@feathersjs/typebox").TAny;
1784
1798
  updatedAt: import("@feathersjs/typebox").TAny;
@@ -1953,7 +1967,8 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1953
1967
  reload: import("@feathersjs/typebox").TBoolean;
1954
1968
  balance_dust_level: import("@feathersjs/typebox").TNumber;
1955
1969
  }>>;
1956
- pod: import("@feathersjs/typebox").TString<string>;
1970
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
1971
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1957
1972
  reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1958
1973
  host: import("@feathersjs/typebox").TString<string>;
1959
1974
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -1966,6 +1981,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1966
1981
  type: import("@feathersjs/typebox").TString<string>;
1967
1982
  description: import("@feathersjs/typebox").TString<string>;
1968
1983
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1984
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1969
1985
  values: import("@feathersjs/typebox").TAny;
1970
1986
  }>>>;
1971
1987
  'strategies/indicators': import("@feathersjs/typebox").TAny;
@@ -1986,12 +2002,14 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
1986
2002
  exchange: Partial<{
1987
2003
  password?: string | undefined;
1988
2004
  name?: any;
1989
- apiKey?: string | undefined;
2005
+ apiKey?: string | null | undefined;
1990
2006
  token?: string | undefined;
1991
- secret?: string | undefined;
2007
+ secret?: string | null | undefined;
2008
+ _id?: string | {} | undefined;
1992
2009
  avatar?: any;
1993
2010
  createdAt?: any;
1994
2011
  updatedAt?: any;
2012
+ error?: any;
1995
2013
  login?: string | undefined;
1996
2014
  connected?: boolean | undefined;
1997
2015
  downloaded?: {
@@ -2029,7 +2047,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2029
2047
  walletAddress?: string | undefined;
2030
2048
  userId?: string | {} | undefined;
2031
2049
  __v?: any;
2032
- _id: string | {};
2033
2050
  }>;
2034
2051
  exchangeId: string;
2035
2052
  strategy: Partial<{
@@ -2070,6 +2087,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2070
2087
  reload: boolean;
2071
2088
  balance_dust_level: number;
2072
2089
  } | undefined;
2090
+ _id?: string | {} | undefined;
2073
2091
  plugins?: {
2074
2092
  number_assets?: number | undefined;
2075
2093
  refresh_period?: number | undefined;
@@ -2165,6 +2183,8 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2165
2183
  close_rate: string;
2166
2184
  };
2167
2185
  } | undefined;
2186
+ pod?: {} | undefined;
2187
+ _include?: any;
2168
2188
  reset?: boolean | undefined;
2169
2189
  host: string;
2170
2190
  name: any;
@@ -2172,7 +2192,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2172
2192
  strategies: string[];
2173
2193
  secret: string;
2174
2194
  key: string;
2175
- _id: string | {};
2176
2195
  createdAt: any;
2177
2196
  updatedAt: any;
2178
2197
  connected: boolean;
@@ -2215,7 +2234,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2215
2234
  jwt_secret_key: string;
2216
2235
  CORS_origins: string[];
2217
2236
  };
2218
- pod: string;
2219
2237
  }[] | undefined;
2220
2238
  createdAt?: any;
2221
2239
  updatedAt?: any;
@@ -2223,6 +2241,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2223
2241
  'strategies/templates'?: {
2224
2242
  _id?: string | {} | undefined;
2225
2243
  createdAt?: any;
2244
+ updatedAt?: any;
2226
2245
  values: any;
2227
2246
  name: string;
2228
2247
  description: string;
@@ -2322,6 +2341,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2322
2341
  reload: boolean;
2323
2342
  balance_dust_level: number;
2324
2343
  } | undefined;
2344
+ _id?: string | {} | undefined;
2325
2345
  plugins?: {
2326
2346
  number_assets?: number | undefined;
2327
2347
  refresh_period?: number | undefined;
@@ -2417,6 +2437,8 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2417
2437
  close_rate: string;
2418
2438
  };
2419
2439
  } | undefined;
2440
+ pod?: {} | undefined;
2441
+ _include?: any;
2420
2442
  reset?: boolean | undefined;
2421
2443
  host: string;
2422
2444
  name: any;
@@ -2424,7 +2446,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2424
2446
  strategies: string[];
2425
2447
  secret: string;
2426
2448
  key: string;
2427
- _id: string | {};
2428
2449
  createdAt: any;
2429
2450
  updatedAt: any;
2430
2451
  connected: boolean;
@@ -2467,14 +2488,13 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2467
2488
  jwt_secret_key: string;
2468
2489
  CORS_origins: string[];
2469
2490
  };
2470
- pod: string;
2471
2491
  }>;
2472
2492
  }, HookContext<TradersPodsService<import("./pods.class").TradersPodsParams>>>;
2473
2493
  export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
2474
2494
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2475
2495
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
2476
2496
  trader: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
2477
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2497
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2478
2498
  name: import("@feathersjs/typebox").TAny;
2479
2499
  createdAt: import("@feathersjs/typebox").TAny;
2480
2500
  updatedAt: import("@feathersjs/typebox").TAny;
@@ -2649,7 +2669,8 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2649
2669
  reload: import("@feathersjs/typebox").TBoolean;
2650
2670
  balance_dust_level: import("@feathersjs/typebox").TNumber;
2651
2671
  }>>;
2652
- pod: import("@feathersjs/typebox").TString<string>;
2672
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
2673
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2653
2674
  reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2654
2675
  host: import("@feathersjs/typebox").TString<string>;
2655
2676
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -2657,7 +2678,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2657
2678
  "traders/pods": import("@feathersjs/typebox").TAny;
2658
2679
  }>>>;
2659
2680
  exchange: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
2660
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2681
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2661
2682
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2662
2683
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2663
2684
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -2691,8 +2712,8 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2691
2712
  whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
2692
2713
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2693
2714
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2694
- apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2695
- secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2715
+ apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
2716
+ secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
2696
2717
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2697
2718
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2698
2719
  uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -2701,6 +2722,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2701
2722
  privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2702
2723
  walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2703
2724
  token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2725
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2704
2726
  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<{}>]>]>>;
2705
2727
  __v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2706
2728
  }>>>;
@@ -2766,7 +2788,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2766
2788
  results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
2767
2789
  configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2768
2790
  traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
2769
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2791
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2770
2792
  name: import("@feathersjs/typebox").TAny;
2771
2793
  createdAt: import("@feathersjs/typebox").TAny;
2772
2794
  updatedAt: import("@feathersjs/typebox").TAny;
@@ -2941,7 +2963,8 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2941
2963
  reload: import("@feathersjs/typebox").TBoolean;
2942
2964
  balance_dust_level: import("@feathersjs/typebox").TNumber;
2943
2965
  }>>;
2944
- pod: import("@feathersjs/typebox").TString<string>;
2966
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
2967
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2945
2968
  reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2946
2969
  host: import("@feathersjs/typebox").TString<string>;
2947
2970
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -2954,6 +2977,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2954
2977
  type: import("@feathersjs/typebox").TString<string>;
2955
2978
  description: import("@feathersjs/typebox").TString<string>;
2956
2979
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2980
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2957
2981
  values: import("@feathersjs/typebox").TAny;
2958
2982
  }>>>;
2959
2983
  'strategies/indicators': import("@feathersjs/typebox").TAny;
@@ -2974,12 +2998,14 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2974
2998
  exchange: Partial<{
2975
2999
  password?: string | undefined;
2976
3000
  name?: any;
2977
- apiKey?: string | undefined;
3001
+ apiKey?: string | null | undefined;
2978
3002
  token?: string | undefined;
2979
- secret?: string | undefined;
3003
+ secret?: string | null | undefined;
3004
+ _id?: string | {} | undefined;
2980
3005
  avatar?: any;
2981
3006
  createdAt?: any;
2982
3007
  updatedAt?: any;
3008
+ error?: any;
2983
3009
  login?: string | undefined;
2984
3010
  connected?: boolean | undefined;
2985
3011
  downloaded?: {
@@ -3017,7 +3043,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3017
3043
  walletAddress?: string | undefined;
3018
3044
  userId?: string | {} | undefined;
3019
3045
  __v?: any;
3020
- _id: string | {};
3021
3046
  }>;
3022
3047
  exchangeId: string;
3023
3048
  strategy: Partial<{
@@ -3058,6 +3083,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3058
3083
  reload: boolean;
3059
3084
  balance_dust_level: number;
3060
3085
  } | undefined;
3086
+ _id?: string | {} | undefined;
3061
3087
  plugins?: {
3062
3088
  number_assets?: number | undefined;
3063
3089
  refresh_period?: number | undefined;
@@ -3153,6 +3179,8 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3153
3179
  close_rate: string;
3154
3180
  };
3155
3181
  } | undefined;
3182
+ pod?: {} | undefined;
3183
+ _include?: any;
3156
3184
  reset?: boolean | undefined;
3157
3185
  host: string;
3158
3186
  name: any;
@@ -3160,7 +3188,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3160
3188
  strategies: string[];
3161
3189
  secret: string;
3162
3190
  key: string;
3163
- _id: string | {};
3164
3191
  createdAt: any;
3165
3192
  updatedAt: any;
3166
3193
  connected: boolean;
@@ -3203,7 +3230,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3203
3230
  jwt_secret_key: string;
3204
3231
  CORS_origins: string[];
3205
3232
  };
3206
- pod: string;
3207
3233
  }[] | undefined;
3208
3234
  createdAt?: any;
3209
3235
  updatedAt?: any;
@@ -3211,6 +3237,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3211
3237
  'strategies/templates'?: {
3212
3238
  _id?: string | {} | undefined;
3213
3239
  createdAt?: any;
3240
+ updatedAt?: any;
3214
3241
  values: any;
3215
3242
  name: string;
3216
3243
  description: string;
@@ -3310,6 +3337,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3310
3337
  reload: boolean;
3311
3338
  balance_dust_level: number;
3312
3339
  } | undefined;
3340
+ _id?: string | {} | undefined;
3313
3341
  plugins?: {
3314
3342
  number_assets?: number | undefined;
3315
3343
  refresh_period?: number | undefined;
@@ -3405,6 +3433,8 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3405
3433
  close_rate: string;
3406
3434
  };
3407
3435
  } | undefined;
3436
+ pod?: {} | undefined;
3437
+ _include?: any;
3408
3438
  reset?: boolean | undefined;
3409
3439
  host: string;
3410
3440
  name: any;
@@ -3412,7 +3442,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3412
3442
  strategies: string[];
3413
3443
  secret: string;
3414
3444
  key: string;
3415
- _id: string | {};
3416
3445
  createdAt: any;
3417
3446
  updatedAt: any;
3418
3447
  connected: boolean;
@@ -3455,14 +3484,13 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3455
3484
  jwt_secret_key: string;
3456
3485
  CORS_origins: string[];
3457
3486
  };
3458
- pod: string;
3459
3487
  }>;
3460
3488
  }, HookContext<TradersPodsService<import("./pods.class").TradersPodsParams>>>;
3461
3489
  export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
3462
3490
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3463
3491
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
3464
3492
  trader: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
3465
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3493
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3466
3494
  name: import("@feathersjs/typebox").TAny;
3467
3495
  createdAt: import("@feathersjs/typebox").TAny;
3468
3496
  updatedAt: import("@feathersjs/typebox").TAny;
@@ -3637,7 +3665,8 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3637
3665
  reload: import("@feathersjs/typebox").TBoolean;
3638
3666
  balance_dust_level: import("@feathersjs/typebox").TNumber;
3639
3667
  }>>;
3640
- pod: import("@feathersjs/typebox").TString<string>;
3668
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
3669
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
3641
3670
  reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
3642
3671
  host: import("@feathersjs/typebox").TString<string>;
3643
3672
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -3645,7 +3674,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3645
3674
  "traders/pods": import("@feathersjs/typebox").TAny;
3646
3675
  }>>>;
3647
3676
  exchange: import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
3648
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3677
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3649
3678
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
3650
3679
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
3651
3680
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -3679,8 +3708,8 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3679
3708
  whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
3680
3709
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
3681
3710
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3682
- apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3683
- secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3711
+ apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
3712
+ secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
3684
3713
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
3685
3714
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3686
3715
  uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -3689,6 +3718,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3689
3718
  privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3690
3719
  walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3691
3720
  token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3721
+ error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
3692
3722
  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<{}>]>]>>;
3693
3723
  __v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
3694
3724
  }>>>;
@@ -3754,7 +3784,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3754
3784
  results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
3755
3785
  configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
3756
3786
  traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
3757
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3787
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3758
3788
  name: import("@feathersjs/typebox").TAny;
3759
3789
  createdAt: import("@feathersjs/typebox").TAny;
3760
3790
  updatedAt: import("@feathersjs/typebox").TAny;
@@ -3929,7 +3959,8 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3929
3959
  reload: import("@feathersjs/typebox").TBoolean;
3930
3960
  balance_dust_level: import("@feathersjs/typebox").TNumber;
3931
3961
  }>>;
3932
- pod: import("@feathersjs/typebox").TString<string>;
3962
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
3963
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
3933
3964
  reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
3934
3965
  host: import("@feathersjs/typebox").TString<string>;
3935
3966
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -3942,6 +3973,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3942
3973
  type: import("@feathersjs/typebox").TString<string>;
3943
3974
  description: import("@feathersjs/typebox").TString<string>;
3944
3975
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
3976
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
3945
3977
  values: import("@feathersjs/typebox").TAny;
3946
3978
  }>>>;
3947
3979
  'strategies/indicators': import("@feathersjs/typebox").TAny;