@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.
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
@@ -9,8 +9,8 @@ export declare const agentsSessionsSchema: import("@feathersjs/typebox").TObject
9
9
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
10
10
  status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ACTIVE">, import("@feathersjs/typebox").TLiteral<"EXPIRED">, import("@feathersjs/typebox").TLiteral<"ENDED">, import("@feathersjs/typebox").TLiteral<"NOT_FOUND">]>;
11
11
  metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRecord<import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TString<string>>>;
12
- agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
13
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
12
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
13
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
14
14
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
15
15
  }>;
16
16
  export type AgentsSessions = Static<typeof agentsSessionsSchema>;
@@ -23,8 +23,8 @@ export declare const agentsSessionsResolver: import("@feathersjs/schema").Resolv
23
23
  updatedAt?: any;
24
24
  status: "ACTIVE" | "ENDED" | "EXPIRED" | "NOT_FOUND";
25
25
  metadata?: Record<string, string> | undefined;
26
- agentId?: string | undefined;
27
- userId?: string | undefined;
26
+ agentId?: string | {} | undefined;
27
+ userId?: string | {} | undefined;
28
28
  name?: string | undefined;
29
29
  }, HookContext<AgentsSessionsService<import("./sessions.class").AgentsSessionsParams>>>;
30
30
  export declare const agentsSessionsExternalResolver: import("@feathersjs/schema").Resolver<{
@@ -35,15 +35,15 @@ export declare const agentsSessionsExternalResolver: import("@feathersjs/schema"
35
35
  updatedAt?: any;
36
36
  status: "ACTIVE" | "ENDED" | "EXPIRED" | "NOT_FOUND";
37
37
  metadata?: Record<string, string> | undefined;
38
- agentId?: string | undefined;
39
- userId?: string | undefined;
38
+ agentId?: string | {} | undefined;
39
+ userId?: string | {} | undefined;
40
40
  name?: string | undefined;
41
41
  }, HookContext<AgentsSessionsService<import("./sessions.class").AgentsSessionsParams>>>;
42
42
  export declare const agentsSessionsDataSchema: import("@feathersjs/typebox").TObject<{
43
43
  sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
44
44
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ACTIVE">, import("@feathersjs/typebox").TLiteral<"EXPIRED">, import("@feathersjs/typebox").TLiteral<"ENDED">, import("@feathersjs/typebox").TLiteral<"NOT_FOUND">]>>;
45
45
  metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRecord<import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TString<string>>>;
46
- agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
46
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
47
47
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
48
48
  prompt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
49
49
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -59,8 +59,8 @@ export declare const agentsSessionsDataResolver: import("@feathersjs/schema").Re
59
59
  updatedAt?: any;
60
60
  status: "ACTIVE" | "ENDED" | "EXPIRED" | "NOT_FOUND";
61
61
  metadata?: Record<string, string> | undefined;
62
- agentId?: string | undefined;
63
- userId?: string | undefined;
62
+ agentId?: string | {} | undefined;
63
+ userId?: string | {} | undefined;
64
64
  name?: string | undefined;
65
65
  }, HookContext<AgentsSessionsService<import("./sessions.class").AgentsSessionsParams>>>;
66
66
  export declare const agentsSessionsPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
@@ -71,8 +71,8 @@ export declare const agentsSessionsPatchSchema: import("@feathersjs/typebox").TP
71
71
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
72
72
  status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ACTIVE">, import("@feathersjs/typebox").TLiteral<"EXPIRED">, import("@feathersjs/typebox").TLiteral<"ENDED">, import("@feathersjs/typebox").TLiteral<"NOT_FOUND">]>;
73
73
  metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRecord<import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TString<string>>>;
74
- agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
75
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
74
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
75
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
76
76
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
77
77
  }>>;
78
78
  export type AgentsSessionsPatch = Static<typeof agentsSessionsPatchSchema>;
@@ -85,8 +85,8 @@ export declare const agentsSessionsPatchResolver: import("@feathersjs/schema").R
85
85
  updatedAt?: any;
86
86
  status: "ACTIVE" | "ENDED" | "EXPIRED" | "NOT_FOUND";
87
87
  metadata?: Record<string, string> | undefined;
