@cryptorobot.ai/client 1.26.0-dev.1028 → 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.
Files changed (23) hide show
  1. package/lib/src/services/advisor/advisor.schema.d.ts +1 -1
  2. package/lib/src/services/advisor/messages/messages.schema.d.ts +144 -144
  3. package/lib/src/services/agents/sessions/sessions.schema.d.ts +143 -143
  4. package/lib/src/services/autotune/usage/usage.schema.d.ts +3 -3
  5. package/lib/src/services/blog/sitemaps/pages/pages.schema.d.ts +72 -72
  6. package/lib/src/services/copilot/concerns/concerns.schema.d.ts +8 -8
  7. package/lib/src/services/models/pods/events/events.schema.d.ts +3 -3
  8. package/lib/src/services/models/signals/subscriptions/subscriptions.schema.d.ts +3 -3
  9. package/lib/src/services/security/events/security-events.schema.d.ts +70 -70
  10. package/lib/src/services/snapshot/snapshot.schema.d.ts +336 -336
  11. package/lib/src/services/strategies/backtest/backtest.schema.d.ts +231 -135
  12. package/lib/src/services/strategies/generate/generate.schema.d.ts +80 -80
  13. package/lib/src/services/strategies/history/history.schema.d.ts +152 -152
  14. package/lib/src/services/strategies/research/research.schema.d.ts +72 -72
  15. package/lib/src/services/tax/sessions/sessions.schema.d.ts +72 -72
  16. package/lib/src/services/tokens/tokens.schema.d.ts +72 -72
  17. package/lib/src/services/traders/pods/api/api.schema.d.ts +8 -8
  18. package/lib/src/services/traders/pods/events/events.schema.d.ts +144 -144
  19. package/lib/src/services/traders/pods/pods.schema.d.ts +73 -73
  20. package/lib/src/services/traders/pods/webhooks/webhooks.schema.d.ts +144 -144
  21. package/lib/src/services/users/access/access.schema.d.ts +70 -70
  22. package/lib/src/services/users/sessions/sessions.schema.d.ts +70 -70
  23. package/package.json +1 -1
@@ -5,7 +5,7 @@ export declare const SECURITY_EVENT_TYPES: readonly ['login', 'login_failed', 'l
5
5
  export type SecurityEventType = (typeof SECURITY_EVENT_TYPES)[number];
6
6
  export declare const securityEventsSchema: import("@feathersjs/typebox").TObject<{
7
7
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
8
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
8
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
9
9
  event: import("@feathersjs/typebox").TString<string>;
10
10
  severity: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"info">, import("@feathersjs/typebox").TLiteral<"warn">, import("@feathersjs/typebox").TLiteral<"critical">]>;
11
11
  ip: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -20,7 +20,7 @@ export type SecurityEvents = Static<typeof securityEventsSchema>;
20
20
  export declare const securityEventsValidator: import("@feathersjs/schema").Validator<any, any>;
21
21
  export declare const securityEventsResolver: import("@feathersjs/schema").Resolver<{
22
22
  _id: string | {};
23
- userId?: string | undefined;
23
+ userId?: string | {} | undefined;
24
24
  event: string;
25
25
  severity: "critical" | "info" | "warn";
26
26
  ip?: string | undefined;
@@ -33,7 +33,7 @@ export declare const securityEventsResolver: import("@feathersjs/schema").Resolv
33
33
  }, HookContext<SecurityEventsService<import("./security-events.class").SecurityEventsParams>>>;
34
34
  export declare const securityEventsExternalResolver: import("@feathersjs/schema").Resolver<{
35
35
  _id: string | {};
36
- userId?: string | undefined;
36
+ userId?: string | {} | undefined;
37
37
  event: string;
38
38
  severity: "critical" | "info" | "warn";
39
39
  ip?: string | undefined;
@@ -45,7 +45,7 @@ export declare const securityEventsExternalResolver: import("@feathersjs/schema"
45
45
  createdAt?: any;
46
46
  }, HookContext<SecurityEventsService<import("./security-events.class").SecurityEventsParams>>>;
47
47
  export declare const securityEventsDataSchema: import("@feathersjs/typebox").TObject<{
48
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
48
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
49
49
  event: import("@feathersjs/typebox").TString<string>;
50
50
  severity: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"info">, import("@feathersjs/typebox").TLiteral<"warn">, import("@feathersjs/typebox").TLiteral<"critical">]>;
51
51
  ip: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -59,7 +59,7 @@ export type SecurityEventsData = Static<typeof securityEventsDataSchema>;
59
59
  export declare const securityEventsDataValidator: import("@feathersjs/schema").Validator<any, any>;
60
60
  export declare const securityEventsDataResolver: import("@feathersjs/schema").Resolver<{
61
61
  _id: string | {};
62
- userId?: string | undefined;
62
+ userId?: string | {} | undefined;
63
63
  event: string;
64
64
  severity: "critical" | "info" | "warn";
65
65
  ip?: string | undefined;
@@ -76,7 +76,7 @@ export declare const securityEventsPatchValidator: import("@feathersjs/schema").
76
76
  export declare const securityEventsPatchResolver: import("@feathersjs/schema").Resolver<{}, HookContext<SecurityEventsService<import("./security-events.class").SecurityEventsParams>>>;
77
77
  export declare const securityEventsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
78
78
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
79
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
79
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
80
80
  event: import("@feathersjs/typebox").TString<string>;
81
81
  severity: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"info">, import("@feathersjs/typebox").TLiteral<"warn">, import("@feathersjs/typebox").TLiteral<"critical">]>;
82
82
  ip: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -143,14 +143,14 @@ export declare const securityEventsQuerySchema: import("@feathersjs/typebox").TI
143
143
  }>, import("@feathersjs/typebox").TObject<{
144
144
  [key: string]: import("@feathersjs/typebox").TSchema;
145
145
  } | undefined>]>>]>>;
