@cryptorobot.ai/client 1.26.0-dev.1029 → 1.26.0-dev.1030
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/src/services/advisor/advisor.schema.d.ts +1 -1
- package/lib/src/services/advisor/messages/messages.schema.d.ts +144 -144
- package/lib/src/services/agents/sessions/sessions.schema.d.ts +143 -143
- package/lib/src/services/autotune/usage/usage.schema.d.ts +3 -3
- package/lib/src/services/blog/sitemaps/pages/pages.schema.d.ts +72 -72
- package/lib/src/services/copilot/concerns/concerns.schema.d.ts +8 -8
- package/lib/src/services/models/pods/events/events.schema.d.ts +3 -3
- package/lib/src/services/models/signals/subscriptions/subscriptions.schema.d.ts +3 -3
- package/lib/src/services/security/events/security-events.schema.d.ts +70 -70
- package/lib/src/services/snapshot/snapshot.schema.d.ts +336 -336
- package/lib/src/services/strategies/backtest/backtest.schema.d.ts +231 -135
- package/lib/src/services/strategies/generate/generate.schema.d.ts +80 -80
- package/lib/src/services/strategies/history/history.schema.d.ts +152 -152
- package/lib/src/services/strategies/research/research.schema.d.ts +72 -72
- package/lib/src/services/tax/sessions/sessions.schema.d.ts +72 -72
- package/lib/src/services/tokens/tokens.schema.d.ts +72 -72
- package/lib/src/services/traders/pods/api/api.schema.d.ts +8 -8
- package/lib/src/services/traders/pods/events/events.schema.d.ts +144 -144
- package/lib/src/services/traders/pods/pods.schema.d.ts +73 -73
- package/lib/src/services/traders/pods/webhooks/webhooks.schema.d.ts +144 -144
- package/lib/src/services/users/access/access.schema.d.ts +70 -70
- package/lib/src/services/users/sessions/sessions.schema.d.ts +70 -70
- package/package.json +1 -1
|
@@ -3,10 +3,10 @@ import type { HookContext } from '../../../declarations';
|
|
|
3
3
|
import type { StrategiesHistoryService } from './history.class';
|
|
4
4
|
export declare const strategiesHistorySchema: 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").TString<string>;
|
|
7
|
-
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
6
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
7
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
8
8
|
sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
9
|
-
backtestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
9
|
+
backtestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
10
10
|
round: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
11
11
|
changes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
12
12
|
field: import("@feathersjs/typebox").TString<string>;
|
|
@@ -32,10 +32,10 @@ export type StrategiesHistory = Static<typeof strategiesHistorySchema>;
|
|
|
32
32
|
export declare const strategiesHistoryValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
33
33
|
export declare const strategiesHistoryResolver: import("@feathersjs/schema").Resolver<{
|
|
34
34
|
_id: string | {};
|
|
35
|
-
strategyId: string;
|
|
36
|
-
userId?: string | undefined;
|
|
35
|
+
strategyId: string | {};
|
|
36
|
+
userId?: string | {} | undefined;
|
|
37
37
|
sessionId?: string | undefined;
|
|
38
|
-
backtestId?: string | undefined;
|
|
38
|
+
backtestId?: string | {} | undefined;
|
|
39
39
|
round?: number | undefined;
|
|
40
40
|
changes: {
|
|
41
41
|
field: string;
|
|
@@ -59,10 +59,10 @@ export declare const strategiesHistoryResolver: import("@feathersjs/schema").Res
|
|
|
59
59
|
}, HookContext<StrategiesHistoryService<import("./history.class").StrategiesHistoryParams>>>;
|
|
60
60
|
export declare const strategiesHistoryExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
61
61
|
_id: string | {};
|
|
62
|
-
strategyId: string;
|
|
63
|
-
userId?: string | undefined;
|
|
62
|
+
strategyId: string | {};
|
|
63
|
+
userId?: string | {} | undefined;
|
|
64
64
|
sessionId?: string | undefined;
|
|
65
|
-
backtestId?: string | undefined;
|
|
65
|
+
backtestId?: string | {} | undefined;
|
|
66
66
|
round?: number | undefined;
|
|
67
67
|
changes: {
|
|
68
68
|
field: string;
|
|
@@ -85,10 +85,10 @@ export declare const strategiesHistoryExternalResolver: import("@feathersjs/sche
|
|
|
85
85
|
updatedAt?: any;
|
|
86
86
|
}, HookContext<StrategiesHistoryService<import("./history.class").StrategiesHistoryParams>>>;
|
|
87
87
|
export declare const strategiesHistoryDataSchema: import("@feathersjs/typebox").TObject<{
|
|
88
|
-
strategyId: import("@feathersjs/typebox").TString<string>;
|
|
89
|
-
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
88
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
89
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
90
90
|
sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
91
|
-
backtestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
91
|
+
backtestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
92
92
|
round: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
93
93
|
changes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
94
94
|
field: import("@feathersjs/typebox").TString<string>;
|
|
@@ -112,10 +112,10 @@ export type StrategiesHistoryData = Static<typeof strategiesHistoryDataSchema>;
|
|
|
112
112
|
export declare const strategiesHistoryDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
113
113
|
export declare const strategiesHistoryDataResolver: import("@feathersjs/schema").Resolver<{
|
|
114
114
|
_id: string | {};
|
|
115
|
-
strategyId: string;
|
|
116
|
-
userId?: string | undefined;
|
|
115
|
+
strategyId: string | {};
|
|
116
|
+
userId?: string | {} | undefined;
|
|
117
117
|
sessionId?: string | undefined;
|
|
118
|
-
backtestId?: string | undefined;
|
|
118
|
+
backtestId?: string | {} | undefined;
|
|
119
119
|
round?: number | undefined;
|
|
120
120
|
changes: {
|
|
121
121
|
field: string;
|
|
@@ -139,10 +139,10 @@ export declare const strategiesHistoryDataResolver: import("@feathersjs/schema")
|
|
|
139
139
|
}, HookContext<StrategiesHistoryService<import("./history.class").StrategiesHistoryParams>>>;
|
|
140
140
|
export declare const strategiesHistoryPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
141
141
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
142
|
-
strategyId: import("@feathersjs/typebox").TString<string>;
|
|
143
|
-
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
142
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
143
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
144
144
|
sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
145
|
-
backtestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
145
|
+
backtestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
146
146
|
round: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
147
147
|
changes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
148
148
|
field: import("@feathersjs/typebox").TString<string>;
|
|
@@ -168,10 +168,10 @@ export type StrategiesHistoryPatch = Static<typeof strategiesHistoryPatchSchema>
|
|
|
168
168
|
export declare const strategiesHistoryPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
169
169
|
export declare const strategiesHistoryPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
170
170
|
_id: string | {};
|
|
171
|
-
strategyId: string;
|
|
172
|
-
userId?: string | undefined;
|
|
171
|
+
strategyId: string | {};
|
|
172
|
+
userId?: string | {} | undefined;
|
|
173
173
|
sessionId?: string | undefined;
|
|
174
|
-
backtestId?: string | undefined;
|
|
174
|
+
backtestId?: string | {} | undefined;
|
|
175
175
|
round?: number | undefined;
|
|
176
176
|
changes: {
|
|
177
177
|
field: string;
|
|
@@ -195,10 +195,10 @@ export declare const strategiesHistoryPatchResolver: import("@feathersjs/schema"
|
|
|
195
195
|
}, HookContext<StrategiesHistoryService<import("./history.class").StrategiesHistoryParams>>>;
|
|
196
196
|
export declare const strategiesHistoryQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
197
197
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
198
|
-
strategyId: import("@feathersjs/typebox").TString<string>;
|
|
199
|
-
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
198
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
199
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
200
200
|
sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
201
|
-
backtestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
201
|
+
backtestId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
202
202
|
round: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
203
203
|
changes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
204
204
|
field: import("@feathersjs/typebox").TString<string>;
|
|
@@ -277,25 +277,25 @@ export declare const strategiesHistoryQuerySchema: import("@feathersjs/typebox")
|
|
|
277
277
|
}>, import("@feathersjs/typebox").TObject<{
|
|
278
278
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
279
279
|
} | undefined>]>>]>>;
|
|
280
|
-
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
281
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
282
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
283
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
284
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
285
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
286
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
|
|
287
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
|
|
280
|
+
strategyId: 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<{
|
|
281
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
282
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
283
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
284
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
285
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
286
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
287
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
288
288
|
}>, import("@feathersjs/typebox").TObject<{
|
|
289
289
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
290
290
|
} | undefined>]>>]>>;
|
|
291
|
-
userId: 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<{
|
|
292
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
293
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
294
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
295
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
296
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
297
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
298
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
291
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
|
|
292
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
293
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
294
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
295
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
296
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
297
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
298
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
299
299
|
}>, import("@feathersjs/typebox").TObject<{
|
|
300
300
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
301
301
|
} | undefined>]>>]>>;
|
|
@@ -345,25 +345,25 @@ export declare const strategiesHistoryQuerySchema: import("@feathersjs/typebox")
|
|
|
345
345
|
}>, import("@feathersjs/typebox").TObject<{
|
|
346
346
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
347
347
|
} | undefined>]>>]>>;
|
|
348
|
-
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
349
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
350
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
351
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
352
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
353
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
354
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
|
|
355
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
|
|
348
|
+
strategyId: 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<{
|
|
349
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
350
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
351
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
352
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
353
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
354
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
355
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
356
356
|
}>, import("@feathersjs/typebox").TObject<{
|
|
357
357
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
358
358
|
} | undefined>]>>]>>;
|
|
359
|
-
userId: 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<{
|
|
360
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
361
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
362
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
363
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
364
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
365
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
366
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
359
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
|
|
360
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
361
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
362
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
363
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
364
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
365
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
366
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
367
367
|
}>, import("@feathersjs/typebox").TObject<{
|
|
368
368
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
369
369
|
} | undefined>]>>]>>;
|
|
@@ -414,25 +414,25 @@ export declare const strategiesHistoryQuerySchema: import("@feathersjs/typebox")
|
|
|
414
414
|
}>, import("@feathersjs/typebox").TObject<{
|
|
415
415
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
416
416
|
} | undefined>]>>]>>;
|
|
417
|
-
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
418
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
419
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
420
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
421
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
422
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
423
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
|
|
424
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
|
|
417
|
+
strategyId: 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<{
|
|
418
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
419
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
420
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
421
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
422
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
423
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
424
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
425
425
|
}>, import("@feathersjs/typebox").TObject<{
|
|
426
426
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
427
427
|
} | undefined>]>>]>>;
|
|
428
|
-
userId: 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<{
|
|
429
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
430
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
431
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
432
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
433
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
434
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
435
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
428
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
|
|
429
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
430
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
431
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
432
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
433
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
434
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
435
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
436
436
|
}>, import("@feathersjs/typebox").TObject<{
|
|
437
437
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
438
438
|
} | undefined>]>>]>>;
|
|
@@ -482,25 +482,25 @@ export declare const strategiesHistoryQuerySchema: import("@feathersjs/typebox")
|
|
|
482
482
|
}>, import("@feathersjs/typebox").TObject<{
|
|
483
483
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
484
484
|
} | undefined>]>>]>>;
|
|
485
|
-
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
486
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
487
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
488
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
489
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
490
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
491
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
|
|
492
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
|
|
485
|
+
strategyId: 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<{
|
|
486
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
487
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
488
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
489
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
490
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
491
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
492
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
493
493
|
}>, import("@feathersjs/typebox").TObject<{
|
|
494
494
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
495
495
|
} | undefined>]>>]>>;
|
|
496
|
-
userId: 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<{
|
|
497
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
498
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
499
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
500
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
501
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
502
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
503
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
496
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
|
|
497
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
498
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
499
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
500
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
501
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
502
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
503
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
504
504
|
}>, import("@feathersjs/typebox").TObject<{
|
|
505
505
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
506
506
|
} | undefined>]>>]>>;
|
|
@@ -549,23 +549,23 @@ export declare const strategiesHistoryQueryResolver: import("@feathersjs/schema"
|
|
|
549
549
|
$nin: "agent" | "auto_refine" | "generation" | "manual" | "user" | ("agent" | "auto_refine" | "generation" | "manual" | "user")[];
|
|
550
550
|
} & {}> | undefined;
|
|
551
551
|
strategyId?: string | Partial<{
|
|
552
|
-
$gt: string;
|
|
553
|
-
$gte: string;
|
|
554
|
-
$lt: string;
|
|
555
|
-
$lte: string;
|
|
556
|
-
$ne: string;
|
|
557
|
-
$in: string | string[];
|
|
558
|
-
$nin: string | string[];
|
|
559
|
-
} & {}> | undefined;
|
|
552
|
+
$gt: string | {};
|
|
553
|
+
$gte: string | {};
|
|
554
|
+
$lt: string | {};
|
|
555
|
+
$lte: string | {};
|
|
556
|
+
$ne: string | {};
|
|
557
|
+
$in: string | (string | {})[] | {};
|
|
558
|
+
$nin: string | (string | {})[] | {};
|
|
559
|
+
} & {}> | {} | undefined;
|
|
560
560
|
userId?: string | Partial<{
|
|
561
|
-
$gt?: string | undefined;
|
|
562
|
-
$gte?: string | undefined;
|
|
563
|
-
$lt?: string | undefined;
|
|
564
|
-
$lte?: string | undefined;
|
|
565
|
-
$ne?: string | undefined;
|
|
566
|
-
$in: string | string[];
|
|
567
|
-
$nin: string | string[];
|
|
568
|
-
} & {}> | undefined;
|
|
561
|
+
$gt?: string | {} | undefined;
|
|
562
|
+
$gte?: string | {} | undefined;
|
|
563
|
+
$lt?: string | {} | undefined;
|
|
564
|
+
$lte?: string | {} | undefined;
|
|
565
|
+
$ne?: string | {} | undefined;
|
|
566
|
+
$in: string | (string | {})[] | {};
|
|
567
|
+
$nin: string | (string | {})[] | {};
|
|
568
|
+
} & {}> | {} | undefined;
|
|
569
569
|
} | {
|
|
570
570
|
$or: {
|
|
571
571
|
_id?: string | Partial<{
|
|
@@ -597,23 +597,23 @@ export declare const strategiesHistoryQueryResolver: import("@feathersjs/schema"
|
|
|
597
597
|
$nin: "agent" | "auto_refine" | "generation" | "manual" | "user" | ("agent" | "auto_refine" | "generation" | "manual" | "user")[];
|
|
598
598
|
} & {}> | undefined;
|
|
599
599
|
strategyId?: string | Partial<{
|
|
600
|
-
$gt: string;
|
|
601
|
-
$gte: string;
|
|
602
|
-
$lt: string;
|
|
603
|
-
$lte: string;
|
|
604
|
-
$ne: string;
|
|
605
|
-
$in: string | string[];
|
|
606
|
-
$nin: string | string[];
|
|
607
|
-
} & {}> | undefined;
|
|
600
|
+
$gt: string | {};
|
|
601
|
+
$gte: string | {};
|
|
602
|
+
$lt: string | {};
|
|
603
|
+
$lte: string | {};
|
|
604
|
+
$ne: string | {};
|
|
605
|
+
$in: string | (string | {})[] | {};
|
|
606
|
+
$nin: string | (string | {})[] | {};
|
|
607
|
+
} & {}> | {} | undefined;
|
|
608
608
|
userId?: string | Partial<{
|
|
609
|
-
$gt?: string | undefined;
|
|
610
|
-
$gte?: string | undefined;
|
|
611
|
-
$lt?: string | undefined;
|
|
612
|
-
$lte?: string | undefined;
|
|
613
|
-
$ne?: string | undefined;
|
|
614
|
-
$in: string | string[];
|
|
615
|
-
$nin: string | string[];
|
|
616
|
-
} & {}> | undefined;
|
|
609
|
+
$gt?: string | {} | undefined;
|
|
610
|
+
$gte?: string | {} | undefined;
|
|
611
|
+
$lt?: string | {} | undefined;
|
|
612
|
+
$lte?: string | {} | undefined;
|
|
613
|
+
$ne?: string | {} | undefined;
|
|
614
|
+
$in: string | (string | {})[] | {};
|
|
615
|
+
$nin: string | (string | {})[] | {};
|
|
616
|
+
} & {}> | {} | undefined;
|
|
617
617
|
}[];
|
|
618
618
|
})[];
|
|
619
619
|
$or: {
|
|
@@ -646,23 +646,23 @@ export declare const strategiesHistoryQueryResolver: import("@feathersjs/schema"
|
|
|
646
646
|
$nin: "agent" | "auto_refine" | "generation" | "manual" | "user" | ("agent" | "auto_refine" | "generation" | "manual" | "user")[];
|
|
647
647
|
} & {}> | undefined;
|
|
648
648
|
strategyId?: string | Partial<{
|
|
649
|
-
$gt: string;
|
|
650
|
-
$gte: string;
|
|
651
|
-
$lt: string;
|
|
652
|
-
$lte: string;
|
|
653
|
-
$ne: string;
|
|
654
|
-
$in: string | string[];
|
|
655
|
-
$nin: string | string[];
|
|
656
|
-
} & {}> | undefined;
|
|
649
|
+
$gt: string | {};
|
|
650
|
+
$gte: string | {};
|
|
651
|
+
$lt: string | {};
|
|
652
|
+
$lte: string | {};
|
|
653
|
+
$ne: string | {};
|
|
654
|
+
$in: string | (string | {})[] | {};
|
|
655
|
+
$nin: string | (string | {})[] | {};
|
|
656
|
+
} & {}> | {} | undefined;
|
|
657
657
|
userId?: string | Partial<{
|
|
658
|
-
$gt?: string | undefined;
|
|
659
|
-
$gte?: string | undefined;
|
|
660
|
-
$lt?: string | undefined;
|
|
661
|
-
$lte?: string | undefined;
|
|
662
|
-
$ne?: string | undefined;
|
|
663
|
-
$in: string | string[];
|
|
664
|
-
$nin: string | string[];
|
|
665
|
-
} & {}> | undefined;
|
|
658
|
+
$gt?: string | {} | undefined;
|
|
659
|
+
$gte?: string | {} | undefined;
|
|
660
|
+
$lt?: string | {} | undefined;
|
|
661
|
+
$lte?: string | {} | undefined;
|
|
662
|
+
$ne?: string | {} | undefined;
|
|
663
|
+
$in: string | (string | {})[] | {};
|
|
664
|
+
$nin: string | (string | {})[] | {};
|
|
665
|
+
} & {}> | {} | undefined;
|
|
666
666
|
}[];
|
|
667
667
|
}> & {
|
|
668
668
|
_id?: string | Partial<{
|
|
@@ -694,21 +694,21 @@ export declare const strategiesHistoryQueryResolver: import("@feathersjs/schema"
|
|
|
694
694
|
$nin: "agent" | "auto_refine" | "generation" | "manual" | "user" | ("agent" | "auto_refine" | "generation" | "manual" | "user")[];
|
|
695
695
|
} & {}> | undefined;
|
|
696
696
|
strategyId?: string | Partial<{
|
|
697
|
-
$gt: string;
|
|
698
|
-
$gte: string;
|
|
699
|
-
$lt: string;
|
|
700
|
-
$lte: string;
|
|
701
|
-
$ne: string;
|
|
702
|
-
$in: string | string[];
|
|
703
|
-
$nin: string | string[];
|
|
704
|
-
} & {}> | undefined;
|
|
697
|
+
$gt: string | {};
|
|
698
|
+
$gte: string | {};
|
|
699
|
+
$lt: string | {};
|
|
700
|
+
$lte: string | {};
|
|
701
|
+
$ne: string | {};
|
|
702
|
+
$in: string | (string | {})[] | {};
|
|
703
|
+
$nin: string | (string | {})[] | {};
|
|
704
|
+
} & {}> | {} | undefined;
|
|
705
705
|
userId?: string | Partial<{
|
|
706
|
-
$gt?: string | undefined;
|
|
707
|
-
$gte?: string | undefined;
|
|
708
|
-
$lt?: string | undefined;
|
|
709
|
-
$lte?: string | undefined;
|
|
710
|
-
$ne?: string | undefined;
|
|
711
|
-
$in: string | string[];
|
|
712
|
-
$nin: string | string[];
|
|
713
|
-
} & {}> | undefined;
|
|
706
|
+
$gt?: string | {} | undefined;
|
|
707
|
+
$gte?: string | {} | undefined;
|
|
708
|
+
$lt?: string | {} | undefined;
|
|
709
|
+
$lte?: string | {} | undefined;
|
|
710
|
+
$ne?: string | {} | undefined;
|
|
711
|
+
$in: string | (string | {})[] | {};
|
|
712
|
+
$nin: string | (string | {})[] | {};
|
|
713
|
+
} & {}> | {} | undefined;
|
|
714
714
|
} & {}, HookContext<StrategiesHistoryService<import("./history.class").StrategiesHistoryParams>>>;
|