88
- agentId?: string | undefined;
89
- userId?: string | undefined;
88
+ agentId?: string | {} | undefined;
89
+ userId?: string | {} | undefined;
90
90
  name?: string | undefined;
91
91
  }, HookContext<AgentsSessionsService<import("./sessions.class").AgentsSessionsParams>>>;
92
92
  export declare const agentsSessionsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
@@ -97,8 +97,8 @@ export declare const agentsSessionsQueryProperties: import("@feathersjs/typebox"
97
97
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
98
98
  status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ACTIVE">, import("@feathersjs/typebox").TLiteral<"EXPIRED">, import("@feathersjs/typebox").TLiteral<"ENDED">, import("@feathersjs/typebox").TLiteral<"NOT_FOUND">]>;
99
99
  metadata: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRecord<import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TString<string>>>;
100
- agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
101
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
100
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
101
+ userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
102
102
  name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
103
103
  }>, ["_id", "sessionId", "sessionArn", "status", "metadata", "userId", "agentId", "name", "createdAt", "updatedAt"]>;
104
104
  export declare const agentsSessionsQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
@@ -129,14 +129,14 @@ export declare const agentsSessionsQuerySchema: import("@feathersjs/typebox").TI
129
129
  }>, import("@feathersjs/typebox").TObject<{
130
130
  [key: string]: import("@feathersjs/typebox").TSchema;
131
131
  } | undefined>]>>]>>;
132
- agentId: 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<{
133
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
134
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
135
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
136
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
137
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
138
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
139
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
132
+ agentId: 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<{
133
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
134
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
135
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
136
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
137
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
138
+ $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<{}>]>>;
139
+ $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<{}>]>>;
140
140
  }>, import("@feathersjs/typebox").TObject<{
141
141
  [key: string]: import("@feathersjs/typebox").TSchema;
142
142
  } | undefined>]>>]>>;
@@ -217,14 +217,14 @@ export declare const agentsSessionsQuerySchema: import("@feathersjs/typebox").TI
217
217
  }>, import("@feathersjs/typebox").TObject<{
218
218
  [key: string]: import("@feathersjs/typebox").TSchema;
219
219
  } | undefined>]>>]>>;
220
- 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<{
221
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
222
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
223
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
224
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
225
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
226
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
227
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
220
+ 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<{
221
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
222
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
223
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
224
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
225
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
226
+ $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<{}>]>>;
227
+ $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<{}>]>>;
228
228
  }>, import("@feathersjs/typebox").TObject<{
229
229
  [key: string]: import("@feathersjs/typebox").TSchema;
230
230
  } | undefined>]>>]>>;
@@ -241,14 +241,14 @@ export declare const agentsSessionsQuerySchema: import("@feathersjs/typebox").TI
241
241
  }>, import("@feathersjs/typebox").TObject<{
242
242
  [key: string]: import("@feathersjs/typebox").TSchema;
243
243
  } | undefined>]>>]>>;
244
- agentId: 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<{
245
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
246
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
247
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
248
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
249
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
250
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
251
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
244
+ agentId: 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<{
245
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
246
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
247
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
248
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
249
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
250
+ $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<{}>]>>;
251
+ $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<{}>]>>;
252
252
  }>, import("@feathersjs/typebox").TObject<{
253
253
  [key: string]: import("@feathersjs/typebox").TSchema;
254
254
  } | undefined>]>>]>>;
@@ -329,14 +329,14 @@ export declare const agentsSessionsQuerySchema: import("@feathersjs/typebox").TI
329
329
  }>, import("@feathersjs/typebox").TObject<{
330
330
  [key: string]: import("@feathersjs/typebox").TSchema;
331
331
  } | undefined>]>>]>>;
332
- 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<{
333
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
334
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
335
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
336
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
337
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
338
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
339
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
332
+ 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<{
333
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
334
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
335
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
336
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
337
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
338
+ $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<{}>]>>;
339
+ $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<{}>]>>;
340
340
  }>, import("@feathersjs/typebox").TObject<{
341
341
  [key: string]: import("@feathersjs/typebox").TSchema;
342
342
  } | undefined>]>>]>>;
