@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
@@ -2,7 +2,7 @@ import type { Static } from '@feathersjs/typebox';
2
2
  import type { HookContext } from '../../../declarations';
3
3
  import type { StrategiesIndicatorsService } from './indicators.class';
4
4
  export declare const strategiesIndicatorsSchema: import("@feathersjs/typebox").TObject<{
5
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
5
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6
6
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
7
7
  alias: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
8
8
  options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -23,6 +23,7 @@ export declare const strategiesIndicatorsValidator: import("@feathersjs/schema")
23
23
  export declare const strategiesIndicatorsResolver: import("@feathersjs/schema").Resolver<{
24
24
  object?: string | undefined;
25
25
  name?: string | undefined;
26
+ _id?: string | {} | undefined;
26
27
  hyperopt?: {
27
28
  default: number;
28
29
  max: number;
@@ -35,11 +36,11 @@ export declare const strategiesIndicatorsResolver: import("@feathersjs/schema").
35
36
  description?: string | undefined;
36
37
  options?: any;
37
38
  alias?: string | undefined;
38
- _id: string | {};
39
39
  }, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
40
40
  export declare const strategiesIndicatorsExternalResolver: import("@feathersjs/schema").Resolver<{
41
41
  object?: string | undefined;
42
42
  name?: string | undefined;
43
+ _id?: string | {} | undefined;
43
44
  hyperopt?: {
44
45
  default: number;
45
46
  max: number;
@@ -52,10 +53,9 @@ export declare const strategiesIndicatorsExternalResolver: import("@feathersjs/s
52
53
  description?: string | undefined;
53
54
  options?: any;
54
55
  alias?: string | undefined;
55
- _id: string | {};
56
56
  }, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
57
57
  export declare const strategiesIndicatorsDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
58
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
58
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
59
59
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
60
60
  alias: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
61
61
  options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -70,12 +70,13 @@ export declare const strategiesIndicatorsDataSchema: import("@feathersjs/typebox
70
70
  max: import("@feathersjs/typebox").TInteger;
71
71
  default: import("@feathersjs/typebox").TInteger;
72
72
  }>>>;
73
- }>, ["_id", "name", "alias", "object", "description", "options"]>;
73
+ }>, ["_id", "name", "alias", "object", "hyperopt", "description", "options"]>;
74
74
  export type StrategiesIndicatorsData = Static<typeof strategiesIndicatorsDataSchema>;
75
75
  export declare const strategiesIndicatorsDataValidator: import("@feathersjs/schema").Validator<any, any>;
76
76
  export declare const strategiesIndicatorsDataResolver: import("@feathersjs/schema").Resolver<{
77
77
  object?: string | undefined;
78
78
  name?: string | undefined;
79
+ _id?: string | {} | undefined;
79
80
  hyperopt?: {
80
81
  default: number;
81
82
  max: number;
@@ -88,10 +89,9 @@ export declare const strategiesIndicatorsDataResolver: import("@feathersjs/schem
88
89
  description?: string | undefined;
89
90
  options?: any;
90
91
  alias?: string | undefined;
91
- _id: string | {};
92
92
  }, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
93
93
  export declare const strategiesIndicatorsPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
94
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
94
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
95
95
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
96
96
  alias: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
97
97
  options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -112,6 +112,7 @@ export declare const strategiesIndicatorsPatchValidator: import("@feathersjs/sch
112
112
  export declare const strategiesIndicatorsPatchResolver: import("@feathersjs/schema").Resolver<{
113
113
  object?: string | undefined;
114
114
  name?: string | undefined;
115
+ _id?: string | {} | undefined;
115
116
  hyperopt?: {
116
117
  default: number;
117
118
  max: number;
@@ -124,10 +125,9 @@ export declare const strategiesIndicatorsPatchResolver: import("@feathersjs/sche
124
125
  description?: string | undefined;
125
126
  options?: any;
126
127
  alias?: string | undefined;
127
- _id: string | {};
128
128
  }, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
129
129
  export declare const strategiesIndicatorsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
130
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
130
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
131
131
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
132
132
  alias: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
133
133
  options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -163,14 +163,14 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
163
163
  }>, import("@feathersjs/typebox").TObject<{
164
164
  [key: string]: import("@feathersjs/typebox").TSchema;
165
165
  } | undefined>]>>]>>;
166
- _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[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<{
167
- $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
168
- $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
169
- $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
170
- $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
171
- $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
172
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
173
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
166
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
167
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
168
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
169
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
170
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
171
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
172
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
173
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
174
174
  }>, import("@feathersjs/typebox").TObject<{
175
175
  [key: string]: import("@feathersjs/typebox").TSchema;
176
176
  } | undefined>]>>]>>;
@@ -187,14 +187,14 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
187
187
  }>, import("@feathersjs/typebox").TObject<{
188
188
  [key: string]: import("@feathersjs/typebox").TSchema;
189
189
  } | undefined>]>>]>>;
