@cryptorobot.ai/client 0.0.27 → 0.0.29
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 +5 -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 +253 -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,11 @@ 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>;
|
|
21
|
+
static updateProgressOfRunningExecutions(context: HookContext): object;
|
|
19
22
|
}
|
|
@@ -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>>;
|
|
@@ -19,6 +19,7 @@ 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>;
|
|
@@ -34,7 +35,6 @@ export type StrategiesHyperopt = Static<typeof strategiesHyperoptSchema>;
|
|
|
34
35
|
export declare const strategiesHyperoptValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
35
36
|
export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Resolver<{
|
|
36
37
|
exchangeId?: string | {} | undefined;
|
|
37
|
-
strategyId?: string | {} | undefined;
|
|
38
38
|
status?: string | undefined;
|
|
39
39
|
traderId?: string | {} | undefined;
|
|
40
40
|
jobId?: string | undefined;
|
|
@@ -42,6 +42,7 @@ export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Re
|
|
|
42
42
|
stoppedAt?: any;
|
|
43
43
|
took?: number | undefined;
|
|
44
44
|
attempts?: any;
|
|
45
|
+
progress?: any;
|
|
45
46
|
job?: {
|
|
46
47
|
jobName?: string | undefined;
|
|
47
48
|
} | undefined;
|
|
@@ -53,6 +54,7 @@ export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Re
|
|
|
53
54
|
protections: boolean;
|
|
54
55
|
eps: boolean;
|
|
55
56
|
};
|
|
57
|
+
strategyId: string | {};
|
|
56
58
|
overrides: {
|
|
57
59
|
dry_run_wallet: number;
|
|
58
60
|
max_open_trades: number;
|
|
@@ -63,7 +65,6 @@ export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Re
|
|
|
63
65
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
64
66
|
export declare const strategiesHyperoptExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
65
67
|
exchangeId?: string | {} | undefined;
|
|
66
|
-
strategyId?: string | {} | undefined;
|
|
67
68
|
status?: string | undefined;
|
|
68
69
|
traderId?: string | {} | undefined;
|
|
69
70
|
jobId?: string | undefined;
|
|
@@ -71,6 +72,7 @@ export declare const strategiesHyperoptExternalResolver: import("@feathersjs/sch
|
|
|
71
72
|
stoppedAt?: any;
|
|
72
73
|
took?: number | undefined;
|
|
73
74
|
attempts?: any;
|
|
75
|
+
progress?: any;
|
|
74
76
|
job?: {
|
|
75
77
|
jobName?: string | undefined;
|
|
76
78
|
} | undefined;
|
|
@@ -82,6 +84,7 @@ export declare const strategiesHyperoptExternalResolver: import("@feathersjs/sch
|
|
|
82
84
|
protections: boolean;
|
|
83
85
|
eps: boolean;
|
|
84
86
|
};
|
|
87
|
+
strategyId: string | {};
|
|
85
88
|
overrides: {
|
|
86
89
|
dry_run_wallet: number;
|
|
87
90
|
max_open_trades: number;
|
|
@@ -92,7 +95,7 @@ export declare const strategiesHyperoptExternalResolver: import("@feathersjs/sch
|
|
|
92
95
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
93
96
|
export declare const strategiesHyperoptDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
94
97
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
95
|
-
strategyId: import("@feathersjs/typebox").
|
|
98
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
96
99
|
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
100
|
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
101
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -108,6 +111,7 @@ export declare const strategiesHyperoptDataSchema: import("@feathersjs/typebox")
|
|
|
108
111
|
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
112
|
start: import("@feathersjs/typebox").TAny;
|
|
110
113
|
end: import("@feathersjs/typebox").TAny;
|
|
114
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
111
115
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
112
116
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
113
117
|
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -123,7 +127,6 @@ export type StrategiesHyperoptData = Static<typeof strategiesHyperoptDataSchema>
|
|
|
123
127
|
export declare const strategiesHyperoptDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
124
128
|
export declare const strategiesHyperoptDataResolver: import("@feathersjs/schema").Resolver<{
|
|
125
129
|
exchangeId?: string | {} | undefined;
|
|
126
|
-
strategyId?: string | {} | undefined;
|
|
127
130
|
status?: string | undefined;
|
|
128
131
|
traderId?: string | {} | undefined;
|
|
129
132
|
jobId?: string | undefined;
|
|
@@ -131,6 +134,7 @@ export declare const strategiesHyperoptDataResolver: import("@feathersjs/schema"
|
|
|
131
134
|
stoppedAt?: any;
|
|
132
135
|
took?: number | undefined;
|
|
133
136
|
attempts?: any;
|
|
137
|
+
progress?: any;
|
|
134
138
|
job?: {
|
|
135
139
|
jobName?: string | undefined;
|
|
136
140
|
} | undefined;
|
|
@@ -142,6 +146,7 @@ export declare const strategiesHyperoptDataResolver: import("@feathersjs/schema"
|
|
|
142
146
|
protections: boolean;
|
|
143
147
|
eps: boolean;
|
|
144
148
|
};
|
|
149
|
+
strategyId: string | {};
|
|
145
150
|
overrides: {
|
|
146
151
|
dry_run_wallet: number;
|
|
147
152
|
max_open_trades: number;
|
|
@@ -152,7 +157,7 @@ export declare const strategiesHyperoptDataResolver: import("@feathersjs/schema"
|
|
|
152
157
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
153
158
|
export declare const strategiesHyperoptPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
154
159
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
155
|
-
strategyId: import("@feathersjs/typebox").
|
|
160
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
156
161
|
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
162
|
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
163
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -168,6 +173,7 @@ export declare const strategiesHyperoptPatchSchema: import("@feathersjs/typebox"
|
|
|
168
173
|
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
174
|
start: import("@feathersjs/typebox").TAny;
|
|
170
175
|
end: import("@feathersjs/typebox").TAny;
|
|
176
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
171
177
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
172
178
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
173
179
|
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -183,7 +189,6 @@ export type StrategiesHyperoptPatch = Static<typeof strategiesHyperoptPatchSchem
|
|
|
183
189
|
export declare const strategiesHyperoptPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
184
190
|
export declare const strategiesHyperoptPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
185
191
|
exchangeId?: string | {} | undefined;
|
|
186
|
-
strategyId?: string | {} | undefined;
|
|
187
192
|
status?: string | undefined;
|
|
188
193
|
traderId?: string | {} | undefined;
|
|
189
194
|
jobId?: string | undefined;
|
|
@@ -191,6 +196,7 @@ export declare const strategiesHyperoptPatchResolver: import("@feathersjs/schema
|
|
|
191
196
|
stoppedAt?: any;
|
|
192
197
|
took?: number | undefined;
|
|
193
198
|
attempts?: any;
|
|
199
|
+
progress?: any;
|
|
194
200
|
job?: {
|
|
195
201
|
jobName?: string | undefined;
|
|
196
202
|
} | undefined;
|
|
@@ -202,6 +208,7 @@ export declare const strategiesHyperoptPatchResolver: import("@feathersjs/schema
|
|
|
202
208
|
protections: boolean;
|
|
203
209
|
eps: boolean;
|
|
204
210
|
};
|
|
211
|
+
strategyId: string | {};
|
|
205
212
|
overrides: {
|
|
206
213
|
dry_run_wallet: number;
|
|
207
214
|
max_open_trades: number;
|
|
@@ -212,7 +219,7 @@ export declare const strategiesHyperoptPatchResolver: import("@feathersjs/schema
|
|
|
212
219
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
213
220
|
export declare const strategiesHyperoptQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
214
221
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
215
|
-
strategyId: import("@feathersjs/typebox").
|
|
222
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
216
223
|
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
224
|
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
225
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -228,6 +235,7 @@ export declare const strategiesHyperoptQueryProperties: import("@feathersjs/type
|
|
|
228
235
|
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
236
|
start: import("@feathersjs/typebox").TAny;
|
|
230
237
|
end: import("@feathersjs/typebox").TAny;
|
|
238
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
231
239
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
232
240
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
233
241
|
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -238,16 +246,19 @@ export declare const strategiesHyperoptQueryProperties: import("@feathersjs/type
|
|
|
238
246
|
job: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
239
247
|
jobName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
240
248
|
}>>;
|
|
241
|
-
}>, ["_id", "strategyId", "jobId"]>;
|
|
249
|
+
}>, ["_id", "strategyId", "status", "createdAt", "jobId", "progress"]>;
|
|
242
250
|
export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
243
251
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
244
252
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
245
253
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
246
254
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
255
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
247
256
|
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
257
|
+
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
248
258
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
259
|
+
progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
249
260
|
}>;
|
|
250
|
-
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "strategyId" | "jobId")[]>;
|
|
261
|
+
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "strategyId" | "status" | "jobId" | "progress")[]>;
|
|
251
262
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
252
263
|
_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
264
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -260,14 +271,36 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
260
271
|
}>, import("@feathersjs/typebox").TObject<{
|
|
261
272
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
262
273
|
} | 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").
|
|
274
|
+
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<{
|
|
275
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
276
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
277
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
278
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
279
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
280
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
281
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
282
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
283
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
284
|
+
} | undefined>]>>]>>;
|
|
285
|
+
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<{
|
|
286
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
287
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
288
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
289
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
290
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
291
|
+
$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>]>>;
|
|
292
|
+
$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>]>>;
|
|
293
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
294
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
295
|
+
} | undefined>]>>]>>;
|
|
296
|
+
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<{
|
|
297
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
298
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
299
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
300
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
301
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
302
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
303
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
271
304
|
}>, import("@feathersjs/typebox").TObject<{
|
|
272
305
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
273
306
|
} | undefined>]>>]>>;
|
|
@@ -282,6 +315,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
282
315
|
}>, import("@feathersjs/typebox").TObject<{
|
|
283
316
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
284
317
|
} | undefined>]>>]>>;
|
|
318
|
+
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<{
|
|
319
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
320
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
321
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
322
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
323
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
324
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
325
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
326
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
327
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
328
|
+
} | undefined>]>>]>>;
|
|
285
329
|
}>>, import("@feathersjs/typebox").TObject<{
|
|
286
330
|
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
287
331
|
_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<{
|
|
@@ -295,14 +339,36 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
295
339
|
}>, import("@feathersjs/typebox").TObject<{
|
|
296
340
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
297
341
|
} | 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").
|
|
342
|
+
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<{
|
|
343
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
344
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
345
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
346
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
347
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
348
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
349
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
350
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
351
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
352
|
+
} | undefined>]>>]>>;
|
|
353
|
+
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<{
|
|
354
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
355
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
356
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
357
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
358
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
359
|
+
$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>]>>;
|
|
360
|
+
$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>]>>;
|
|
361
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
362
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
363
|
+
} | undefined>]>>]>>;
|
|
364
|
+
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<{
|
|
365
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
366
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
367
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
368
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
369
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
370
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
371
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
306
372
|
}>, import("@feathersjs/typebox").TObject<{
|
|
307
373
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
308
374
|
} | undefined>]>>]>>;
|
|
@@ -317,6 +383,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
317
383
|
}>, import("@feathersjs/typebox").TObject<{
|
|
318
384
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
319
385
|
} | undefined>]>>]>>;
|
|
386
|
+
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<{
|
|
387
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
388
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
389
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
390
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
391
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
392
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
393
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
394
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
395
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
396
|
+
} | undefined>]>>]>>;
|
|
320
397
|
}>>>;
|
|
321
398
|
}>]>>;
|
|
322
399
|
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -331,14 +408,36 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
331
408
|
}>, import("@feathersjs/typebox").TObject<{
|
|
332
409
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
333
410
|
} | 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").
|
|
411
|
+
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<{
|
|
412
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
413
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
414
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
415
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
416
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
417
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
418
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
419
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
420
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
421
|
+
} | undefined>]>>]>>;
|
|
422
|
+
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<{
|
|
423
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
424
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
425
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
426
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
427
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
428
|
+
$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>]>>;
|
|
429
|
+
$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>]>>;
|
|
430
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
431
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
432
|
+
} | undefined>]>>]>>;
|
|
433
|
+
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<{
|
|
434
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
435
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
436
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
437
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
438
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
439
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
440
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
342
441
|
}>, import("@feathersjs/typebox").TObject<{
|
|
343
442
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
344
443
|
} | undefined>]>>]>>;
|
|
@@ -353,6 +452,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
353
452
|
}>, import("@feathersjs/typebox").TObject<{
|
|
354
453
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
355
454
|
} | undefined>]>>]>>;
|
|
455
|
+
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<{
|
|
456
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
457
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
458
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
459
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
460
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
461
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
462
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
463
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
464
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
465
|
+
} | undefined>]>>]>>;
|
|
356
466
|
}>>>;
|
|
357
467
|
}>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
358
468
|
_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<{
|
|
@@ -366,14 +476,36 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
366
476
|
}>, import("@feathersjs/typebox").TObject<{
|
|
367
477
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
368
478
|
} | 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").
|
|
479
|
+
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<{
|
|
480
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
481
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
482
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
483
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
484
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
485
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
486
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
487
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
488
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
489
|
+
} | undefined>]>>]>>;
|
|
490
|
+
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<{
|
|
491
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
492
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
493
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
494
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
495
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
496
|
+
$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>]>>;
|
|
497
|
+
$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>]>>;
|
|
498
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
499
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
500
|
+
} | undefined>]>>]>>;
|
|
501
|
+
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<{
|
|
502
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
503
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
504
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
505
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
506
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
507
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
508
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
377
509
|
}>, import("@feathersjs/typebox").TObject<{
|
|
378
510
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
379
511
|
} | undefined>]>>]>>;
|
|
@@ -388,6 +520,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
388
520
|
}>, import("@feathersjs/typebox").TObject<{
|
|
389
521
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
390
522
|
} | undefined>]>>]>>;
|
|
523
|
+
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<{
|
|
524
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
525
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
526
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
527
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
528
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
529
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
530
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
531
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
532
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
533
|
+
} | undefined>]>>]>>;
|
|
391
534
|
}>>]>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
392
535
|
export type StrategiesHyperoptQuery = Static<typeof strategiesHyperoptQuerySchema>;
|
|
393
536
|
export declare const strategiesHyperoptQueryValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
@@ -396,10 +539,13 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
396
539
|
$skip: number;
|
|
397
540
|
$sort: {
|
|
398
541
|
_id?: number | undefined;
|
|
542
|
+
createdAt?: number | undefined;
|
|
399
543
|
strategyId?: number | undefined;
|
|
544
|
+
status?: number | undefined;
|
|
400
545
|
jobId?: number | undefined;
|
|
546
|
+
progress?: number | undefined;
|
|
401
547
|
};
|
|
402
|
-
$select: ("_id" | "strategyId" | "jobId")[];
|
|
548
|
+
$select: ("_id" | "createdAt" | "strategyId" | "status" | "jobId" | "progress")[];
|
|
403
549
|
$and: ({
|
|
404
550
|
_id?: string | {} | Partial<{
|
|
405
551
|
$gt: string | {};
|
|
@@ -410,15 +556,25 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
410
556
|
$in: string | {} | (string | {})[];
|
|
411
557
|
$nin: string | {} | (string | {})[];
|
|
412
558
|
} & {}> | undefined;
|
|
559
|
+
createdAt?: any;
|
|
413
560
|
strategyId?: string | {} | Partial<{
|
|
414
|
-
$gt
|
|
415
|
-
$gte
|
|
416
|
-
$lt
|
|
417
|
-
$lte
|
|
418
|
-
$ne
|
|
561
|
+
$gt: string | {};
|
|
562
|
+
$gte: string | {};
|
|
563
|
+
$lt: string | {};
|
|
564
|
+
$lte: string | {};
|
|
565
|
+
$ne: string | {};
|
|
419
566
|
$in: string | {} | (string | {})[];
|
|
420
567
|
$nin: string | {} | (string | {})[];
|
|
421
568
|
} & {}> | undefined;
|
|
569
|
+
status?: string | Partial<{
|
|
570
|
+
$gt?: string | undefined;
|
|
571
|
+
$gte?: string | undefined;
|
|
572
|
+
$lt?: string | undefined;
|
|
573
|
+
$lte?: string | undefined;
|
|
574
|
+
$ne?: string | undefined;
|
|
575
|
+
$in: string | string[];
|
|
576
|
+
$nin: string | string[];
|
|
577
|
+
} & {}> | undefined;
|
|
422
578
|
jobId?: string | Partial<{
|
|
423
579
|
$gt?: string | undefined;
|
|
424
580
|
$gte?: string | undefined;
|
|
@@ -428,6 +584,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
428
584
|
$in: string | string[];
|
|
429
585
|
$nin: string | string[];
|
|
430
586
|
} & {}> | undefined;
|
|
587
|
+
progress?: any;
|
|
431
588
|
} | {
|
|
432
589
|
$or: {
|
|
433
590
|
_id?: string | {} | Partial<{
|
|
@@ -439,15 +596,25 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
439
596
|
$in: string | {} | (string | {})[];
|
|
440
597
|
$nin: string | {} | (string | {})[];
|
|
441
598
|
} & {}> | undefined;
|
|
599
|
+
createdAt?: any;
|
|
442
600
|
strategyId?: string | {} | Partial<{
|
|
443
|
-
$gt
|
|
444
|
-
$gte
|
|
445
|
-
$lt
|
|
446
|
-
$lte
|
|
447
|
-
$ne
|
|
601
|
+
$gt: string | {};
|
|
602
|
+
$gte: string | {};
|
|
603
|
+
$lt: string | {};
|
|
604
|
+
$lte: string | {};
|
|
605
|
+
$ne: string | {};
|
|
448
606
|
$in: string | {} | (string | {})[];
|
|
449
607
|
$nin: string | {} | (string | {})[];
|
|
450
608
|
} & {}> | undefined;
|
|
609
|
+
status?: string | Partial<{
|
|
610
|
+
$gt?: string | undefined;
|
|
611
|
+
$gte?: string | undefined;
|
|
612
|
+
$lt?: string | undefined;
|
|
613
|
+
$lte?: string | undefined;
|
|
614
|
+
$ne?: string | undefined;
|
|
615
|
+
$in: string | string[];
|
|
616
|
+
$nin: string | string[];
|
|
617
|
+
} & {}> | undefined;
|
|
451
618
|
jobId?: string | Partial<{
|
|
452
619
|
$gt?: string | undefined;
|
|
453
620
|
$gte?: string | undefined;
|
|
@@ -457,6 +624,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
457
624
|
$in: string | string[];
|
|
458
625
|
$nin: string | string[];
|
|
459
626
|
} & {}> | undefined;
|
|
627
|
+
progress?: any;
|
|
460
628
|
}[];
|
|
461
629
|
})[];
|
|
462
630
|
$or: {
|
|
@@ -469,15 +637,25 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
469
637
|
$in: string | {} | (string | {})[];
|
|
470
638
|
$nin: string | {} | (string | {})[];
|
|
471
639
|
} & {}> | undefined;
|
|
640
|
+
createdAt?: any;
|
|
472
641
|
strategyId?: string | {} | Partial<{
|
|
473
|
-
$gt
|
|
474
|
-
$gte
|
|
475
|
-
$lt
|
|
476
|
-
$lte
|
|
477
|
-
$ne
|
|
642
|
+
$gt: string | {};
|
|
643
|
+
$gte: string | {};
|
|
644
|
+
$lt: string | {};
|
|
645
|
+
$lte: string | {};
|
|
646
|
+
$ne: string | {};
|
|
478
647
|
$in: string | {} | (string | {})[];
|
|
479
648
|
$nin: string | {} | (string | {})[];
|
|
480
649
|
} & {}> | undefined;
|
|
650
|
+
status?: string | Partial<{
|
|
651
|
+
$gt?: string | undefined;
|
|
652
|
+
$gte?: string | undefined;
|
|
653
|
+
$lt?: string | undefined;
|
|
654
|
+
$lte?: string | undefined;
|
|
655
|
+
$ne?: string | undefined;
|
|
656
|
+
$in: string | string[];
|
|
657
|
+
$nin: string | string[];
|
|
658
|
+
} & {}> | undefined;
|
|
481
659
|
jobId?: string | Partial<{
|
|
482
660
|
$gt?: string | undefined;
|
|
483
661
|
$gte?: string | undefined;
|
|
@@ -487,6 +665,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
487
665
|
$in: string | string[];
|
|
488
666
|
$nin: string | string[];
|
|
489
667
|
} & {}> | undefined;
|
|
668
|
+
progress?: any;
|
|
490
669
|
}[];
|
|
491
670
|
}> & {
|
|
492
671
|
_id?: string | {} | Partial<{
|
|
@@ -498,15 +677,25 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
498
677
|
$in: string | {} | (string | {})[];
|
|
499
678
|
$nin: string | {} | (string | {})[];
|
|
500
679
|
} & {}> | undefined;
|
|
680
|
+
createdAt?: any;
|
|
501
681
|
strategyId?: string | {} | Partial<{
|
|
502
|
-
$gt
|
|
503
|
-
$gte
|
|
504
|
-
$lt
|
|
505
|
-
$lte
|
|
506
|
-
$ne
|
|
682
|
+
$gt: string | {};
|
|
683
|
+
$gte: string | {};
|
|
684
|
+
$lt: string | {};
|
|
685
|
+
$lte: string | {};
|
|
686
|
+
$ne: string | {};
|
|
507
687
|
$in: string | {} | (string | {})[];
|
|
508
688
|
$nin: string | {} | (string | {})[];
|
|
509
689
|
} & {}> | undefined;
|
|
690
|
+
status?: string | Partial<{
|
|
691
|
+
$gt?: string | undefined;
|
|
692
|
+
$gte?: string | undefined;
|
|
693
|
+
$lt?: string | undefined;
|
|
694
|
+
$lte?: string | undefined;
|
|
695
|
+
$ne?: string | undefined;
|
|
696
|
+
$in: string | string[];
|
|
697
|
+
$nin: string | string[];
|
|
698
|
+
} & {}> | undefined;
|
|
510
699
|
jobId?: string | Partial<{
|
|
511
700
|
$gt?: string | undefined;
|
|
512
701
|
$gte?: string | undefined;
|
|
@@ -516,4 +705,5 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
516
705
|
$in: string | string[];
|
|
517
706
|
$nin: string | string[];
|
|
518
707
|
} & {}> | undefined;
|
|
708
|
+
progress?: any;
|
|
519
709
|
} & {}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
@@ -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>>;
|