@@ -354,14 +354,14 @@ export declare const agentsSessionsQuerySchema: import("@feathersjs/typebox").TI
354
354
  }>, import("@feathersjs/typebox").TObject<{
355
355
  [key: string]: import("@feathersjs/typebox").TSchema;
356
356
  } | undefined>]>>]>>;
357
- agentId: 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<{
358
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
359
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
360
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
361
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
362
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
363
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
364
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
357
+ agentId: 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<{
358
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
359
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
360
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
361
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
362
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
363
+ $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<{}>]>>;
364
+ $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<{}>]>>;
365
365
  }>, import("@feathersjs/typebox").TObject<{
366
366
  [key: string]: import("@feathersjs/typebox").TSchema;
367
367
  } | undefined>]>>]>>;
@@ -442,14 +442,14 @@ export declare const agentsSessionsQuerySchema: import("@feathersjs/typebox").TI
442
442
  }>, import("@feathersjs/typebox").TObject<{
443
443
  [key: string]: import("@feathersjs/typebox").TSchema;
444
444
  } | undefined>]>>]>>;
445
- 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<{
446
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
447
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
448
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
449
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
450
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
451
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
452
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
445
+ 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<{
446
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
447
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
448
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
449
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
450
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
451
+ $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<{}>]>>;
452
+ $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<{}>]>>;
453
453
  }>, import("@feathersjs/typebox").TObject<{
454
454
  [key: string]: import("@feathersjs/typebox").TSchema;
455
455
  } | undefined>]>>]>>;
@@ -466,14 +466,14 @@ export declare const agentsSessionsQuerySchema: import("@feathersjs/typebox").TI
466
466
  }>, import("@feathersjs/typebox").TObject<{
467
467
  [key: string]: import("@feathersjs/typebox").TSchema;
468
468
  } | undefined>]>>]>>;
469
- agentId: 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<{
470
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
471
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
472
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
473
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
474
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
475
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
476
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
469
+ agentId: 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<{
470
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
471
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
472
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
473
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
474
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
475
+ $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<{}>]>>;
476
+ $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<{}>]>>;
477
477
  }>, import("@feathersjs/typebox").TObject<{
478
478
  [key: string]: import("@feathersjs/typebox").TSchema;
479
479
  } | undefined>]>>]>>;
@@ -554,14 +554,14 @@ export declare const agentsSessionsQuerySchema: import("@feathersjs/typebox").TI
554
554
  }>, import("@feathersjs/typebox").TObject<{
555
555
  [key: string]: import("@feathersjs/typebox").TSchema;
556
556
  } | undefined>]>>]>>;
557
- 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<{
558
- $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
559
- $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
560
- $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
561
- $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
562
- $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
563
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
564
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
557
+ 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<{
558
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
559
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
560
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
561
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
562
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
563
+ $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<{}>]>>;
564
+ $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<{}>]>>;
565
565
  }>, import("@feathersjs/typebox").TObject<{
566
566
  [key: string]: import("@feathersjs/typebox").TSchema;
567
567
  } | undefined>]>>]>>;
@@ -595,14 +595,14 @@ export declare const agentsSessionsQueryResolver: import("@feathersjs/schema").R
595
595
  $nin: string | (string | {})[] | {};
596
596
  } & {}> | {} | undefined;
597
597
  agentId?: string | Partial<{
598
- $gt?: string | undefined;
599
- $gte?: string | undefined;
600
- $lt?: string | undefined;
601
- $lte?: string | undefined;
602
- $ne?: string | undefined;
603
- $in: string | string[];
604
- $nin: string | string[];
605
- } & {}> | undefined;
598
+ $gt?: string | {} | undefined;
599
+ $gte?: string | {} | undefined;
600
+ $lt?: string | {} | undefined;
601
+ $lte?: string | {} | undefined;
602
+ $ne?: string | {} | undefined;
603
+ $in: string | (string | {})[] | {};
604
+ $nin: string | (string | {})[] | {};
605
+ } & {}> | {} | undefined;
606
606
  createdAt?: any;
607
607
  metadata?: Partial<{
608
608
  $gt?: Record<string, string> | undefined;
@@ -651,14 +651,14 @@ export declare const agentsSessionsQueryResolver: import("@feathersjs/schema").R
651
651
  } & {}> | undefined;
