@cryptorobot.ai/client 0.0.32 → 0.0.35

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 (41) 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 +41 -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 +80 -32
  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/backtest/results/results.schema.d.ts +4 -4
  26. package/lib/services/strategies/indicators/indicators.schema.d.ts +61 -61
  27. package/lib/services/strategies/strategies.d.ts +1 -0
  28. package/lib/services/strategies/strategies.schema.d.ts +36 -20
  29. package/lib/services/strategies/templates/templates.schema.d.ts +9 -1
  30. package/lib/services/stripe/webhooks/webhooks.class.d.ts +26 -0
  31. package/lib/services/stripe/webhooks/webhooks.d.ts +9 -0
  32. package/lib/services/stripe/webhooks/webhooks.shared.d.ts +13 -0
  33. package/lib/services/stripe/webhooks/webhooks.shared.js +13 -0
  34. package/lib/services/traders/pods/api/api.schema.d.ts +116 -76
  35. package/lib/services/traders/pods/pods.schema.d.ts +92 -60
  36. package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +217 -3
  37. package/lib/services/traders/traders.schema.d.ts +141 -133
  38. package/lib/services/users/users.d.ts +1 -0
  39. package/lib/services/users/users.helper.d.ts +1 -1
  40. package/lib/services/users/users.schema.d.ts +236 -88
  41. package/package.json +1 -1
@@ -123,6 +123,7 @@ export type StrategiesBacktestResults = Static<typeof strategiesBacktestResultsS
123
123
  export declare const strategiesBacktestResultsValidator: import("@feathersjs/schema").Validator<any, any>;
124
124
  export declare const strategiesBacktestResultsResolver: import("@feathersjs/schema").Resolver<{
125
125
  finishedAt?: any;
126
+ limits: any;
126
127
  _id: string | {};
127
128
  createdAt: any;
128
129
  updatedAt: any;
@@ -237,10 +238,10 @@ export declare const strategiesBacktestResultsResolver: import("@feathersjs/sche
237
238
  max_consecutive_losses: number;
238
239
  max_relative_drawdown: number;
239
240
  executionTimeInSeconds: number;
240
- limits: any;
241
241
  }, HookContext<StrategiesBacktestResultsService<import("./results.class").StrategiesBacktestResultsParams>>>;
242
242
  export declare const strategiesBacktestResultsExternalResolver: import("@feathersjs/schema").Resolver<{
243
243
  finishedAt?: any;
244
+ limits: any;
244
245
  _id: string | {};
245
246
  createdAt: any;
246
247
  updatedAt: any;
@@ -355,7 +356,6 @@ export declare const strategiesBacktestResultsExternalResolver: import("@feather
355
356
  max_consecutive_losses: number;
356
357
  max_relative_drawdown: number;
357
358
  executionTimeInSeconds: number;
358
- limits: any;
359
359
  }, HookContext<StrategiesBacktestResultsService<import("./results.class").StrategiesBacktestResultsParams>>>;
360
360
  export declare const strategiesBacktestResultsDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
361
361
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -479,6 +479,7 @@ export type StrategiesBacktestResultsData = Static<typeof strategiesBacktestResu
479
479
  export declare const strategiesBacktestResultsDataValidator: import("@feathersjs/schema").Validator<any, any>;
480
480
  export declare const strategiesBacktestResultsDataResolver: import("@feathersjs/schema").Resolver<{
481
481
  finishedAt?: any;
482
+ limits: any;
482
483
  _id: string | {};
483
484
  createdAt: any;
484
485
  updatedAt: any;
@@ -593,7 +594,6 @@ export declare const strategiesBacktestResultsDataResolver: import("@feathersjs/
593
594
  max_consecutive_losses: number;
594
595
  max_relative_drawdown: number;
595
596
  executionTimeInSeconds: number;
596
- limits: any;
597
597
  }, HookContext<StrategiesBacktestResultsService<import("./results.class").StrategiesBacktestResultsParams>>>;
598
598
  export declare const strategiesBacktestResultsPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
599
599
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -717,6 +717,7 @@ export type StrategiesBacktestResultsPatch = Static<typeof strategiesBacktestRes
717
717
  export declare const strategiesBacktestResultsPatchValidator: import("@feathersjs/schema").Validator<any, any>;
718
718
  export declare const strategiesBacktestResultsPatchResolver: import("@feathersjs/schema").Resolver<{
719
719
  finishedAt?: any;
720
+ limits: any;
720
721
  _id: string | {};
721
722
  createdAt: any;
722
723
  updatedAt: any;
@@ -831,7 +832,6 @@ export declare const strategiesBacktestResultsPatchResolver: import("@feathersjs
831
832
  max_consecutive_losses: number;
832
833
  max_relative_drawdown: number;
833
834
  executionTimeInSeconds: number;
834
- limits: any;
835
835
  }, HookContext<StrategiesBacktestResultsService<import("./results.class").StrategiesBacktestResultsParams>>>;
836
836
  export declare const strategiesBacktestResultsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
837
837
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -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;