@cryptorobot.ai/client 0.0.26 → 0.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/helpers/handlebars.helper.d.ts +16 -1
- package/lib/helpers/hyperopt.helper.d.ts +10 -3
- package/lib/helpers/rules.helper.d.ts +13 -0
- package/lib/hooks/hyperopt-generate-and-queue.d.ts +2 -0
- package/lib/hooks/hyperopt-generate-exchange-config.d.ts +8 -0
- package/lib/hooks/{aws-prepare-batch-job.d.ts → hyperopt-get-results.d.ts} +1 -1
- package/lib/hooks/hyperopt-in-disk-clone-strategy.d.ts +2 -0
- package/lib/hooks/hyperopt-track-usage.d.ts +2 -0
- package/lib/services/messages/messages.schema.d.ts +32 -0
- package/lib/services/strategies/backtest/backtest.schema.d.ts +143 -3
- package/lib/services/strategies/backtest/results/results.schema.d.ts +52 -52
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +348 -72
- package/lib/services/strategies/indicators/indicators.schema.d.ts +64 -0
- package/lib/services/users/users.schema.d.ts +32 -0
- package/package.json +1 -1
|
@@ -9,12 +9,28 @@ export declare const strategiesIndicatorsSchema: import("@feathersjs/typebox").T
|
|
|
9
9
|
description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
10
10
|
object: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
11
11
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
12
|
+
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
13
|
+
field: import("@feathersjs/typebox").TString<string>;
|
|
14
|
+
space: import("@feathersjs/typebox").TString<string>;
|
|
15
|
+
type: import("@feathersjs/typebox").TLiteral<"IntParameter">;
|
|
16
|
+
min: import("@feathersjs/typebox").TInteger;
|
|
17
|
+
max: import("@feathersjs/typebox").TInteger;
|
|
18
|
+
default: import("@feathersjs/typebox").TInteger;
|
|
19
|
+
}>>>;
|
|
12
20
|
}>;
|
|
13
21
|
export type StrategiesIndicators = Static<typeof strategiesIndicatorsSchema>;
|
|
14
22
|
export declare const strategiesIndicatorsValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
15
23
|
export declare const strategiesIndicatorsResolver: import("@feathersjs/schema").Resolver<{
|
|
16
24
|
object?: string | undefined;
|
|
17
25
|
name?: string | undefined;
|
|
26
|
+
hyperopt?: {
|
|
27
|
+
default: number;
|
|
28
|
+
max: number;
|
|
29
|
+
min: number;
|
|
30
|
+
type: "IntParameter";
|
|
31
|
+
field: string;
|
|
32
|
+
space: string;
|
|
33
|
+
}[] | undefined;
|
|
18
34
|
createdAt?: any;
|
|
19
35
|
description?: string | undefined;
|
|
20
36
|
options?: any;
|
|
@@ -24,6 +40,14 @@ export declare const strategiesIndicatorsResolver: import("@feathersjs/schema").
|
|
|
24
40
|
export declare const strategiesIndicatorsExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
25
41
|
object?: string | undefined;
|
|
26
42
|
name?: string | undefined;
|
|
43
|
+
hyperopt?: {
|
|
44
|
+
default: number;
|
|
45
|
+
max: number;
|
|
46
|
+
min: number;
|
|
47
|
+
type: "IntParameter";
|
|
48
|
+
field: string;
|
|
49
|
+
space: string;
|
|
50
|
+
}[] | undefined;
|
|
27
51
|
createdAt?: any;
|
|
28
52
|
description?: string | undefined;
|
|
29
53
|
options?: any;
|
|
@@ -38,12 +62,28 @@ export declare const strategiesIndicatorsDataSchema: import("@feathersjs/typebox
|
|
|
38
62
|
description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
39
63
|
object: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
40
64
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
65
|
+
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
66
|
+
field: import("@feathersjs/typebox").TString<string>;
|
|
67
|
+
space: import("@feathersjs/typebox").TString<string>;
|
|
68
|
+
type: import("@feathersjs/typebox").TLiteral<"IntParameter">;
|
|
69
|
+
min: import("@feathersjs/typebox").TInteger;
|
|
70
|
+
max: import("@feathersjs/typebox").TInteger;
|
|
71
|
+
default: import("@feathersjs/typebox").TInteger;
|
|
72
|
+
}>>>;
|
|
41
73
|
}>, ["_id", "name", "alias", "object", "description", "options"]>;
|
|
42
74
|
export type StrategiesIndicatorsData = Static<typeof strategiesIndicatorsDataSchema>;
|
|
43
75
|
export declare const strategiesIndicatorsDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
44
76
|
export declare const strategiesIndicatorsDataResolver: import("@feathersjs/schema").Resolver<{
|
|
45
77
|
object?: string | undefined;
|
|
46
78
|
name?: string | undefined;
|
|
79
|
+
hyperopt?: {
|
|
80
|
+
default: number;
|
|
81
|
+
max: number;
|
|
82
|
+
min: number;
|
|
83
|
+
type: "IntParameter";
|
|
84
|
+
field: string;
|
|
85
|
+
space: string;
|
|
86
|
+
}[] | undefined;
|
|
47
87
|
createdAt?: any;
|
|
48
88
|
description?: string | undefined;
|
|
49
89
|
options?: any;
|
|
@@ -58,12 +98,28 @@ export declare const strategiesIndicatorsPatchSchema: import("@feathersjs/typebo
|
|
|
58
98
|
description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
59
99
|
object: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
60
100
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
101
|
+
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
102
|
+
field: import("@feathersjs/typebox").TString<string>;
|
|
103
|
+
space: import("@feathersjs/typebox").TString<string>;
|
|
104
|
+
type: import("@feathersjs/typebox").TLiteral<"IntParameter">;
|
|
105
|
+
min: import("@feathersjs/typebox").TInteger;
|
|
106
|
+
max: import("@feathersjs/typebox").TInteger;
|
|
107
|
+
default: import("@feathersjs/typebox").TInteger;
|
|
108
|
+
}>>>;
|
|
61
109
|
}>>;
|
|
62
110
|
export type StrategiesIndicatorsPatch = Static<typeof strategiesIndicatorsPatchSchema>;
|
|
63
111
|
export declare const strategiesIndicatorsPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
64
112
|
export declare const strategiesIndicatorsPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
65
113
|
object?: string | undefined;
|
|
66
114
|
name?: string | undefined;
|
|
115
|
+
hyperopt?: {
|
|
116
|
+
default: number;
|
|
117
|
+
max: number;
|
|
118
|
+
min: number;
|
|
119
|
+
type: "IntParameter";
|
|
120
|
+
field: string;
|
|
121
|
+
space: string;
|
|
122
|
+
}[] | undefined;
|
|
67
123
|
createdAt?: any;
|
|
68
124
|
description?: string | undefined;
|
|
69
125
|
options?: any;
|
|
@@ -78,6 +134,14 @@ export declare const strategiesIndicatorsQueryProperties: import("@feathersjs/ty
|
|
|
78
134
|
description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
79
135
|
object: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
80
136
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
137
|
+
hyperopt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
138
|
+
field: import("@feathersjs/typebox").TString<string>;
|
|
139
|
+
space: import("@feathersjs/typebox").TString<string>;
|
|
140
|
+
type: import("@feathersjs/typebox").TLiteral<"IntParameter">;
|
|
141
|
+
min: import("@feathersjs/typebox").TInteger;
|
|
142
|
+
max: import("@feathersjs/typebox").TInteger;
|
|
143
|
+
default: import("@feathersjs/typebox").TInteger;
|
|
144
|
+
}>>>;
|
|
81
145
|
}>, ["_id", "name"]>;
|
|
82
146
|
export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
83
147
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
@@ -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>>;
|