652
652
  updatedAt?: any;
653
653
  userId?: string | Partial<{
654
- $gt?: string | undefined;
655
- $gte?: string | undefined;
656
- $lt?: string | undefined;
657
- $lte?: string | undefined;
658
- $ne?: string | undefined;
659
- $in: string | string[];
660
- $nin: string | string[];
661
- } & {}> | undefined;
654
+ $gt?: string | {} | undefined;
655
+ $gte?: string | {} | undefined;
656
+ $lt?: string | {} | undefined;
657
+ $lte?: string | {} | undefined;
658
+ $ne?: string | {} | undefined;
659
+ $in: string | (string | {})[] | {};
660
+ $nin: string | (string | {})[] | {};
661
+ } & {}> | {} | undefined;
662
662
  } | {
663
663
  $or: {
664
664
  _id?: string | Partial<{
@@ -671,14 +671,14 @@ export declare const agentsSessionsQueryResolver: import("@feathersjs/schema").R
671
671
  $nin: string | (string | {})[] | {};
672
672
  } & {}> | {} | undefined;
673
673
  agentId?: string | Partial<{
674
- $gt?: string | undefined;
675
- $gte?: string | undefined;
676
- $lt?: string | undefined;
677
- $lte?: string | undefined;
678
- $ne?: string | undefined;
679
- $in: string | string[];
680
- $nin: string | string[];
681
- } & {}> | undefined;
674
+ $gt?: string | {} | undefined;
675
+ $gte?: string | {} | undefined;
676
+ $lt?: string | {} | undefined;
677
+ $lte?: string | {} | undefined;
678
+ $ne?: string | {} | undefined;
679
+ $in: string | (string | {})[] | {};
680
+ $nin: string | (string | {})[] | {};
681
+ } & {}> | {} | undefined;
682
682
  createdAt?: any;
683
683
  metadata?: Partial<{
684
684
  $gt?: Record<string, string> | undefined;
@@ -727,14 +727,14 @@ export declare const agentsSessionsQueryResolver: import("@feathersjs/schema").R
727
727
  } & {}> | undefined;
728
728
  updatedAt?: any;
729
729
  userId?: string | Partial<{
730
- $gt?: string | undefined;
731
- $gte?: string | undefined;
732
- $lt?: string | undefined;
733
- $lte?: string | undefined;
734
- $ne?: string | undefined;
735
- $in: string | string[];
736
- $nin: string | string[];
737
- } & {}> | undefined;
730
+ $gt?: string | {} | undefined;
731
+ $gte?: string | {} | undefined;
732
+ $lt?: string | {} | undefined;
733
+ $lte?: string | {} | undefined;
734
+ $ne?: string | {} | undefined;
735
+ $in: string | (string | {})[] | {};
736
+ $nin: string | (string | {})[] | {};
737
+ } & {}> | {} | undefined;
738
738
  }[];
739
739
  })[];
740
740
  $or: {
@@ -748,14 +748,14 @@ export declare const agentsSessionsQueryResolver: import("@feathersjs/schema").R
748
748
  $nin: string | (string | {})[] | {};
749
749
  } & {}> | {} | undefined;
750
750
  agentId?: string | Partial<{
751
- $gt?: string | undefined;
752
- $gte?: string | undefined;
753
- $lt?: string | undefined;
754
- $lte?: string | undefined;
755
- $ne?: string | undefined;
756
- $in: string | string[];
757
- $nin: string | string[];
758
- } & {}> | undefined;
751
+ $gt?: string | {} | undefined;
752
+ $gte?: string | {} | undefined;
753
+ $lt?: string | {} | undefined;
754
+ $lte?: string | {} | undefined;
755
+ $ne?: string | {} | undefined;
756
+ $in: string | (string | {})[] | {};
757
+ $nin: string | (string | {})[] | {};
758
+ } & {}> | {} | undefined;
759
759
  createdAt?: any;
760
760
  metadata?: Partial<{
761
761
  $gt?: Record<string, string> | undefined;
@@ -804,14 +804,14 @@ export declare const agentsSessionsQueryResolver: import("@feathersjs/schema").R
804
804
  } & {}> | undefined;
805
805
  updatedAt?: any;
