@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
|
@@ -3,11 +3,29 @@ 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
|
+
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>]>>;
|
|
8
9
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
10
|
+
overrides: import("@feathersjs/typebox").TObject<{
|
|
11
|
+
max_open_trades: import("@feathersjs/typebox").TNumber;
|
|
12
|
+
dry_run_wallet: import("@feathersjs/typebox").TNumber;
|
|
13
|
+
}>;
|
|
14
|
+
options: import("@feathersjs/typebox").TObject<{
|
|
15
|
+
protections: import("@feathersjs/typebox").TBoolean;
|
|
16
|
+
eps: import("@feathersjs/typebox").TBoolean;
|
|
17
|
+
}>;
|
|
18
|
+
epochs: import("@feathersjs/typebox").TNumber;
|
|
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
|
+
start: import("@feathersjs/typebox").TAny;
|
|
21
|
+
end: import("@feathersjs/typebox").TAny;
|
|
22
|
+
createdAt: import("@feathersjs/typebox").TAny;
|
|
23
|
+
updatedAt: import("@feathersjs/typebox").TAny;
|
|
24
|
+
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
25
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
26
|
+
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
27
|
+
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
9
28
|
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
10
|
-
startedAt: import("@feathersjs/typebox").TAny;
|
|
11
29
|
job: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
12
30
|
jobName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
13
31
|
}>>;
|
|
@@ -15,58 +33,148 @@ export declare const strategiesHyperoptSchema: import("@feathersjs/typebox").TOb
|
|
|
15
33
|
export type StrategiesHyperopt = Static<typeof strategiesHyperoptSchema>;
|
|
16
34
|
export declare const strategiesHyperoptValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
17
35
|
export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Resolver<{
|
|
18
|
-
|
|
36
|
+
exchangeId?: string | {} | undefined;
|
|
19
37
|
status?: string | undefined;
|
|
20
38
|
traderId?: string | {} | undefined;
|
|
21
39
|
jobId?: string | undefined;
|
|
40
|
+
startedAt?: any;
|
|
41
|
+
stoppedAt?: any;
|
|
42
|
+
took?: number | undefined;
|
|
43
|
+
attempts?: any;
|
|
22
44
|
job?: {
|
|
23
45
|
jobName?: string | undefined;
|
|
24
46
|
} | undefined;
|
|
47
|
+
function: "ShortTradeDurHyperOptLoss" | "OnlyProfitHyperOptLoss" | "SharpeHyperOptLoss" | "SharpeHyperOptLossDaily" | "SortinoHyperOptLoss" | "SortinoHyperOptLossDaily" | "CalmarHyperOptLoss" | "MaxDrawDownHyperOptLoss" | "MaxDrawDownRelativeHyperOptLoss" | "ProfitDrawDownHyperOptLoss";
|
|
25
48
|
_id: string | {};
|
|
26
|
-
|
|
49
|
+
createdAt: any;
|
|
50
|
+
updatedAt: any;
|
|
51
|
+
options: {
|
|
52
|
+
protections: boolean;
|
|
53
|
+
eps: boolean;
|
|
54
|
+
};
|
|
55
|
+
strategyId: string | {};
|
|
56
|
+
overrides: {
|
|
57
|
+
dry_run_wallet: number;
|
|
58
|
+
max_open_trades: number;
|
|
59
|
+
};
|
|
60
|
+
start: any;
|
|
61
|
+
end: any;
|
|
62
|
+
epochs: number;
|
|
27
63
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
28
64
|
export declare const strategiesHyperoptExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
29
|
-
|
|
65
|
+
exchangeId?: string | {} | undefined;
|
|
30
66
|
status?: string | undefined;
|
|
31
67
|
traderId?: string | {} | undefined;
|
|
32
68
|
jobId?: string | undefined;
|
|
69
|
+
startedAt?: any;
|
|
70
|
+
stoppedAt?: any;
|
|
71
|
+
took?: number | undefined;
|
|
72
|
+
attempts?: any;
|
|
33
73
|
job?: {
|
|
34
74
|
jobName?: string | undefined;
|
|
35
75
|
} | undefined;
|
|
76
|
+
function: "ShortTradeDurHyperOptLoss" | "OnlyProfitHyperOptLoss" | "SharpeHyperOptLoss" | "SharpeHyperOptLossDaily" | "SortinoHyperOptLoss" | "SortinoHyperOptLossDaily" | "CalmarHyperOptLoss" | "MaxDrawDownHyperOptLoss" | "MaxDrawDownRelativeHyperOptLoss" | "ProfitDrawDownHyperOptLoss";
|
|
36
77
|
_id: string | {};
|
|
37
|
-
|
|
78
|
+
createdAt: any;
|
|
79
|
+
updatedAt: any;
|
|
80
|
+
options: {
|
|
81
|
+
protections: boolean;
|
|
82
|
+
eps: boolean;
|
|
83
|
+
};
|
|
84
|
+
strategyId: string | {};
|
|
85
|
+
overrides: {
|
|
86
|
+
dry_run_wallet: number;
|
|
87
|
+
max_open_trades: number;
|
|
88
|
+
};
|
|
89
|
+
start: any;
|
|
90
|
+
end: any;
|
|
91
|
+
epochs: number;
|
|
38
92
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
39
93
|
export declare const strategiesHyperoptDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
40
94
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
41
|
-
strategyId: import("@feathersjs/typebox").
|
|
95
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
42
96
|
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
97
|
+
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>]>>;
|
|
43
98
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
99
|
+
overrides: import("@feathersjs/typebox").TObject<{
|
|
100
|
+
max_open_trades: import("@feathersjs/typebox").TNumber;
|
|
101
|
+
dry_run_wallet: import("@feathersjs/typebox").TNumber;
|
|
102
|
+
}>;
|
|
103
|
+
options: import("@feathersjs/typebox").TObject<{
|
|
104
|
+
protections: import("@feathersjs/typebox").TBoolean;
|
|
105
|
+
eps: import("@feathersjs/typebox").TBoolean;
|
|
106
|
+
}>;
|
|
107
|
+
epochs: import("@feathersjs/typebox").TNumber;
|
|
108
|
+
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
|
+
start: import("@feathersjs/typebox").TAny;
|
|
110
|
+
end: import("@feathersjs/typebox").TAny;
|
|
111
|
+
createdAt: import("@feathersjs/typebox").TAny;
|
|
112
|
+
updatedAt: import("@feathersjs/typebox").TAny;
|
|
113
|
+
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
114
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
115
|
+
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
116
|
+
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
44
117
|
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
45
|
-
startedAt: import("@feathersjs/typebox").TAny;
|
|
46
118
|
job: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
47
119
|
jobName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
48
120
|
}>>;
|
|
49
|
-
}>, ["strategyId", "traderId"]>;
|
|
121
|
+
}>, ["strategyId", "traderId", "exchangeId", "overrides", "options", "start", "function", "epochs", "end"]>;
|
|
50
122
|
export type StrategiesHyperoptData = Static<typeof strategiesHyperoptDataSchema>;
|
|
51
123
|
export declare const strategiesHyperoptDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
52
124
|
export declare const strategiesHyperoptDataResolver: import("@feathersjs/schema").Resolver<{
|
|
53
|
-
|
|
125
|
+
exchangeId?: string | {} | undefined;
|
|
54
126
|
status?: string | undefined;
|
|
55
127
|
traderId?: string | {} | undefined;
|
|
56
128
|
jobId?: string | undefined;
|
|
129
|
+
startedAt?: any;
|
|
130
|
+
stoppedAt?: any;
|
|
131
|
+
took?: number | undefined;
|
|
132
|
+
attempts?: any;
|
|
57
133
|
job?: {
|
|
58
134
|
jobName?: string | undefined;
|
|
59
135
|
} | undefined;
|
|
136
|
+
function: "ShortTradeDurHyperOptLoss" | "OnlyProfitHyperOptLoss" | "SharpeHyperOptLoss" | "SharpeHyperOptLossDaily" | "SortinoHyperOptLoss" | "SortinoHyperOptLossDaily" | "CalmarHyperOptLoss" | "MaxDrawDownHyperOptLoss" | "MaxDrawDownRelativeHyperOptLoss" | "ProfitDrawDownHyperOptLoss";
|
|
60
137
|
_id: string | {};
|
|
61
|
-
|
|
138
|
+
createdAt: any;
|
|
139
|
+
updatedAt: any;
|
|
140
|
+
options: {
|
|
141
|
+
protections: boolean;
|
|
142
|
+
eps: boolean;
|
|
143
|
+
};
|
|
144
|
+
strategyId: string | {};
|
|
145
|
+
overrides: {
|
|
146
|
+
dry_run_wallet: number;
|
|
147
|
+
max_open_trades: number;
|
|
148
|
+
};
|
|
149
|
+
start: any;
|
|
150
|
+
end: any;
|
|
151
|
+
epochs: number;
|
|
62
152
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
63
153
|
export declare const strategiesHyperoptPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
64
154
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
65
|
-
strategyId: import("@feathersjs/typebox").
|
|
155
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
66
156
|
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
157
|
+
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>]>>;
|
|
67
158
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
159
|
+
overrides: import("@feathersjs/typebox").TObject<{
|
|
160
|
+
max_open_trades: import("@feathersjs/typebox").TNumber;
|
|
161
|
+
dry_run_wallet: import("@feathersjs/typebox").TNumber;
|
|
162
|
+
}>;
|
|
163
|
+
options: import("@feathersjs/typebox").TObject<{
|
|
164
|
+
protections: import("@feathersjs/typebox").TBoolean;
|
|
165
|
+
eps: import("@feathersjs/typebox").TBoolean;
|
|
166
|
+
}>;
|
|
167
|
+
epochs: import("@feathersjs/typebox").TNumber;
|
|
168
|
+
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
|
+
start: import("@feathersjs/typebox").TAny;
|
|
170
|
+
end: import("@feathersjs/typebox").TAny;
|
|
171
|
+
createdAt: import("@feathersjs/typebox").TAny;
|
|
172
|
+
updatedAt: import("@feathersjs/typebox").TAny;
|
|
173
|
+
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
174
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
175
|
+
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
176
|
+
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
68
177
|
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
69
|
-
startedAt: import("@feathersjs/typebox").TAny;
|
|
70
178
|
job: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
71
179
|
jobName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
72
180
|
}>>;
|
|
@@ -74,36 +182,74 @@ export declare const strategiesHyperoptPatchSchema: import("@feathersjs/typebox"
|
|
|
74
182
|
export type StrategiesHyperoptPatch = Static<typeof strategiesHyperoptPatchSchema>;
|
|
75
183
|
export declare const strategiesHyperoptPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
76
184
|
export declare const strategiesHyperoptPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
77
|
-
|
|
185
|
+
exchangeId?: string | {} | undefined;
|
|
78
186
|
status?: string | undefined;
|
|
79
187
|
traderId?: string | {} | undefined;
|
|
80
188
|
jobId?: string | undefined;
|
|
189
|
+
startedAt?: any;
|
|
190
|
+
stoppedAt?: any;
|
|
191
|
+
took?: number | undefined;
|
|
192
|
+
attempts?: any;
|
|
81
193
|
job?: {
|
|
82
194
|
jobName?: string | undefined;
|
|
83
195
|
} | undefined;
|
|
196
|
+
function: "ShortTradeDurHyperOptLoss" | "OnlyProfitHyperOptLoss" | "SharpeHyperOptLoss" | "SharpeHyperOptLossDaily" | "SortinoHyperOptLoss" | "SortinoHyperOptLossDaily" | "CalmarHyperOptLoss" | "MaxDrawDownHyperOptLoss" | "MaxDrawDownRelativeHyperOptLoss" | "ProfitDrawDownHyperOptLoss";
|
|
84
197
|
_id: string | {};
|
|
85
|
-
|
|
198
|
+
createdAt: any;
|
|
199
|
+
updatedAt: any;
|
|
200
|
+
options: {
|
|
201
|
+
protections: boolean;
|
|
202
|
+
eps: boolean;
|
|
203
|
+
};
|
|
204
|
+
strategyId: string | {};
|
|
205
|
+
overrides: {
|
|
206
|
+
dry_run_wallet: number;
|
|
207
|
+
max_open_trades: number;
|
|
208
|
+
};
|
|
209
|
+
start: any;
|
|
210
|
+
end: any;
|
|
211
|
+
epochs: number;
|
|
86
212
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
87
213
|
export declare const strategiesHyperoptQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
88
214
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
89
|
-
strategyId: import("@feathersjs/typebox").
|
|
215
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
90
216
|
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
217
|
+
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>]>>;
|
|
91
218
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
219
|
+
overrides: import("@feathersjs/typebox").TObject<{
|
|
220
|
+
max_open_trades: import("@feathersjs/typebox").TNumber;
|
|
221
|
+
dry_run_wallet: import("@feathersjs/typebox").TNumber;
|
|
222
|
+
}>;
|
|
223
|
+
options: import("@feathersjs/typebox").TObject<{
|
|
224
|
+
protections: import("@feathersjs/typebox").TBoolean;
|
|
225
|
+
eps: import("@feathersjs/typebox").TBoolean;
|
|
226
|
+
}>;
|
|
227
|
+
epochs: import("@feathersjs/typebox").TNumber;
|
|
228
|
+
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
|
+
start: import("@feathersjs/typebox").TAny;
|
|
230
|
+
end: import("@feathersjs/typebox").TAny;
|
|
231
|
+
createdAt: import("@feathersjs/typebox").TAny;
|
|
232
|
+
updatedAt: import("@feathersjs/typebox").TAny;
|
|
233
|
+
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
234
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
235
|
+
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
236
|
+
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
92
237
|
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
93
|
-
startedAt: import("@feathersjs/typebox").TAny;
|
|
94
238
|
job: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
95
239
|
jobName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
96
240
|
}>>;
|
|
97
|
-
}>, ["_id", "strategyId", "jobId"]>;
|
|
241
|
+
}>, ["_id", "strategyId", "status", "createdAt", "jobId"]>;
|
|
98
242
|
export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
99
243
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
100
244
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
101
245
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
102
246
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
247
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
103
248
|
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
249
|
+
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
104
250
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
105
251
|
}>;
|
|
106
|
-
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "strategyId" | "jobId")[]>;
|
|
252
|
+
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "strategyId" | "status" | "jobId")[]>;
|
|
107
253
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
108
254
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
109
255
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -116,14 +262,36 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
116
262
|
}>, import("@feathersjs/typebox").TObject<{
|
|
117
263
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
118
264
|
} | undefined>]>>]>>;
|
|
119
|
-
|
|
120
|
-
$gt: import("@feathersjs/typebox").
|
|
121
|
-
$gte: import("@feathersjs/typebox").
|
|
122
|
-
$lt: import("@feathersjs/typebox").
|
|
123
|
-
$lte: import("@feathersjs/typebox").
|
|
124
|
-
$ne: import("@feathersjs/typebox").
|
|
125
|
-
$in: import("@feathersjs/typebox").
|
|
126
|
-
$nin: import("@feathersjs/typebox").
|
|
265
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
266
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
267
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
268
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
269
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
270
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
271
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
272
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
273
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
274
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
275
|
+
} | undefined>]>>]>>;
|
|
276
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
277
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
278
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
279
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
280
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
281
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
282
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
283
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
284
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
285
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
286
|
+
} | undefined>]>>]>>;
|
|
287
|
+
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
288
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
289
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
290
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
291
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
292
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
293
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
294
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
127
295
|
}>, import("@feathersjs/typebox").TObject<{
|
|
128
296
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
129
297
|
} | undefined>]>>]>>;
|
|
@@ -151,14 +319,36 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
151
319
|
}>, import("@feathersjs/typebox").TObject<{
|
|
152
320
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
153
321
|
} | undefined>]>>]>>;
|
|
154
|
-
|
|
155
|
-
$gt: import("@feathersjs/typebox").
|
|
156
|
-
$gte: import("@feathersjs/typebox").
|
|
157
|
-
$lt: import("@feathersjs/typebox").
|
|
158
|
-
$lte: import("@feathersjs/typebox").
|
|
159
|
-
$ne: import("@feathersjs/typebox").
|
|
160
|
-
$in: import("@feathersjs/typebox").
|
|
161
|
-
$nin: import("@feathersjs/typebox").
|
|
322
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
323
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
324
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
325
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
326
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
327
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
328
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
329
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
330
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
331
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
332
|
+
} | undefined>]>>]>>;
|
|
333
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
334
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
335
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
336
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
337
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
338
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
339
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
340
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
341
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
342
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
343
|
+
} | undefined>]>>]>>;
|
|
344
|
+
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
345
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
346
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
347
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
348
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
349
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
350
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
351
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
162
352
|
}>, import("@feathersjs/typebox").TObject<{
|
|
163
353
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
164
354
|
} | undefined>]>>]>>;
|
|
@@ -187,14 +377,36 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
187
377
|
}>, import("@feathersjs/typebox").TObject<{
|
|
188
378
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
189
379
|
} | undefined>]>>]>>;
|
|
190
|
-
|
|
191
|
-
$gt: import("@feathersjs/typebox").
|
|
192
|
-
$gte: import("@feathersjs/typebox").
|
|
193
|
-
$lt: import("@feathersjs/typebox").
|
|
194
|
-
$lte: import("@feathersjs/typebox").
|
|
195
|
-
$ne: import("@feathersjs/typebox").
|
|
196
|
-
$in: import("@feathersjs/typebox").
|
|
197
|
-
$nin: import("@feathersjs/typebox").
|
|
380
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
381
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
382
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
383
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
384
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
385
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
386
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
387
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
388
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
389
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
390
|
+
} | undefined>]>>]>>;
|
|
391
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
392
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
393
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
394
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
395
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
396
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
397
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
398
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
399
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
400
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
401
|
+
} | undefined>]>>]>>;
|
|
402
|
+
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
403
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
404
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
405
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
406
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
407
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
408
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
409
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
198
410
|
}>, import("@feathersjs/typebox").TObject<{
|
|
199
411
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
200
412
|
} | undefined>]>>]>>;
|
|
@@ -222,14 +434,36 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
|
|
|
222
434
|
}>, import("@feathersjs/typebox").TObject<{
|
|
223
435
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
224
436
|
} | undefined>]>>]>>;
|
|
225
|
-
|
|
226
|
-
$gt: import("@feathersjs/typebox").
|
|
227
|
-
$gte: import("@feathersjs/typebox").
|
|
228
|
-
$lt: import("@feathersjs/typebox").
|
|
229
|
-
$lte: import("@feathersjs/typebox").
|
|
230
|
-
$ne: import("@feathersjs/typebox").
|
|
231
|
-
$in: import("@feathersjs/typebox").
|
|
232
|
-
$nin: import("@feathersjs/typebox").
|
|
437
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
438
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
439
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
440
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
441
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
442
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
443
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
444
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
445
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
446
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
447
|
+
} | undefined>]>>]>>;
|
|
448
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
449
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
450
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
451
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
452
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
453
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
|
|
454
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
455
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
456
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
457
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
458
|
+
} | undefined>]>>]>>;
|
|
459
|
+
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
460
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
461
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
462
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
463
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
464
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
465
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
466
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
233
467
|
}>, import("@feathersjs/typebox").TObject<{
|
|
234
468
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
235
469
|
} | undefined>]>>]>>;
|
|
@@ -252,10 +486,12 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
252
486
|
$skip: number;
|
|
253
487
|
$sort: {
|
|
254
488
|
_id?: number | undefined;
|
|
489
|
+
createdAt?: number | undefined;
|
|
255
490
|
strategyId?: number | undefined;
|
|
491
|
+
status?: number | undefined;
|
|
256
492
|
jobId?: number | undefined;
|
|
257
493
|
};
|
|
258
|
-
$select: ("_id" | "strategyId" | "jobId")[];
|
|
494
|
+
$select: ("_id" | "createdAt" | "strategyId" | "status" | "jobId")[];
|
|
259
495
|
$and: ({
|
|
260
496
|
_id?: string | {} | Partial<{
|
|
261
497
|
$gt: string | {};
|
|
@@ -266,15 +502,25 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
266
502
|
$in: string | {} | (string | {})[];
|
|
267
503
|
$nin: string | {} | (string | {})[];
|
|
268
504
|
} & {}> | undefined;
|
|
505
|
+
createdAt?: any;
|
|
269
506
|
strategyId?: string | {} | Partial<{
|
|
270
|
-
$gt
|
|
271
|
-
$gte
|
|
272
|
-
$lt
|
|
273
|
-
$lte
|
|
274
|
-
$ne
|
|
507
|
+
$gt: string | {};
|
|
508
|
+
$gte: string | {};
|
|
509
|
+
$lt: string | {};
|
|
510
|
+
$lte: string | {};
|
|
511
|
+
$ne: string | {};
|
|
275
512
|
$in: string | {} | (string | {})[];
|
|
276
513
|
$nin: string | {} | (string | {})[];
|
|
277
514
|
} & {}> | undefined;
|
|
515
|
+
status?: string | Partial<{
|
|
516
|
+
$gt?: string | undefined;
|
|
517
|
+
$gte?: string | undefined;
|
|
518
|
+
$lt?: string | undefined;
|
|
519
|
+
$lte?: string | undefined;
|
|
520
|
+
$ne?: string | undefined;
|
|
521
|
+
$in: string | string[];
|
|
522
|
+
$nin: string | string[];
|
|
523
|
+
} & {}> | undefined;
|
|
278
524
|
jobId?: string | Partial<{
|
|
279
525
|
$gt?: string | undefined;
|
|
280
526
|
$gte?: string | undefined;
|
|
@@ -295,15 +541,25 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
295
541
|
$in: string | {} | (string | {})[];
|
|
296
542
|
$nin: string | {} | (string | {})[];
|
|
297
543
|
} & {}> | undefined;
|
|
544
|
+
createdAt?: any;
|
|
298
545
|
strategyId?: string | {} | Partial<{
|
|
299
|
-
$gt
|
|
300
|
-
$gte
|
|
301
|
-
$lt
|
|
302
|
-
$lte
|
|
303
|
-
$ne
|
|
546
|
+
$gt: string | {};
|
|
547
|
+
$gte: string | {};
|
|
548
|
+
$lt: string | {};
|
|
549
|
+
$lte: string | {};
|
|
550
|
+
$ne: string | {};
|
|
304
551
|
$in: string | {} | (string | {})[];
|
|
305
552
|
$nin: string | {} | (string | {})[];
|
|
306
553
|
} & {}> | undefined;
|
|
554
|
+
status?: string | Partial<{
|
|
555
|
+
$gt?: string | undefined;
|
|
556
|
+
$gte?: string | undefined;
|
|
557
|
+
$lt?: string | undefined;
|
|
558
|
+
$lte?: string | undefined;
|
|
559
|
+
$ne?: string | undefined;
|
|
560
|
+
$in: string | string[];
|
|
561
|
+
$nin: string | string[];
|
|
562
|
+
} & {}> | undefined;
|
|
307
563
|
jobId?: string | Partial<{
|
|
308
564
|
$gt?: string | undefined;
|
|
309
565
|
$gte?: string | undefined;
|
|
@@ -325,15 +581,25 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
325
581
|
$in: string | {} | (string | {})[];
|
|
326
582
|
$nin: string | {} | (string | {})[];
|
|
327
583
|
} & {}> | undefined;
|
|
584
|
+
createdAt?: any;
|
|
328
585
|
strategyId?: string | {} | Partial<{
|
|
329
|
-
$gt
|
|
330
|
-
$gte
|
|
331
|
-
$lt
|
|
332
|
-
$lte
|
|
333
|
-
$ne
|
|
586
|
+
$gt: string | {};
|
|
587
|
+
$gte: string | {};
|
|
588
|
+
$lt: string | {};
|
|
589
|
+
$lte: string | {};
|
|
590
|
+
$ne: string | {};
|
|
334
591
|
$in: string | {} | (string | {})[];
|
|
335
592
|
$nin: string | {} | (string | {})[];
|
|
336
593
|
} & {}> | undefined;
|
|
594
|
+
status?: string | Partial<{
|
|
595
|
+
$gt?: string | undefined;
|
|
596
|
+
$gte?: string | undefined;
|
|
597
|
+
$lt?: string | undefined;
|
|
598
|
+
$lte?: string | undefined;
|
|
599
|
+
$ne?: string | undefined;
|
|
600
|
+
$in: string | string[];
|
|
601
|
+
$nin: string | string[];
|
|
602
|
+
} & {}> | undefined;
|
|
337
603
|
jobId?: string | Partial<{
|
|
338
604
|
$gt?: string | undefined;
|
|
339
605
|
$gte?: string | undefined;
|
|
@@ -354,15 +620,25 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
|
|
|
354
620
|
$in: string | {} | (string | {})[];
|
|
355
621
|
$nin: string | {} | (string | {})[];
|
|
356
622
|
} & {}> | undefined;
|
|
623
|
+
createdAt?: any;
|
|
357
624
|
strategyId?: string | {} | Partial<{
|
|
358
|
-
$gt
|
|
359
|
-
$gte
|
|
360
|
-
$lt
|
|
361
|
-
$lte
|
|
362
|
-
$ne
|
|
625
|
+
$gt: string | {};
|
|
626
|
+
$gte: string | {};
|
|
627
|
+
$lt: string | {};
|
|
628
|
+
$lte: string | {};
|
|
629
|
+
$ne: string | {};
|
|
363
630
|
$in: string | {} | (string | {})[];
|
|
364
631
|
$nin: string | {} | (string | {})[];
|
|
365
632
|
} & {}> | undefined;
|
|
633
|
+
status?: string | Partial<{
|
|
634
|
+
$gt?: string | undefined;
|
|
635
|
+
$gte?: string | undefined;
|
|
636
|
+
$lt?: string | undefined;
|
|
637
|
+
$lte?: string | undefined;
|
|
638
|
+
$ne?: string | undefined;
|
|
639
|
+
$in: string | string[];
|
|
640
|
+
$nin: string | string[];
|
|
641
|
+
} & {}> | undefined;
|
|
366
642
|
jobId?: string | Partial<{
|
|
367
643
|
$gt?: string | undefined;
|
|
368
644
|
$gte?: string | undefined;
|