190
- _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[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<{
191
- $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
192
- $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
193
- $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
194
- $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
195
- $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
196
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
197
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
190
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
191
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
192
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
193
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
194
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
195
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
196
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
197
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
198
198
  }>, import("@feathersjs/typebox").TObject<{
199
199
  [key: string]: import("@feathersjs/typebox").TSchema;
200
200
  } | undefined>]>>]>>;
@@ -212,14 +212,14 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
212
212
  }>, import("@feathersjs/typebox").TObject<{
213
213
  [key: string]: import("@feathersjs/typebox").TSchema;
214
214
  } | undefined>]>>]>>;
215
- _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[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<{
216
- $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
217
- $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
218
- $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
219
- $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
220
- $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
221
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
222
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
215
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
216
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
217
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
218
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
219
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
220
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
221
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
222
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
223
223
  }>, import("@feathersjs/typebox").TObject<{
224
224
  [key: string]: import("@feathersjs/typebox").TSchema;
225
225
  } | undefined>]>>]>>;
@@ -236,14 +236,14 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
236
236
  }>, import("@feathersjs/typebox").TObject<{
237
237
  [key: string]: import("@feathersjs/typebox").TSchema;
238
238
  } | undefined>]>>]>>;
239
- _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[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<{
240
- $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
241
- $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
242
- $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
243
- $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
244
- $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
245
- $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
246
- $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
239
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
240
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
241
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
242
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
243
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
244
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
245
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
246
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
247
247
  }>, import("@feathersjs/typebox").TObject<{
248
248
  [key: string]: import("@feathersjs/typebox").TSchema;
249
249
  } | undefined>]>>]>>;
@@ -269,11 +269,11 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
269
269
  $nin: string | string[];
270
270
  } & {}> | undefined;
271
271
  _id?: string | {} | Partial<{
272
- $gt: string | {};
273
- $gte: string | {};
274
- $lt: string | {};
275
- $lte: string | {};
276
- $ne: string | {};
272
+ $gt?: string | {} | undefined;
273
+ $gte?: string | {} | undefined;
274
+ $lt?: string | {} | undefined;
275
+ $lte?: string | {} | undefined;
276
+ $ne?: string | {} | undefined;
277
277
  $in: string | {} | (string | {})[];
278
278
  $nin: string | {} | (string | {})[];
279
279
  } & {}> | undefined;
@@ -289,11 +289,11 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
289
289
  $nin: string | string[];
290
290
  } & {}> | undefined;
291
291
  _id?: string | {} | Partial<{
292
- $gt: string | {};
293
- $gte: string | {};
294
- $lt: string | {};
295
- $lte: string | {};
296
- $ne: string | {};
292
+ $gt?: string | {} | undefined;
293
+ $gte?: string | {} | undefined;
294
+ $lt?: string | {} | undefined;
295
+ $lte?: string | {} | undefined;
296
+ $ne?: string | {} | undefined;
297
297
  $in: string | {} | (string | {})[];
298
298
  $nin: string | {} | (string | {})[];
299
299
  } & {}> | undefined;
