@cryptorobot.ai/client 0.0.39 → 0.0.40

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 (81) hide show
  1. package/lib/src/client.js +29 -2
  2. package/lib/src/services/agents/agents.class.d.ts +11 -0
  3. package/lib/src/services/agents/agents.d.ts +11 -0
  4. package/lib/src/services/agents/agents.schema.d.ts +2371 -0
  5. package/lib/src/services/agents/agents.shared.d.ts +13 -0
  6. package/lib/src/services/agents/agents.shared.js +13 -0
  7. package/lib/src/services/agents/prepare/prepare.class.d.ts +18 -0
  8. package/lib/src/services/agents/prepare/prepare.d.ts +11 -0
  9. package/lib/src/services/agents/prepare/prepare.schema.d.ts +285 -0
  10. package/lib/src/services/agents/prepare/prepare.shared.d.ts +13 -0
  11. package/lib/src/services/agents/prepare/prepare.shared.js +13 -0
  12. package/lib/src/services/agents/sessions/conversations/conversations.class.d.ts +11 -0
  13. package/lib/src/services/agents/sessions/conversations/conversations.d.ts +11 -0
  14. package/lib/src/services/agents/sessions/conversations/conversations.schema.d.ts +2561 -0
  15. package/lib/src/services/agents/sessions/conversations/conversations.shared.d.ts +13 -0
  16. package/lib/src/services/agents/sessions/conversations/conversations.shared.js +13 -0
  17. package/lib/src/services/agents/sessions/sessions.class.d.ts +11 -0
  18. package/lib/src/services/agents/sessions/sessions.d.ts +11 -0
  19. package/lib/src/services/agents/sessions/sessions.schema.d.ts +803 -0
  20. package/lib/src/services/agents/sessions/sessions.shared.d.ts +13 -0
  21. package/lib/src/services/agents/sessions/sessions.shared.js +13 -0
  22. package/lib/src/services/events/events.class.d.ts +11 -0
  23. package/lib/src/services/events/events.d.ts +11 -0
  24. package/lib/src/services/events/events.schema.d.ts +786 -0
  25. package/lib/src/services/events/events.shared.d.ts +13 -0
  26. package/lib/src/services/events/events.shared.js +13 -0
  27. package/lib/src/services/events/triggers/triggers.class.d.ts +11 -0
  28. package/lib/src/services/events/triggers/triggers.d.ts +11 -0
  29. package/lib/src/services/events/triggers/triggers.schema.d.ts +1582 -0
  30. package/lib/src/services/events/triggers/triggers.shared.d.ts +13 -0
  31. package/lib/src/services/events/triggers/triggers.shared.js +13 -0
  32. package/lib/src/services/events/types/types.class.d.ts +11 -0
  33. package/lib/src/services/events/types/types.d.ts +11 -0
  34. package/lib/src/services/events/types/types.schema.d.ts +688 -0
  35. package/lib/src/services/events/types/types.shared.d.ts +13 -0
  36. package/lib/src/services/events/types/types.shared.js +13 -0
  37. package/lib/src/services/exchanges/download/download.shared.d.ts +1 -1
  38. package/lib/src/services/exchanges/download/download.shared.js +1 -1
  39. package/lib/src/services/extensions/extensions.class.d.ts +11 -0
  40. package/lib/src/services/extensions/extensions.d.ts +11 -0
  41. package/lib/src/services/extensions/extensions.schema.d.ts +1275 -0
  42. package/lib/src/services/extensions/extensions.shared.d.ts +13 -0
  43. package/lib/src/services/extensions/extensions.shared.js +13 -0
  44. package/lib/src/services/keys/KeysService.d.ts +13 -0
  45. package/lib/src/services/keys/keys.class.d.ts +11 -0
  46. package/lib/src/services/keys/keys.d.ts +11 -0
  47. package/lib/src/services/keys/keys.schema.d.ts +719 -0
  48. package/lib/src/services/keys/keys.shared.d.ts +14 -0
  49. package/lib/src/services/keys/keys.shared.js +13 -0
  50. package/lib/src/services/messages/messages.schema.d.ts +4 -4
  51. package/lib/src/services/restricted/restricted.class.d.ts +26 -0
  52. package/lib/src/services/restricted/restricted.d.ts +21 -0
  53. package/lib/src/services/restricted/restricted.shared.d.ts +13 -0
  54. package/lib/src/services/restricted/restricted.shared.js +13 -0
  55. package/lib/src/services/strategies/backtest/results/results.schema.d.ts +28 -28
  56. package/lib/src/services/strategies/generate/generate.class.d.ts +11 -0
  57. package/lib/src/services/strategies/generate/generate.d.ts +11 -0
  58. package/lib/src/services/strategies/generate/generate.schema.d.ts +429 -0
  59. package/lib/src/services/strategies/generate/generate.shared.d.ts +13 -0
  60. package/lib/src/services/strategies/generate/generate.shared.js +13 -0
  61. package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +12 -4
  62. package/lib/src/services/strategies/indicators/indicators.schema.d.ts +177 -97
  63. package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +4 -4
  64. package/lib/src/services/strategies/strategies.schema.d.ts +2708 -303
  65. package/lib/src/services/strategies/templates/templates.schema.d.ts +2142 -12
  66. package/lib/src/services/tools/openapi/openapi.class.d.ts +34 -0
  67. package/lib/src/services/tools/openapi/openapi.d.ts +10 -0
  68. package/lib/src/services/tools/openapi/openapi.shared.d.ts +13 -0
  69. package/lib/src/services/tools/openapi/openapi.shared.js +13 -0
  70. package/lib/src/services/tools/tools.class.d.ts +11 -0
  71. package/lib/src/services/tools/tools.d.ts +11 -0
  72. package/lib/src/services/tools/tools.schema.d.ts +269 -0
  73. package/lib/src/services/tools/tools.shared.d.ts +13 -0
  74. package/lib/src/services/tools/tools.shared.js +13 -0
  75. package/lib/src/services/traders/pods/api/api.schema.d.ts +1284 -188
  76. package/lib/src/services/traders/pods/events/events.schema.d.ts +4 -4
  77. package/lib/src/services/traders/pods/pods.schema.d.ts +1280 -184
  78. package/lib/src/services/traders/traders.schema.d.ts +4 -4
  79. package/lib/src/services/users/users.class.d.ts +2 -2
  80. package/lib/src/services/users/users.schema.d.ts +4 -4
  81. package/package.json +1 -1
