@cryptorobot.ai/client 0.0.19 → 0.0.26
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.
- package/lib/client.d.ts +38 -36
- package/lib/client.js +6 -12
- package/lib/configuration.d.ts +20 -1
- package/lib/firebase-push-notification.d.ts +1 -0
- package/lib/helpers/backtest.helper.d.ts +53 -4
- package/lib/helpers/ccxt.helper.d.ts +75 -0
- package/lib/helpers/deployments.helper.d.ts +72 -0
- package/lib/helpers/funnel.helper.d.ts +17 -0
- package/lib/helpers/hyperopt.helper.d.ts +14 -0
- package/lib/helpers/push-notification.helper.d.ts +7 -0
- package/lib/helpers/queue.helper.d.ts +8 -0
- package/lib/helpers/sqlite3.helper.d.ts +6 -0
- package/lib/helpers/sqs.helper.d.ts +7 -0
- package/lib/helpers/subscription.helper.d.ts +48 -0
- package/lib/helpers/telegram.helper.d.ts +26 -1
- package/lib/helpers/trader.helper.d.ts +26 -0
- package/lib/hooks/application/setup-config-preparation.d.ts +1 -1
- package/lib/hooks/application/setup-info.d.ts +1 -1
- package/lib/hooks/application/setup-load-indicators.d.ts +1 -1
- package/lib/hooks/application/setup-load-strategy-templates.d.ts +1 -1
- package/lib/hooks/aws-prepare-batch-job.d.ts +2 -0
- package/lib/hooks/backtest-copy-candles-from-user-data.d.ts +1 -1
- package/lib/hooks/{backtest-generate-and-start.d.ts → backtest-generate-and-queue.d.ts} +1 -1
- package/lib/hooks/backtest-generate-config.d.ts +6 -0
- package/lib/hooks/backtest-generate-exchange-config.d.ts +6 -0
- package/lib/hooks/backtest-get-results.d.ts +12 -0
- package/lib/hooks/file-generate-config-hyperopt.d.ts +2 -0
- package/lib/hooks/setup-ensure-image.d.ts +3 -0
- package/lib/hooks/setup-firebase.d.ts +2 -0
- package/lib/hooks/setup-homepage.d.ts +3 -0
- package/lib/hooks/setup-mautic.d.ts +3 -0
- package/lib/hooks/setup-mixpanel.d.ts +3 -0
- package/lib/hooks/setup-prepare-maildev-while-in-test-env.d.ts +1 -1
- package/lib/hooks/setup-queues.d.ts +1 -1
- package/lib/hooks/sqlite-reset-database.d.ts +2 -0
- package/lib/hooks/traders/pods-process-worker.d.ts +5 -0
- package/lib/sentry.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +56 -56
- package/lib/services/exchanges/download/download.schema.d.ts +60 -60
- package/lib/services/exchanges/download/webhooks/webhooks.schema.d.ts +84 -84
- package/lib/services/exchanges/exchanges.schema.d.ts +198 -198
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +110 -110
- package/lib/services/homepage/homepage.class.d.ts +15 -0
- package/lib/services/homepage/homepage.d.ts +10 -0
- package/lib/services/homepage/homepage.schema.d.ts +237 -0
- package/lib/services/homepage/homepage.shared.d.ts +4 -0
- package/lib/services/homepage/homepage.shared.js +6 -0
- package/lib/services/markets/markets.schema.d.ts +112 -112
- package/lib/services/messages/messages.schema.d.ts +136 -64
- package/lib/services/strategies/ai/ai.schema.d.ts +32 -32
- package/lib/services/strategies/backtest/backtest.schema.d.ts +394 -84
- package/lib/services/strategies/backtest/results/results.class.d.ts +1 -1
- package/lib/services/strategies/backtest/results/results.schema.d.ts +454 -156
- package/lib/services/strategies/hyperopt/hyperopt.class.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +375 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.d.ts +13 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.js +13 -0
- package/lib/services/strategies/indicators/indicators.schema.d.ts +40 -40
- package/lib/services/strategies/strategies.schema.d.ts +329 -247
- package/lib/services/strategies/templates/templates.schema.d.ts +41 -41
- package/lib/services/stripe/charges/charges.d.ts +1 -1
- package/lib/services/stripe/customers/customers.d.ts +1 -1
- package/lib/services/stripe/customers/paymentintent/paymentintent.d.ts +1 -1
- package/lib/services/stripe/customers/paymentmethods/paymentmethods.d.ts +1 -1
- package/lib/services/stripe/products/products.d.ts +1 -1
- package/lib/services/traders/pods/api/api.class.d.ts +1 -1
- package/lib/services/traders/pods/api/api.schema.d.ts +519 -519
- package/lib/services/traders/pods/events/events.schema.d.ts +375 -111
- package/lib/services/traders/pods/pods.schema.d.ts +384 -384
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +76 -76
- package/lib/services/traders/traders.class.d.ts +7 -1
- package/lib/services/traders/traders.d.ts +1 -0
- package/lib/services/traders/traders.schema.d.ts +852 -380
- package/lib/services/users/users.class.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +158 -52
- package/package.json +24 -16
- package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
|
@@ -8,27 +8,27 @@ export declare const strategiesIndicatorsSchema: import("@feathersjs/typebox").T
|
|
|
8
8
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
9
9
|
description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
10
10
|
object: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
11
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
11
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
12
12
|
}>;
|
|
13
13
|
export type StrategiesIndicators = Static<typeof strategiesIndicatorsSchema>;
|
|
14
14
|
export declare const strategiesIndicatorsValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
15
15
|
export declare const strategiesIndicatorsResolver: import("@feathersjs/schema").Resolver<{
|
|
16
16
|
object?: string | undefined;
|
|
17
17
|
name?: string | undefined;
|
|
18
|
+
createdAt?: any;
|
|
18
19
|
description?: string | undefined;
|
|
19
20
|
options?: any;
|
|
20
21
|
alias?: string | undefined;
|
|
21
22
|
_id: string | {};
|
|
22
|
-
createdAt: any;
|
|
23
23
|
}, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
|
|
24
24
|
export declare const strategiesIndicatorsExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
25
25
|
object?: string | undefined;
|
|
26
26
|
name?: string | undefined;
|
|
27
|
+
createdAt?: any;
|
|
27
28
|
description?: string | undefined;
|
|
28
29
|
options?: any;
|
|
29
30
|
alias?: string | undefined;
|
|
30
31
|
_id: string | {};
|
|
31
|
-
createdAt: any;
|
|
32
32
|
}, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
|
|
33
33
|
export declare const strategiesIndicatorsDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
34
34
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -37,18 +37,18 @@ export declare const strategiesIndicatorsDataSchema: import("@feathersjs/typebox
|
|
|
37
37
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
38
38
|
description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
39
39
|
object: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
40
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
40
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
41
41
|
}>, ["_id", "name", "alias", "object", "description", "options"]>;
|
|
42
42
|
export type StrategiesIndicatorsData = Static<typeof strategiesIndicatorsDataSchema>;
|
|
43
43
|
export declare const strategiesIndicatorsDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
44
44
|
export declare const strategiesIndicatorsDataResolver: import("@feathersjs/schema").Resolver<{
|
|
45
45
|
object?: string | undefined;
|
|
46
46
|
name?: string | undefined;
|
|
47
|
+
createdAt?: any;
|
|
47
48
|
description?: string | undefined;
|
|
48
49
|
options?: any;
|
|
49
50
|
alias?: string | undefined;
|
|
50
51
|
_id: string | {};
|
|
51
|
-
createdAt: any;
|
|
52
52
|
}, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
|
|
53
53
|
export declare const strategiesIndicatorsPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
54
54
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -57,18 +57,18 @@ export declare const strategiesIndicatorsPatchSchema: import("@feathersjs/typebo
|
|
|
57
57
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
58
58
|
description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
59
59
|
object: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
60
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
60
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
61
61
|
}>>;
|
|
62
62
|
export type StrategiesIndicatorsPatch = Static<typeof strategiesIndicatorsPatchSchema>;
|
|
63
63
|
export declare const strategiesIndicatorsPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
64
64
|
export declare const strategiesIndicatorsPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
65
65
|
object?: string | undefined;
|
|
66
66
|
name?: string | undefined;
|
|
67
|
+
createdAt?: any;
|
|
67
68
|
description?: string | undefined;
|
|
68
69
|
options?: any;
|
|
69
70
|
alias?: string | undefined;
|
|
70
71
|
_id: string | {};
|
|
71
|
-
createdAt: any;
|
|
72
72
|
}, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
|
|
73
73
|
export declare const strategiesIndicatorsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
74
74
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -77,7 +77,7 @@ export declare const strategiesIndicatorsQueryProperties: import("@feathersjs/ty
|
|
|
77
77
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
78
78
|
description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
79
79
|
object: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
80
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
80
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
81
81
|
}>, ["_id", "name"]>;
|
|
82
82
|
export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
83
83
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
@@ -94,8 +94,8 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
|
|
|
94
94
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
95
95
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
96
96
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
97
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
98
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
97
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
98
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
99
99
|
}>, import("@feathersjs/typebox").TObject<{
|
|
100
100
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
101
101
|
} | undefined>]>>]>>;
|
|
@@ -105,8 +105,8 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
|
|
|
105
105
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
106
106
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
107
107
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
108
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
109
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
108
|
+
$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<{}>]>>;
|
|
109
|
+
$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<{}>]>>;
|
|
110
110
|
}>, import("@feathersjs/typebox").TObject<{
|
|
111
111
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
112
112
|
} | undefined>]>>]>>;
|
|
@@ -118,8 +118,8 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
|
|
|
118
118
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
119
119
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
120
120
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
121
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
122
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
121
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
122
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
123
123
|
}>, import("@feathersjs/typebox").TObject<{
|
|
124
124
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
125
125
|
} | undefined>]>>]>>;
|
|
@@ -129,8 +129,8 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
|
|
|
129
129
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
130
130
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
131
131
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
132
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
133
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
132
|
+
$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<{}>]>>;
|
|
133
|
+
$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<{}>]>>;
|
|
134
134
|
}>, import("@feathersjs/typebox").TObject<{
|
|
135
135
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
136
136
|
} | undefined>]>>]>>;
|
|
@@ -143,8 +143,8 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
|
|
|
143
143
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
144
144
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
145
145
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
146
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
147
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
146
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
147
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
148
148
|
}>, import("@feathersjs/typebox").TObject<{
|
|
149
149
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
150
150
|
} | undefined>]>>]>>;
|
|
@@ -154,8 +154,8 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
|
|
|
154
154
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
155
155
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
156
156
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
157
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
158
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
157
|
+
$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<{}>]>>;
|
|
158
|
+
$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<{}>]>>;
|
|
159
159
|
}>, import("@feathersjs/typebox").TObject<{
|
|
160
160
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
161
161
|
} | undefined>]>>]>>;
|
|
@@ -167,8 +167,8 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
|
|
|
167
167
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
168
168
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
169
169
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
170
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
171
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
170
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
171
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
172
172
|
}>, import("@feathersjs/typebox").TObject<{
|
|
173
173
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
174
174
|
} | undefined>]>>]>>;
|
|
@@ -178,8 +178,8 @@ export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebo
|
|
|
178
178
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
179
179
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
180
180
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
181
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
182
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
181
|
+
$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<{}>]>>;
|
|
182
|
+
$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<{}>]>>;
|
|
183
183
|
}>, import("@feathersjs/typebox").TObject<{
|
|
184
184
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
185
185
|
} | undefined>]>>]>>;
|
|
@@ -201,8 +201,8 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
|
|
|
201
201
|
$lt?: string | undefined;
|
|
202
202
|
$lte?: string | undefined;
|
|
203
203
|
$ne?: string | undefined;
|
|
204
|
-
$in: string[];
|
|
205
|
-
$nin: string[];
|
|
204
|
+
$in: string | string[];
|
|
205
|
+
$nin: string | string[];
|
|
206
206
|
} & {}> | undefined;
|
|
207
207
|
_id?: string | {} | Partial<{
|
|
208
208
|
$gt: string | {};
|
|
@@ -210,8 +210,8 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
|
|
|
210
210
|
$lt: string | {};
|
|
211
211
|
$lte: string | {};
|
|
212
212
|
$ne: string | {};
|
|
213
|
-
$in: (string | {})[];
|
|
214
|
-
$nin: (string | {})[];
|
|
213
|
+
$in: string | {} | (string | {})[];
|
|
214
|
+
$nin: string | {} | (string | {})[];
|
|
215
215
|
} & {}> | undefined;
|
|
216
216
|
} | {
|
|
217
217
|
$or: {
|
|
@@ -221,8 +221,8 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
|
|
|
221
221
|
$lt?: string | undefined;
|
|
222
222
|
$lte?: string | undefined;
|
|
223
223
|
$ne?: string | undefined;
|
|
224
|
-
$in: string[];
|
|
225
|
-
$nin: string[];
|
|
224
|
+
$in: string | string[];
|
|
225
|
+
$nin: string | string[];
|
|
226
226
|
} & {}> | undefined;
|
|
227
227
|
_id?: string | {} | Partial<{
|
|
228
228
|
$gt: string | {};
|
|
@@ -230,8 +230,8 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
|
|
|
230
230
|
$lt: string | {};
|
|
231
231
|
$lte: string | {};
|
|
232
232
|
$ne: string | {};
|
|
233
|
-
$in: (string | {})[];
|
|
234
|
-
$nin: (string | {})[];
|
|
233
|
+
$in: string | {} | (string | {})[];
|
|
234
|
+
$nin: string | {} | (string | {})[];
|
|
235
235
|
} & {}> | undefined;
|
|
236
236
|
}[];
|
|
237
237
|
})[];
|
|
@@ -242,8 +242,8 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
|
|
|
242
242
|
$lt?: string | undefined;
|
|
243
243
|
$lte?: string | undefined;
|
|
244
244
|
$ne?: string | undefined;
|
|
245
|
-
$in: string[];
|
|
246
|
-
$nin: string[];
|
|
245
|
+
$in: string | string[];
|
|
246
|
+
$nin: string | string[];
|
|
247
247
|
} & {}> | undefined;
|
|
248
248
|
_id?: string | {} | Partial<{
|
|
249
249
|
$gt: string | {};
|
|
@@ -251,8 +251,8 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
|
|
|
251
251
|
$lt: string | {};
|
|
252
252
|
$lte: string | {};
|
|
253
253
|
$ne: string | {};
|
|
254
|
-
$in: (string | {})[];
|
|
255
|
-
$nin: (string | {})[];
|
|
254
|
+
$in: string | {} | (string | {})[];
|
|
255
|
+
$nin: string | {} | (string | {})[];
|
|
256
256
|
} & {}> | undefined;
|
|
257
257
|
}[];
|
|
258
258
|
}> & {
|
|
@@ -262,8 +262,8 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
|
|
|
262
262
|
$lt?: string | undefined;
|
|
263
263
|
$lte?: string | undefined;
|
|
264
264
|
$ne?: string | undefined;
|
|
265
|
-
$in: string[];
|
|
266
|
-
$nin: string[];
|
|
265
|
+
$in: string | string[];
|
|
266
|
+
$nin: string | string[];
|
|
267
267
|
} & {}> | undefined;
|
|
268
268
|
_id?: string | {} | Partial<{
|
|
269
269
|
$gt: string | {};
|
|
@@ -271,7 +271,7 @@ export declare const strategiesIndicatorsQueryResolver: import("@feathersjs/sche
|
|
|
271
271
|
$lt: string | {};
|
|
272
272
|
$lte: string | {};
|
|
273
273
|
$ne: string | {};
|
|
274
|
-
$in: (string | {})[];
|
|
275
|
-
$nin: (string | {})[];
|
|
274
|
+
$in: string | {} | (string | {})[];
|
|
275
|
+
$nin: string | {} | (string | {})[];
|
|
276
276
|
} & {}> | undefined;
|
|
277
277
|
} & {}, HookContext<StrategiesIndicatorsService<import("./indicators.class").StrategiesIndicatorsParams>>>;
|