@@ -310,11 +310,11 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
310
310
  $nin: string | string[];
311
311
  } & {}> | undefined;
312
312
  _id?: string | {} | Partial<{
313
- $gt: string | {};
314
- $gte: string | {};
315
- $lt: string | {};
316
- $lte: string | {};
317
- $ne: string | {};
313
+ $gt?: string | {} | undefined;
314
+ $gte?: string | {} | undefined;
315
+ $lt?: string | {} | undefined;
316
+ $lte?: string | {} | undefined;
317
+ $ne?: string | {} | undefined;
318
318
  $in: string | {} | (string | {})[];
319
319
  $nin: string | {} | (string | {})[];
320
320
  } & {}> | undefined;
@@ -330,11 +330,11 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
330
330
  $nin: string | string[];
331
331
  } & {}> | undefined;
332
332
  _id?: string | {} | Partial<{
333
- $gt: string | {};
334
- $gte: string | {};
335
- $lt: string | {};
336
- $lte: string | {};
337
- $ne: string | {};
333
+ $gt?: string | {} | undefined;
334
+ $gte?: string | {} | undefined;
335
+ $lt?: string | {} | undefined;
336
+ $lte?: string | {} | undefined;
337
+ $ne?: string | {} | undefined;
338
338
  $in: string | {} | (string | {})[];
339
339
  $nin: string | {} | (string | {})[];
340
340
  } & {}> | undefined;
@@ -4,6 +4,7 @@ import { strategiesPath } from './strategies.shared';
4
4
  export * from './strategies.class';
5
5
  export * from './strategies.schema';
6
6
  export declare const strategies: (app: Application) => void;
7
+ export declare const hooks: any;
7
8
  declare module '../../declarations' {
8
9
  interface ServiceTypes {
9
10
  [strategiesPath]: StrategiesService;
@@ -61,7 +61,7 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
61
61
  results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
62
62
  configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
63
63
  traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
64
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
64
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
65
65
  name: import("@feathersjs/typebox").TAny;
66
66
  createdAt: import("@feathersjs/typebox").TAny;
67
67
  updatedAt: import("@feathersjs/typebox").TAny;
@@ -236,7 +236,8 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
236
236
  reload: import("@feathersjs/typebox").TBoolean;
237
237
  balance_dust_level: import("@feathersjs/typebox").TNumber;
238
238
  }>>;
239
- pod: import("@feathersjs/typebox").TString<string>;
239
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
240
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
240
241
  reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
241
242
  host: import("@feathersjs/typebox").TString<string>;
242
243
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -249,6 +250,7 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
249
250
  type: import("@feathersjs/typebox").TString<string>;
250
251
  description: import("@feathersjs/typebox").TString<string>;
251
252
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
253
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
252
254
  values: import("@feathersjs/typebox").TAny;
253
255
  }>>>;
254
256
  'strategies/indicators': import("@feathersjs/typebox").TAny;
@@ -293,6 +295,7 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
293
295
  reload: boolean;
294
296
  balance_dust_level: number;
295
297
  } | undefined;
298
+ _id?: string | {} | undefined;
296
299
  plugins?: {
297
300
  number_assets?: number | undefined;
298
301
  refresh_period?: number | undefined;
@@ -388,6 +391,8 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
388
391
  close_rate: string;
389
392
  };
390
393
  } | undefined;
394
+ pod?: {} | undefined;
395
+ _include?: any;
391
396
  reset?: boolean | undefined;
392
397
  host: string;
393
398
  name: any;
@@ -395,7 +400,6 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
395
400
  strategies: string[];
396
401
  secret: string;
397
402
  key: string;
398
- _id: string | {};
399
403
  createdAt: any;
400
404
  updatedAt: any;
401
405
  connected: boolean;
@@ -438,7 +442,6 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
438
442
  jwt_secret_key: string;
439
443
  CORS_origins: string[];
440
444
  };
441
- pod: string;
442
445
  }[] | undefined;
443
446
  createdAt?: any;
444
447
  updatedAt?: any;