806
806
  userId?: string | Partial<{
807
- $gt?: string | undefined;
808
- $gte?: string | undefined;
809
- $lt?: string | undefined;
810
- $lte?: string | undefined;
811
- $ne?: string | undefined;
812
- $in: string | string[];
813
- $nin: string | string[];
814
- } & {}> | undefined;
807
+ $gt?: string | {} | undefined;
808
+ $gte?: string | {} | undefined;
809
+ $lt?: string | {} | undefined;
810
+ $lte?: string | {} | undefined;
811
+ $ne?: string | {} | undefined;
812
+ $in: string | (string | {})[] | {};
813
+ $nin: string | (string | {})[] | {};
814
+ } & {}> | {} | undefined;
815
815
  }[];
816
816
  }> & {
817
817
  _id?: string | Partial<{
@@ -824,14 +824,14 @@ export declare const agentsSessionsQueryResolver: import("@feathersjs/schema").R
824
824
  $nin: string | (string | {})[] | {};
825
825
  } & {}> | {} | undefined;
826
826
  agentId?: string | Partial<{
827
- $gt?: string | undefined;
828
- $gte?: string | undefined;
829
- $lt?: string | undefined;
830
- $lte?: string | undefined;
831
- $ne?: string | undefined;
832
- $in: string | string[];
833
- $nin: string | string[];
834
- } & {}> | undefined;
827
+ $gt?: string | {} | undefined;
828
+ $gte?: string | {} | undefined;
829
+ $lt?: string | {} | undefined;
830
+ $lte?: string | {} | undefined;
831
+ $ne?: string | {} | undefined;
832
+ $in: string | (string | {})[] | {};
833
+ $nin: string | (string | {})[] | {};
834
+ } & {}> | {} | undefined;
835
835
  createdAt?: any;
836
836
  metadata?: Partial<{
837
837
  $gt?: Record<string, string> | undefined;
@@ -880,12 +880,12 @@ export declare const agentsSessionsQueryResolver: import("@feathersjs/schema").R
880
880
  } & {}> | undefined;
881
881
  updatedAt?: any;
882
882
  userId?: string | Partial<{
883
- $gt?: string | undefined;
884
- $gte?: string | undefined;
885
- $lt?: string | undefined;
886
- $lte?: string | undefined;
887
- $ne?: string | undefined;
888
- $in: string | string[];
889
- $nin: string | string[];
890
- } & {}> | undefined;
883
+ $gt?: string | {} | undefined;
884
+ $gte?: string | {} | undefined;
885
+ $lt?: string | {} | undefined;
886
+ $lte?: string | {} | undefined;
887
+ $ne?: string | {} | undefined;
888
+ $in: string | (string | {})[] | {};
889
+ $nin: string | (string | {})[] | {};
890
+ } & {}> | {} | undefined;
891
891
  } & {}, HookContext<AgentsSessionsService<import("./sessions.class").AgentsSessionsParams>>>;
@@ -61,9 +61,9 @@ export declare const autotuneUsageExternalResolver: import("@feathersjs/schema")
61
61
  createdAt: any;
62
62
  }, HookContext<AutotuneUsageService<import("./usage.class").AutotuneUsageParams>>>;
63
63
  export declare const autotuneUsageDataSchema: import("@feathersjs/typebox").TObject<{
64
- userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
65
- studyId: 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>, import("@feathersjs/typebox").TNull]>>;
66
- trialId: 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>, import("@feathersjs/typebox").TNull]>>;
64
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
65
+ studyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TNull]>>;
66
+ trialId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TNull]>>;
67
67
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"batch">, import("@feathersjs/typebox").TLiteral<"docker">, import("@feathersjs/typebox").TLiteral<"ecs">, import("@feathersjs/typebox").TLiteral<"nomad">]>;
68
68
  state: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"reserved">, import("@feathersjs/typebox").TLiteral<"settled">, import("@feathersjs/typebox").TLiteral<"voided">]>;
69
69
  source: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"estimate">, import("@feathersjs/typebox").TLiteral<"aws-batch">, import("@feathersjs/typebox").TLiteral<"docker-events">, import("@feathersjs/typebox").TLiteral<"nomad-callback">, import("@feathersjs/typebox").TLiteral<"system">]>;