146
- 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<{
147
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
148
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
149
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
150
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
151
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
152
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
153
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
146
+ 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<{
147
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
148
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
149
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
150
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
151
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
152
+ $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<{}>]>>;
153
+ $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<{}>]>>;
154
154
  }>, import("@feathersjs/typebox").TObject<{
155
155
  [key: string]: import("@feathersjs/typebox").TSchema;
156
156
  } | undefined>]>>]>>;
@@ -200,14 +200,14 @@ export declare const securityEventsQuerySchema: import("@feathersjs/typebox").TI
200
200
  }>, import("@feathersjs/typebox").TObject<{
201
201
  [key: string]: import("@feathersjs/typebox").TSchema;
202
202
  } | undefined>]>>]>>;
203
- 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<{
204
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
205
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
206
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
207
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
208
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
209
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
210
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
203
+ 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<{
204
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
205
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
206
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
207
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
208
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
209
+ $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<{}>]>>;
210
+ $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<{}>]>>;
211
211
  }>, import("@feathersjs/typebox").TObject<{
212
212
  [key: string]: import("@feathersjs/typebox").TSchema;
213
213
  } | undefined>]>>]>>;
@@ -258,14 +258,14 @@ export declare const securityEventsQuerySchema: import("@feathersjs/typebox").TI
258
258
  }>, import("@feathersjs/typebox").TObject<{
259
259
  [key: string]: import("@feathersjs/typebox").TSchema;
260
260
  } | undefined>]>>]>>;
261
- 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<{
262
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
263
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
264
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
265
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
266
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
267
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
268
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
261
+ 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<{
262
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
263
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
264
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
265
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
266
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
267
+ $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<{}>]>>;
268
+ $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<{}>]>>;
269
269
  }>, import("@feathersjs/typebox").TObject<{
270
270
  [key: string]: import("@feathersjs/typebox").TSchema;
271
271
  } | undefined>]>>]>>;
@@ -315,14 +315,14 @@ export declare const securityEventsQuerySchema: import("@feathersjs/typebox").TI
315
315
  }>, import("@feathersjs/typebox").TObject<{
316
316
  [key: string]: import("@feathersjs/typebox").TSchema;
317
317
  } | undefined>]>>]>>;
318
- 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<{
319
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
320
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
321
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
322
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
323
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
324
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
325
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
318
+ 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<{
319
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
320
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
321
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
322
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
323
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
324
+ $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<{}>]>>;
325
+ $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<{}>]>>;
326
326
  }>, import("@feathersjs/typebox").TObject<{
327
327
  [key: string]: import("@feathersjs/typebox").TSchema;
328
328
  } | undefined>]>>]>>;