@@ -446,6 +449,7 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
446
449
  'strategies/templates'?: {
447
450
  _id?: string | {} | undefined;
448
451
  createdAt?: any;
452
+ updatedAt?: any;
449
453
  values: any;
450
454
  name: string;
451
455
  description: string;
@@ -545,6 +549,7 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
545
549
  reload: boolean;
546
550
  balance_dust_level: number;
547
551
  } | undefined;
552
+ _id?: string | {} | undefined;
548
553
  plugins?: {
549
554
  number_assets?: number | undefined;
550
555
  refresh_period?: number | undefined;
@@ -640,6 +645,8 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
640
645
  close_rate: string;
641
646
  };
642
647
  } | undefined;
648
+ pod?: {} | undefined;
649
+ _include?: any;
643
650
  reset?: boolean | undefined;
644
651
  host: string;
645
652
  name: any;
@@ -647,7 +654,6 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
647
654
  strategies: string[];
648
655
  secret: string;
649
656
  key: string;
650
- _id: string | {};
651
657
  createdAt: any;
652
658
  updatedAt: any;
653
659
  connected: boolean;
@@ -690,7 +696,6 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
690
696
  jwt_secret_key: string;
691
697
  CORS_origins: string[];
692
698
  };
693
- pod: string;
694
699
  }[] | undefined;
695
700
  createdAt?: any;
696
701
  updatedAt?: any;
@@ -698,6 +703,7 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
698
703
  'strategies/templates'?: {
699
704
  _id?: string | {} | undefined;
700
705
  createdAt?: any;
706
+ updatedAt?: any;
701
707
  values: any;
702
708
  name: string;
703
709
  description: string;
@@ -819,7 +825,7 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
819
825
  results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
820
826
  configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
821
827
  traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
822
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
828
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
823
829
  name: import("@feathersjs/typebox").TAny;
824
830
  createdAt: import("@feathersjs/typebox").TAny;
825
831
  updatedAt: import("@feathersjs/typebox").TAny;
@@ -994,7 +1000,8 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
994
1000
  reload: import("@feathersjs/typebox").TBoolean;
995
1001
  balance_dust_level: import("@feathersjs/typebox").TNumber;
996
1002
  }>>;
997
- pod: import("@feathersjs/typebox").TString<string>;
1003
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
1004
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
998
1005
  reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
999
1006
  host: import("@feathersjs/typebox").TString<string>;
1000
1007
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -1007,6 +1014,7 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
1007
1014
  type: import("@feathersjs/typebox").TString<string>;
1008
1015
  description: import("@feathersjs/typebox").TString<string>;
1009
1016
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1017
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1010
1018
  values: import("@feathersjs/typebox").TAny;
1011
1019
  }>>>;
1012
1020
  'strategies/indicators': import("@feathersjs/typebox").TAny;
@@ -1051,6 +1059,7 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
1051
1059
  reload: boolean;
1052
1060
  balance_dust_level: number;
1053
1061
  } | undefined;
1062
+ _id?: string | {} | undefined;
1054
1063
  plugins?: {
1055
1064
  number_assets?: number | undefined;
1056
1065
  refresh_period?: number | undefined;
@@ -1146,6 +1155,8 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
1146
1155
  close_rate: string;
1147
1156
  };
1148
1157
  } | undefined;
1158
+ pod?: {} | undefined;
1159
+ _include?: any;
1149
1160
  reset?: boolean | undefined;
1150
1161
  host: string;
1151
1162
  name: any;
@@ -1153,7 +1164,6 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
1153
1164
  strategies: string[];
1154
1165
  secret: string;
1155
1166
  key: string;
1156
- _id: string | {};
1157
1167
  createdAt: any;
1158
1168
  updatedAt: any;
1159
1169
  connected: boolean;
@@ -1196,7 +1206,6 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
1196
1206
  jwt_secret_key: string;
1197
1207
  CORS_origins: string[];
1198
1208
  };
1199
- pod: string;
1200
1209
  }[] | undefined;
