@teneo-protocol/sdk 3.0.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/handlers/message-handlers/agent-details-response-handler.d.ts +378 -54
- package/dist/handlers/message-handlers/agent-details-response-handler.d.ts.map +1 -1
- package/dist/handlers/message-handlers/agent-status-update-handler.d.ts +378 -54
- package/dist/handlers/message-handlers/agent-status-update-handler.d.ts.map +1 -1
- package/dist/handlers/message-handlers/all-agents-response-handler.d.ts +135 -54
- package/dist/handlers/message-handlers/all-agents-response-handler.d.ts.map +1 -1
- package/dist/handlers/message-handlers/list-available-agents-handler.d.ts +378 -54
- package/dist/handlers/message-handlers/list-available-agents-handler.d.ts.map +1 -1
- package/dist/handlers/message-handlers/list-room-agents-handler.d.ts +378 -54
- package/dist/handlers/message-handlers/list-room-agents-handler.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/managers/admin-manager.d.ts +1 -1
- package/dist/managers/admin-manager.js +1 -1
- package/dist/teneo-sdk.d.ts +1 -1
- package/dist/teneo-sdk.js +1 -1
- package/dist/types/messages.d.ts +3632 -552
- package/dist/types/messages.d.ts.map +1 -1
- package/dist/types/messages.js +18 -7
- package/dist/types/messages.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/managers/admin-manager.ts +1 -1
- package/src/teneo-sdk.ts +1 -1
- package/src/types/messages.ts +18 -7
- package/tests/unit/managers/admin-manager.test.ts +2 -2
|
@@ -36,6 +36,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
36
36
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
37
37
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
38
38
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
39
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
40
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
41
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
39
42
|
}, "strip", import("zod").ZodTypeAny, {
|
|
40
43
|
trigger: string;
|
|
41
44
|
description?: string | undefined;
|
|
@@ -47,6 +50,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
47
50
|
hasVariants?: boolean | undefined;
|
|
48
51
|
variants?: any[] | undefined;
|
|
49
52
|
parameters?: any[] | undefined;
|
|
53
|
+
strictArg?: boolean | undefined;
|
|
54
|
+
minArgs?: number | undefined;
|
|
55
|
+
maxArgs?: number | undefined;
|
|
50
56
|
}, {
|
|
51
57
|
trigger: string;
|
|
52
58
|
description?: string | undefined;
|
|
@@ -58,6 +64,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
58
64
|
hasVariants?: boolean | undefined;
|
|
59
65
|
variants?: any[] | undefined;
|
|
60
66
|
parameters?: any[] | undefined;
|
|
67
|
+
strictArg?: boolean | undefined;
|
|
68
|
+
minArgs?: number | undefined;
|
|
69
|
+
maxArgs?: number | undefined;
|
|
61
70
|
}>, "many">>;
|
|
62
71
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
63
72
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -66,8 +75,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
66
75
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
67
76
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
68
77
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
69
|
-
|
|
70
|
-
|
|
78
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
79
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
80
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
81
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
82
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
71
83
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
72
84
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
73
85
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -96,6 +108,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
96
108
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
97
109
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
98
110
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
111
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
112
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
113
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
99
114
|
}, "strip", import("zod").ZodTypeAny, {
|
|
100
115
|
trigger: string;
|
|
101
116
|
description?: string | undefined;
|
|
@@ -107,6 +122,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
107
122
|
hasVariants?: boolean | undefined;
|
|
108
123
|
variants?: any[] | undefined;
|
|
109
124
|
parameters?: any[] | undefined;
|
|
125
|
+
strictArg?: boolean | undefined;
|
|
126
|
+
minArgs?: number | undefined;
|
|
127
|
+
maxArgs?: number | undefined;
|
|
110
128
|
}, {
|
|
111
129
|
trigger: string;
|
|
112
130
|
description?: string | undefined;
|
|
@@ -118,6 +136,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
118
136
|
hasVariants?: boolean | undefined;
|
|
119
137
|
variants?: any[] | undefined;
|
|
120
138
|
parameters?: any[] | undefined;
|
|
139
|
+
strictArg?: boolean | undefined;
|
|
140
|
+
minArgs?: number | undefined;
|
|
141
|
+
maxArgs?: number | undefined;
|
|
121
142
|
}>, "many">>;
|
|
122
143
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
123
144
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -126,8 +147,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
126
147
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
127
148
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
128
149
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
129
|
-
|
|
130
|
-
|
|
150
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
151
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
152
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
153
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
154
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
131
155
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
132
156
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
133
157
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -156,6 +180,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
156
180
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
157
181
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
158
182
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
183
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
184
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
185
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
159
186
|
}, "strip", import("zod").ZodTypeAny, {
|
|
160
187
|
trigger: string;
|
|
161
188
|
description?: string | undefined;
|
|
@@ -167,6 +194,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
167
194
|
hasVariants?: boolean | undefined;
|
|
168
195
|
variants?: any[] | undefined;
|
|
169
196
|
parameters?: any[] | undefined;
|
|
197
|
+
strictArg?: boolean | undefined;
|
|
198
|
+
minArgs?: number | undefined;
|
|
199
|
+
maxArgs?: number | undefined;
|
|
170
200
|
}, {
|
|
171
201
|
trigger: string;
|
|
172
202
|
description?: string | undefined;
|
|
@@ -178,6 +208,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
178
208
|
hasVariants?: boolean | undefined;
|
|
179
209
|
variants?: any[] | undefined;
|
|
180
210
|
parameters?: any[] | undefined;
|
|
211
|
+
strictArg?: boolean | undefined;
|
|
212
|
+
minArgs?: number | undefined;
|
|
213
|
+
maxArgs?: number | undefined;
|
|
181
214
|
}>, "many">>;
|
|
182
215
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
183
216
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -186,8 +219,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
186
219
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
187
220
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
188
221
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
189
|
-
|
|
190
|
-
|
|
222
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
223
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
224
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
225
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
226
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
191
227
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
192
228
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
193
229
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -218,6 +254,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
218
254
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
219
255
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
220
256
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
257
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
258
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
259
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
221
260
|
}, "strip", import("zod").ZodTypeAny, {
|
|
222
261
|
trigger: string;
|
|
223
262
|
description?: string | undefined;
|
|
@@ -229,6 +268,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
229
268
|
hasVariants?: boolean | undefined;
|
|
230
269
|
variants?: any[] | undefined;
|
|
231
270
|
parameters?: any[] | undefined;
|
|
271
|
+
strictArg?: boolean | undefined;
|
|
272
|
+
minArgs?: number | undefined;
|
|
273
|
+
maxArgs?: number | undefined;
|
|
232
274
|
}, {
|
|
233
275
|
trigger: string;
|
|
234
276
|
description?: string | undefined;
|
|
@@ -240,6 +282,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
240
282
|
hasVariants?: boolean | undefined;
|
|
241
283
|
variants?: any[] | undefined;
|
|
242
284
|
parameters?: any[] | undefined;
|
|
285
|
+
strictArg?: boolean | undefined;
|
|
286
|
+
minArgs?: number | undefined;
|
|
287
|
+
maxArgs?: number | undefined;
|
|
243
288
|
}>, "many">>;
|
|
244
289
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
245
290
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -248,8 +293,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
248
293
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
249
294
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
250
295
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
251
|
-
|
|
252
|
-
|
|
296
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
297
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
298
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
299
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
300
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
253
301
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
254
302
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
255
303
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -278,6 +326,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
278
326
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
279
327
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
280
328
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
329
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
330
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
331
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
281
332
|
}, "strip", import("zod").ZodTypeAny, {
|
|
282
333
|
trigger: string;
|
|
283
334
|
description?: string | undefined;
|
|
@@ -289,6 +340,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
289
340
|
hasVariants?: boolean | undefined;
|
|
290
341
|
variants?: any[] | undefined;
|
|
291
342
|
parameters?: any[] | undefined;
|
|
343
|
+
strictArg?: boolean | undefined;
|
|
344
|
+
minArgs?: number | undefined;
|
|
345
|
+
maxArgs?: number | undefined;
|
|
292
346
|
}, {
|
|
293
347
|
trigger: string;
|
|
294
348
|
description?: string | undefined;
|
|
@@ -300,6 +354,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
300
354
|
hasVariants?: boolean | undefined;
|
|
301
355
|
variants?: any[] | undefined;
|
|
302
356
|
parameters?: any[] | undefined;
|
|
357
|
+
strictArg?: boolean | undefined;
|
|
358
|
+
minArgs?: number | undefined;
|
|
359
|
+
maxArgs?: number | undefined;
|
|
303
360
|
}>, "many">>;
|
|
304
361
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
305
362
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -308,8 +365,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
308
365
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
309
366
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
310
367
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
311
|
-
|
|
312
|
-
|
|
368
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
369
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
370
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
371
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
372
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
313
373
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
314
374
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
315
375
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -338,6 +398,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
338
398
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
339
399
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
340
400
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
401
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
402
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
403
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
341
404
|
}, "strip", import("zod").ZodTypeAny, {
|
|
342
405
|
trigger: string;
|
|
343
406
|
description?: string | undefined;
|
|
@@ -349,6 +412,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
349
412
|
hasVariants?: boolean | undefined;
|
|
350
413
|
variants?: any[] | undefined;
|
|
351
414
|
parameters?: any[] | undefined;
|
|
415
|
+
strictArg?: boolean | undefined;
|
|
416
|
+
minArgs?: number | undefined;
|
|
417
|
+
maxArgs?: number | undefined;
|
|
352
418
|
}, {
|
|
353
419
|
trigger: string;
|
|
354
420
|
description?: string | undefined;
|
|
@@ -360,6 +426,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
360
426
|
hasVariants?: boolean | undefined;
|
|
361
427
|
variants?: any[] | undefined;
|
|
362
428
|
parameters?: any[] | undefined;
|
|
429
|
+
strictArg?: boolean | undefined;
|
|
430
|
+
minArgs?: number | undefined;
|
|
431
|
+
maxArgs?: number | undefined;
|
|
363
432
|
}>, "many">>;
|
|
364
433
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
365
434
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -368,8 +437,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
368
437
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
369
438
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
370
439
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
371
|
-
|
|
372
|
-
|
|
440
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
441
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
442
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
443
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
444
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
373
445
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
374
446
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
375
447
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -400,6 +472,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
400
472
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
401
473
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
402
474
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
475
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
476
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
477
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
403
478
|
}, "strip", import("zod").ZodTypeAny, {
|
|
404
479
|
trigger: string;
|
|
405
480
|
description?: string | undefined;
|
|
@@ -411,6 +486,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
411
486
|
hasVariants?: boolean | undefined;
|
|
412
487
|
variants?: any[] | undefined;
|
|
413
488
|
parameters?: any[] | undefined;
|
|
489
|
+
strictArg?: boolean | undefined;
|
|
490
|
+
minArgs?: number | undefined;
|
|
491
|
+
maxArgs?: number | undefined;
|
|
414
492
|
}, {
|
|
415
493
|
trigger: string;
|
|
416
494
|
description?: string | undefined;
|
|
@@ -422,6 +500,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
422
500
|
hasVariants?: boolean | undefined;
|
|
423
501
|
variants?: any[] | undefined;
|
|
424
502
|
parameters?: any[] | undefined;
|
|
503
|
+
strictArg?: boolean | undefined;
|
|
504
|
+
minArgs?: number | undefined;
|
|
505
|
+
maxArgs?: number | undefined;
|
|
425
506
|
}>, "many">>;
|
|
426
507
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
427
508
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -430,8 +511,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
430
511
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
431
512
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
432
513
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
433
|
-
|
|
434
|
-
|
|
514
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
515
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
516
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
517
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
518
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
435
519
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
436
520
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
437
521
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -460,6 +544,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
460
544
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
461
545
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
462
546
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
547
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
548
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
549
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
463
550
|
}, "strip", import("zod").ZodTypeAny, {
|
|
464
551
|
trigger: string;
|
|
465
552
|
description?: string | undefined;
|
|
@@ -471,6 +558,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
471
558
|
hasVariants?: boolean | undefined;
|
|
472
559
|
variants?: any[] | undefined;
|
|
473
560
|
parameters?: any[] | undefined;
|
|
561
|
+
strictArg?: boolean | undefined;
|
|
562
|
+
minArgs?: number | undefined;
|
|
563
|
+
maxArgs?: number | undefined;
|
|
474
564
|
}, {
|
|
475
565
|
trigger: string;
|
|
476
566
|
description?: string | undefined;
|
|
@@ -482,6 +572,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
482
572
|
hasVariants?: boolean | undefined;
|
|
483
573
|
variants?: any[] | undefined;
|
|
484
574
|
parameters?: any[] | undefined;
|
|
575
|
+
strictArg?: boolean | undefined;
|
|
576
|
+
minArgs?: number | undefined;
|
|
577
|
+
maxArgs?: number | undefined;
|
|
485
578
|
}>, "many">>;
|
|
486
579
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
487
580
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -490,8 +583,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
490
583
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
491
584
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
492
585
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
493
|
-
|
|
494
|
-
|
|
586
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
587
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
588
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
589
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
590
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
495
591
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
496
592
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
497
593
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -520,6 +616,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
520
616
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
521
617
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
522
618
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
619
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
620
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
621
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
523
622
|
}, "strip", import("zod").ZodTypeAny, {
|
|
524
623
|
trigger: string;
|
|
525
624
|
description?: string | undefined;
|
|
@@ -531,6 +630,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
531
630
|
hasVariants?: boolean | undefined;
|
|
532
631
|
variants?: any[] | undefined;
|
|
533
632
|
parameters?: any[] | undefined;
|
|
633
|
+
strictArg?: boolean | undefined;
|
|
634
|
+
minArgs?: number | undefined;
|
|
635
|
+
maxArgs?: number | undefined;
|
|
534
636
|
}, {
|
|
535
637
|
trigger: string;
|
|
536
638
|
description?: string | undefined;
|
|
@@ -542,6 +644,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
542
644
|
hasVariants?: boolean | undefined;
|
|
543
645
|
variants?: any[] | undefined;
|
|
544
646
|
parameters?: any[] | undefined;
|
|
647
|
+
strictArg?: boolean | undefined;
|
|
648
|
+
minArgs?: number | undefined;
|
|
649
|
+
maxArgs?: number | undefined;
|
|
545
650
|
}>, "many">>;
|
|
546
651
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
547
652
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -550,8 +655,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
550
655
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
551
656
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
552
657
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
553
|
-
|
|
554
|
-
|
|
658
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
659
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
660
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
661
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
662
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
555
663
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
556
664
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
557
665
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -587,6 +695,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
587
695
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
588
696
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
589
697
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
698
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
699
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
700
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
590
701
|
}, "strip", import("zod").ZodTypeAny, {
|
|
591
702
|
trigger: string;
|
|
592
703
|
description?: string | undefined;
|
|
@@ -598,6 +709,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
598
709
|
hasVariants?: boolean | undefined;
|
|
599
710
|
variants?: any[] | undefined;
|
|
600
711
|
parameters?: any[] | undefined;
|
|
712
|
+
strictArg?: boolean | undefined;
|
|
713
|
+
minArgs?: number | undefined;
|
|
714
|
+
maxArgs?: number | undefined;
|
|
601
715
|
}, {
|
|
602
716
|
trigger: string;
|
|
603
717
|
description?: string | undefined;
|
|
@@ -609,6 +723,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
609
723
|
hasVariants?: boolean | undefined;
|
|
610
724
|
variants?: any[] | undefined;
|
|
611
725
|
parameters?: any[] | undefined;
|
|
726
|
+
strictArg?: boolean | undefined;
|
|
727
|
+
minArgs?: number | undefined;
|
|
728
|
+
maxArgs?: number | undefined;
|
|
612
729
|
}>, "many">>;
|
|
613
730
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
614
731
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -617,8 +734,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
617
734
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
618
735
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
619
736
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
620
|
-
|
|
621
|
-
|
|
737
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
738
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
739
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
740
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
741
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
622
742
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
623
743
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
624
744
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -647,6 +767,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
647
767
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
648
768
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
649
769
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
770
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
771
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
772
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
650
773
|
}, "strip", import("zod").ZodTypeAny, {
|
|
651
774
|
trigger: string;
|
|
652
775
|
description?: string | undefined;
|
|
@@ -658,6 +781,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
658
781
|
hasVariants?: boolean | undefined;
|
|
659
782
|
variants?: any[] | undefined;
|
|
660
783
|
parameters?: any[] | undefined;
|
|
784
|
+
strictArg?: boolean | undefined;
|
|
785
|
+
minArgs?: number | undefined;
|
|
786
|
+
maxArgs?: number | undefined;
|
|
661
787
|
}, {
|
|
662
788
|
trigger: string;
|
|
663
789
|
description?: string | undefined;
|
|
@@ -669,6 +795,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
669
795
|
hasVariants?: boolean | undefined;
|
|
670
796
|
variants?: any[] | undefined;
|
|
671
797
|
parameters?: any[] | undefined;
|
|
798
|
+
strictArg?: boolean | undefined;
|
|
799
|
+
minArgs?: number | undefined;
|
|
800
|
+
maxArgs?: number | undefined;
|
|
672
801
|
}>, "many">>;
|
|
673
802
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
674
803
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -677,8 +806,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
677
806
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
678
807
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
679
808
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
680
|
-
|
|
681
|
-
|
|
809
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
810
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
811
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
812
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
813
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
682
814
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
683
815
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
684
816
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -707,6 +839,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
707
839
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
708
840
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
709
841
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
842
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
843
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
844
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
710
845
|
}, "strip", import("zod").ZodTypeAny, {
|
|
711
846
|
trigger: string;
|
|
712
847
|
description?: string | undefined;
|
|
@@ -718,6 +853,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
718
853
|
hasVariants?: boolean | undefined;
|
|
719
854
|
variants?: any[] | undefined;
|
|
720
855
|
parameters?: any[] | undefined;
|
|
856
|
+
strictArg?: boolean | undefined;
|
|
857
|
+
minArgs?: number | undefined;
|
|
858
|
+
maxArgs?: number | undefined;
|
|
721
859
|
}, {
|
|
722
860
|
trigger: string;
|
|
723
861
|
description?: string | undefined;
|
|
@@ -729,6 +867,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
729
867
|
hasVariants?: boolean | undefined;
|
|
730
868
|
variants?: any[] | undefined;
|
|
731
869
|
parameters?: any[] | undefined;
|
|
870
|
+
strictArg?: boolean | undefined;
|
|
871
|
+
minArgs?: number | undefined;
|
|
872
|
+
maxArgs?: number | undefined;
|
|
732
873
|
}>, "many">>;
|
|
733
874
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
734
875
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -737,8 +878,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
737
878
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
738
879
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
739
880
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
740
|
-
|
|
741
|
-
|
|
881
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
882
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
883
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
884
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
885
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
742
886
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
743
887
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
744
888
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -769,6 +913,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
769
913
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
770
914
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
771
915
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
916
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
917
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
918
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
772
919
|
}, "strip", import("zod").ZodTypeAny, {
|
|
773
920
|
trigger: string;
|
|
774
921
|
description?: string | undefined;
|
|
@@ -780,6 +927,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
780
927
|
hasVariants?: boolean | undefined;
|
|
781
928
|
variants?: any[] | undefined;
|
|
782
929
|
parameters?: any[] | undefined;
|
|
930
|
+
strictArg?: boolean | undefined;
|
|
931
|
+
minArgs?: number | undefined;
|
|
932
|
+
maxArgs?: number | undefined;
|
|
783
933
|
}, {
|
|
784
934
|
trigger: string;
|
|
785
935
|
description?: string | undefined;
|
|
@@ -791,6 +941,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
791
941
|
hasVariants?: boolean | undefined;
|
|
792
942
|
variants?: any[] | undefined;
|
|
793
943
|
parameters?: any[] | undefined;
|
|
944
|
+
strictArg?: boolean | undefined;
|
|
945
|
+
minArgs?: number | undefined;
|
|
946
|
+
maxArgs?: number | undefined;
|
|
794
947
|
}>, "many">>;
|
|
795
948
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
796
949
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -799,8 +952,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
799
952
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
800
953
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
801
954
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
802
|
-
|
|
803
|
-
|
|
955
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
956
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
957
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
958
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
959
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
804
960
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
805
961
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
806
962
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -829,6 +985,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
829
985
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
830
986
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
831
987
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
988
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
989
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
990
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
832
991
|
}, "strip", import("zod").ZodTypeAny, {
|
|
833
992
|
trigger: string;
|
|
834
993
|
description?: string | undefined;
|
|
@@ -840,6 +999,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
840
999
|
hasVariants?: boolean | undefined;
|
|
841
1000
|
variants?: any[] | undefined;
|
|
842
1001
|
parameters?: any[] | undefined;
|
|
1002
|
+
strictArg?: boolean | undefined;
|
|
1003
|
+
minArgs?: number | undefined;
|
|
1004
|
+
maxArgs?: number | undefined;
|
|
843
1005
|
}, {
|
|
844
1006
|
trigger: string;
|
|
845
1007
|
description?: string | undefined;
|
|
@@ -851,6 +1013,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
851
1013
|
hasVariants?: boolean | undefined;
|
|
852
1014
|
variants?: any[] | undefined;
|
|
853
1015
|
parameters?: any[] | undefined;
|
|
1016
|
+
strictArg?: boolean | undefined;
|
|
1017
|
+
minArgs?: number | undefined;
|
|
1018
|
+
maxArgs?: number | undefined;
|
|
854
1019
|
}>, "many">>;
|
|
855
1020
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
856
1021
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -859,8 +1024,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
859
1024
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
860
1025
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
861
1026
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
862
|
-
|
|
863
|
-
|
|
1027
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1028
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1029
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1030
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1031
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
864
1032
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
865
1033
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
866
1034
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -889,6 +1057,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
889
1057
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
890
1058
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
891
1059
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1060
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1061
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1062
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
892
1063
|
}, "strip", import("zod").ZodTypeAny, {
|
|
893
1064
|
trigger: string;
|
|
894
1065
|
description?: string | undefined;
|
|
@@ -900,6 +1071,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
900
1071
|
hasVariants?: boolean | undefined;
|
|
901
1072
|
variants?: any[] | undefined;
|
|
902
1073
|
parameters?: any[] | undefined;
|
|
1074
|
+
strictArg?: boolean | undefined;
|
|
1075
|
+
minArgs?: number | undefined;
|
|
1076
|
+
maxArgs?: number | undefined;
|
|
903
1077
|
}, {
|
|
904
1078
|
trigger: string;
|
|
905
1079
|
description?: string | undefined;
|
|
@@ -911,6 +1085,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
911
1085
|
hasVariants?: boolean | undefined;
|
|
912
1086
|
variants?: any[] | undefined;
|
|
913
1087
|
parameters?: any[] | undefined;
|
|
1088
|
+
strictArg?: boolean | undefined;
|
|
1089
|
+
minArgs?: number | undefined;
|
|
1090
|
+
maxArgs?: number | undefined;
|
|
914
1091
|
}>, "many">>;
|
|
915
1092
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
916
1093
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -919,8 +1096,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
919
1096
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
920
1097
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
921
1098
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
922
|
-
|
|
923
|
-
|
|
1099
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1100
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1101
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1102
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1103
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
924
1104
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
925
1105
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
926
1106
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -951,6 +1131,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
951
1131
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
952
1132
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
953
1133
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1134
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1135
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1136
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
954
1137
|
}, "strip", import("zod").ZodTypeAny, {
|
|
955
1138
|
trigger: string;
|
|
956
1139
|
description?: string | undefined;
|
|
@@ -962,6 +1145,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
962
1145
|
hasVariants?: boolean | undefined;
|
|
963
1146
|
variants?: any[] | undefined;
|
|
964
1147
|
parameters?: any[] | undefined;
|
|
1148
|
+
strictArg?: boolean | undefined;
|
|
1149
|
+
minArgs?: number | undefined;
|
|
1150
|
+
maxArgs?: number | undefined;
|
|
965
1151
|
}, {
|
|
966
1152
|
trigger: string;
|
|
967
1153
|
description?: string | undefined;
|
|
@@ -973,6 +1159,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
973
1159
|
hasVariants?: boolean | undefined;
|
|
974
1160
|
variants?: any[] | undefined;
|
|
975
1161
|
parameters?: any[] | undefined;
|
|
1162
|
+
strictArg?: boolean | undefined;
|
|
1163
|
+
minArgs?: number | undefined;
|
|
1164
|
+
maxArgs?: number | undefined;
|
|
976
1165
|
}>, "many">>;
|
|
977
1166
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
978
1167
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -981,8 +1170,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
981
1170
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
982
1171
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
983
1172
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
984
|
-
|
|
985
|
-
|
|
1173
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1174
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1175
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1176
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1177
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
986
1178
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
987
1179
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
988
1180
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1011,6 +1203,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1011
1203
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1012
1204
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1013
1205
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1206
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1207
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1208
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1014
1209
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1015
1210
|
trigger: string;
|
|
1016
1211
|
description?: string | undefined;
|
|
@@ -1022,6 +1217,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1022
1217
|
hasVariants?: boolean | undefined;
|
|
1023
1218
|
variants?: any[] | undefined;
|
|
1024
1219
|
parameters?: any[] | undefined;
|
|
1220
|
+
strictArg?: boolean | undefined;
|
|
1221
|
+
minArgs?: number | undefined;
|
|
1222
|
+
maxArgs?: number | undefined;
|
|
1025
1223
|
}, {
|
|
1026
1224
|
trigger: string;
|
|
1027
1225
|
description?: string | undefined;
|
|
@@ -1033,6 +1231,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1033
1231
|
hasVariants?: boolean | undefined;
|
|
1034
1232
|
variants?: any[] | undefined;
|
|
1035
1233
|
parameters?: any[] | undefined;
|
|
1234
|
+
strictArg?: boolean | undefined;
|
|
1235
|
+
minArgs?: number | undefined;
|
|
1236
|
+
maxArgs?: number | undefined;
|
|
1036
1237
|
}>, "many">>;
|
|
1037
1238
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1038
1239
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1041,8 +1242,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1041
1242
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
1042
1243
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
1043
1244
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
1044
|
-
|
|
1045
|
-
|
|
1245
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1246
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1247
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1248
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1249
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1046
1250
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1047
1251
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1048
1252
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1071,6 +1275,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1071
1275
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1072
1276
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1073
1277
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1278
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1279
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1280
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1074
1281
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1075
1282
|
trigger: string;
|
|
1076
1283
|
description?: string | undefined;
|
|
@@ -1082,6 +1289,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1082
1289
|
hasVariants?: boolean | undefined;
|
|
1083
1290
|
variants?: any[] | undefined;
|
|
1084
1291
|
parameters?: any[] | undefined;
|
|
1292
|
+
strictArg?: boolean | undefined;
|
|
1293
|
+
minArgs?: number | undefined;
|
|
1294
|
+
maxArgs?: number | undefined;
|
|
1085
1295
|
}, {
|
|
1086
1296
|
trigger: string;
|
|
1087
1297
|
description?: string | undefined;
|
|
@@ -1093,6 +1303,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1093
1303
|
hasVariants?: boolean | undefined;
|
|
1094
1304
|
variants?: any[] | undefined;
|
|
1095
1305
|
parameters?: any[] | undefined;
|
|
1306
|
+
strictArg?: boolean | undefined;
|
|
1307
|
+
minArgs?: number | undefined;
|
|
1308
|
+
maxArgs?: number | undefined;
|
|
1096
1309
|
}>, "many">>;
|
|
1097
1310
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1098
1311
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1101,8 +1314,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1101
1314
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
1102
1315
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
1103
1316
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
1104
|
-
|
|
1105
|
-
|
|
1317
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1318
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1319
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1320
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1321
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1106
1322
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1107
1323
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1108
1324
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1138,6 +1354,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1138
1354
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1139
1355
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1140
1356
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1357
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1358
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1359
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1141
1360
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1142
1361
|
trigger: string;
|
|
1143
1362
|
description?: string | undefined;
|
|
@@ -1149,6 +1368,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1149
1368
|
hasVariants?: boolean | undefined;
|
|
1150
1369
|
variants?: any[] | undefined;
|
|
1151
1370
|
parameters?: any[] | undefined;
|
|
1371
|
+
strictArg?: boolean | undefined;
|
|
1372
|
+
minArgs?: number | undefined;
|
|
1373
|
+
maxArgs?: number | undefined;
|
|
1152
1374
|
}, {
|
|
1153
1375
|
trigger: string;
|
|
1154
1376
|
description?: string | undefined;
|
|
@@ -1160,6 +1382,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1160
1382
|
hasVariants?: boolean | undefined;
|
|
1161
1383
|
variants?: any[] | undefined;
|
|
1162
1384
|
parameters?: any[] | undefined;
|
|
1385
|
+
strictArg?: boolean | undefined;
|
|
1386
|
+
minArgs?: number | undefined;
|
|
1387
|
+
maxArgs?: number | undefined;
|
|
1163
1388
|
}>, "many">>;
|
|
1164
1389
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1165
1390
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1168,8 +1393,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1168
1393
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
1169
1394
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
1170
1395
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
1171
|
-
|
|
1172
|
-
|
|
1396
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1397
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1398
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1399
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1400
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1173
1401
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1174
1402
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1175
1403
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1198,6 +1426,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1198
1426
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1199
1427
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1200
1428
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1429
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1430
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1431
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1201
1432
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1202
1433
|
trigger: string;
|
|
1203
1434
|
description?: string | undefined;
|
|
@@ -1209,6 +1440,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1209
1440
|
hasVariants?: boolean | undefined;
|
|
1210
1441
|
variants?: any[] | undefined;
|
|
1211
1442
|
parameters?: any[] | undefined;
|
|
1443
|
+
strictArg?: boolean | undefined;
|
|
1444
|
+
minArgs?: number | undefined;
|
|
1445
|
+
maxArgs?: number | undefined;
|
|
1212
1446
|
}, {
|
|
1213
1447
|
trigger: string;
|
|
1214
1448
|
description?: string | undefined;
|
|
@@ -1220,6 +1454,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1220
1454
|
hasVariants?: boolean | undefined;
|
|
1221
1455
|
variants?: any[] | undefined;
|
|
1222
1456
|
parameters?: any[] | undefined;
|
|
1457
|
+
strictArg?: boolean | undefined;
|
|
1458
|
+
minArgs?: number | undefined;
|
|
1459
|
+
maxArgs?: number | undefined;
|
|
1223
1460
|
}>, "many">>;
|
|
1224
1461
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1225
1462
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1228,8 +1465,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1228
1465
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
1229
1466
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
1230
1467
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
1231
|
-
|
|
1232
|
-
|
|
1468
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1469
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1470
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1471
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1472
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1233
1473
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1234
1474
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1235
1475
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1258,6 +1498,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1258
1498
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1259
1499
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1260
1500
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1501
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1502
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1503
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1261
1504
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1262
1505
|
trigger: string;
|
|
1263
1506
|
description?: string | undefined;
|
|
@@ -1269,6 +1512,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1269
1512
|
hasVariants?: boolean | undefined;
|
|
1270
1513
|
variants?: any[] | undefined;
|
|
1271
1514
|
parameters?: any[] | undefined;
|
|
1515
|
+
strictArg?: boolean | undefined;
|
|
1516
|
+
minArgs?: number | undefined;
|
|
1517
|
+
maxArgs?: number | undefined;
|
|
1272
1518
|
}, {
|
|
1273
1519
|
trigger: string;
|
|
1274
1520
|
description?: string | undefined;
|
|
@@ -1280,6 +1526,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1280
1526
|
hasVariants?: boolean | undefined;
|
|
1281
1527
|
variants?: any[] | undefined;
|
|
1282
1528
|
parameters?: any[] | undefined;
|
|
1529
|
+
strictArg?: boolean | undefined;
|
|
1530
|
+
minArgs?: number | undefined;
|
|
1531
|
+
maxArgs?: number | undefined;
|
|
1283
1532
|
}>, "many">>;
|
|
1284
1533
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1285
1534
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1288,8 +1537,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1288
1537
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
1289
1538
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
1290
1539
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
1291
|
-
|
|
1292
|
-
|
|
1540
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1541
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1542
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1543
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1544
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1293
1545
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1294
1546
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1295
1547
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1320,6 +1572,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1320
1572
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1321
1573
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1322
1574
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1575
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1576
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1577
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1323
1578
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1324
1579
|
trigger: string;
|
|
1325
1580
|
description?: string | undefined;
|
|
@@ -1331,6 +1586,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1331
1586
|
hasVariants?: boolean | undefined;
|
|
1332
1587
|
variants?: any[] | undefined;
|
|
1333
1588
|
parameters?: any[] | undefined;
|
|
1589
|
+
strictArg?: boolean | undefined;
|
|
1590
|
+
minArgs?: number | undefined;
|
|
1591
|
+
maxArgs?: number | undefined;
|
|
1334
1592
|
}, {
|
|
1335
1593
|
trigger: string;
|
|
1336
1594
|
description?: string | undefined;
|
|
@@ -1342,6 +1600,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1342
1600
|
hasVariants?: boolean | undefined;
|
|
1343
1601
|
variants?: any[] | undefined;
|
|
1344
1602
|
parameters?: any[] | undefined;
|
|
1603
|
+
strictArg?: boolean | undefined;
|
|
1604
|
+
minArgs?: number | undefined;
|
|
1605
|
+
maxArgs?: number | undefined;
|
|
1345
1606
|
}>, "many">>;
|
|
1346
1607
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1347
1608
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1350,8 +1611,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1350
1611
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
1351
1612
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
1352
1613
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
1353
|
-
|
|
1354
|
-
|
|
1614
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1615
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1616
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1617
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1618
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1355
1619
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1356
1620
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1357
1621
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1380,6 +1644,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1380
1644
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1381
1645
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1382
1646
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1647
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1648
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1649
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1383
1650
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1384
1651
|
trigger: string;
|
|
1385
1652
|
description?: string | undefined;
|
|
@@ -1391,6 +1658,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1391
1658
|
hasVariants?: boolean | undefined;
|
|
1392
1659
|
variants?: any[] | undefined;
|
|
1393
1660
|
parameters?: any[] | undefined;
|
|
1661
|
+
strictArg?: boolean | undefined;
|
|
1662
|
+
minArgs?: number | undefined;
|
|
1663
|
+
maxArgs?: number | undefined;
|
|
1394
1664
|
}, {
|
|
1395
1665
|
trigger: string;
|
|
1396
1666
|
description?: string | undefined;
|
|
@@ -1402,6 +1672,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1402
1672
|
hasVariants?: boolean | undefined;
|
|
1403
1673
|
variants?: any[] | undefined;
|
|
1404
1674
|
parameters?: any[] | undefined;
|
|
1675
|
+
strictArg?: boolean | undefined;
|
|
1676
|
+
minArgs?: number | undefined;
|
|
1677
|
+
maxArgs?: number | undefined;
|
|
1405
1678
|
}>, "many">>;
|
|
1406
1679
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1407
1680
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1410,8 +1683,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1410
1683
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
1411
1684
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
1412
1685
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
1413
|
-
|
|
1414
|
-
|
|
1686
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1687
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1688
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1689
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1690
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1415
1691
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1416
1692
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1417
1693
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1440,6 +1716,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1440
1716
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1441
1717
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1442
1718
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1719
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1720
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1721
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1443
1722
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1444
1723
|
trigger: string;
|
|
1445
1724
|
description?: string | undefined;
|
|
@@ -1451,6 +1730,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1451
1730
|
hasVariants?: boolean | undefined;
|
|
1452
1731
|
variants?: any[] | undefined;
|
|
1453
1732
|
parameters?: any[] | undefined;
|
|
1733
|
+
strictArg?: boolean | undefined;
|
|
1734
|
+
minArgs?: number | undefined;
|
|
1735
|
+
maxArgs?: number | undefined;
|
|
1454
1736
|
}, {
|
|
1455
1737
|
trigger: string;
|
|
1456
1738
|
description?: string | undefined;
|
|
@@ -1462,6 +1744,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1462
1744
|
hasVariants?: boolean | undefined;
|
|
1463
1745
|
variants?: any[] | undefined;
|
|
1464
1746
|
parameters?: any[] | undefined;
|
|
1747
|
+
strictArg?: boolean | undefined;
|
|
1748
|
+
minArgs?: number | undefined;
|
|
1749
|
+
maxArgs?: number | undefined;
|
|
1465
1750
|
}>, "many">>;
|
|
1466
1751
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1467
1752
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1470,8 +1755,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1470
1755
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
1471
1756
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
1472
1757
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
1473
|
-
|
|
1474
|
-
|
|
1758
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1759
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1760
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1761
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1762
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1475
1763
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1476
1764
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1477
1765
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1502,6 +1790,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1502
1790
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1503
1791
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1504
1792
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1793
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1794
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1795
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1505
1796
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1506
1797
|
trigger: string;
|
|
1507
1798
|
description?: string | undefined;
|
|
@@ -1513,6 +1804,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1513
1804
|
hasVariants?: boolean | undefined;
|
|
1514
1805
|
variants?: any[] | undefined;
|
|
1515
1806
|
parameters?: any[] | undefined;
|
|
1807
|
+
strictArg?: boolean | undefined;
|
|
1808
|
+
minArgs?: number | undefined;
|
|
1809
|
+
maxArgs?: number | undefined;
|
|
1516
1810
|
}, {
|
|
1517
1811
|
trigger: string;
|
|
1518
1812
|
description?: string | undefined;
|
|
@@ -1524,6 +1818,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1524
1818
|
hasVariants?: boolean | undefined;
|
|
1525
1819
|
variants?: any[] | undefined;
|
|
1526
1820
|
parameters?: any[] | undefined;
|
|
1821
|
+
strictArg?: boolean | undefined;
|
|
1822
|
+
minArgs?: number | undefined;
|
|
1823
|
+
maxArgs?: number | undefined;
|
|
1527
1824
|
}>, "many">>;
|
|
1528
1825
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1529
1826
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1532,8 +1829,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1532
1829
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
1533
1830
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
1534
1831
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
1535
|
-
|
|
1536
|
-
|
|
1832
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1833
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1834
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1835
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1836
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1537
1837
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1538
1838
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1539
1839
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1562,6 +1862,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1562
1862
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1563
1863
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1564
1864
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1865
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1866
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1867
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1565
1868
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1566
1869
|
trigger: string;
|
|
1567
1870
|
description?: string | undefined;
|
|
@@ -1573,6 +1876,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1573
1876
|
hasVariants?: boolean | undefined;
|
|
1574
1877
|
variants?: any[] | undefined;
|
|
1575
1878
|
parameters?: any[] | undefined;
|
|
1879
|
+
strictArg?: boolean | undefined;
|
|
1880
|
+
minArgs?: number | undefined;
|
|
1881
|
+
maxArgs?: number | undefined;
|
|
1576
1882
|
}, {
|
|
1577
1883
|
trigger: string;
|
|
1578
1884
|
description?: string | undefined;
|
|
@@ -1584,6 +1890,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1584
1890
|
hasVariants?: boolean | undefined;
|
|
1585
1891
|
variants?: any[] | undefined;
|
|
1586
1892
|
parameters?: any[] | undefined;
|
|
1893
|
+
strictArg?: boolean | undefined;
|
|
1894
|
+
minArgs?: number | undefined;
|
|
1895
|
+
maxArgs?: number | undefined;
|
|
1587
1896
|
}>, "many">>;
|
|
1588
1897
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1589
1898
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1592,8 +1901,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1592
1901
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
1593
1902
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
1594
1903
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
1595
|
-
|
|
1596
|
-
|
|
1904
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1905
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1906
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1907
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1908
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1597
1909
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1598
1910
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1599
1911
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1622,6 +1934,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1622
1934
|
hasVariants: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1623
1935
|
variants: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1624
1936
|
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
|
|
1937
|
+
strictArg: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1938
|
+
minArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1939
|
+
maxArgs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1625
1940
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1626
1941
|
trigger: string;
|
|
1627
1942
|
description?: string | undefined;
|
|
@@ -1633,6 +1948,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1633
1948
|
hasVariants?: boolean | undefined;
|
|
1634
1949
|
variants?: any[] | undefined;
|
|
1635
1950
|
parameters?: any[] | undefined;
|
|
1951
|
+
strictArg?: boolean | undefined;
|
|
1952
|
+
minArgs?: number | undefined;
|
|
1953
|
+
maxArgs?: number | undefined;
|
|
1636
1954
|
}, {
|
|
1637
1955
|
trigger: string;
|
|
1638
1956
|
description?: string | undefined;
|
|
@@ -1644,6 +1962,9 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1644
1962
|
hasVariants?: boolean | undefined;
|
|
1645
1963
|
variants?: any[] | undefined;
|
|
1646
1964
|
parameters?: any[] | undefined;
|
|
1965
|
+
strictArg?: boolean | undefined;
|
|
1966
|
+
minArgs?: number | undefined;
|
|
1967
|
+
maxArgs?: number | undefined;
|
|
1647
1968
|
}>, "many">>;
|
|
1648
1969
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1649
1970
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1652,8 +1973,11 @@ export declare class AgentDetailsResponseHandler extends BaseMessageHandler<Agen
|
|
|
1652
1973
|
categories: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["Trading", "Finance", "Crypto", "Social Media", "Lead Generation", "E-Commerce", "SEO", "News", "Real Estate", "Travel", "Automation", "Developer Tools", "AI", "Integrations", "Open Source", "Jobs", "Price Lists", "Other"]>, "many">>;
|
|
1653
1974
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["command", "nlp", "mcp"]>>;
|
|
1654
1975
|
nlp_fallback: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodString]>>;
|
|
1655
|
-
|
|
1656
|
-
|
|
1976
|
+
review_status: import("zod").ZodOptional<import("zod").ZodEnum<["private", "in_review", "public", "declined"]>>;
|
|
1977
|
+
decline_reason: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1978
|
+
submitted_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1979
|
+
reviewed_at: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1980
|
+
reviewed_by: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1657
1981
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1658
1982
|
creator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1659
1983
|
is_banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|