@@ -370,14 +370,14 @@ export declare const securityEventsQueryResolver: import("@feathersjs/schema").R
370
370
  $nin: "critical" | "info" | "warn" | ("critical" | "info" | "warn")[];
371
371
  } & {}> | undefined;
372
372
  userId?: string | Partial<{
373
- $gt?: string | undefined;
374
- $gte?: string | undefined;
375
- $lt?: string | undefined;
376
- $lte?: string | undefined;
377
- $ne?: string | undefined;
378
- $in: string | string[];
379
- $nin: string | string[];
380
- } & {}> | undefined;
373
+ $gt?: string | {} | undefined;
374
+ $gte?: string | {} | undefined;
375
+ $lt?: string | {} | undefined;
376
+ $lte?: string | {} | undefined;
377
+ $ne?: string | {} | undefined;
378
+ $in: string | (string | {})[] | {};
379
+ $nin: string | (string | {})[] | {};
380
+ } & {}> | {} | undefined;
381
381
  } | {
382
382
  $or: {
383
383
  _id?: string | Partial<{
@@ -409,14 +409,14 @@ export declare const securityEventsQueryResolver: import("@feathersjs/schema").R
409
409
  $nin: "critical" | "info" | "warn" | ("critical" | "info" | "warn")[];
410
410
  } & {}> | undefined;
411
411
  userId?: string | Partial<{
412
- $gt?: string | undefined;
413
- $gte?: string | undefined;
414
- $lt?: string | undefined;
415
- $lte?: string | undefined;
416
- $ne?: string | undefined;
417
- $in: string | string[];
418
- $nin: string | string[];
419
- } & {}> | undefined;
412
+ $gt?: string | {} | undefined;
413
+ $gte?: string | {} | undefined;
414
+ $lt?: string | {} | undefined;
415
+ $lte?: string | {} | undefined;
416
+ $ne?: string | {} | undefined;
417
+ $in: string | (string | {})[] | {};
418
+ $nin: string | (string | {})[] | {};
419
+ } & {}> | {} | undefined;
420
420
  }[];
421
421
  })[];
422
422
  $or: {
@@ -449,14 +449,14 @@ export declare const securityEventsQueryResolver: import("@feathersjs/schema").R
449
449
  $nin: "critical" | "info" | "warn" | ("critical" | "info" | "warn")[];
450
450
  } & {}> | undefined;
451
451
  userId?: string | Partial<{
452
- $gt?: string | undefined;
453
- $gte?: string | undefined;
454
- $lt?: string | undefined;
455
- $lte?: string | undefined;
456
- $ne?: string | undefined;
457
- $in: string | string[];
458
- $nin: string | string[];
459
- } & {}> | undefined;
452
+ $gt?: string | {} | undefined;
453
+ $gte?: string | {} | undefined;
454
+ $lt?: string | {} | undefined;
455
+ $lte?: string | {} | undefined;
456
+ $ne?: string | {} | undefined;
457
+ $in: string | (string | {})[] | {};
458
+ $nin: string | (string | {})[] | {};
459
+ } & {}> | {} | undefined;
460
460
  }[];
461
461
  }> & {
462
462
  _id?: string | Partial<{
@@ -488,12 +488,12 @@ export declare const securityEventsQueryResolver: import("@feathersjs/schema").R
488
488
  $nin: "critical" | "info" | "warn" | ("critical" | "info" | "warn")[];
489
489
  } & {}> | undefined;
490
490
  userId?: string | Partial<{
491
- $gt?: string | undefined;
492
- $gte?: string | undefined;
493
- $lt?: string | undefined;
494
- $lte?: string | undefined;
495
- $ne?: string | undefined;
496
- $in: string | string[];
497
- $nin: string | string[];
498
- } & {}> | undefined;
491
+ $gt?: string | {} | undefined;
492
+ $gte?: string | {} | undefined;
493
+ $lt?: string | {} | undefined;
494
+ $lte?: string | {} | undefined;
495
+ $ne?: string | {} | undefined;
496
+ $in: string | (string | {})[] | {};
497
+ $nin: string | (string | {})[] | {};
498
+ } & {}> | {} | undefined;
499
499
  } & {}, HookContext<SecurityEventsService<import("./security-events.class").SecurityEventsParams>>>;