1201
1210
  createdAt?: any;
1202
1211
  updatedAt?: any;
@@ -1204,6 +1213,7 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
1204
1213
  'strategies/templates'?: {
1205
1214
  _id?: string | {} | undefined;
1206
1215
  createdAt?: any;
1216
+ updatedAt?: any;
1207
1217
  values: any;
1208
1218
  name: string;
1209
1219
  description: string;
@@ -1325,7 +1335,7 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
1325
1335
  results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
1326
1336
  configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1327
1337
  traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
1328
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1338
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1329
1339
  name: import("@feathersjs/typebox").TAny;
1330
1340
  createdAt: import("@feathersjs/typebox").TAny;
1331
1341
  updatedAt: import("@feathersjs/typebox").TAny;
@@ -1500,7 +1510,8 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
1500
1510
  reload: import("@feathersjs/typebox").TBoolean;
1501
1511
  balance_dust_level: import("@feathersjs/typebox").TNumber;
1502
1512
  }>>;
1503
- pod: import("@feathersjs/typebox").TString<string>;
1513
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
1514
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1504
1515
  reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1505
1516
  host: import("@feathersjs/typebox").TString<string>;
1506
1517
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -1513,6 +1524,7 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
1513
1524
  type: import("@feathersjs/typebox").TString<string>;
1514
1525
  description: import("@feathersjs/typebox").TString<string>;
1515
1526
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1527
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1516
1528
  values: import("@feathersjs/typebox").TAny;
1517
1529
  }>>>;
1518
1530
  'strategies/indicators': import("@feathersjs/typebox").TAny;
@@ -1557,6 +1569,7 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1557
1569
  reload: boolean;
1558
1570
  balance_dust_level: number;
1559
1571
  } | undefined;
1572
+ _id?: string | {} | undefined;
1560
1573
  plugins?: {
1561
1574
  number_assets?: number | undefined;
1562
1575
  refresh_period?: number | undefined;
@@ -1652,6 +1665,8 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1652
1665
  close_rate: string;
1653
1666
  };
1654
1667
  } | undefined;
1668
+ pod?: {} | undefined;
1669
+ _include?: any;
1655
1670
  reset?: boolean | undefined;
1656
1671
  host: string;
1657
1672
  name: any;
@@ -1659,7 +1674,6 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1659
1674
  strategies: string[];
1660
1675
  secret: string;
1661
1676
  key: string;
1662
- _id: string | {};
1663
1677
  createdAt: any;
1664
1678
  updatedAt: any;
1665
1679
  connected: boolean;
@@ -1702,7 +1716,6 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1702
1716
  jwt_secret_key: string;
1703
1717
  CORS_origins: string[];
1704
1718
  };
1705
- pod: string;
1706
1719
  }[] | undefined;
1707
1720
  createdAt?: any;
1708
1721
  updatedAt?: any;
@@ -1710,6 +1723,7 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1710
1723
  'strategies/templates'?: {
1711
1724
  _id?: string | {} | undefined;
1712
1725
  createdAt?: any;
1726
+ updatedAt?: any;
1713
1727
  values: any;
1714
1728
  name: string;
1715
1729
  description: string;
@@ -1831,7 +1845,7 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
1831
1845
  results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
1832
1846
  configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1833
1847
  traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
1834
- _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1848
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1835
1849
  name: import("@feathersjs/typebox").TAny;
1836
1850
  createdAt: import("@feathersjs/typebox").TAny;
1837
1851
  updatedAt: import("@feathersjs/typebox").TAny;
@@ -2006,7 +2020,8 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
2006
2020
  reload: import("@feathersjs/typebox").TBoolean;
2007
2021
  balance_dust_level: import("@feathersjs/typebox").TNumber;
2008
2022
  }>>;
2009
- pod: import("@feathersjs/typebox").TString<string>;
2023
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
2024
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2010
2025
  reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2011
2026
  host: import("@feathersjs/typebox").TString<string>;
2012
2027
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -2019,6 +2034,7 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
2019
2034
  type: import("@feathersjs/typebox").TString<string>;