@@ -0,0 +1,2371 @@
1
+ import type { Static } from '@feathersjs/typebox';
2
+ import type { HookContext } from '../../declarations';
3
+ import type { AgentsService } from './agents.class';
4
+ export declare const collaboratorSchema: import("@feathersjs/typebox").TObject<{
5
+ _id: import("@feathersjs/typebox").TString<string>;
6
+ name: import("@feathersjs/typebox").TString<string>;
7
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
8
+ instructions: import("@feathersjs/typebox").TString<string>;
9
+ }>;
10
+ export declare const agentsSchema: import("@feathersjs/typebox").TObject<{
11
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
12
+ name: import("@feathersjs/typebox").TString<string>;
13
+ role: import("@feathersjs/typebox").TString<string>;
14
+ description: import("@feathersjs/typebox").TString<string>;
15
+ instruction: import("@feathersjs/typebox").TString<string>;
16
+ memory: import("@feathersjs/typebox").TBoolean;
17
+ coding: import("@feathersjs/typebox").TBoolean;
18
+ autonomously: import("@feathersjs/typebox").TBoolean;
19
+ collaboration: import("@feathersjs/typebox").TObject<{
20
+ enabled: import("@feathersjs/typebox").TBoolean;
21
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
22
+ _id: import("@feathersjs/typebox").TString<string>;
23
+ name: import("@feathersjs/typebox").TString<string>;
24
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
25
+ instructions: import("@feathersjs/typebox").TString<string>;
26
+ }>>;
27
+ }>;
28
+ actions: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
29
+ triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
30
+ model: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
31
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
32
+ knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
33
+ bedrockAgentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
34
+ bedrockStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
35
+ securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
36
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
37
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
38
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
39
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
40
+ }>>;
41
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
42
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
43
+ }>;
44
+ export type Agents = Static<typeof agentsSchema>;
45
+ export declare const agentsValidator: import("@feathersjs/schema").Validator<any, any>;
46
+ export declare const agentsResolver: import("@feathersjs/schema").Resolver<{
47
+ model?: string | undefined;
48
+ createdAt?: any;
49
+ updatedAt?: any;
50
+ timeout?: number | undefined;
51
+ knowledgeBases?: string[] | undefined;
52
+ bedrockAgentId?: string | undefined;
53
+ bedrockStatus?: string | undefined;
54
+ securityAttributes?: {
55
+ rawApiKey?: string | undefined;
56
+ apiKeyId: string;
57
+ apiKeyName: string;
58
+ scopes: string[];
59
+ } | undefined;
60
+ name: string;
61
+ memory: boolean;
62
+ _id: string | {};
63
+ description: string;
64
+ role: string;
65
+ instruction: string;
66
+ coding: boolean;
67
+ autonomously: boolean;
68
+ collaboration: {
69
+ enabled: boolean;
70
+ agents: {
71
+ name: string;
72
+ _id: string;
73
+ memoryType: "shared" | "private";
74
+ instructions: string;
75
+ }[];
76
+ };
77
+ actions: any[];
78
+ triggers: string[];
79
+ }, HookContext<AgentsService<import("./agents.class").AgentsParams>>>;
80
+ export declare const agentsExternalResolver: import("@feathersjs/schema").Resolver<{
81
+ model?: string | undefined;
82
+ createdAt?: any;
83
+ updatedAt?: any;
84
+ timeout?: number | undefined;
85
+ knowledgeBases?: string[] | undefined;
86
+ bedrockAgentId?: string | undefined;
87
+ bedrockStatus?: string | undefined;
88
+ securityAttributes?: {
89
+ rawApiKey?: string | undefined;
90
+ apiKeyId: string;
91
+ apiKeyName: string;
92
+ scopes: string[];
93
+ } | undefined;
94
+ name: string;
95
+ memory: boolean;
96
+ _id: string | {};
97
+ description: string;
98
+ role: string;
99
+ instruction: string;
100
+ coding: boolean;
101
+ autonomously: boolean;
102
+ collaboration: {
103
+ enabled: boolean;
104
+ agents: {
105
+ name: string;
106
+ _id: string;
107
+ memoryType: "shared" | "private";
108
+ instructions: string;
109
+ }[];
110
+ };
111
+ actions: any[];
112
+ triggers: string[];
113
+ }, HookContext<AgentsService<import("./agents.class").AgentsParams>>>;
114
+ export declare const agentsDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
115
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
116
+ name: import("@feathersjs/typebox").TString<string>;
117
+ role: import("@feathersjs/typebox").TString<string>;
118
+ description: import("@feathersjs/typebox").TString<string>;
119
+ instruction: import("@feathersjs/typebox").TString<string>;
120
+ memory: import("@feathersjs/typebox").TBoolean;
121
+ coding: import("@feathersjs/typebox").TBoolean;
122
+ autonomously: import("@feathersjs/typebox").TBoolean;
123
+ collaboration: import("@feathersjs/typebox").TObject<{
124
+ enabled: import("@feathersjs/typebox").TBoolean;
125
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
126
+ _id: import("@feathersjs/typebox").TString<string>;
127
+ name: import("@feathersjs/typebox").TString<string>;
128
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
129
+ instructions: import("@feathersjs/typebox").TString<string>;
130
+ }>>;
131
+ }>;
132
+ actions: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
133
+ triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
134
+ model: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
135
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
136
+ knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
137
+ bedrockAgentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
138
+ bedrockStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
139
+ securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
140
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
141
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
142
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
143
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
144
+ }>>;
145
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
146
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
147
+ }>, ["name", "role", "description", "instruction", "memory", "coding", "autonomously", "collaboration", "actions", "triggers", "model", "timeout", "knowledgeBases", "createdAt", "updatedAt"]>;
148
+ export type AgentsData = Static<typeof agentsDataSchema>;
149
+ export declare const agentsDataValidator: import("@feathersjs/schema").Validator<any, any>;
150
+ export declare const agentsDataResolver: import("@feathersjs/schema").Resolver<{
151
+ model?: string | undefined;
152
+ createdAt?: any;
153
+ updatedAt?: any;
154
+ timeout?: number | undefined;
155
+ knowledgeBases?: string[] | undefined;
156
+ bedrockAgentId?: string | undefined;
157
+ bedrockStatus?: string | undefined;
158
+ securityAttributes?: {
159
+ rawApiKey?: string | undefined;
160
+ apiKeyId: string;
161
+ apiKeyName: string;
162
+ scopes: string[];
163
+ } | undefined;
164
+ name: string;
165
+ memory: boolean;
166
+ _id: string | {};
167
+ description: string;
168
+ role: string;
169
+ instruction: string;
170
+ coding: boolean;
171
+ autonomously: boolean;
172
+ collaboration: {
173
+ enabled: boolean;
174
+ agents: {
175
+ name: string;
176
+ _id: string;
177
+ memoryType: "shared" | "private";
178
+ instructions: string;
179
+ }[];
180
+ };
181
+ actions: any[];
182
+ triggers: string[];
183
+ }, HookContext<AgentsService<import("./agents.class").AgentsParams>>>;
184
+ export declare const agentsPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
185
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
186
+ name: import("@feathersjs/typebox").TString<string>;
187
+ role: import("@feathersjs/typebox").TString<string>;
188
+ description: import("@feathersjs/typebox").TString<string>;
189
+ instruction: import("@feathersjs/typebox").TString<string>;
190
+ memory: import("@feathersjs/typebox").TBoolean;
191
+ coding: import("@feathersjs/typebox").TBoolean;
192
+ autonomously: import("@feathersjs/typebox").TBoolean;
193
+ collaboration: import("@feathersjs/typebox").TObject<{
194
+ enabled: import("@feathersjs/typebox").TBoolean;
195
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
196
+ _id: import("@feathersjs/typebox").TString<string>;
197
+ name: import("@feathersjs/typebox").TString<string>;
198
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
199
+ instructions: import("@feathersjs/typebox").TString<string>;
200
+ }>>;
201
+ }>;
202
+ actions: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
203
+ triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
204
+ model: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
205
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
206
+ knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
207
+ bedrockAgentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
208
+ bedrockStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
209
+ securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
210
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
211
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
212
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
213
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
214
+ }>>;
215
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
216
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
217
+ }>>;
218
+ export type AgentsPatch = Static<typeof agentsPatchSchema>;
219
+ export declare const agentsPatchValidator: import("@feathersjs/schema").Validator<any, any>;
220
+ export declare const agentsPatchResolver: import("@feathersjs/schema").Resolver<{
221
+ model?: string | undefined;
222
+ createdAt?: any;
223
+ updatedAt?: any;
224
+ timeout?: number | undefined;
225
+ knowledgeBases?: string[] | undefined;
226
+ bedrockAgentId?: string | undefined;
227
+ bedrockStatus?: string | undefined;
228
+ securityAttributes?: {
229
+ rawApiKey?: string | undefined;
230
+ apiKeyId: string;
231
+ apiKeyName: string;
232
+ scopes: string[];
233
+ } | undefined;
234
+ name: string;
235
+ memory: boolean;
236
+ _id: string | {};
237
+ description: string;
238
+ role: string;
239
+ instruction: string;
240
+ coding: boolean;
241
+ autonomously: boolean;
242
+ collaboration: {
243
+ enabled: boolean;
244
+ agents: {
245
+ name: string;
246
+ _id: string;
247
+ memoryType: "shared" | "private";
248
+ instructions: string;
249
+ }[];
250
+ };
251
+ actions: any[];
252
+ triggers: string[];
253
+ }, HookContext<AgentsService<import("./agents.class").AgentsParams>>>;
254
+ export declare const agentsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
255
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
256
+ name: import("@feathersjs/typebox").TString<string>;
257
+ role: import("@feathersjs/typebox").TString<string>;
258
+ description: import("@feathersjs/typebox").TString<string>;
259
+ instruction: import("@feathersjs/typebox").TString<string>;
260
+ memory: import("@feathersjs/typebox").TBoolean;
261
+ coding: import("@feathersjs/typebox").TBoolean;
262
+ autonomously: import("@feathersjs/typebox").TBoolean;
263
+ collaboration: import("@feathersjs/typebox").TObject<{
264
+ enabled: import("@feathersjs/typebox").TBoolean;
265
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
266
+ _id: import("@feathersjs/typebox").TString<string>;
267
+ name: import("@feathersjs/typebox").TString<string>;
268
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
269
+ instructions: import("@feathersjs/typebox").TString<string>;
270
+ }>>;
271
+ }>;
272
+ actions: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
273
+ triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
274
+ model: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
275
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
276
+ knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
277
+ bedrockAgentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
278
+ bedrockStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
279
+ securityAttributes: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
280
+ apiKeyId: import("@feathersjs/typebox").TString<string>;
281
+ apiKeyName: import("@feathersjs/typebox").TString<string>;
282
+ scopes: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
283
+ rawApiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
284
+ }>>;
285
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
286
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
287
+ }>, ["_id", "name", "role", "description", "instruction", "memory", "coding", "autonomously", "collaboration", "actions", "triggers", "model", "timeout", "knowledgeBases", "bedrockAgentId", "bedrockStatus", "createdAt", "updatedAt"]>;
288
+ export declare const agentsQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
289
+ $limit: import("@feathersjs/typebox").TNumber;
290
+ $skip: import("@feathersjs/typebox").TNumber;
291
+ $sort: import("@feathersjs/typebox").TObject<{
292
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
293
+ memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
294
+ model: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
295
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
296
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
297
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
298
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
299
+ role: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
300
+ instruction: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
301
+ coding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
302
+ autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
303
+ collaboration: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
304
+ actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
305
+ triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
306
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
307
+ knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
308
+ bedrockAgentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
309
+ bedrockStatus: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
310
+ }>;
311
+ $select: import("@feathersjs/typebox").TUnsafe<("name" | "memory" | "model" | "_id" | "createdAt" | "updatedAt" | "description" | "role" | "instruction" | "coding" | "autonomously" | "collaboration" | "actions" | "triggers" | "timeout" | "knowledgeBases" | "bedrockAgentId" | "bedrockStatus")[]>;
312
+ $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
313
+ name: 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<{
314
+ $gt: import("@feathersjs/typebox").TString<string>;
315
+ $gte: import("@feathersjs/typebox").TString<string>;
316
+ $lt: import("@feathersjs/typebox").TString<string>;
317
+ $lte: import("@feathersjs/typebox").TString<string>;
318
+ $ne: import("@feathersjs/typebox").TString<string>;
319
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
320
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
321
+ }>, import("@feathersjs/typebox").TObject<{
322
+ [key: string]: import("@feathersjs/typebox").TSchema;
323
+ } | undefined>]>>]>>;
324
+ memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
325
+ $gt: import("@feathersjs/typebox").TBoolean;
326
+ $gte: import("@feathersjs/typebox").TBoolean;
327
+ $lt: import("@feathersjs/typebox").TBoolean;
328
+ $lte: import("@feathersjs/typebox").TBoolean;
329
+ $ne: import("@feathersjs/typebox").TBoolean;
330
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
331
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
332
+ }>, import("@feathersjs/typebox").TObject<{
333
+ [key: string]: import("@feathersjs/typebox").TSchema;
334
+ } | undefined>]>>]>>;
335
+ model: 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<{
336
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
337
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
338
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
339
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
340
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
341
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
342
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
343
+ }>, import("@feathersjs/typebox").TObject<{
344
+ [key: string]: import("@feathersjs/typebox").TSchema;
345
+ } | undefined>]>>]>>;
346
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
347
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
348
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
349
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
350
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
351
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
352
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
353
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
354
+ }>, import("@feathersjs/typebox").TObject<{
355
+ [key: string]: import("@feathersjs/typebox").TSchema;
356
+ } | undefined>]>>]>>;
357
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
358
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
359
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
360
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
361
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
362
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
363
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
364
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
365
+ }>, import("@feathersjs/typebox").TObject<{
366
+ [key: string]: import("@feathersjs/typebox").TSchema;
367
+ } | undefined>]>>]>>;
368
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
369
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
370
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
371
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
372
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
373
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
374
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
375
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
376
+ }>, import("@feathersjs/typebox").TObject<{
377
+ [key: string]: import("@feathersjs/typebox").TSchema;
378
+ } | undefined>]>>]>>;
379
+ description: 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<{
380
+ $gt: import("@feathersjs/typebox").TString<string>;
381
+ $gte: import("@feathersjs/typebox").TString<string>;
382
+ $lt: import("@feathersjs/typebox").TString<string>;
383
+ $lte: import("@feathersjs/typebox").TString<string>;
384
+ $ne: import("@feathersjs/typebox").TString<string>;
385
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
386
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
387
+ }>, import("@feathersjs/typebox").TObject<{
388
+ [key: string]: import("@feathersjs/typebox").TSchema;
389
+ } | undefined>]>>]>>;
390
+ role: 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<{
391
+ $gt: import("@feathersjs/typebox").TString<string>;
392
+ $gte: import("@feathersjs/typebox").TString<string>;
393
+ $lt: import("@feathersjs/typebox").TString<string>;
394
+ $lte: import("@feathersjs/typebox").TString<string>;
395
+ $ne: import("@feathersjs/typebox").TString<string>;
396
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
397
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
398
+ }>, import("@feathersjs/typebox").TObject<{
399
+ [key: string]: import("@feathersjs/typebox").TSchema;
400
+ } | undefined>]>>]>>;
401
+ instruction: 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<{
402
+ $gt: import("@feathersjs/typebox").TString<string>;
403
+ $gte: import("@feathersjs/typebox").TString<string>;
404
+ $lt: import("@feathersjs/typebox").TString<string>;
405
+ $lte: import("@feathersjs/typebox").TString<string>;
406
+ $ne: import("@feathersjs/typebox").TString<string>;
407
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
408
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
409
+ }>, import("@feathersjs/typebox").TObject<{
410
+ [key: string]: import("@feathersjs/typebox").TSchema;
411
+ } | undefined>]>>]>>;
412
+ coding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
413
+ $gt: import("@feathersjs/typebox").TBoolean;
414
+ $gte: import("@feathersjs/typebox").TBoolean;
415
+ $lt: import("@feathersjs/typebox").TBoolean;
416
+ $lte: import("@feathersjs/typebox").TBoolean;
417
+ $ne: import("@feathersjs/typebox").TBoolean;
418
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
419
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
420
+ }>, import("@feathersjs/typebox").TObject<{
421
+ [key: string]: import("@feathersjs/typebox").TSchema;
422
+ } | undefined>]>>]>>;
423
+ autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
424
+ $gt: import("@feathersjs/typebox").TBoolean;
425
+ $gte: import("@feathersjs/typebox").TBoolean;
426
+ $lt: import("@feathersjs/typebox").TBoolean;
427
+ $lte: import("@feathersjs/typebox").TBoolean;
428
+ $ne: import("@feathersjs/typebox").TBoolean;
429
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
430
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
431
+ }>, import("@feathersjs/typebox").TObject<{
432
+ [key: string]: import("@feathersjs/typebox").TSchema;
433
+ } | undefined>]>>]>>;
434
+ collaboration: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
435
+ enabled: import("@feathersjs/typebox").TBoolean;
436
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
437
+ _id: import("@feathersjs/typebox").TString<string>;
438
+ name: import("@feathersjs/typebox").TString<string>;
439
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
440
+ instructions: import("@feathersjs/typebox").TString<string>;
441
+ }>>;
442
+ }>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
443
+ $gt: import("@feathersjs/typebox").TObject<{
444
+ enabled: import("@feathersjs/typebox").TBoolean;
445
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
446
+ _id: import("@feathersjs/typebox").TString<string>;
447
+ name: import("@feathersjs/typebox").TString<string>;
448
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
449
+ instructions: import("@feathersjs/typebox").TString<string>;
450
+ }>>;
451
+ }>;
452
+ $gte: import("@feathersjs/typebox").TObject<{
453
+ enabled: import("@feathersjs/typebox").TBoolean;
454
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
455
+ _id: import("@feathersjs/typebox").TString<string>;
456
+ name: import("@feathersjs/typebox").TString<string>;
457
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
458
+ instructions: import("@feathersjs/typebox").TString<string>;
459
+ }>>;
460
+ }>;
461
+ $lt: import("@feathersjs/typebox").TObject<{
462
+ enabled: import("@feathersjs/typebox").TBoolean;
463
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
464
+ _id: import("@feathersjs/typebox").TString<string>;
465
+ name: import("@feathersjs/typebox").TString<string>;
466
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
467
+ instructions: import("@feathersjs/typebox").TString<string>;
468
+ }>>;
469
+ }>;
470
+ $lte: import("@feathersjs/typebox").TObject<{
471
+ enabled: import("@feathersjs/typebox").TBoolean;
472
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
473
+ _id: import("@feathersjs/typebox").TString<string>;
474
+ name: import("@feathersjs/typebox").TString<string>;
475
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
476
+ instructions: import("@feathersjs/typebox").TString<string>;
477
+ }>>;
478
+ }>;
479
+ $ne: import("@feathersjs/typebox").TObject<{
480
+ enabled: import("@feathersjs/typebox").TBoolean;
481
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
482
+ _id: import("@feathersjs/typebox").TString<string>;
483
+ name: import("@feathersjs/typebox").TString<string>;
484
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
485
+ instructions: import("@feathersjs/typebox").TString<string>;
486
+ }>>;
487
+ }>;
488
+ $in: import("@feathersjs/typebox").TObject<{
489
+ enabled: import("@feathersjs/typebox").TBoolean;
490
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
491
+ _id: import("@feathersjs/typebox").TString<string>;
492
+ name: import("@feathersjs/typebox").TString<string>;
493
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
494
+ instructions: import("@feathersjs/typebox").TString<string>;
495
+ }>>;
496
+ }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
497
+ enabled: import("@feathersjs/typebox").TBoolean;
498
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
499
+ _id: import("@feathersjs/typebox").TString<string>;
500
+ name: import("@feathersjs/typebox").TString<string>;
501
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
502
+ instructions: import("@feathersjs/typebox").TString<string>;
503
+ }>>;
504
+ }>>;
505
+ $nin: import("@feathersjs/typebox").TObject<{
506
+ enabled: import("@feathersjs/typebox").TBoolean;
507
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
508
+ _id: import("@feathersjs/typebox").TString<string>;
509
+ name: import("@feathersjs/typebox").TString<string>;
510
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
511
+ instructions: import("@feathersjs/typebox").TString<string>;
512
+ }>>;
513
+ }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
514
+ enabled: import("@feathersjs/typebox").TBoolean;
515
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
516
+ _id: import("@feathersjs/typebox").TString<string>;
517
+ name: import("@feathersjs/typebox").TString<string>;
518
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
519
+ instructions: import("@feathersjs/typebox").TString<string>;
520
+ }>>;
521
+ }>>;
522
+ }>, import("@feathersjs/typebox").TObject<{
523
+ [key: string]: import("@feathersjs/typebox").TSchema;
524
+ } | undefined>]>>]>>;
525
+ actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
526
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
527
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
528
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
529
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
530
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
531
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
532
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
533
+ }>, import("@feathersjs/typebox").TObject<{
534
+ [key: string]: import("@feathersjs/typebox").TSchema;
535
+ } | undefined>]>>]>>;
536
+ triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
537
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
538
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
539
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
540
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
541
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
542
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
543
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
544
+ }>, import("@feathersjs/typebox").TObject<{
545
+ [key: string]: import("@feathersjs/typebox").TSchema;
546
+ } | undefined>]>>]>>;
547
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
548
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
549
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
550
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
551
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
552
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
553
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
554
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
555
+ }>, import("@feathersjs/typebox").TObject<{
556
+ [key: string]: import("@feathersjs/typebox").TSchema;
557
+ } | undefined>]>>]>>;
558
+ knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
559
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
560
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
561
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
562
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
563
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
564
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
565
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
566
+ }>, import("@feathersjs/typebox").TObject<{
567
+ [key: string]: import("@feathersjs/typebox").TSchema;
568
+ } | undefined>]>>]>>;
569
+ bedrockAgentId: 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<{
570
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
571
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
572
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
573
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
574
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
575
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
576
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
577
+ }>, import("@feathersjs/typebox").TObject<{
578
+ [key: string]: import("@feathersjs/typebox").TSchema;
579
+ } | undefined>]>>]>>;
580
+ bedrockStatus: 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<{
581
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
582
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
583
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
584
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
585
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
586
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
587
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
588
+ }>, import("@feathersjs/typebox").TObject<{
589
+ [key: string]: import("@feathersjs/typebox").TSchema;
590
+ } | undefined>]>>]>>;
591
+ }>>, import("@feathersjs/typebox").TObject<{
592
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
593
+ name: 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<{
594
+ $gt: import("@feathersjs/typebox").TString<string>;
595
+ $gte: import("@feathersjs/typebox").TString<string>;
596
+ $lt: import("@feathersjs/typebox").TString<string>;
597
+ $lte: import("@feathersjs/typebox").TString<string>;
598
+ $ne: import("@feathersjs/typebox").TString<string>;
599
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
600
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
601
+ }>, import("@feathersjs/typebox").TObject<{
602
+ [key: string]: import("@feathersjs/typebox").TSchema;
603
+ } | undefined>]>>]>>;
604
+ memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
605
+ $gt: import("@feathersjs/typebox").TBoolean;
606
+ $gte: import("@feathersjs/typebox").TBoolean;
607
+ $lt: import("@feathersjs/typebox").TBoolean;
608
+ $lte: import("@feathersjs/typebox").TBoolean;
609
+ $ne: import("@feathersjs/typebox").TBoolean;
610
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
611
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
612
+ }>, import("@feathersjs/typebox").TObject<{
613
+ [key: string]: import("@feathersjs/typebox").TSchema;
614
+ } | undefined>]>>]>>;
615
+ model: 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<{
616
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
617
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
618
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
619
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
620
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
621
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
622
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
623
+ }>, import("@feathersjs/typebox").TObject<{
624
+ [key: string]: import("@feathersjs/typebox").TSchema;
625
+ } | undefined>]>>]>>;
626
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
627
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
628
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
629
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
630
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
631
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
632
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
633
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
634
+ }>, import("@feathersjs/typebox").TObject<{
635
+ [key: string]: import("@feathersjs/typebox").TSchema;
636
+ } | undefined>]>>]>>;
637
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
638
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
639
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
640
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
641
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
642
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
643
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
644
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
645
+ }>, import("@feathersjs/typebox").TObject<{
646
+ [key: string]: import("@feathersjs/typebox").TSchema;
647
+ } | undefined>]>>]>>;
648
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
649
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
650
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
651
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
652
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
653
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
654
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
655
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
656
+ }>, import("@feathersjs/typebox").TObject<{
657
+ [key: string]: import("@feathersjs/typebox").TSchema;
658
+ } | undefined>]>>]>>;
659
+ description: 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<{
660
+ $gt: import("@feathersjs/typebox").TString<string>;
661
+ $gte: import("@feathersjs/typebox").TString<string>;
662
+ $lt: import("@feathersjs/typebox").TString<string>;
663
+ $lte: import("@feathersjs/typebox").TString<string>;
664
+ $ne: import("@feathersjs/typebox").TString<string>;
665
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
666
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
667
+ }>, import("@feathersjs/typebox").TObject<{
668
+ [key: string]: import("@feathersjs/typebox").TSchema;
669
+ } | undefined>]>>]>>;
670
+ role: 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<{
671
+ $gt: import("@feathersjs/typebox").TString<string>;
672
+ $gte: import("@feathersjs/typebox").TString<string>;
673
+ $lt: import("@feathersjs/typebox").TString<string>;
674
+ $lte: import("@feathersjs/typebox").TString<string>;
675
+ $ne: import("@feathersjs/typebox").TString<string>;
676
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
677
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
678
+ }>, import("@feathersjs/typebox").TObject<{
679
+ [key: string]: import("@feathersjs/typebox").TSchema;
680
+ } | undefined>]>>]>>;
681
+ instruction: 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<{
682
+ $gt: import("@feathersjs/typebox").TString<string>;
683
+ $gte: import("@feathersjs/typebox").TString<string>;
684
+ $lt: import("@feathersjs/typebox").TString<string>;
685
+ $lte: import("@feathersjs/typebox").TString<string>;
686
+ $ne: import("@feathersjs/typebox").TString<string>;
687
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
688
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
689
+ }>, import("@feathersjs/typebox").TObject<{
690
+ [key: string]: import("@feathersjs/typebox").TSchema;
691
+ } | undefined>]>>]>>;
692
+ coding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
693
+ $gt: import("@feathersjs/typebox").TBoolean;
694
+ $gte: import("@feathersjs/typebox").TBoolean;
695
+ $lt: import("@feathersjs/typebox").TBoolean;
696
+ $lte: import("@feathersjs/typebox").TBoolean;
697
+ $ne: import("@feathersjs/typebox").TBoolean;
698
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
699
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
700
+ }>, import("@feathersjs/typebox").TObject<{
701
+ [key: string]: import("@feathersjs/typebox").TSchema;
702
+ } | undefined>]>>]>>;
703
+ autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
704
+ $gt: import("@feathersjs/typebox").TBoolean;
705
+ $gte: import("@feathersjs/typebox").TBoolean;
706
+ $lt: import("@feathersjs/typebox").TBoolean;
707
+ $lte: import("@feathersjs/typebox").TBoolean;
708
+ $ne: import("@feathersjs/typebox").TBoolean;
709
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
710
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
711
+ }>, import("@feathersjs/typebox").TObject<{
712
+ [key: string]: import("@feathersjs/typebox").TSchema;
713
+ } | undefined>]>>]>>;
714
+ collaboration: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
715
+ enabled: import("@feathersjs/typebox").TBoolean;
716
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
717
+ _id: import("@feathersjs/typebox").TString<string>;
718
+ name: import("@feathersjs/typebox").TString<string>;
719
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
720
+ instructions: import("@feathersjs/typebox").TString<string>;
721
+ }>>;
722
+ }>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
723
+ $gt: import("@feathersjs/typebox").TObject<{
724
+ enabled: import("@feathersjs/typebox").TBoolean;
725
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
726
+ _id: import("@feathersjs/typebox").TString<string>;
727
+ name: import("@feathersjs/typebox").TString<string>;
728
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
729
+ instructions: import("@feathersjs/typebox").TString<string>;
730
+ }>>;
731
+ }>;
732
+ $gte: import("@feathersjs/typebox").TObject<{
733
+ enabled: import("@feathersjs/typebox").TBoolean;
734
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
735
+ _id: import("@feathersjs/typebox").TString<string>;
736
+ name: import("@feathersjs/typebox").TString<string>;
737
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
738
+ instructions: import("@feathersjs/typebox").TString<string>;
739
+ }>>;
740
+ }>;
741
+ $lt: import("@feathersjs/typebox").TObject<{
742
+ enabled: import("@feathersjs/typebox").TBoolean;
743
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
744
+ _id: import("@feathersjs/typebox").TString<string>;
745
+ name: import("@feathersjs/typebox").TString<string>;
746
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
747
+ instructions: import("@feathersjs/typebox").TString<string>;
748
+ }>>;
749
+ }>;
750
+ $lte: import("@feathersjs/typebox").TObject<{
751
+ enabled: import("@feathersjs/typebox").TBoolean;
752
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
753
+ _id: import("@feathersjs/typebox").TString<string>;
754
+ name: import("@feathersjs/typebox").TString<string>;
755
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
756
+ instructions: import("@feathersjs/typebox").TString<string>;
757
+ }>>;
758
+ }>;
759
+ $ne: import("@feathersjs/typebox").TObject<{
760
+ enabled: import("@feathersjs/typebox").TBoolean;
761
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
762
+ _id: import("@feathersjs/typebox").TString<string>;
763
+ name: import("@feathersjs/typebox").TString<string>;
764
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
765
+ instructions: import("@feathersjs/typebox").TString<string>;
766
+ }>>;
767
+ }>;
768
+ $in: import("@feathersjs/typebox").TObject<{
769
+ enabled: import("@feathersjs/typebox").TBoolean;
770
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
771
+ _id: import("@feathersjs/typebox").TString<string>;
772
+ name: import("@feathersjs/typebox").TString<string>;
773
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
774
+ instructions: import("@feathersjs/typebox").TString<string>;
775
+ }>>;
776
+ }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
777
+ enabled: import("@feathersjs/typebox").TBoolean;
778
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
779
+ _id: import("@feathersjs/typebox").TString<string>;
780
+ name: import("@feathersjs/typebox").TString<string>;
781
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
782
+ instructions: import("@feathersjs/typebox").TString<string>;
783
+ }>>;
784
+ }>>;
785
+ $nin: import("@feathersjs/typebox").TObject<{
786
+ enabled: import("@feathersjs/typebox").TBoolean;
787
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
788
+ _id: import("@feathersjs/typebox").TString<string>;
789
+ name: import("@feathersjs/typebox").TString<string>;
790
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
791
+ instructions: import("@feathersjs/typebox").TString<string>;
792
+ }>>;
793
+ }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
794
+ enabled: import("@feathersjs/typebox").TBoolean;
795
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
796
+ _id: import("@feathersjs/typebox").TString<string>;
797
+ name: import("@feathersjs/typebox").TString<string>;
798
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
799
+ instructions: import("@feathersjs/typebox").TString<string>;
800
+ }>>;
801
+ }>>;
802
+ }>, import("@feathersjs/typebox").TObject<{
803
+ [key: string]: import("@feathersjs/typebox").TSchema;
804
+ } | undefined>]>>]>>;
805
+ actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
806
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
807
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
808
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
809
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
810
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
811
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
812
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
813
+ }>, import("@feathersjs/typebox").TObject<{
814
+ [key: string]: import("@feathersjs/typebox").TSchema;
815
+ } | undefined>]>>]>>;
816
+ triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
817
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
818
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
819
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
820
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
821
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
822
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
823
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
824
+ }>, import("@feathersjs/typebox").TObject<{
825
+ [key: string]: import("@feathersjs/typebox").TSchema;
826
+ } | undefined>]>>]>>;
827
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
828
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
829
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
830
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
831
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
832
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
833
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
834
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
835
+ }>, import("@feathersjs/typebox").TObject<{
836
+ [key: string]: import("@feathersjs/typebox").TSchema;
837
+ } | undefined>]>>]>>;
838
+ knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
839
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
840
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
841
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
842
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
843
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
844
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
845
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
846
+ }>, import("@feathersjs/typebox").TObject<{
847
+ [key: string]: import("@feathersjs/typebox").TSchema;
848
+ } | undefined>]>>]>>;
849
+ bedrockAgentId: 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<{
850
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
851
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
852
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
853
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
854
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
855
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
856
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
857
+ }>, import("@feathersjs/typebox").TObject<{
858
+ [key: string]: import("@feathersjs/typebox").TSchema;
859
+ } | undefined>]>>]>>;
860
+ bedrockStatus: 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<{
861
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
862
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
863
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
864
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
865
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
866
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
867
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
868
+ }>, import("@feathersjs/typebox").TObject<{
869
+ [key: string]: import("@feathersjs/typebox").TSchema;
870
+ } | undefined>]>>]>>;
871
+ }>>>;
872
+ }>]>>;
873
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
874
+ name: 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<{
875
+ $gt: import("@feathersjs/typebox").TString<string>;
876
+ $gte: import("@feathersjs/typebox").TString<string>;
877
+ $lt: import("@feathersjs/typebox").TString<string>;
878
+ $lte: import("@feathersjs/typebox").TString<string>;
879
+ $ne: import("@feathersjs/typebox").TString<string>;
880
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
881
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
882
+ }>, import("@feathersjs/typebox").TObject<{
883
+ [key: string]: import("@feathersjs/typebox").TSchema;
884
+ } | undefined>]>>]>>;
885
+ memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
886
+ $gt: import("@feathersjs/typebox").TBoolean;
887
+ $gte: import("@feathersjs/typebox").TBoolean;
888
+ $lt: import("@feathersjs/typebox").TBoolean;
889
+ $lte: import("@feathersjs/typebox").TBoolean;
890
+ $ne: import("@feathersjs/typebox").TBoolean;
891
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
892
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
893
+ }>, import("@feathersjs/typebox").TObject<{
894
+ [key: string]: import("@feathersjs/typebox").TSchema;
895
+ } | undefined>]>>]>>;
896
+ model: 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<{
897
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
898
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
899
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
900
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
901
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
902
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
903
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
904
+ }>, import("@feathersjs/typebox").TObject<{
905
+ [key: string]: import("@feathersjs/typebox").TSchema;
906
+ } | undefined>]>>]>>;
907
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
908
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
909
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
910
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
911
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
912
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
913
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
914
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
915
+ }>, import("@feathersjs/typebox").TObject<{
916
+ [key: string]: import("@feathersjs/typebox").TSchema;
917
+ } | undefined>]>>]>>;
918
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
919
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
920
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
921
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
922
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
923
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
924
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
925
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
926
+ }>, import("@feathersjs/typebox").TObject<{
927
+ [key: string]: import("@feathersjs/typebox").TSchema;
928
+ } | undefined>]>>]>>;
929
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
930
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
931
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
932
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
933
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
934
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
935
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
936
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
937
+ }>, import("@feathersjs/typebox").TObject<{
938
+ [key: string]: import("@feathersjs/typebox").TSchema;
939
+ } | undefined>]>>]>>;
940
+ description: 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<{
941
+ $gt: import("@feathersjs/typebox").TString<string>;
942
+ $gte: import("@feathersjs/typebox").TString<string>;
943
+ $lt: import("@feathersjs/typebox").TString<string>;
944
+ $lte: import("@feathersjs/typebox").TString<string>;
945
+ $ne: import("@feathersjs/typebox").TString<string>;
946
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
947
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
948
+ }>, import("@feathersjs/typebox").TObject<{
949
+ [key: string]: import("@feathersjs/typebox").TSchema;
950
+ } | undefined>]>>]>>;
951
+ role: 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<{
952
+ $gt: import("@feathersjs/typebox").TString<string>;
953
+ $gte: import("@feathersjs/typebox").TString<string>;
954
+ $lt: import("@feathersjs/typebox").TString<string>;
955
+ $lte: import("@feathersjs/typebox").TString<string>;
956
+ $ne: import("@feathersjs/typebox").TString<string>;
957
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
958
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
959
+ }>, import("@feathersjs/typebox").TObject<{
960
+ [key: string]: import("@feathersjs/typebox").TSchema;
961
+ } | undefined>]>>]>>;
962
+ instruction: 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<{
963
+ $gt: import("@feathersjs/typebox").TString<string>;
964
+ $gte: import("@feathersjs/typebox").TString<string>;
965
+ $lt: import("@feathersjs/typebox").TString<string>;
966
+ $lte: import("@feathersjs/typebox").TString<string>;
967
+ $ne: import("@feathersjs/typebox").TString<string>;
968
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
969
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
970
+ }>, import("@feathersjs/typebox").TObject<{
971
+ [key: string]: import("@feathersjs/typebox").TSchema;
972
+ } | undefined>]>>]>>;
973
+ coding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
974
+ $gt: import("@feathersjs/typebox").TBoolean;
975
+ $gte: import("@feathersjs/typebox").TBoolean;
976
+ $lt: import("@feathersjs/typebox").TBoolean;
977
+ $lte: import("@feathersjs/typebox").TBoolean;
978
+ $ne: import("@feathersjs/typebox").TBoolean;
979
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
980
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
981
+ }>, import("@feathersjs/typebox").TObject<{
982
+ [key: string]: import("@feathersjs/typebox").TSchema;
983
+ } | undefined>]>>]>>;
984
+ autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
985
+ $gt: import("@feathersjs/typebox").TBoolean;
986
+ $gte: import("@feathersjs/typebox").TBoolean;
987
+ $lt: import("@feathersjs/typebox").TBoolean;
988
+ $lte: import("@feathersjs/typebox").TBoolean;
989
+ $ne: import("@feathersjs/typebox").TBoolean;
990
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
991
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
992
+ }>, import("@feathersjs/typebox").TObject<{
993
+ [key: string]: import("@feathersjs/typebox").TSchema;
994
+ } | undefined>]>>]>>;
995
+ collaboration: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
996
+ enabled: import("@feathersjs/typebox").TBoolean;
997
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
998
+ _id: import("@feathersjs/typebox").TString<string>;
999
+ name: import("@feathersjs/typebox").TString<string>;
1000
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1001
+ instructions: import("@feathersjs/typebox").TString<string>;
1002
+ }>>;
1003
+ }>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1004
+ $gt: import("@feathersjs/typebox").TObject<{
1005
+ enabled: import("@feathersjs/typebox").TBoolean;
1006
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1007
+ _id: import("@feathersjs/typebox").TString<string>;
1008
+ name: import("@feathersjs/typebox").TString<string>;
1009
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1010
+ instructions: import("@feathersjs/typebox").TString<string>;
1011
+ }>>;
1012
+ }>;
1013
+ $gte: import("@feathersjs/typebox").TObject<{
1014
+ enabled: import("@feathersjs/typebox").TBoolean;
1015
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1016
+ _id: import("@feathersjs/typebox").TString<string>;
1017
+ name: import("@feathersjs/typebox").TString<string>;
1018
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1019
+ instructions: import("@feathersjs/typebox").TString<string>;
1020
+ }>>;
1021
+ }>;
1022
+ $lt: import("@feathersjs/typebox").TObject<{
1023
+ enabled: import("@feathersjs/typebox").TBoolean;
1024
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1025
+ _id: import("@feathersjs/typebox").TString<string>;
1026
+ name: import("@feathersjs/typebox").TString<string>;
1027
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1028
+ instructions: import("@feathersjs/typebox").TString<string>;
1029
+ }>>;
1030
+ }>;
1031
+ $lte: import("@feathersjs/typebox").TObject<{
1032
+ enabled: import("@feathersjs/typebox").TBoolean;
1033
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1034
+ _id: import("@feathersjs/typebox").TString<string>;
1035
+ name: import("@feathersjs/typebox").TString<string>;
1036
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1037
+ instructions: import("@feathersjs/typebox").TString<string>;
1038
+ }>>;
1039
+ }>;
1040
+ $ne: import("@feathersjs/typebox").TObject<{
1041
+ enabled: import("@feathersjs/typebox").TBoolean;
1042
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1043
+ _id: import("@feathersjs/typebox").TString<string>;
1044
+ name: import("@feathersjs/typebox").TString<string>;
1045
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1046
+ instructions: import("@feathersjs/typebox").TString<string>;
1047
+ }>>;
1048
+ }>;
1049
+ $in: import("@feathersjs/typebox").TObject<{
1050
+ enabled: import("@feathersjs/typebox").TBoolean;
1051
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1052
+ _id: import("@feathersjs/typebox").TString<string>;
1053
+ name: import("@feathersjs/typebox").TString<string>;
1054
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1055
+ instructions: import("@feathersjs/typebox").TString<string>;
1056
+ }>>;
1057
+ }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1058
+ enabled: import("@feathersjs/typebox").TBoolean;
1059
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1060
+ _id: import("@feathersjs/typebox").TString<string>;
1061
+ name: import("@feathersjs/typebox").TString<string>;
1062
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1063
+ instructions: import("@feathersjs/typebox").TString<string>;
1064
+ }>>;
1065
+ }>>;
1066
+ $nin: import("@feathersjs/typebox").TObject<{
1067
+ enabled: import("@feathersjs/typebox").TBoolean;
1068
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1069
+ _id: import("@feathersjs/typebox").TString<string>;
1070
+ name: import("@feathersjs/typebox").TString<string>;
1071
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1072
+ instructions: import("@feathersjs/typebox").TString<string>;
1073
+ }>>;
1074
+ }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1075
+ enabled: import("@feathersjs/typebox").TBoolean;
1076
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1077
+ _id: import("@feathersjs/typebox").TString<string>;
1078
+ name: import("@feathersjs/typebox").TString<string>;
1079
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1080
+ instructions: import("@feathersjs/typebox").TString<string>;
1081
+ }>>;
1082
+ }>>;
1083
+ }>, import("@feathersjs/typebox").TObject<{
1084
+ [key: string]: import("@feathersjs/typebox").TSchema;
1085
+ } | undefined>]>>]>>;
1086
+ actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1087
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1088
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1089
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1090
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1091
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1092
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1093
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1094
+ }>, import("@feathersjs/typebox").TObject<{
1095
+ [key: string]: import("@feathersjs/typebox").TSchema;
1096
+ } | undefined>]>>]>>;
1097
+ triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1098
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1099
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1100
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1101
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1102
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1103
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1104
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1105
+ }>, import("@feathersjs/typebox").TObject<{
1106
+ [key: string]: import("@feathersjs/typebox").TSchema;
1107
+ } | undefined>]>>]>>;
1108
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1109
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1110
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1111
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1112
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1113
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1114
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
1115
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
1116
+ }>, import("@feathersjs/typebox").TObject<{
1117
+ [key: string]: import("@feathersjs/typebox").TSchema;
1118
+ } | undefined>]>>]>>;
1119
+ knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1120
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1121
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1122
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1123
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1124
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1125
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
1126
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
1127
+ }>, import("@feathersjs/typebox").TObject<{
1128
+ [key: string]: import("@feathersjs/typebox").TSchema;
1129
+ } | undefined>]>>]>>;
1130
+ bedrockAgentId: 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<{
1131
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1132
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1133
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1134
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1135
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1136
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1137
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1138
+ }>, import("@feathersjs/typebox").TObject<{
1139
+ [key: string]: import("@feathersjs/typebox").TSchema;
1140
+ } | undefined>]>>]>>;
1141
+ bedrockStatus: 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<{
1142
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1143
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1144
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1145
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1146
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1147
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1148
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1149
+ }>, import("@feathersjs/typebox").TObject<{
1150
+ [key: string]: import("@feathersjs/typebox").TSchema;
1151
+ } | undefined>]>>]>>;
1152
+ }>>>;
1153
+ }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1154
+ name: 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<{
1155
+ $gt: import("@feathersjs/typebox").TString<string>;
1156
+ $gte: import("@feathersjs/typebox").TString<string>;
1157
+ $lt: import("@feathersjs/typebox").TString<string>;
1158
+ $lte: import("@feathersjs/typebox").TString<string>;
1159
+ $ne: import("@feathersjs/typebox").TString<string>;
1160
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1161
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1162
+ }>, import("@feathersjs/typebox").TObject<{
1163
+ [key: string]: import("@feathersjs/typebox").TSchema;
1164
+ } | undefined>]>>]>>;
1165
+ memory: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1166
+ $gt: import("@feathersjs/typebox").TBoolean;
1167
+ $gte: import("@feathersjs/typebox").TBoolean;
1168
+ $lt: import("@feathersjs/typebox").TBoolean;
1169
+ $lte: import("@feathersjs/typebox").TBoolean;
1170
+ $ne: import("@feathersjs/typebox").TBoolean;
1171
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1172
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1173
+ }>, import("@feathersjs/typebox").TObject<{
1174
+ [key: string]: import("@feathersjs/typebox").TSchema;
1175
+ } | undefined>]>>]>>;
1176
+ model: 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<{
1177
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1178
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1179
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1180
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1181
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1182
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1183
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1184
+ }>, import("@feathersjs/typebox").TObject<{
1185
+ [key: string]: import("@feathersjs/typebox").TSchema;
1186
+ } | undefined>]>>]>>;
1187
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1188
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1189
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1190
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1191
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1192
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1193
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1194
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1195
+ }>, import("@feathersjs/typebox").TObject<{
1196
+ [key: string]: import("@feathersjs/typebox").TSchema;
1197
+ } | undefined>]>>]>>;
1198
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1199
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1200
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1201
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1202
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1203
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1204
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1205
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1206
+ }>, import("@feathersjs/typebox").TObject<{
1207
+ [key: string]: import("@feathersjs/typebox").TSchema;
1208
+ } | undefined>]>>]>>;
1209
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1210
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1211
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1212
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1213
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1214
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1215
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1216
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1217
+ }>, import("@feathersjs/typebox").TObject<{
1218
+ [key: string]: import("@feathersjs/typebox").TSchema;
1219
+ } | undefined>]>>]>>;
1220
+ description: 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<{
1221
+ $gt: import("@feathersjs/typebox").TString<string>;
1222
+ $gte: import("@feathersjs/typebox").TString<string>;
1223
+ $lt: import("@feathersjs/typebox").TString<string>;
1224
+ $lte: import("@feathersjs/typebox").TString<string>;
1225
+ $ne: import("@feathersjs/typebox").TString<string>;
1226
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1227
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1228
+ }>, import("@feathersjs/typebox").TObject<{
1229
+ [key: string]: import("@feathersjs/typebox").TSchema;
1230
+ } | undefined>]>>]>>;
1231
+ role: 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<{
1232
+ $gt: import("@feathersjs/typebox").TString<string>;
1233
+ $gte: import("@feathersjs/typebox").TString<string>;
1234
+ $lt: import("@feathersjs/typebox").TString<string>;
1235
+ $lte: import("@feathersjs/typebox").TString<string>;
1236
+ $ne: import("@feathersjs/typebox").TString<string>;
1237
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1238
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1239
+ }>, import("@feathersjs/typebox").TObject<{
1240
+ [key: string]: import("@feathersjs/typebox").TSchema;
1241
+ } | undefined>]>>]>>;
1242
+ instruction: 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<{
1243
+ $gt: import("@feathersjs/typebox").TString<string>;
1244
+ $gte: import("@feathersjs/typebox").TString<string>;
1245
+ $lt: import("@feathersjs/typebox").TString<string>;
1246
+ $lte: import("@feathersjs/typebox").TString<string>;
1247
+ $ne: import("@feathersjs/typebox").TString<string>;
1248
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1249
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1250
+ }>, import("@feathersjs/typebox").TObject<{
1251
+ [key: string]: import("@feathersjs/typebox").TSchema;
1252
+ } | undefined>]>>]>>;
1253
+ coding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1254
+ $gt: import("@feathersjs/typebox").TBoolean;
1255
+ $gte: import("@feathersjs/typebox").TBoolean;
1256
+ $lt: import("@feathersjs/typebox").TBoolean;
1257
+ $lte: import("@feathersjs/typebox").TBoolean;
1258
+ $ne: import("@feathersjs/typebox").TBoolean;
1259
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1260
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1261
+ }>, import("@feathersjs/typebox").TObject<{
1262
+ [key: string]: import("@feathersjs/typebox").TSchema;
1263
+ } | undefined>]>>]>>;
1264
+ autonomously: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1265
+ $gt: import("@feathersjs/typebox").TBoolean;
1266
+ $gte: import("@feathersjs/typebox").TBoolean;
1267
+ $lt: import("@feathersjs/typebox").TBoolean;
1268
+ $lte: import("@feathersjs/typebox").TBoolean;
1269
+ $ne: import("@feathersjs/typebox").TBoolean;
1270
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1271
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
1272
+ }>, import("@feathersjs/typebox").TObject<{
1273
+ [key: string]: import("@feathersjs/typebox").TSchema;
1274
+ } | undefined>]>>]>>;
1275
+ collaboration: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TObject<{
1276
+ enabled: import("@feathersjs/typebox").TBoolean;
1277
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1278
+ _id: import("@feathersjs/typebox").TString<string>;
1279
+ name: import("@feathersjs/typebox").TString<string>;
1280
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1281
+ instructions: import("@feathersjs/typebox").TString<string>;
1282
+ }>>;
1283
+ }>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1284
+ $gt: import("@feathersjs/typebox").TObject<{
1285
+ enabled: import("@feathersjs/typebox").TBoolean;
1286
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1287
+ _id: import("@feathersjs/typebox").TString<string>;
1288
+ name: import("@feathersjs/typebox").TString<string>;
1289
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1290
+ instructions: import("@feathersjs/typebox").TString<string>;
1291
+ }>>;
1292
+ }>;
1293
+ $gte: import("@feathersjs/typebox").TObject<{
1294
+ enabled: import("@feathersjs/typebox").TBoolean;
1295
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1296
+ _id: import("@feathersjs/typebox").TString<string>;
1297
+ name: import("@feathersjs/typebox").TString<string>;
1298
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1299
+ instructions: import("@feathersjs/typebox").TString<string>;
1300
+ }>>;
1301
+ }>;
1302
+ $lt: import("@feathersjs/typebox").TObject<{
1303
+ enabled: import("@feathersjs/typebox").TBoolean;
1304
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1305
+ _id: import("@feathersjs/typebox").TString<string>;
1306
+ name: import("@feathersjs/typebox").TString<string>;
1307
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1308
+ instructions: import("@feathersjs/typebox").TString<string>;
1309
+ }>>;
1310
+ }>;
1311
+ $lte: import("@feathersjs/typebox").TObject<{
1312
+ enabled: import("@feathersjs/typebox").TBoolean;
1313
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1314
+ _id: import("@feathersjs/typebox").TString<string>;
1315
+ name: import("@feathersjs/typebox").TString<string>;
1316
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1317
+ instructions: import("@feathersjs/typebox").TString<string>;
1318
+ }>>;
1319
+ }>;
1320
+ $ne: import("@feathersjs/typebox").TObject<{
1321
+ enabled: import("@feathersjs/typebox").TBoolean;
1322
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1323
+ _id: import("@feathersjs/typebox").TString<string>;
1324
+ name: import("@feathersjs/typebox").TString<string>;
1325
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1326
+ instructions: import("@feathersjs/typebox").TString<string>;
1327
+ }>>;
1328
+ }>;
1329
+ $in: import("@feathersjs/typebox").TObject<{
1330
+ enabled: import("@feathersjs/typebox").TBoolean;
1331
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1332
+ _id: import("@feathersjs/typebox").TString<string>;
1333
+ name: import("@feathersjs/typebox").TString<string>;
1334
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1335
+ instructions: import("@feathersjs/typebox").TString<string>;
1336
+ }>>;
1337
+ }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1338
+ enabled: import("@feathersjs/typebox").TBoolean;
1339
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1340
+ _id: import("@feathersjs/typebox").TString<string>;
1341
+ name: import("@feathersjs/typebox").TString<string>;
1342
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1343
+ instructions: import("@feathersjs/typebox").TString<string>;
1344
+ }>>;
1345
+ }>>;
1346
+ $nin: import("@feathersjs/typebox").TObject<{
1347
+ enabled: import("@feathersjs/typebox").TBoolean;
1348
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1349
+ _id: import("@feathersjs/typebox").TString<string>;
1350
+ name: import("@feathersjs/typebox").TString<string>;
1351
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1352
+ instructions: import("@feathersjs/typebox").TString<string>;
1353
+ }>>;
1354
+ }> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1355
+ enabled: import("@feathersjs/typebox").TBoolean;
1356
+ agents: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1357
+ _id: import("@feathersjs/typebox").TString<string>;
1358
+ name: import("@feathersjs/typebox").TString<string>;
1359
+ memoryType: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"shared">, import("@feathersjs/typebox").TLiteral<"private">]>;
1360
+ instructions: import("@feathersjs/typebox").TString<string>;
1361
+ }>>;
1362
+ }>>;
1363
+ }>, import("@feathersjs/typebox").TObject<{
1364
+ [key: string]: import("@feathersjs/typebox").TSchema;
1365
+ } | undefined>]>>]>>;
1366
+ actions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1367
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1368
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1369
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1370
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1371
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
1372
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1373
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
1374
+ }>, import("@feathersjs/typebox").TObject<{
1375
+ [key: string]: import("@feathersjs/typebox").TSchema;
1376
+ } | undefined>]>>]>>;
1377
+ triggers: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1378
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1379
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1380
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1381
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1382
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1383
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1384
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1385
+ }>, import("@feathersjs/typebox").TObject<{
1386
+ [key: string]: import("@feathersjs/typebox").TSchema;
1387
+ } | undefined>]>>]>>;
1388
+ timeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1389
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1390
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1391
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1392
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1393
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1394
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
1395
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
1396
+ }>, import("@feathersjs/typebox").TObject<{
1397
+ [key: string]: import("@feathersjs/typebox").TSchema;
1398
+ } | undefined>]>>]>>;
1399
+ knowledgeBases: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1400
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1401
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1402
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1403
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1404
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1405
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
1406
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>>;
1407
+ }>, import("@feathersjs/typebox").TObject<{
1408
+ [key: string]: import("@feathersjs/typebox").TSchema;
1409
+ } | undefined>]>>]>>;
1410
+ bedrockAgentId: 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<{
1411
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1412
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1413
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1414
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1415
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1416
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1417
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1418
+ }>, import("@feathersjs/typebox").TObject<{
1419
+ [key: string]: import("@feathersjs/typebox").TSchema;
1420
+ } | undefined>]>>]>>;
1421
+ bedrockStatus: 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<{
1422
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1423
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1424
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1425
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1426
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1427
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1428
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1429
+ }>, import("@feathersjs/typebox").TObject<{
1430
+ [key: string]: import("@feathersjs/typebox").TSchema;
1431
+ } | undefined>]>>]>>;
1432
+ }>>]>, import("@feathersjs/typebox").TObject<{}>]>;
1433
+ export type AgentsQuery = Static<typeof agentsQuerySchema>;
1434
+ export declare const agentsQueryValidator: import("@feathersjs/schema").Validator<any, any>;
1435
+ export declare const agentsQueryResolver: import("@feathersjs/schema").Resolver<Partial<{
1436
+ $limit: number;
1437
+ $skip: number;
1438
+ $sort: {
1439
+ name?: number | undefined;
1440
+ memory?: number | undefined;
1441
+ model?: number | undefined;
1442
+ _id?: number | undefined;
1443
+ createdAt?: number | undefined;
1444
+ updatedAt?: number | undefined;
1445
+ description?: number | undefined;
1446
+ role?: number | undefined;
1447
+ instruction?: number | undefined;
1448
+ coding?: number | undefined;
1449
+ autonomously?: number | undefined;
1450
+ collaboration?: number | undefined;
1451
+ actions?: number | undefined;
1452
+ triggers?: number | undefined;
1453
+ timeout?: number | undefined;
1454
+ knowledgeBases?: number | undefined;
1455
+ bedrockAgentId?: number | undefined;
1456
+ bedrockStatus?: number | undefined;
1457
+ };
1458
+ $select: ("name" | "memory" | "model" | "_id" | "createdAt" | "updatedAt" | "description" | "role" | "instruction" | "coding" | "autonomously" | "collaboration" | "actions" | "triggers" | "timeout" | "knowledgeBases" | "bedrockAgentId" | "bedrockStatus")[];
1459
+ $and: ({
1460
+ name?: string | Partial<{
1461
+ $gt: string;
1462
+ $gte: string;
1463
+ $lt: string;
1464
+ $lte: string;
1465
+ $ne: string;
1466
+ $in: string | string[];
1467
+ $nin: string | string[];
1468
+ } & {}> | undefined;
1469
+ memory?: boolean | Partial<{
1470
+ $gt: boolean;
1471
+ $gte: boolean;
1472
+ $lt: boolean;
1473
+ $lte: boolean;
1474
+ $ne: boolean;
1475
+ $in: boolean | boolean[];
1476
+ $nin: boolean | boolean[];
1477
+ } & {}> | undefined;
1478
+ model?: string | Partial<{
1479
+ $gt?: string | undefined;
1480
+ $gte?: string | undefined;
1481
+ $lt?: string | undefined;
1482
+ $lte?: string | undefined;
1483
+ $ne?: string | undefined;
1484
+ $in: string | string[];
1485
+ $nin: string | string[];
1486
+ } & {}> | undefined;
1487
+ _id?: string | {} | Partial<{
1488
+ $gt: string | {};
1489
+ $gte: string | {};
1490
+ $lt: string | {};
1491
+ $lte: string | {};
1492
+ $ne: string | {};
1493
+ $in: string | {} | (string | {})[];
1494
+ $nin: string | {} | (string | {})[];
1495
+ } & {}> | undefined;
1496
+ createdAt?: any;
1497
+ updatedAt?: any;
1498
+ description?: string | Partial<{
1499
+ $gt: string;
1500
+ $gte: string;
1501
+ $lt: string;
1502
+ $lte: string;
1503
+ $ne: string;
1504
+ $in: string | string[];
1505
+ $nin: string | string[];
1506
+ } & {}> | undefined;
1507
+ role?: string | Partial<{
1508
+ $gt: string;
1509
+ $gte: string;
1510
+ $lt: string;
1511
+ $lte: string;
1512
+ $ne: string;
1513
+ $in: string | string[];
1514
+ $nin: string | string[];
1515
+ } & {}> | undefined;
1516
+ instruction?: string | Partial<{
1517
+ $gt: string;
1518
+ $gte: string;
1519
+ $lt: string;
1520
+ $lte: string;
1521
+ $ne: string;
1522
+ $in: string | string[];
1523
+ $nin: string | string[];
1524
+ } & {}> | undefined;
1525
+ coding?: boolean | Partial<{
1526
+ $gt: boolean;
1527
+ $gte: boolean;
1528
+ $lt: boolean;
1529
+ $lte: boolean;
1530
+ $ne: boolean;
1531
+ $in: boolean | boolean[];
1532
+ $nin: boolean | boolean[];
1533
+ } & {}> | undefined;
1534
+ autonomously?: boolean | Partial<{
1535
+ $gt: boolean;
1536
+ $gte: boolean;
1537
+ $lt: boolean;
1538
+ $lte: boolean;
1539
+ $ne: boolean;
1540
+ $in: boolean | boolean[];
1541
+ $nin: boolean | boolean[];
1542
+ } & {}> | undefined;
1543
+ collaboration?: {
1544
+ enabled: boolean;
1545
+ agents: {
1546
+ name: string;
1547
+ _id: string;
1548
+ memoryType: "shared" | "private";
1549
+ instructions: string;
1550
+ }[];
1551
+ } | Partial<{
1552
+ $gt: {
1553
+ enabled: boolean;
1554
+ agents: {
1555
+ name: string;
1556
+ _id: string;
1557
+ memoryType: "shared" | "private";
1558
+ instructions: string;
1559
+ }[];
1560
+ };
1561
+ $gte: {
1562
+ enabled: boolean;
1563
+ agents: {
1564
+ name: string;
1565
+ _id: string;
1566
+ memoryType: "shared" | "private";
1567
+ instructions: string;
1568
+ }[];
1569
+ };
1570
+ $lt: {
1571
+ enabled: boolean;
1572
+ agents: {
1573
+ name: string;
1574
+ _id: string;
1575
+ memoryType: "shared" | "private";
1576
+ instructions: string;
1577
+ }[];
1578
+ };
1579
+ $lte: {
1580
+ enabled: boolean;
1581
+ agents: {
1582
+ name: string;
1583
+ _id: string;
1584
+ memoryType: "shared" | "private";
1585
+ instructions: string;
1586
+ }[];
1587
+ };
1588
+ $ne: {
1589
+ enabled: boolean;
1590
+ agents: {
1591
+ name: string;
1592
+ _id: string;
1593
+ memoryType: "shared" | "private";
1594
+ instructions: string;
1595
+ }[];
1596
+ };
1597
+ $in: {
1598
+ enabled: boolean;
1599
+ agents: {
1600
+ name: string;
1601
+ _id: string;
1602
+ memoryType: "shared" | "private";
1603
+ instructions: string;
1604
+ }[];
1605
+ } | {
1606
+ enabled: boolean;
1607
+ agents: {
1608
+ name: string;
1609
+ _id: string;
1610
+ memoryType: "shared" | "private";
1611
+ instructions: string;
1612
+ }[];
1613
+ }[];
1614
+ $nin: {
1615
+ enabled: boolean;
1616
+ agents: {
1617
+ name: string;
1618
+ _id: string;
1619
+ memoryType: "shared" | "private";
1620
+ instructions: string;
1621
+ }[];
1622
+ } | {
1623
+ enabled: boolean;
1624
+ agents: {
1625
+ name: string;
1626
+ _id: string;
1627
+ memoryType: "shared" | "private";
1628
+ instructions: string;
1629
+ }[];
1630
+ }[];
1631
+ } & {}> | undefined;
1632
+ actions?: any[] | Partial<{
1633
+ $gt: any[];
1634
+ $gte: any[];
1635
+ $lt: any[];
1636
+ $lte: any[];
1637
+ $ne: any[];
1638
+ $in: any[] | any[][];
1639
+ $nin: any[] | any[][];
1640
+ } & {}> | undefined;
1641
+ triggers?: string[] | Partial<{
1642
+ $gt: string[];
1643
+ $gte: string[];
1644
+ $lt: string[];
1645
+ $lte: string[];
1646
+ $ne: string[];
1647
+ $in: string[] | string[][];
1648
+ $nin: string[] | string[][];
1649
+ } & {}> | undefined;
1650
+ timeout?: number | Partial<{
1651
+ $gt?: number | undefined;
1652
+ $gte?: number | undefined;
1653
+ $lt?: number | undefined;
1654
+ $lte?: number | undefined;
1655
+ $ne?: number | undefined;
1656
+ $in: number | number[];
1657
+ $nin: number | number[];
1658
+ } & {}> | undefined;
1659
+ knowledgeBases?: string[] | Partial<{
1660
+ $gt?: string[] | undefined;
1661
+ $gte?: string[] | undefined;
1662
+ $lt?: string[] | undefined;
1663
+ $lte?: string[] | undefined;
1664
+ $ne?: string[] | undefined;
1665
+ $in: string[] | string[][];
1666
+ $nin: string[] | string[][];
1667
+ } & {}> | undefined;
1668
+ bedrockAgentId?: string | Partial<{
1669
+ $gt?: string | undefined;
1670
+ $gte?: string | undefined;
1671
+ $lt?: string | undefined;
1672
+ $lte?: string | undefined;
1673
+ $ne?: string | undefined;
1674
+ $in: string | string[];
1675
+ $nin: string | string[];
1676
+ } & {}> | undefined;
1677
+ bedrockStatus?: string | Partial<{
1678
+ $gt?: string | undefined;
1679
+ $gte?: string | undefined;
1680
+ $lt?: string | undefined;
1681
+ $lte?: string | undefined;
1682
+ $ne?: string | undefined;
1683
+ $in: string | string[];
1684
+ $nin: string | string[];
1685
+ } & {}> | undefined;
1686
+ } | {
1687
+ $or: {
1688
+ name?: string | Partial<{
1689
+ $gt: string;
1690
+ $gte: string;
1691
+ $lt: string;
1692
+ $lte: string;
1693
+ $ne: string;
1694
+ $in: string | string[];
1695
+ $nin: string | string[];
1696
+ } & {}> | undefined;
1697
+ memory?: boolean | Partial<{
1698
+ $gt: boolean;
1699
+ $gte: boolean;
1700
+ $lt: boolean;
1701
+ $lte: boolean;
1702
+ $ne: boolean;
1703
+ $in: boolean | boolean[];
1704
+ $nin: boolean | boolean[];
1705
+ } & {}> | undefined;
1706
+ model?: string | Partial<{
1707
+ $gt?: string | undefined;
1708
+ $gte?: string | undefined;
1709
+ $lt?: string | undefined;
1710
+ $lte?: string | undefined;
1711
+ $ne?: string | undefined;
1712
+ $in: string | string[];
1713
+ $nin: string | string[];
1714
+ } & {}> | undefined;
1715
+ _id?: string | {} | Partial<{
1716
+ $gt: string | {};
1717
+ $gte: string | {};
1718
+ $lt: string | {};
1719
+ $lte: string | {};
1720
+ $ne: string | {};
1721
+ $in: string | {} | (string | {})[];
1722
+ $nin: string | {} | (string | {})[];
1723
+ } & {}> | undefined;
1724
+ createdAt?: any;
1725
+ updatedAt?: any;
1726
+ description?: string | Partial<{
1727
+ $gt: string;
1728
+ $gte: string;
1729
+ $lt: string;
1730
+ $lte: string;
1731
+ $ne: string;
1732
+ $in: string | string[];
1733
+ $nin: string | string[];
1734
+ } & {}> | undefined;
1735
+ role?: string | Partial<{
1736
+ $gt: string;
1737
+ $gte: string;
1738
+ $lt: string;
1739
+ $lte: string;
1740
+ $ne: string;
1741
+ $in: string | string[];
1742
+ $nin: string | string[];
1743
+ } & {}> | undefined;
1744
+ instruction?: string | Partial<{
1745
+ $gt: string;
1746
+ $gte: string;
1747
+ $lt: string;
1748
+ $lte: string;
1749
+ $ne: string;
1750
+ $in: string | string[];
1751
+ $nin: string | string[];
1752
+ } & {}> | undefined;
1753
+ coding?: boolean | Partial<{
1754
+ $gt: boolean;
1755
+ $gte: boolean;
1756
+ $lt: boolean;
1757
+ $lte: boolean;
1758
+ $ne: boolean;
1759
+ $in: boolean | boolean[];
1760
+ $nin: boolean | boolean[];
1761
+ } & {}> | undefined;
1762
+ autonomously?: boolean | Partial<{
1763
+ $gt: boolean;
1764
+ $gte: boolean;
1765
+ $lt: boolean;
1766
+ $lte: boolean;
1767
+ $ne: boolean;
1768
+ $in: boolean | boolean[];
1769
+ $nin: boolean | boolean[];
1770
+ } & {}> | undefined;
1771
+ collaboration?: {
1772
+ enabled: boolean;
1773
+ agents: {
1774
+ name: string;
1775
+ _id: string;
1776
+ memoryType: "shared" | "private";
1777
+ instructions: string;
1778
+ }[];
1779
+ } | Partial<{
1780
+ $gt: {
1781
+ enabled: boolean;
1782
+ agents: {
1783
+ name: string;
1784
+ _id: string;
1785
+ memoryType: "shared" | "private";
1786
+ instructions: string;
1787
+ }[];
1788
+ };
1789
+ $gte: {
1790
+ enabled: boolean;
1791
+ agents: {
1792
+ name: string;
1793
+ _id: string;
1794
+ memoryType: "shared" | "private";
1795
+ instructions: string;
1796
+ }[];
1797
+ };
1798
+ $lt: {
1799
+ enabled: boolean;
1800
+ agents: {
1801
+ name: string;
1802
+ _id: string;
1803
+ memoryType: "shared" | "private";
1804
+ instructions: string;
1805
+ }[];
1806
+ };
1807
+ $lte: {
1808
+ enabled: boolean;
1809
+ agents: {
1810
+ name: string;
1811
+ _id: string;
1812
+ memoryType: "shared" | "private";
1813
+ instructions: string;
1814
+ }[];
1815
+ };
1816
+ $ne: {
1817
+ enabled: boolean;
1818
+ agents: {
1819
+ name: string;
1820
+ _id: string;
1821
+ memoryType: "shared" | "private";
1822
+ instructions: string;
1823
+ }[];
1824
+ };
1825
+ $in: {
1826
+ enabled: boolean;
1827
+ agents: {
1828
+ name: string;
1829
+ _id: string;
1830
+ memoryType: "shared" | "private";
1831
+ instructions: string;
1832
+ }[];
1833
+ } | {
1834
+ enabled: boolean;
1835
+ agents: {
1836
+ name: string;
1837
+ _id: string;
1838
+ memoryType: "shared" | "private";
1839
+ instructions: string;
1840
+ }[];
1841
+ }[];
1842
+ $nin: {
1843
+ enabled: boolean;
1844
+ agents: {
1845
+ name: string;
1846
+ _id: string;
1847
+ memoryType: "shared" | "private";
1848
+ instructions: string;
1849
+ }[];
1850
+ } | {
1851
+ enabled: boolean;
1852
+ agents: {
1853
+ name: string;
1854
+ _id: string;
1855
+ memoryType: "shared" | "private";
1856
+ instructions: string;
1857
+ }[];
1858
+ }[];
1859
+ } & {}> | undefined;
1860
+ actions?: any[] | Partial<{
1861
+ $gt: any[];
1862
+ $gte: any[];
1863
+ $lt: any[];
1864
+ $lte: any[];
1865
+ $ne: any[];
1866
+ $in: any[] | any[][];
1867
+ $nin: any[] | any[][];
1868
+ } & {}> | undefined;
1869
+ triggers?: string[] | Partial<{
1870
+ $gt: string[];
1871
+ $gte: string[];
1872
+ $lt: string[];
1873
+ $lte: string[];
1874
+ $ne: string[];
1875
+ $in: string[] | string[][];
1876
+ $nin: string[] | string[][];
1877
+ } & {}> | undefined;
1878
+ timeout?: number | Partial<{
1879
+ $gt?: number | undefined;
1880
+ $gte?: number | undefined;
1881
+ $lt?: number | undefined;
1882
+ $lte?: number | undefined;
1883
+ $ne?: number | undefined;
1884
+ $in: number | number[];
1885
+ $nin: number | number[];
1886
+ } & {}> | undefined;
1887
+ knowledgeBases?: string[] | Partial<{
1888
+ $gt?: string[] | undefined;
1889
+ $gte?: string[] | undefined;
1890
+ $lt?: string[] | undefined;
1891
+ $lte?: string[] | undefined;
1892
+ $ne?: string[] | undefined;
1893
+ $in: string[] | string[][];
1894
+ $nin: string[] | string[][];
1895
+ } & {}> | undefined;
1896
+ bedrockAgentId?: string | Partial<{
1897
+ $gt?: string | undefined;
1898
+ $gte?: string | undefined;
1899
+ $lt?: string | undefined;
1900
+ $lte?: string | undefined;
1901
+ $ne?: string | undefined;
1902
+ $in: string | string[];
1903
+ $nin: string | string[];
1904
+ } & {}> | undefined;
1905
+ bedrockStatus?: string | Partial<{
1906
+ $gt?: string | undefined;
1907
+ $gte?: string | undefined;
1908
+ $lt?: string | undefined;
1909
+ $lte?: string | undefined;
1910
+ $ne?: string | undefined;
1911
+ $in: string | string[];
1912
+ $nin: string | string[];
1913
+ } & {}> | undefined;
1914
+ }[];
1915
+ })[];
1916
+ $or: {
1917
+ name?: string | Partial<{
1918
+ $gt: string;
1919
+ $gte: string;
1920
+ $lt: string;
1921
+ $lte: string;
1922
+ $ne: string;
1923
+ $in: string | string[];
1924
+ $nin: string | string[];
1925
+ } & {}> | undefined;
1926
+ memory?: boolean | Partial<{
1927
+ $gt: boolean;
1928
+ $gte: boolean;
1929
+ $lt: boolean;
1930
+ $lte: boolean;
1931
+ $ne: boolean;
1932
+ $in: boolean | boolean[];
1933
+ $nin: boolean | boolean[];
1934
+ } & {}> | undefined;
1935
+ model?: string | Partial<{
1936
+ $gt?: string | undefined;
1937
+ $gte?: string | undefined;
1938
+ $lt?: string | undefined;
1939
+ $lte?: string | undefined;
1940
+ $ne?: string | undefined;
1941
+ $in: string | string[];
1942
+ $nin: string | string[];
1943
+ } & {}> | undefined;
1944
+ _id?: string | {} | Partial<{
1945
+ $gt: string | {};
1946
+ $gte: string | {};
1947
+ $lt: string | {};
1948
+ $lte: string | {};
1949
+ $ne: string | {};
1950
+ $in: string | {} | (string | {})[];
1951
+ $nin: string | {} | (string | {})[];
1952
+ } & {}> | undefined;
1953
+ createdAt?: any;
1954
+ updatedAt?: any;
1955
+ description?: string | Partial<{
1956
+ $gt: string;
1957
+ $gte: string;
1958
+ $lt: string;
1959
+ $lte: string;
1960
+ $ne: string;
1961
+ $in: string | string[];
1962
+ $nin: string | string[];
1963
+ } & {}> | undefined;
1964
+ role?: string | Partial<{
1965
+ $gt: string;
1966
+ $gte: string;
1967
+ $lt: string;
1968
+ $lte: string;
1969
+ $ne: string;
1970
+ $in: string | string[];
1971
+ $nin: string | string[];
1972
+ } & {}> | undefined;
1973
+ instruction?: string | Partial<{
1974
+ $gt: string;
1975
+ $gte: string;
1976
+ $lt: string;
1977
+ $lte: string;
1978
+ $ne: string;
1979
+ $in: string | string[];
1980
+ $nin: string | string[];
1981
+ } & {}> | undefined;
1982
+ coding?: boolean | Partial<{
1983
+ $gt: boolean;
1984
+ $gte: boolean;
1985
+ $lt: boolean;
1986
+ $lte: boolean;
1987
+ $ne: boolean;
1988
+ $in: boolean | boolean[];
1989
+ $nin: boolean | boolean[];
1990
+ } & {}> | undefined;
1991
+ autonomously?: boolean | Partial<{
1992
+ $gt: boolean;
1993
+ $gte: boolean;
1994
+ $lt: boolean;
1995
+ $lte: boolean;
1996
+ $ne: boolean;
1997
+ $in: boolean | boolean[];
1998
+ $nin: boolean | boolean[];
1999
+ } & {}> | undefined;
2000
+ collaboration?: {
2001
+ enabled: boolean;
2002
+ agents: {
2003
+ name: string;
2004
+ _id: string;
2005
+ memoryType: "shared" | "private";
2006
+ instructions: string;
2007
+ }[];
2008
+ } | Partial<{
2009
+ $gt: {
2010
+ enabled: boolean;
2011
+ agents: {
2012
+ name: string;
2013
+ _id: string;
2014
+ memoryType: "shared" | "private";
2015
+ instructions: string;
2016
+ }[];
2017
+ };
2018
+ $gte: {
2019
+ enabled: boolean;
2020
+ agents: {
2021
+ name: string;
2022
+ _id: string;
2023
+ memoryType: "shared" | "private";
2024
+ instructions: string;
2025
+ }[];
2026
+ };
2027
+ $lt: {
2028
+ enabled: boolean;
2029
+ agents: {
2030
+ name: string;
2031
+ _id: string;
2032
+ memoryType: "shared" | "private";
2033
+ instructions: string;
2034
+ }[];
2035
+ };
2036
+ $lte: {
2037
+ enabled: boolean;
2038
+ agents: {
2039
+ name: string;
2040
+ _id: string;
2041
+ memoryType: "shared" | "private";
2042
+ instructions: string;
2043
+ }[];
2044
+ };
2045
+ $ne: {
2046
+ enabled: boolean;
2047
+ agents: {
2048
+ name: string;
2049
+ _id: string;
2050
+ memoryType: "shared" | "private";
2051
+ instructions: string;
2052
+ }[];
2053
+ };
2054
+ $in: {
2055
+ enabled: boolean;
2056
+ agents: {
2057
+ name: string;
2058
+ _id: string;
2059
+ memoryType: "shared" | "private";
2060
+ instructions: string;
2061
+ }[];
2062
+ } | {
2063
+ enabled: boolean;
2064
+ agents: {
2065
+ name: string;
2066
+ _id: string;
2067
+ memoryType: "shared" | "private";
2068
+ instructions: string;
2069
+ }[];
2070
+ }[];
2071
+ $nin: {
2072
+ enabled: boolean;
2073
+ agents: {
2074
+ name: string;
2075
+ _id: string;
2076
+ memoryType: "shared" | "private";
2077
+ instructions: string;
2078
+ }[];
2079
+ } | {
2080
+ enabled: boolean;
2081
+ agents: {
2082
+ name: string;
2083
+ _id: string;
2084
+ memoryType: "shared" | "private";
2085
+ instructions: string;
2086
+ }[];
2087
+ }[];
2088
+ } & {}> | undefined;
2089
+ actions?: any[] | Partial<{
2090
+ $gt: any[];
2091
+ $gte: any[];
2092
+ $lt: any[];
2093
+ $lte: any[];
2094
+ $ne: any[];
2095
+ $in: any[] | any[][];
2096
+ $nin: any[] | any[][];
2097
+ } & {}> | undefined;
2098
+ triggers?: string[] | Partial<{
2099
+ $gt: string[];
2100
+ $gte: string[];
2101
+ $lt: string[];
2102
+ $lte: string[];
2103
+ $ne: string[];
2104
+ $in: string[] | string[][];
2105
+ $nin: string[] | string[][];
2106
+ } & {}> | undefined;
2107
+ timeout?: number | Partial<{
2108
+ $gt?: number | undefined;
2109
+ $gte?: number | undefined;
2110
+ $lt?: number | undefined;
2111
+ $lte?: number | undefined;
2112
+ $ne?: number | undefined;
2113
+ $in: number | number[];
2114
+ $nin: number | number[];
2115
+ } & {}> | undefined;
2116
+ knowledgeBases?: string[] | Partial<{
2117
+ $gt?: string[] | undefined;
2118
+ $gte?: string[] | undefined;
2119
+ $lt?: string[] | undefined;
2120
+ $lte?: string[] | undefined;
2121
+ $ne?: string[] | undefined;
2122
+ $in: string[] | string[][];
2123
+ $nin: string[] | string[][];
2124
+ } & {}> | undefined;
2125
+ bedrockAgentId?: string | Partial<{
2126
+ $gt?: string | undefined;
2127
+ $gte?: string | undefined;
2128
+ $lt?: string | undefined;
2129
+ $lte?: string | undefined;
2130
+ $ne?: string | undefined;
2131
+ $in: string | string[];
2132
+ $nin: string | string[];
2133
+ } & {}> | undefined;
2134
+ bedrockStatus?: string | Partial<{
2135
+ $gt?: string | undefined;
2136
+ $gte?: string | undefined;
2137
+ $lt?: string | undefined;
2138
+ $lte?: string | undefined;
2139
+ $ne?: string | undefined;
2140
+ $in: string | string[];
2141
+ $nin: string | string[];
2142
+ } & {}> | undefined;
2143
+ }[];
2144
+ }> & {
2145
+ name?: string | Partial<{
2146
+ $gt: string;
2147
+ $gte: string;
2148
+ $lt: string;
2149
+ $lte: string;
2150
+ $ne: string;
2151
+ $in: string | string[];
2152
+ $nin: string | string[];
2153
+ } & {}> | undefined;
2154
+ memory?: boolean | Partial<{
2155
+ $gt: boolean;
2156
+ $gte: boolean;
2157
+ $lt: boolean;
2158
+ $lte: boolean;
2159
+ $ne: boolean;
2160
+ $in: boolean | boolean[];
2161
+ $nin: boolean | boolean[];
2162
+ } & {}> | undefined;
2163
+ model?: string | Partial<{
2164
+ $gt?: string | undefined;
2165
+ $gte?: string | undefined;
2166
+ $lt?: string | undefined;
2167
+ $lte?: string | undefined;
2168
+ $ne?: string | undefined;
2169
+ $in: string | string[];
2170
+ $nin: string | string[];
2171
+ } & {}> | undefined;
2172
+ _id?: string | {} | Partial<{
2173
+ $gt: string | {};
2174
+ $gte: string | {};
2175
+ $lt: string | {};
2176
+ $lte: string | {};
2177
+ $ne: string | {};
2178
+ $in: string | {} | (string | {})[];
2179
+ $nin: string | {} | (string | {})[];
2180
+ } & {}> | undefined;
2181
+ createdAt?: any;
2182
+ updatedAt?: any;
2183
+ description?: string | Partial<{
2184
+ $gt: string;
2185
+ $gte: string;
2186
+ $lt: string;
2187
+ $lte: string;
2188
+ $ne: string;
2189
+ $in: string | string[];
2190
+ $nin: string | string[];
2191
+ } & {}> | undefined;
2192
+ role?: string | Partial<{
2193
+ $gt: string;
2194
+ $gte: string;
2195
+ $lt: string;
2196
+ $lte: string;
2197
+ $ne: string;
2198
+ $in: string | string[];
2199
+ $nin: string | string[];
2200
+ } & {}> | undefined;
2201
+ instruction?: string | Partial<{
2202
+ $gt: string;
2203
+ $gte: string;
2204
+ $lt: string;
2205
+ $lte: string;
2206
+ $ne: string;
2207
+ $in: string | string[];
2208
+ $nin: string | string[];
2209
+ } & {}> | undefined;
2210
+ coding?: boolean | Partial<{
2211
+ $gt: boolean;
2212
+ $gte: boolean;
2213
+ $lt: boolean;
2214
+ $lte: boolean;
2215
+ $ne: boolean;
2216
+ $in: boolean | boolean[];
2217
+ $nin: boolean | boolean[];
2218
+ } & {}> | undefined;
2219
+ autonomously?: boolean | Partial<{
2220
+ $gt: boolean;
2221
+ $gte: boolean;
2222
+ $lt: boolean;
2223
+ $lte: boolean;
2224
+ $ne: boolean;
2225
+ $in: boolean | boolean[];
2226
+ $nin: boolean | boolean[];
2227
+ } & {}> | undefined;
2228
+ collaboration?: {
2229
+ enabled: boolean;
2230
+ agents: {
2231
+ name: string;
2232
+ _id: string;
2233
+ memoryType: "shared" | "private";
2234
+ instructions: string;
2235
+ }[];
2236
+ } | Partial<{
2237
+ $gt: {
2238
+ enabled: boolean;
2239
+ agents: {
2240
+ name: string;
2241
+ _id: string;
2242
+ memoryType: "shared" | "private";
2243
+ instructions: string;
2244
+ }[];
2245
+ };
2246
+ $gte: {
2247
+ enabled: boolean;
2248
+ agents: {
2249
+ name: string;
2250
+ _id: string;
2251
+ memoryType: "shared" | "private";
2252
+ instructions: string;
2253
+ }[];
2254
+ };
2255
+ $lt: {
2256
+ enabled: boolean;
2257
+ agents: {
2258
+ name: string;
2259
+ _id: string;
2260
+ memoryType: "shared" | "private";
2261
+ instructions: string;
2262
+ }[];
2263
+ };
2264
+ $lte: {
2265
+ enabled: boolean;
2266
+ agents: {
2267
+ name: string;
2268
+ _id: string;
2269
+ memoryType: "shared" | "private";
2270
+ instructions: string;
2271
+ }[];
2272
+ };
2273
+ $ne: {
2274
+ enabled: boolean;
2275
+ agents: {
2276
+ name: string;
2277
+ _id: string;
2278
+ memoryType: "shared" | "private";
2279
+ instructions: string;
2280
+ }[];
2281
+ };
2282
+ $in: {
2283
+ enabled: boolean;
2284
+ agents: {
2285
+ name: string;
2286
+ _id: string;
2287
+ memoryType: "shared" | "private";
2288
+ instructions: string;
2289
+ }[];
2290
+ } | {
2291
+ enabled: boolean;
2292
+ agents: {
2293
+ name: string;
2294
+ _id: string;
2295
+ memoryType: "shared" | "private";
2296
+ instructions: string;
2297
+ }[];
2298
+ }[];
2299
+ $nin: {
2300
+ enabled: boolean;
2301
+ agents: {
2302
+ name: string;
2303
+ _id: string;
2304
+ memoryType: "shared" | "private";
2305
+ instructions: string;
2306
+ }[];
2307
+ } | {
2308
+ enabled: boolean;
2309
+ agents: {
2310
+ name: string;
2311
+ _id: string;
2312
+ memoryType: "shared" | "private";
2313
+ instructions: string;
2314
+ }[];
2315
+ }[];
2316
+ } & {}> | undefined;
2317
+ actions?: any[] | Partial<{
2318
+ $gt: any[];
2319
+ $gte: any[];
2320
+ $lt: any[];
2321
+ $lte: any[];
2322
+ $ne: any[];
2323
+ $in: any[] | any[][];
2324
+ $nin: any[] | any[][];
2325
+ } & {}> | undefined;
2326
+ triggers?: string[] | Partial<{
2327
+ $gt: string[];
2328
+ $gte: string[];
2329
+ $lt: string[];
2330
+ $lte: string[];
2331
+ $ne: string[];
2332
+ $in: string[] | string[][];
2333
+ $nin: string[] | string[][];
2334
+ } & {}> | undefined;
2335
+ timeout?: number | Partial<{
2336
+ $gt?: number | undefined;
2337
+ $gte?: number | undefined;
2338
+ $lt?: number | undefined;
2339
+ $lte?: number | undefined;
2340
+ $ne?: number | undefined;
2341
+ $in: number | number[];
2342
+ $nin: number | number[];
2343
+ } & {}> | undefined;
2344
+ knowledgeBases?: string[] | Partial<{
2345
+ $gt?: string[] | undefined;
2346
+ $gte?: string[] | undefined;
2347
+ $lt?: string[] | undefined;
2348
+ $lte?: string[] | undefined;
2349
+ $ne?: string[] | undefined;
2350
+ $in: string[] | string[][];
2351
+ $nin: string[] | string[][];
2352
+ } & {}> | undefined;
2353
+ bedrockAgentId?: string | Partial<{
2354
+ $gt?: string | undefined;
2355
+ $gte?: string | undefined;
2356
+ $lt?: string | undefined;
2357
+ $lte?: string | undefined;
2358
+ $ne?: string | undefined;
2359
+ $in: string | string[];
2360
+ $nin: string | string[];
2361
+ } & {}> | undefined;
2362
+ bedrockStatus?: string | Partial<{
2363
+ $gt?: string | undefined;
2364
+ $gte?: string | undefined;
2365
+ $lt?: string | undefined;
2366
+ $lte?: string | undefined;
2367
+ $ne?: string | undefined;
2368
+ $in: string | string[];
2369
+ $nin: string | string[];
2370
+ } & {}> | undefined;
2371
+ } & {}, HookContext<AgentsService<import("./agents.class").AgentsParams>>>;