@cryptorobot.ai/client 0.0.28 → 0.0.30
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.
|
@@ -18,4 +18,5 @@ export declare class HyperoptHelper {
|
|
|
18
18
|
static promisifyStream(container: any): Promise<any>;
|
|
19
19
|
static getOptimalParamsFromDisk(context: HookContext): any;
|
|
20
20
|
static getBestHyperoptExecution(context: HookContext): Promise<any>;
|
|
21
|
+
static updateProgressOfRunningExecutions(context: HookContext): object;
|
|
21
22
|
}
|
|
@@ -19,10 +19,12 @@ export declare const strategiesHyperoptSchema: import("@feathersjs/typebox").TOb
|
|
|
19
19
|
function: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ShortTradeDurHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"OnlyProfitHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"SharpeHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"SharpeHyperOptLossDaily">, import("@feathersjs/typebox").TLiteral<"SortinoHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"SortinoHyperOptLossDaily">, import("@feathersjs/typebox").TLiteral<"CalmarHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"MaxDrawDownHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"MaxDrawDownRelativeHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"ProfitDrawDownHyperOptLoss">]>;
|
|
20
20
|
start: import("@feathersjs/typebox").TAny;
|
|
21
21
|
end: import("@feathersjs/typebox").TAny;
|
|
22
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
22
23
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
23
24
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
24
25
|
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
25
26
|
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
27
|
+
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
26
28
|
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
27
29
|
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
28
30
|
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -33,6 +35,7 @@ export declare const strategiesHyperoptSchema: import("@feathersjs/typebox").TOb
|
|
|
33
35
|
export type StrategiesHyperopt = Static<typeof strategiesHyperoptSchema>;
|
|
34
36
|
export declare const strategiesHyperoptValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
35
37
|
export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Resolver<{
|
|
38
|
+
results?: any;
|
|
36
39
|
exchangeId?: string | {} | undefined;
|
|
37
40
|
status?: string | undefined;
|
|
38
41
|
traderId?: string | {} | undefined;
|
|
@@ -41,6 +44,7 @@ export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Re
|
|
|
41
44
|
stoppedAt?: any;
|
|
42
45
|
took?: number | undefined;
|
|
43
46
|
attempts?: any;
|
|
47
|
+
progress?: any;
|
|
44
48
|
job?: {
|
|
45
49
|
jobName?: string | undefined;
|
|
46
50
|
} | undefined;
|
|
@@ -62,6 +66,7 @@ export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Re
|
|
|
62
66
|
epochs: number;
|
|
63
67
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
64
68
|
export declare const strategiesHyperoptExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
69
|
+
results?: any;
|
|
65
70
|
exchangeId?: string | {} | undefined;
|
|
66
71
|
status?: string | undefined;
|
|
67
72
|
traderId?: string | {} | undefined;
|
|
@@ -70,6 +75,7 @@ export declare const strategiesHyperoptExternalResolver: import("@feathersjs/sch
|
|
|
70
75
|
stoppedAt?: any;
|
|
71
76
|
took?: number | undefined;
|
|
72
77
|
attempts?: any;
|
|
78
|
+
progress?: any;
|
|
73
79
|
job?: {
|
|
74
80
|
jobName?: string | undefined;
|
|
75
81
|
} | undefined;
|
|
@@ -108,10 +114,12 @@ export declare const strategiesHyperoptDataSchema: import("@feathersjs/typebox")
|
|
|
108
114
|
function: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ShortTradeDurHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"OnlyProfitHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"SharpeHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"SharpeHyperOptLossDaily">, import("@feathersjs/typebox").TLiteral<"SortinoHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"SortinoHyperOptLossDaily">, import("@feathersjs/typebox").TLiteral<"CalmarHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"MaxDrawDownHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"MaxDrawDownRelativeHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"ProfitDrawDownHyperOptLoss">]>;
|
|
109
115
|
start: import("@feathersjs/typebox").TAny;
|
|
110
116
|
end: import("@feathersjs/typebox").TAny;
|
|
117
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
111
118
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
112
119
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
113
120
|
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
114
121
|
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
122
|
+
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
115
123
|
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
116
124
|
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
117
125
|
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -122,6 +130,7 @@ export declare const strategiesHyperoptDataSchema: import("@feathersjs/typebox")
|
|
|
122
130
|
export type StrategiesHyperoptData = Static<typeof strategiesHyperoptDataSchema>;
|
|
123
131
|
export declare const strategiesHyperoptDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
124
132
|
export declare const strategiesHyperoptDataResolver: import("@feathersjs/schema").Resolver<{
|
|
133
|
+
results?: any;
|
|
125
134
|
exchangeId?: string | {} | undefined;
|
|
126
135
|
status?: string | undefined;
|
|
127
136
|
traderId?: string | {} | undefined;
|
|
@@ -130,6 +139,7 @@ export declare const strategiesHyperoptDataResolver: import("@feathersjs/schema"
|
|
|
130
139
|
stoppedAt?: any;
|
|
131
140
|
took?: number | undefined;
|
|
132
141
|
attempts?: any;
|
|
142
|
+
progress?: any;
|
|
133
143
|
job?: {
|
|
134
144
|
jobName?: string | undefined;
|
|
135
145
|
} | undefined;
|
|
@@ -168,10 +178,12 @@ export declare const strategiesHyperoptPatchSchema: import("@feathersjs/typebox"
|
|
|
168
178
|
function: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ShortTradeDurHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"OnlyProfitHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"SharpeHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"SharpeHyperOptLossDaily">, import("@feathersjs/typebox").TLiteral<"SortinoHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"SortinoHyperOptLossDaily">, import("@feathersjs/typebox").TLiteral<"CalmarHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"MaxDrawDownHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"MaxDrawDownRelativeHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"ProfitDrawDownHyperOptLoss">]>;
|
|
169
179
|
start: import("@feathersjs/typebox").TAny;
|
|
170
180
|
end: import("@feathersjs/typebox").TAny;
|
|
181
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
171
182
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
172
183
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
173
184
|
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
174
185
|
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
186
|
+
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
175
187
|
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
176
188
|
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
177
189
|
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -182,6 +194,7 @@ export declare const strategiesHyperoptPatchSchema: import("@feathersjs/typebox"
|
|
|
182
194
|
export type StrategiesHyperoptPatch = Static<typeof strategiesHyperoptPatchSchema>;
|
|
183
195
|
export declare const strategiesHyperoptPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
184
196
|
export declare const strategiesHyperoptPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
197
|
+
results?: any;
|
|
185
198
|
exchangeId?: string | {} | undefined;
|
|
186
199
|
status?: string | undefined;
|
|
187
200
|
traderId?: string | {} | undefined;
|
|
@@ -190,6 +203,7 @@ export declare const strategiesHyperoptPatchResolver: import("@feathersjs/schema
|
|
|
190
203
|
stoppedAt?: any;
|
|
191
204
|
took?: number | undefined;
|
|
192
205
|
attempts?: any;
|
|
206
|
+
progress?: any;
|
|
193
207
|
job?: {
|
|
194
208
|
jobName?: string | undefined;
|
|
195
209
|
} | undefined;
|
|
@@ -228,28 +242,32 @@ export declare const strategiesHyperoptQueryProperties: import("@feathersjs/type
|
|
|
228
242
|
function: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ShortTradeDurHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"OnlyProfitHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"SharpeHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"SharpeHyperOptLossDaily">, import("@feathersjs/typebox").TLiteral<"SortinoHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"SortinoHyperOptLossDaily">, import("@feathersjs/typebox").TLiteral<"CalmarHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"MaxDrawDownHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"MaxDrawDownRelativeHyperOptLoss">, import("@feathersjs/typebox").TLiteral<"ProfitDrawDownHyperOptLoss">]>;
|
|
229
243
|
start: import("@feathersjs/typebox").TAny;
|
|
230
244
|
end: import("@feathersjs/typebox").TAny;
|
|
245
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
231
246
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
232
247
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
233
248
|
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
234
249
|
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
250
|
+
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
235
251
|
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
236
252
|
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
237
253
|
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
238
254
|
job: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
239
255
|
jobName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
240
256
|
}>>;
|
|
241
|
-
}>, ["_id", "strategyId", "status", "createdAt", "jobId"]>;
|
|
257
|
+
}>, ["_id", "strategyId", "status", "createdAt", "results", "jobId", "progress"]>;
|
|
242
258
|
export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
243
259
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
244
260
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
245
261
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
246
262
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
247
263
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
264
|
+
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
248
265
|
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
249
266
|
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
250
267
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
268
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
251
269
|
}>;
|
|
252
|
-
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "strategyId" | "status" | "jobId")[]>;
|
|
270
|
+
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "results" | "strategyId" | "status" | "jobId" | "progress")[]>;
|
|
253
271
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
254
272
|
_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<{
|
|
255
273
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -273,6 +291,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
273
291
|
}>, import("@feathersjs/typebox").TObject<{
|
|
274
292
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
275
293
|
} | undefined>]>>]>>;
|
|
294
|
+
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
295
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
296
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
297
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
298
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
299
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
300
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
301
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
302
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
303
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
304
|
+
} | undefined>]>>]>>;
|
|
276
305
|
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
306
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
278
307
|
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
@@ -306,6 +335,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
306
335
|
}>, import("@feathersjs/typebox").TObject<{
|
|
307
336
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
308
337
|
} | undefined>]>>]>>;
|
|
338
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
339
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
340
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
341
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
342
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
343
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
344
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
345
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
346
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
347
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
348
|
+
} | undefined>]>>]>>;
|
|
309
349
|
}>>, import("@feathersjs/typebox").TObject<{
|
|
310
350
|
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
311
351
|
_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<{
|
|
@@ -330,6 +370,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
330
370
|
}>, import("@feathersjs/typebox").TObject<{
|
|
331
371
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
332
372
|
} | undefined>]>>]>>;
|
|
373
|
+
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
374
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
375
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
376
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
377
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
378
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
379
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
380
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
381
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
382
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
383
|
+
} | undefined>]>>]>>;
|
|
333
384
|
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
385
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
335
386
|
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
@@ -363,6 +414,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
363
414
|
}>, import("@feathersjs/typebox").TObject<{
|
|
364
415
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
365
416
|
} | undefined>]>>]>>;
|
|
417
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
418
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
419
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
420
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
421
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
422
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
423
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
424
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
425
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
426
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
427
|
+
} | undefined>]>>]>>;
|
|
366
428
|
}>>>;
|
|
367
429
|
}>]>>;
|
|
368
430
|
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -388,6 +450,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
388
450
|
}>, import("@feathersjs/typebox").TObject<{
|
|
389
451
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
390
452
|
} | undefined>]>>]>>;
|
|
453
|
+
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
454
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
455
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
456
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
457
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
458
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
459
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
460
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
461
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
462
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
463
|
+
} | undefined>]>>]>>;
|
|
391
464
|
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
465
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
393
466
|
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
@@ -421,6 +494,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
421
494
|
}>, import("@feathersjs/typebox").TObject<{
|
|
422
495
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
423
496
|
} | undefined>]>>]>>;
|
|
497
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
498
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
499
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
500
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
501
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
502
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
503
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
504
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
505
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
506
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
507
|
+
} | undefined>]>>]>>;
|
|
424
508
|
}>>>;
|
|
425
509
|
}>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
426
510
|
_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<{
|
|
@@ -445,6 +529,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
445
529
|
}>, import("@feathersjs/typebox").TObject<{
|
|
446
530
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
447
531
|
} | undefined>]>>]>>;
|
|
532
|
+
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
533
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
534
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
535
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
536
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
537
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
538
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
539
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
540
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
541
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
542
|
+
} | undefined>]>>]>>;
|
|
448
543
|
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
544
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
450
545
|
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
@@ -478,6 +573,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
478
573
|
}>, import("@feathersjs/typebox").TObject<{
|
|
479
574
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
480
575
|
} | undefined>]>>]>>;
|
|
576
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
577
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
578
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
579
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
580
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
581
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
582
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
583
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
584
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
585
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
586
|
+
} | undefined>]>>]>>;
|
|
481
587
|
}>>]>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
482
588
|
export type StrategiesHyperoptQuery = Static<typeof strategiesHyperoptQuerySchema>;
|
|
483
589
|
export declare const strategiesHyperoptQueryValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
@@ -487,11 +593,13 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
487
593
|
$sort: {
|
|
488
594
|
_id?: number | undefined;
|
|
489
595
|
createdAt?: number | undefined;
|
|
596
|
+
results?: number | undefined;
|
|
490
597
|
strategyId?: number | undefined;
|
|
491
598
|
status?: number | undefined;
|
|
492
599
|
jobId?: number | undefined;
|
|
600
|
+
progress?: number | undefined;
|
|
493
601
|
};
|
|
494
|
-
$select: ("_id" | "createdAt" | "strategyId" | "status" | "jobId")[];
|
|
602
|
+
$select: ("_id" | "createdAt" | "results" | "strategyId" | "status" | "jobId" | "progress")[];
|
|
495
603
|
$and: ({
|
|
496
604
|
_id?: string | {} | Partial<{
|
|
497
605
|
$gt: string | {};
|
|
@@ -503,6 +611,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
503
611
|
$nin: string | {} | (string | {})[];
|
|
504
612
|
} & {}> | undefined;
|
|
505
613
|
createdAt?: any;
|
|
614
|
+
results?: any;
|
|
506
615
|
strategyId?: string | {} | Partial<{
|
|
507
616
|
$gt: string | {};
|
|
508
617
|
$gte: string | {};
|
|
@@ -530,6 +639,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
530
639
|
$in: string | string[];
|
|
531
640
|
$nin: string | string[];
|
|
532
641
|
} & {}> | undefined;
|
|
642
|
+
progress?: any;
|
|
533
643
|
} | {
|
|
534
644
|
$or: {
|
|
535
645
|
_id?: string | {} | Partial<{
|
|
@@ -542,6 +652,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
542
652
|
$nin: string | {} | (string | {})[];
|
|
543
653
|
} & {}> | undefined;
|
|
544
654
|
createdAt?: any;
|
|
655
|
+
results?: any;
|
|
545
656
|
strategyId?: string | {} | Partial<{
|
|
546
657
|
$gt: string | {};
|
|
547
658
|
$gte: string | {};
|
|
@@ -569,6 +680,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
569
680
|
$in: string | string[];
|
|
570
681
|
$nin: string | string[];
|
|
571
682
|
} & {}> | undefined;
|
|
683
|
+
progress?: any;
|
|
572
684
|
}[];
|
|
573
685
|
})[];
|
|
574
686
|
$or: {
|
|
@@ -582,6 +694,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
582
694
|
$nin: string | {} | (string | {})[];
|
|
583
695
|
} & {}> | undefined;
|
|
584
696
|
createdAt?: any;
|
|
697
|
+
results?: any;
|
|
585
698
|
strategyId?: string | {} | Partial<{
|
|
586
699
|
$gt: string | {};
|
|
587
700
|
$gte: string | {};
|
|
@@ -609,6 +722,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
609
722
|
$in: string | string[];
|
|
610
723
|
$nin: string | string[];
|
|
611
724
|
} & {}> | undefined;
|
|
725
|
+
progress?: any;
|
|
612
726
|
}[];
|
|
613
727
|
}> & {
|
|
614
728
|
_id?: string | {} | Partial<{
|
|
@@ -621,6 +735,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
621
735
|
$nin: string | {} | (string | {})[];
|
|
622
736
|
} & {}> | undefined;
|
|
623
737
|
createdAt?: any;
|
|
738
|
+
results?: any;
|
|
624
739
|
strategyId?: string | {} | Partial<{
|
|
625
740
|
$gt: string | {};
|
|
626
741
|
$gte: string | {};
|
|
@@ -648,4 +763,5 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
648
763
|
$in: string | string[];
|
|
649
764
|
$nin: string | string[];
|
|
650
765
|
} & {}> | undefined;
|
|
766
|
+
progress?: any;
|
|
651
767
|
} & {}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
package/package.json
CHANGED