2020
2035
  description: import("@feathersjs/typebox").TString<string>;
2021
2036
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2037
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2022
2038
  values: import("@feathersjs/typebox").TAny;
2023
2039
  }>>>;
2024
2040
  'strategies/indicators': import("@feathersjs/typebox").TAny;
@@ -7,6 +7,7 @@ export declare const strategiesTemplatesSchema: import("@feathersjs/typebox").TO
7
7
  type: import("@feathersjs/typebox").TString<string>;
8
8
  description: import("@feathersjs/typebox").TString<string>;
9
9
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
10
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
10
11
  values: import("@feathersjs/typebox").TAny;
11
12
  }>;
12
13
  export type StrategiesTemplates = Static<typeof strategiesTemplatesSchema>;
@@ -14,6 +15,7 @@ export declare const strategiesTemplatesValidator: import("@feathersjs/schema").
14
15
  export declare const strategiesTemplatesResolver: import("@feathersjs/schema").Resolver<{
15
16
  _id?: string | {} | undefined;
16
17
  createdAt?: any;
18
+ updatedAt?: any;
17
19
  values: any;
18
20
  name: string;
19
21
  description: string;
@@ -22,6 +24,7 @@ export declare const strategiesTemplatesResolver: import("@feathersjs/schema").R
22
24
  export declare const strategiesTemplatesExternalResolver: import("@feathersjs/schema").Resolver<{
23
25
  _id?: string | {} | undefined;
24
26
  createdAt?: any;
27
+ updatedAt?: any;
25
28
  values: any;
26
29
  name: string;
27
30
  description: string;
@@ -33,13 +36,15 @@ export declare const strategiesTemplatesDataSchema: import("@feathersjs/typebox"
33
36
  type: import("@feathersjs/typebox").TString<string>;
34
37
  description: import("@feathersjs/typebox").TString<string>;
35
38
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
39
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
36
40
  values: import("@feathersjs/typebox").TAny;
37
- }>, ["name", "type", "description", "values"]>;
41
+ }>, ["_id", "name", "type", "description", "createdAt", "updatedAt", "values"]>;
38
42
  export type StrategiesTemplatesData = Static<typeof strategiesTemplatesDataSchema>;
39
43
  export declare const strategiesTemplatesDataValidator: import("@feathersjs/schema").Validator<any, any>;
40
44
  export declare const strategiesTemplatesDataResolver: import("@feathersjs/schema").Resolver<{
41
45
  _id?: string | {} | undefined;
42
46
  createdAt?: any;
47
+ updatedAt?: any;
43
48
  values: any;
44
49
  name: string;
45
50
  description: string;
@@ -51,6 +56,7 @@ export declare const strategiesTemplatesPatchSchema: import("@feathersjs/typebox
51
56
  type: import("@feathersjs/typebox").TString<string>;
52
57
  description: import("@feathersjs/typebox").TString<string>;
53
58
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
59
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
54
60
  values: import("@feathersjs/typebox").TAny;
55
61
  }>>;
56
62
  export type StrategiesTemplatesPatch = Static<typeof strategiesTemplatesPatchSchema>;
@@ -58,6 +64,7 @@ export declare const strategiesTemplatesPatchValidator: import("@feathersjs/sche
58
64
  export declare const strategiesTemplatesPatchResolver: import("@feathersjs/schema").Resolver<{
59
65
  _id?: string | {} | undefined;
60
66
  createdAt?: any;
67
+ updatedAt?: any;
61
68
  values: any;
62
69
  name: string;
63
70
  description: string;
@@ -69,6 +76,7 @@ export declare const strategiesTemplatesQueryProperties: import("@feathersjs/typ
69
76
  type: import("@feathersjs/typebox").TString<string>;
70
77
  description: import("@feathersjs/typebox").TString<string>;
71
78
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
79
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
72
80
  values: import("@feathersjs/typebox").TAny;
73
81
  }>, ["_id", "name"]>;
74
82
  export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{