@cryptorobot.ai/client 0.0.27 → 0.0.28
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/helpers/hyperopt.helper.d.ts +4 -2
- package/lib/hooks/hyperopt-track-usage.d.ts +2 -0
- package/lib/services/messages/messages.schema.d.ts +32 -0
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +195 -63
- package/lib/services/strategies/indicators/indicators.schema.d.ts +16 -16
- package/lib/services/users/users.schema.d.ts +32 -0
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { HookContext } from '@feathersjs/feathers';
|
|
|
2
2
|
export declare class HyperoptHelper {
|
|
3
3
|
context: HookContext;
|
|
4
4
|
client: any;
|
|
5
|
+
batch: any;
|
|
5
6
|
iam: any;
|
|
6
7
|
cloudformation: any;
|
|
7
8
|
constructor(context: HookContext);
|
|
@@ -11,9 +12,10 @@ export declare class HyperoptHelper {
|
|
|
11
12
|
static deploy(context: HookContext, deployment: any, provider: string): Promise<any>;
|
|
12
13
|
updateJobStatus(message: any): Promise<void>;
|
|
13
14
|
registerJobDefinition(definition: any): Promise<any>;
|
|
14
|
-
submitJob(): Promise<void>;
|
|
15
|
+
submitJob(context: HookContext): Promise<void>;
|
|
15
16
|
static getName(createdAt: any): string;
|
|
16
17
|
static getTraderData(context: HookContext): string;
|
|
17
18
|
static promisifyStream(container: any): Promise<any>;
|
|
18
|
-
static
|
|
19
|
+
static getOptimalParamsFromDisk(context: HookContext): any;
|
|
20
|
+
static getBestHyperoptExecution(context: HookContext): Promise<any>;
|
|
19
21
|
}
|
|
@@ -34,11 +34,15 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
34
34
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
35
35
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
36
36
|
}>>;
|
|
37
|
+
usage: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
38
|
+
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
39
|
+
}>>;
|
|
37
40
|
push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
38
41
|
web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
39
42
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
40
43
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
41
44
|
}>>;
|
|
45
|
+
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
42
46
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
43
47
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
44
48
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -96,6 +100,10 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
96
100
|
theme?: string | undefined;
|
|
97
101
|
layout?: string | undefined;
|
|
98
102
|
} | undefined;
|
|
103
|
+
usage?: {
|
|
104
|
+
hyperopt?: any;
|
|
105
|
+
} | undefined;
|
|
106
|
+
$inc?: any;
|
|
99
107
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
100
108
|
timezone?: string | undefined;
|
|
101
109
|
subscribe?: string | undefined;
|
|
@@ -161,6 +169,10 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
161
169
|
theme?: string | undefined;
|
|
162
170
|
layout?: string | undefined;
|
|
163
171
|
} | undefined;
|
|
172
|
+
usage?: {
|
|
173
|
+
hyperopt?: any;
|
|
174
|
+
} | undefined;
|
|
175
|
+
$inc?: any;
|
|
164
176
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
165
177
|
timezone?: string | undefined;
|
|
166
178
|
subscribe?: string | undefined;
|
|
@@ -231,11 +243,15 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
231
243
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
232
244
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
233
245
|
}>>;
|
|
246
|
+
usage: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
247
|
+
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
248
|
+
}>>;
|
|
234
249
|
push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
235
250
|
web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
236
251
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
237
252
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
238
253
|
}>>;
|
|
254
|
+
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
239
255
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
240
256
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
241
257
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -293,6 +309,10 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
293
309
|
theme?: string | undefined;
|
|
294
310
|
layout?: string | undefined;
|
|
295
311
|
} | undefined;
|
|
312
|
+
usage?: {
|
|
313
|
+
hyperopt?: any;
|
|
314
|
+
} | undefined;
|
|
315
|
+
$inc?: any;
|
|
296
316
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
297
317
|
timezone?: string | undefined;
|
|
298
318
|
subscribe?: string | undefined;
|
|
@@ -363,11 +383,15 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
363
383
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
364
384
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
365
385
|
}>>;
|
|
386
|
+
usage: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
387
|
+
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
388
|
+
}>>;
|
|
366
389
|
push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
367
390
|
web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
368
391
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
369
392
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
370
393
|
}>>;
|
|
394
|
+
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
371
395
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
372
396
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
373
397
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -425,6 +449,10 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
425
449
|
theme?: string | undefined;
|
|
426
450
|
layout?: string | undefined;
|
|
427
451
|
} | undefined;
|
|
452
|
+
usage?: {
|
|
453
|
+
hyperopt?: any;
|
|
454
|
+
} | undefined;
|
|
455
|
+
$inc?: any;
|
|
428
456
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
429
457
|
timezone?: string | undefined;
|
|
430
458
|
subscribe?: string | undefined;
|
|
@@ -495,11 +523,15 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
495
523
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
496
524
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
497
525
|
}>>;
|
|
526
|
+
usage: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
527
|
+
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
528
|
+
}>>;
|
|
498
529
|
push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
499
530
|
web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
500
531
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
501
532
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
502
533
|
}>>;
|
|
534
|
+
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
503
535
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
504
536
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
505
537
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -3,7 +3,7 @@ import type { HookContext } from '../../../declarations';
|
|
|
3
3
|
import type { StrategiesHyperoptService } from './hyperopt.class';
|
|
4
4
|
export declare const strategiesHyperoptSchema: import("@feathersjs/typebox").TObject<{
|
|
5
5
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
6
|
-
strategyId: import("@feathersjs/typebox").
|
|
6
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
7
7
|
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
8
8
|
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
9
9
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -34,7 +34,6 @@ export type StrategiesHyperopt = Static<typeof strategiesHyperoptSchema>;
|
|
|
34
34
|
export declare const strategiesHyperoptValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
35
35
|
export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Resolver<{
|
|
36
36
|
exchangeId?: string | {} | undefined;
|
|
37
|
-
strategyId?: string | {} | undefined;
|
|
38
37
|
status?: string | undefined;
|
|
39
38
|
traderId?: string | {} | undefined;
|
|
40
39
|
jobId?: string | undefined;
|
|
@@ -53,6 +52,7 @@ export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Re
|
|
|
53
52
|
protections: boolean;
|
|
54
53
|
eps: boolean;
|
|
55
54
|
};
|
|
55
|
+
strategyId: string | {};
|
|
56
56
|
overrides: {
|
|
57
57
|
dry_run_wallet: number;
|
|
58
58
|
max_open_trades: number;
|
|
@@ -63,7 +63,6 @@ export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Re
|
|
|
63
63
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
64
64
|
export declare const strategiesHyperoptExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
65
65
|
exchangeId?: string | {} | undefined;
|
|
66
|
-
strategyId?: string | {} | undefined;
|
|
67
66
|
status?: string | undefined;
|
|
68
67
|
traderId?: string | {} | undefined;
|
|
69
68
|
jobId?: string | undefined;
|
|
@@ -82,6 +81,7 @@ export declare const strategiesHyperoptExternalResolver: import("@feathersjs/sch
|
|
|
82
81
|
protections: boolean;
|
|
83
82
|
eps: boolean;
|
|
84
83
|
};
|
|
84
|
+
strategyId: string | {};
|
|
85
85
|
overrides: {
|
|
86
86
|
dry_run_wallet: number;
|
|
87
87
|
max_open_trades: number;
|
|
@@ -92,7 +92,7 @@ export declare const strategiesHyperoptExternalResolver: import("@feathersjs/sch
|
|
|
92
92
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
93
93
|
export declare const strategiesHyperoptDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
94
94
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
95
|
-
strategyId: import("@feathersjs/typebox").
|
|
95
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
96
96
|
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
97
97
|
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
98
98
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -123,7 +123,6 @@ export type StrategiesHyperoptData = Static<typeof strategiesHyperoptDataSchema>
|
|
|
123
123
|
export declare const strategiesHyperoptDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
124
124
|
export declare const strategiesHyperoptDataResolver: import("@feathersjs/schema").Resolver<{
|
|
125
125
|
exchangeId?: string | {} | undefined;
|
|
126
|
-
strategyId?: string | {} | undefined;
|
|
127
126
|
status?: string | undefined;
|
|
128
127
|
traderId?: string | {} | undefined;
|
|
129
128
|
jobId?: string | undefined;
|
|
@@ -142,6 +141,7 @@ export declare const strategiesHyperoptDataResolver: import("@feathersjs/schema"
|
|
|
142
141
|
protections: boolean;
|
|
143
142
|
eps: boolean;
|
|
144
143
|
};
|
|
144
|
+
strategyId: string | {};
|
|
145
145
|
overrides: {
|
|
146
146
|
dry_run_wallet: number;
|
|
147
147
|
max_open_trades: number;
|
|
@@ -152,7 +152,7 @@ export declare const strategiesHyperoptDataResolver: import("@feathersjs/schema"
|
|
|
152
152
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
153
153
|
export declare const strategiesHyperoptPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
154
154
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
155
|
-
strategyId: import("@feathersjs/typebox").
|
|
155
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
156
156
|
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
157
157
|
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
158
158
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -183,7 +183,6 @@ export type StrategiesHyperoptPatch = Static<typeof strategiesHyperoptPatchSchem
|
|
|
183
183
|
export declare const strategiesHyperoptPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
184
184
|
export declare const strategiesHyperoptPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
185
185
|
exchangeId?: string | {} | undefined;
|
|
186
|
-
strategyId?: string | {} | undefined;
|
|
187
186
|
status?: string | undefined;
|
|
188
187
|
traderId?: string | {} | undefined;
|
|
189
188
|
jobId?: string | undefined;
|
|
@@ -202,6 +201,7 @@ export declare const strategiesHyperoptPatchResolver: import("@feathersjs/schema
|
|
|
202
201
|
protections: boolean;
|
|
203
202
|
eps: boolean;
|
|
204
203
|
};
|
|
204
|
+
strategyId: string | {};
|
|
205
205
|
overrides: {
|
|
206
206
|
dry_run_wallet: number;
|
|
207
207
|
max_open_trades: number;
|
|
@@ -212,7 +212,7 @@ export declare const strategiesHyperoptPatchResolver: import("@feathersjs/schema
|
|
|
212
212
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
213
213
|
export declare const strategiesHyperoptQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
214
214
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
215
|
-
strategyId: import("@feathersjs/typebox").
|
|
215
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
216
216
|
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
217
217
|
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
218
218
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -238,16 +238,18 @@ export declare const strategiesHyperoptQueryProperties: import("@feathersjs/type
|
|
|
238
238
|
job: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
239
239
|
jobName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
240
240
|
}>>;
|
|
241
|
-
}>, ["_id", "strategyId", "jobId"]>;
|
|
241
|
+
}>, ["_id", "strategyId", "status", "createdAt", "jobId"]>;
|
|
242
242
|
export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
243
243
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
244
244
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
245
245
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
246
246
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
247
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
247
248
|
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
249
|
+
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
248
250
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
249
251
|
}>;
|
|
250
|
-
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "strategyId" | "jobId")[]>;
|
|
252
|
+
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "strategyId" | "status" | "jobId")[]>;
|
|
251
253
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
252
254
|
_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<{
|
|
253
255
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -260,14 +262,36 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
260
262
|
}>, import("@feathersjs/typebox").TObject<{
|
|
261
263
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
262
264
|
} | undefined>]>>]>>;
|
|
263
|
-
|
|
264
|
-
$gt: import("@feathersjs/typebox").
|
|
265
|
-
$gte: import("@feathersjs/typebox").
|
|
266
|
-
$lt: import("@feathersjs/typebox").
|
|
267
|
-
$lte: import("@feathersjs/typebox").
|
|
268
|
-
$ne: import("@feathersjs/typebox").
|
|
269
|
-
$in: import("@feathersjs/typebox").
|
|
270
|
-
$nin: import("@feathersjs/typebox").
|
|
265
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
266
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
267
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
268
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
269
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
270
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
271
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
272
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
273
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
274
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
275
|
+
} | undefined>]>>]>>;
|
|
276
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
277
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
278
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
279
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
280
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
281
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
282
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
283
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
284
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
285
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
286
|
+
} | undefined>]>>]>>;
|
|
287
|
+
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
288
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
289
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
290
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
291
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
292
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
293
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
294
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
271
295
|
}>, import("@feathersjs/typebox").TObject<{
|
|
272
296
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
273
297
|
} | undefined>]>>]>>;
|
|
@@ -295,14 +319,36 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
295
319
|
}>, import("@feathersjs/typebox").TObject<{
|
|
296
320
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
297
321
|
} | undefined>]>>]>>;
|
|
298
|
-
|
|
299
|
-
$gt: import("@feathersjs/typebox").
|
|
300
|
-
$gte: import("@feathersjs/typebox").
|
|
301
|
-
$lt: import("@feathersjs/typebox").
|
|
302
|
-
$lte: import("@feathersjs/typebox").
|
|
303
|
-
$ne: import("@feathersjs/typebox").
|
|
304
|
-
$in: import("@feathersjs/typebox").
|
|
305
|
-
$nin: import("@feathersjs/typebox").
|
|
322
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
323
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
324
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
325
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
326
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
327
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
328
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
329
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
330
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
331
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
332
|
+
} | undefined>]>>]>>;
|
|
333
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
334
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
335
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
336
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
337
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
338
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
339
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
340
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
341
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
342
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
343
|
+
} | undefined>]>>]>>;
|
|
344
|
+
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
345
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
346
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
347
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
348
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
349
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
350
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
351
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
306
352
|
}>, import("@feathersjs/typebox").TObject<{
|
|
307
353
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
308
354
|
} | undefined>]>>]>>;
|
|
@@ -331,14 +377,36 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
331
377
|
}>, import("@feathersjs/typebox").TObject<{
|
|
332
378
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
333
379
|
} | undefined>]>>]>>;
|
|
334
|
-
|
|
335
|
-
$gt: import("@feathersjs/typebox").
|
|
336
|
-
$gte: import("@feathersjs/typebox").
|
|
337
|
-
$lt: import("@feathersjs/typebox").
|
|
338
|
-
$lte: import("@feathersjs/typebox").
|
|
339
|
-
$ne: import("@feathersjs/typebox").
|
|
340
|
-
$in: import("@feathersjs/typebox").
|
|
341
|
-
$nin: import("@feathersjs/typebox").
|
|
380
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
381
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
382
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
383
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
384
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
385
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
386
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
387
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
388
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
389
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
390
|
+
} | undefined>]>>]>>;
|
|
391
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
392
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
393
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
394
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
395
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
396
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
397
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
398
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
399
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
400
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
401
|
+
} | undefined>]>>]>>;
|
|
402
|
+
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
403
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
404
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
405
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
406
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
407
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
408
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
409
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
342
410
|
}>, import("@feathersjs/typebox").TObject<{
|
|
343
411
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
344
412
|
} | undefined>]>>]>>;
|
|
@@ -366,14 +434,36 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
366
434
|
}>, import("@feathersjs/typebox").TObject<{
|
|
367
435
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
368
436
|
} | undefined>]>>]>>;
|
|
369
|
-
|
|
370
|
-
$gt: import("@feathersjs/typebox").
|
|
371
|
-
$gte: import("@feathersjs/typebox").
|
|
372
|
-
$lt: import("@feathersjs/typebox").
|
|
373
|
-
$lte: import("@feathersjs/typebox").
|
|
374
|
-
$ne: import("@feathersjs/typebox").
|
|
375
|
-
$in: import("@feathersjs/typebox").
|
|
376
|
-
$nin: import("@feathersjs/typebox").
|
|
437
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
438
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
439
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
440
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
441
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
442
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
443
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
444
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
445
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
446
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
447
|
+
} | undefined>]>>]>>;
|
|
448
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
449
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
450
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
451
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
452
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
453
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
454
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
455
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
456
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
457
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
458
|
+
} | undefined>]>>]>>;
|
|
459
|
+
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
460
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
461
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
462
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
463
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
464
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
465
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
466
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
377
467
|
}>, import("@feathersjs/typebox").TObject<{
|
|
378
468
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
379
469
|
} | undefined>]>>]>>;
|
|
@@ -396,10 +486,12 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
396
486
|
$skip: number;
|
|
397
487
|
$sort: {
|
|
398
488
|
_id?: number | undefined;
|
|
489
|
+
createdAt?: number | undefined;
|
|
399
490
|
strategyId?: number | undefined;
|
|
491
|
+
status?: number | undefined;
|
|
400
492
|
jobId?: number | undefined;
|
|
401
493
|
};
|
|
402
|
-
$select: ("_id" | "strategyId" | "jobId")[];
|
|
494
|
+
$select: ("_id" | "createdAt" | "strategyId" | "status" | "jobId")[];
|
|
403
495
|
$and: ({
|
|
404
496
|
_id?: string | {} | Partial<{
|
|
405
497
|
$gt: string | {};
|
|
@@ -410,15 +502,25 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
410
502
|
$in: string | {} | (string | {})[];
|
|
411
503
|
$nin: string | {} | (string | {})[];
|
|
412
504
|
} & {}> | undefined;
|
|
505
|
+
createdAt?: any;
|
|
413
506
|
strategyId?: string | {} | Partial<{
|
|
414
|
-
$gt
|
|
415
|
-
$gte
|
|
416
|
-
$lt
|
|
417
|
-
$lte
|
|
418
|
-
$ne
|
|
507
|
+
$gt: string | {};
|
|
508
|
+
$gte: string | {};
|
|
509
|
+
$lt: string | {};
|
|
510
|
+
$lte: string | {};
|
|
511
|
+
$ne: string | {};
|
|
419
512
|
$in: string | {} | (string | {})[];
|
|
420
513
|
$nin: string | {} | (string | {})[];
|
|
421
514
|
} & {}> | undefined;
|
|
515
|
+
status?: string | Partial<{
|
|
516
|
+
$gt?: string | undefined;
|
|
517
|
+
$gte?: string | undefined;
|
|
518
|
+
$lt?: string | undefined;
|
|
519
|
+
$lte?: string | undefined;
|
|
520
|
+
$ne?: string | undefined;
|
|
521
|
+
$in: string | string[];
|
|
522
|
+
$nin: string | string[];
|
|
523
|
+
} & {}> | undefined;
|
|
422
524
|
jobId?: string | Partial<{
|
|
423
525
|
$gt?: string | undefined;
|
|
424
526
|
$gte?: string | undefined;
|
|
@@ -439,15 +541,25 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
439
541
|
$in: string | {} | (string | {})[];
|
|
440
542
|
$nin: string | {} | (string | {})[];
|
|
441
543
|
} & {}> | undefined;
|
|
544
|
+
createdAt?: any;
|
|
442
545
|
strategyId?: string | {} | Partial<{
|
|
443
|
-
$gt
|
|
444
|
-
$gte
|
|
445
|
-
$lt
|
|
446
|
-
$lte
|
|
447
|
-
$ne
|
|
546
|
+
$gt: string | {};
|
|
547
|
+
$gte: string | {};
|
|
548
|
+
$lt: string | {};
|
|
549
|
+
$lte: string | {};
|
|
550
|
+
$ne: string | {};
|
|
448
551
|
$in: string | {} | (string | {})[];
|
|
449
552
|
$nin: string | {} | (string | {})[];
|
|
450
553
|
} & {}> | undefined;
|
|
554
|
+
status?: string | Partial<{
|
|
555
|
+
$gt?: string | undefined;
|
|
556
|
+
$gte?: string | undefined;
|
|
557
|
+
$lt?: string | undefined;
|
|
558
|
+
$lte?: string | undefined;
|
|
559
|
+
$ne?: string | undefined;
|
|
560
|
+
$in: string | string[];
|
|
561
|
+
$nin: string | string[];
|
|
562
|
+
} & {}> | undefined;
|
|
451
563
|
jobId?: string | Partial<{
|
|
452
564
|
$gt?: string | undefined;
|
|
453
565
|
$gte?: string | undefined;
|
|
@@ -469,15 +581,25 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
469
581
|
$in: string | {} | (string | {})[];
|
|
470
582
|
$nin: string | {} | (string | {})[];
|
|
471
583
|
} & {}> | undefined;
|
|
584
|
+
createdAt?: any;
|
|
472
585
|
strategyId?: string | {} | Partial<{
|
|
473
|
-
$gt
|
|
474
|
-
$gte
|
|
475
|
-
$lt
|
|
476
|
-
$lte
|
|
477
|
-
$ne
|
|
586
|
+
$gt: string | {};
|
|
587
|
+
$gte: string | {};
|
|
588
|
+
$lt: string | {};
|
|
589
|
+
$lte: string | {};
|
|
590
|
+
$ne: string | {};
|
|
478
591
|
$in: string | {} | (string | {})[];
|
|
479
592
|
$nin: string | {} | (string | {})[];
|
|
480
593
|
} & {}> | undefined;
|
|
594
|
+
status?: string | Partial<{
|
|
595
|
+
$gt?: string | undefined;
|
|
596
|
+
$gte?: string | undefined;
|
|
597
|
+
$lt?: string | undefined;
|
|
598
|
+
$lte?: string | undefined;
|
|
599
|
+
$ne?: string | undefined;
|
|
600
|
+
$in: string | string[];
|
|
601
|
+
$nin: string | string[];
|
|
602
|
+
} & {}> | undefined;
|
|
481
603
|
jobId?: string | Partial<{
|
|
482
604
|
$gt?: string | undefined;
|
|
483
605
|
$gte?: string | undefined;
|
|
@@ -498,15 +620,25 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
498
620
|
$in: string | {} | (string | {})[];
|
|
499
621
|
$nin: string | {} | (string | {})[];
|
|
500
622
|
} & {}> | undefined;
|
|
623
|
+
createdAt?: any;
|
|
501
624
|
strategyId?: string | {} | Partial<{
|
|
502
|
-
$gt
|
|
503
|
-
$gte
|
|
504
|
-
$lt
|
|
505
|
-
$lte
|
|
506
|
-
$ne
|
|
625
|
+
$gt: string | {};
|
|
626
|
+
$gte: string | {};
|
|
627
|
+
$lt: string | {};
|
|
628
|
+
$lte: string | {};
|
|
629
|
+
$ne: string | {};
|
|
507
630
|
$in: string | {} | (string | {})[];
|
|
508
631
|
$nin: string | {} | (string | {})[];
|
|
509
632
|
} & {}> | undefined;
|
|
633
|
+
status?: string | Partial<{
|
|
634
|
+
$gt?: string | undefined;
|
|
635
|
+
$gte?: string | undefined;
|
|
636
|
+
$lt?: string | undefined;
|
|
637
|
+
$lte?: string | undefined;
|
|
638
|
+
$ne?: string | undefined;
|
|
639
|
+
$in: string | string[];
|
|
640
|
+
$nin: string | string[];
|
|
641
|
+
} & {}> | undefined;
|
|
510
642
|
jobId?: string | Partial<{
|
|
511
643
|
$gt?: string | undefined;
|
|
512
644
|
$gte?: string | undefined;
|
|
@@ -23,10 +23,6 @@ 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
|
-
createdAt?: any;
|
|
27
|
-
description?: string | undefined;
|
|
28
|
-
options?: any;
|
|
29
|
-
alias?: string | undefined;
|
|
30
26
|
hyperopt?: {
|
|
31
27
|
default: number;
|
|
32
28
|
max: number;
|
|
@@ -35,15 +31,15 @@ export declare const strategiesIndicatorsResolver: import("@feathersjs/schema").
|
|
|
35
31
|
field: string;
|
|
36
32
|
space: string;
|
|
37
33
|
}[] | undefined;
|
|
34
|
+
createdAt?: any;
|
|
35
|
+
description?: string | undefined;
|
|
36
|
+
options?: any;
|
|
37
|
+
alias?: string | undefined;
|
|
38
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
|
-
createdAt?: any;
|
|
44
|
-
description?: string | undefined;
|
|
45
|
-
options?: any;
|
|
46
|
-
alias?: string | undefined;
|
|
47
43
|
hyperopt?: {
|
|
48
44
|
default: number;
|
|
49
45
|
max: number;
|
|
@@ -52,6 +48,10 @@ export declare const strategiesIndicatorsExternalResolver: import("@feathersjs/s
|
|
|
52
48
|
field: string;
|
|
53
49
|
space: string;
|
|
54
50
|
}[] | undefined;
|
|
51
|
+
createdAt?: any;
|
|
52
|
+
description?: string | undefined;
|
|
53
|
+
options?: any;
|
|
54
|
+
alias?: string | undefined;
|
|
55
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<{
|
|
@@ -76,10 +76,6 @@ export declare const strategiesIndicatorsDataValidator: import("@feathersjs/sche
|
|
|
76
76
|
export declare const strategiesIndicatorsDataResolver: import("@feathersjs/schema").Resolver<{
|
|
77
77
|
object?: string | undefined;
|
|
78
78
|
name?: string | undefined;
|
|
79
|
-
createdAt?: any;
|
|
80
|
-
description?: string | undefined;
|
|
81
|
-
options?: any;
|
|
82
|
-
alias?: string | undefined;
|
|
83
79
|
hyperopt?: {
|
|
84
80
|
default: number;
|
|
85
81
|
max: number;
|
|
@@ -88,6 +84,10 @@ export declare const strategiesIndicatorsDataResolver: import("@feathersjs/schem
|
|
|
88
84
|
field: string;
|
|
89
85
|
space: string;
|
|
90
86
|
}[] | undefined;
|
|
87
|
+
createdAt?: any;
|
|
88
|
+
description?: string | undefined;
|
|
89
|
+
options?: any;
|
|
90
|
+
alias?: string | undefined;
|
|
91
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<{
|
|
@@ -112,10 +112,6 @@ 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
|
-
createdAt?: any;
|
|
116
|
-
description?: string | undefined;
|
|
117
|
-
options?: any;
|
|
118
|
-
alias?: string | undefined;
|
|
119
115
|
hyperopt?: {
|
|
120
116
|
default: number;
|
|
121
117
|
max: number;
|
|
@@ -124,6 +120,10 @@ export declare const strategiesIndicatorsPatchResolver: import("@feathersjs/sche
|
|
|
124
120
|
field: string;
|
|
125
121
|
space: string;
|
|
126
122
|
}[] | undefined;
|
|
123
|
+
createdAt?: any;
|
|
124
|
+
description?: string | undefined;
|
|
125
|
+
options?: any;
|
|
126
|
+
alias?: string | undefined;
|
|
127
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<{
|
|
@@ -25,11 +25,15 @@ export declare const userSchema: import("@feathersjs/typebox").TObject<{
|
|
|
25
25
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
26
26
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
27
27
|
}>>;
|
|
28
|
+
usage: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
29
|
+
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
30
|
+
}>>;
|
|
28
31
|
push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
29
32
|
web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
30
33
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
31
34
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
32
35
|
}>>;
|
|
36
|
+
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
33
37
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
34
38
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
35
39
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -80,6 +84,10 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
80
84
|
theme?: string | undefined;
|
|
81
85
|
layout?: string | undefined;
|
|
82
86
|
} | undefined;
|
|
87
|
+
usage?: {
|
|
88
|
+
hyperopt?: any;
|
|
89
|
+
} | undefined;
|
|
90
|
+
$inc?: any;
|
|
83
91
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
84
92
|
timezone?: string | undefined;
|
|
85
93
|
subscribe?: string | undefined;
|
|
@@ -131,6 +139,10 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
131
139
|
theme?: string | undefined;
|
|
132
140
|
layout?: string | undefined;
|
|
133
141
|
} | undefined;
|
|
142
|
+
usage?: {
|
|
143
|
+
hyperopt?: any;
|
|
144
|
+
} | undefined;
|
|
145
|
+
$inc?: any;
|
|
134
146
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
135
147
|
timezone?: string | undefined;
|
|
136
148
|
subscribe?: string | undefined;
|
|
@@ -180,11 +192,15 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
180
192
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
181
193
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
182
194
|
}>>;
|
|
195
|
+
usage: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
196
|
+
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
197
|
+
}>>;
|
|
183
198
|
push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
184
199
|
web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
185
200
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
186
201
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
187
202
|
}>>;
|
|
203
|
+
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
188
204
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
189
205
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
190
206
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -235,6 +251,10 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
235
251
|
theme?: string | undefined;
|
|
236
252
|
layout?: string | undefined;
|
|
237
253
|
} | undefined;
|
|
254
|
+
usage?: {
|
|
255
|
+
hyperopt?: any;
|
|
256
|
+
} | undefined;
|
|
257
|
+
$inc?: any;
|
|
238
258
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
239
259
|
timezone?: string | undefined;
|
|
240
260
|
subscribe?: string | undefined;
|
|
@@ -284,11 +304,15 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
|
|
|
284
304
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
285
305
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
286
306
|
}>>;
|
|
307
|
+
usage: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
308
|
+
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
309
|
+
}>>;
|
|
287
310
|
push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
288
311
|
web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
289
312
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
290
313
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
291
314
|
}>>;
|
|
315
|
+
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
292
316
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
293
317
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
294
318
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -339,6 +363,10 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
339
363
|
theme?: string | undefined;
|
|
340
364
|
layout?: string | undefined;
|
|
341
365
|
} | undefined;
|
|
366
|
+
usage?: {
|
|
367
|
+
hyperopt?: any;
|
|
368
|
+
} | undefined;
|
|
369
|
+
$inc?: any;
|
|
342
370
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
343
371
|
timezone?: string | undefined;
|
|
344
372
|
subscribe?: string | undefined;
|
|
@@ -388,11 +416,15 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
388
416
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
389
417
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
390
418
|
}>>;
|
|
419
|
+
usage: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
420
|
+
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
421
|
+
}>>;
|
|
391
422
|
push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
392
423
|
web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
393
424
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
394
425
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
395
426
|
}>>;
|
|
427
|
+
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
396
428
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
397
429
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
398
430
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|