@elqnt/agents 1.0.8 → 1.0.11
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/index.d.mts +209 -53
- package/dist/index.d.ts +209 -53
- package/dist/index.js +78 -33
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +52 -22
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -275,37 +275,37 @@ interface PlanApprovalConfig {
|
|
|
275
275
|
allowAutoApprove: boolean;
|
|
276
276
|
}
|
|
277
277
|
/**
|
|
278
|
-
*
|
|
278
|
+
* CreateToolDefinitionRequest represents a request to create a tool definition
|
|
279
279
|
*/
|
|
280
|
-
interface
|
|
280
|
+
interface CreateToolDefinitionRequest {
|
|
281
281
|
orgId: string;
|
|
282
|
-
|
|
282
|
+
toolDefinition?: ToolDefinition;
|
|
283
283
|
}
|
|
284
284
|
/**
|
|
285
|
-
*
|
|
285
|
+
* UpdateToolDefinitionRequest represents a request to update a tool definition
|
|
286
286
|
*/
|
|
287
|
-
interface
|
|
287
|
+
interface UpdateToolDefinitionRequest {
|
|
288
288
|
orgId: string;
|
|
289
|
-
|
|
289
|
+
toolDefinition?: ToolDefinition;
|
|
290
290
|
}
|
|
291
291
|
/**
|
|
292
|
-
*
|
|
292
|
+
* GetToolDefinitionRequest represents a request to get a tool definition
|
|
293
293
|
*/
|
|
294
|
-
interface
|
|
294
|
+
interface GetToolDefinitionRequest {
|
|
295
295
|
orgId: string;
|
|
296
|
-
|
|
296
|
+
toolDefinitionId: string;
|
|
297
297
|
}
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* DeleteToolDefinitionRequest represents a request to delete a tool definition
|
|
300
300
|
*/
|
|
301
|
-
interface
|
|
301
|
+
interface DeleteToolDefinitionRequest {
|
|
302
302
|
orgId: string;
|
|
303
|
-
|
|
303
|
+
toolDefinitionId: string;
|
|
304
304
|
}
|
|
305
305
|
/**
|
|
306
|
-
*
|
|
306
|
+
* ListToolDefinitionsRequest represents a request to list tool definitions
|
|
307
307
|
*/
|
|
308
|
-
interface
|
|
308
|
+
interface ListToolDefinitionsRequest {
|
|
309
309
|
orgId: string;
|
|
310
310
|
onlySystem?: boolean;
|
|
311
311
|
enabled?: boolean;
|
|
@@ -313,17 +313,17 @@ interface ListToolsRequest {
|
|
|
313
313
|
offset?: number;
|
|
314
314
|
}
|
|
315
315
|
/**
|
|
316
|
-
*
|
|
316
|
+
* ToolDefinitionResponse represents a response containing a tool definition
|
|
317
317
|
*/
|
|
318
|
-
interface
|
|
319
|
-
|
|
318
|
+
interface ToolDefinitionResponse {
|
|
319
|
+
toolDefinition?: ToolDefinition;
|
|
320
320
|
metadata: any;
|
|
321
321
|
}
|
|
322
322
|
/**
|
|
323
|
-
*
|
|
323
|
+
* ToolDefinitionsListResponse represents a response containing multiple tool definitions
|
|
324
324
|
*/
|
|
325
|
-
interface
|
|
326
|
-
|
|
325
|
+
interface ToolDefinitionsListResponse {
|
|
326
|
+
toolDefinitions: ToolDefinition[];
|
|
327
327
|
total: number;
|
|
328
328
|
metadata: any;
|
|
329
329
|
}
|
|
@@ -381,17 +381,17 @@ interface SubAgentsListResponse {
|
|
|
381
381
|
metadata: any;
|
|
382
382
|
}
|
|
383
383
|
/**
|
|
384
|
-
*
|
|
384
|
+
* GetToolDefinitionsByIDsRequest represents a request to get multiple tool definitions by IDs
|
|
385
385
|
*/
|
|
386
|
-
interface
|
|
386
|
+
interface GetToolDefinitionsByIDsRequest {
|
|
387
387
|
orgId: string;
|
|
388
|
-
|
|
388
|
+
toolDefinitionIds: string[];
|
|
389
389
|
}
|
|
390
390
|
/**
|
|
391
|
-
*
|
|
391
|
+
* GetToolDefinitionsByIDsResponse represents a response containing multiple tool definitions
|
|
392
392
|
*/
|
|
393
|
-
interface
|
|
394
|
-
|
|
393
|
+
interface GetToolDefinitionsByIDsResponse {
|
|
394
|
+
toolDefinitions: ToolDefinition[];
|
|
395
395
|
metadata: any;
|
|
396
396
|
}
|
|
397
397
|
/**
|
|
@@ -410,6 +410,7 @@ interface GetSubAgentsByIDsResponse {
|
|
|
410
410
|
}
|
|
411
411
|
interface ExecuteToolRequest {
|
|
412
412
|
orgId: string;
|
|
413
|
+
agentId?: string;
|
|
413
414
|
tool?: AgentTool;
|
|
414
415
|
input: {
|
|
415
416
|
[key: string]: any;
|
|
@@ -428,9 +429,120 @@ interface ExecuteToolResponse {
|
|
|
428
429
|
};
|
|
429
430
|
metadata: any;
|
|
430
431
|
}
|
|
432
|
+
/**
|
|
433
|
+
* CreateSkillRequest represents a request to create a skill
|
|
434
|
+
*/
|
|
435
|
+
interface CreateSkillRequest {
|
|
436
|
+
orgId: string;
|
|
437
|
+
skill?: Skill;
|
|
438
|
+
}
|
|
439
|
+
/**
|
|
440
|
+
* UpdateSkillRequest represents a request to update a skill
|
|
441
|
+
*/
|
|
442
|
+
interface UpdateSkillRequest {
|
|
443
|
+
orgId: string;
|
|
444
|
+
skill?: Skill;
|
|
445
|
+
}
|
|
446
|
+
/**
|
|
447
|
+
* GetSkillRequest represents a request to get a skill
|
|
448
|
+
*/
|
|
449
|
+
interface GetSkillRequest {
|
|
450
|
+
orgId: string;
|
|
451
|
+
skillId: string;
|
|
452
|
+
}
|
|
453
|
+
/**
|
|
454
|
+
* DeleteSkillRequest represents a request to delete a skill
|
|
455
|
+
*/
|
|
456
|
+
interface DeleteSkillRequest {
|
|
457
|
+
orgId: string;
|
|
458
|
+
skillId: string;
|
|
459
|
+
}
|
|
460
|
+
/**
|
|
461
|
+
* ListSkillsRequest represents a request to list skills
|
|
462
|
+
*/
|
|
463
|
+
interface ListSkillsRequest {
|
|
464
|
+
orgId: string;
|
|
465
|
+
category?: SkillCategory;
|
|
466
|
+
onlySystem?: boolean;
|
|
467
|
+
enabled?: boolean;
|
|
468
|
+
limit?: number;
|
|
469
|
+
offset?: number;
|
|
470
|
+
}
|
|
471
|
+
/**
|
|
472
|
+
* SkillResponse represents a response containing a skill
|
|
473
|
+
*/
|
|
474
|
+
interface SkillResponse {
|
|
475
|
+
skill?: Skill;
|
|
476
|
+
metadata: any;
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* SkillsListResponse represents a response containing multiple skills
|
|
480
|
+
*/
|
|
481
|
+
interface SkillsListResponse {
|
|
482
|
+
skills: Skill[];
|
|
483
|
+
total: number;
|
|
484
|
+
metadata: any;
|
|
485
|
+
}
|
|
486
|
+
/**
|
|
487
|
+
* GetSkillsByIDsRequest represents a request to get multiple skills by IDs
|
|
488
|
+
*/
|
|
489
|
+
interface GetSkillsByIDsRequest {
|
|
490
|
+
orgId: string;
|
|
491
|
+
skillIds: string[];
|
|
492
|
+
}
|
|
493
|
+
/**
|
|
494
|
+
* GetSkillsByIDsResponse represents a response containing multiple skills
|
|
495
|
+
*/
|
|
496
|
+
interface GetSkillsByIDsResponse {
|
|
497
|
+
skills: Skill[];
|
|
498
|
+
metadata: any;
|
|
499
|
+
}
|
|
431
500
|
type AgentTypeTS = 'chat' | 'react';
|
|
432
501
|
type AgentSubTypeTS = 'chat' | 'react' | 'workflow' | 'document';
|
|
433
502
|
type AgentStatusTS = 'draft' | 'active' | 'inactive' | 'archived';
|
|
503
|
+
type SkillCategoryTS = 'productivity' | 'creative' | 'integration' | 'analysis' | 'communication' | 'custom';
|
|
504
|
+
type SkillCategory = string;
|
|
505
|
+
declare const SkillCategoryProductivity: SkillCategory;
|
|
506
|
+
declare const SkillCategoryCreative: SkillCategory;
|
|
507
|
+
declare const SkillCategoryIntegration: SkillCategory;
|
|
508
|
+
declare const SkillCategoryAnalysis: SkillCategory;
|
|
509
|
+
declare const SkillCategoryCommunication: SkillCategory;
|
|
510
|
+
declare const SkillCategoryCustom: SkillCategory;
|
|
511
|
+
/**
|
|
512
|
+
* Skill represents a bundled set of tools with a prompt extension
|
|
513
|
+
* Skills can be activated at runtime to extend agent capabilities
|
|
514
|
+
*/
|
|
515
|
+
interface Skill {
|
|
516
|
+
id: string;
|
|
517
|
+
orgId?: string;
|
|
518
|
+
name: string;
|
|
519
|
+
title: string;
|
|
520
|
+
description?: string;
|
|
521
|
+
category: SkillCategoryTS;
|
|
522
|
+
slashCommand?: string;
|
|
523
|
+
tags?: string[];
|
|
524
|
+
tools?: AgentTool[];
|
|
525
|
+
systemPromptExtension?: string;
|
|
526
|
+
iconName?: string;
|
|
527
|
+
configSchema?: JSONSchema;
|
|
528
|
+
config?: {
|
|
529
|
+
[key: string]: any;
|
|
530
|
+
};
|
|
531
|
+
enabled: boolean;
|
|
532
|
+
isSystem?: boolean;
|
|
533
|
+
displayOrder?: number;
|
|
534
|
+
createdAt?: string;
|
|
535
|
+
updatedAt?: string;
|
|
536
|
+
}
|
|
537
|
+
/**
|
|
538
|
+
* AgentSkill represents an agent's configuration for a specific skill
|
|
539
|
+
*/
|
|
540
|
+
interface AgentSkill {
|
|
541
|
+
skillId: string;
|
|
542
|
+
skillName?: string;
|
|
543
|
+
enabled: boolean;
|
|
544
|
+
order?: number;
|
|
545
|
+
}
|
|
434
546
|
type AgentType = string;
|
|
435
547
|
declare const AgentTypeChat: AgentType;
|
|
436
548
|
declare const AgentTypeReact: AgentType;
|
|
@@ -458,8 +570,9 @@ declare const AgentStatusInactive: AgentStatus;
|
|
|
458
570
|
declare const AgentStatusArchived: AgentStatus;
|
|
459
571
|
interface DefaultDefinitions {
|
|
460
572
|
agents: Agent[];
|
|
461
|
-
|
|
573
|
+
toolDefinitions: ToolDefinition[];
|
|
462
574
|
subAgents: SubAgent[];
|
|
575
|
+
skills?: Skill[];
|
|
463
576
|
}
|
|
464
577
|
/**
|
|
465
578
|
* AgentTool represents an agent's configuration for a specific tool
|
|
@@ -517,6 +630,11 @@ interface Agent {
|
|
|
517
630
|
*/
|
|
518
631
|
tools?: AgentTool[];
|
|
519
632
|
subAgentIds?: string[];
|
|
633
|
+
/**
|
|
634
|
+
* === Skills Configuration ===
|
|
635
|
+
*/
|
|
636
|
+
useSkills?: boolean;
|
|
637
|
+
skills?: AgentSkill[];
|
|
520
638
|
/**
|
|
521
639
|
* === Essential Configs ===
|
|
522
640
|
*/
|
|
@@ -616,9 +734,10 @@ interface AgentSummary {
|
|
|
616
734
|
};
|
|
617
735
|
}
|
|
618
736
|
/**
|
|
619
|
-
*
|
|
737
|
+
* ToolDefinition represents an abstract/generic tool definition that can be customized per agent
|
|
738
|
+
* This is the "template" that agents use to create their AgentTool configurations
|
|
620
739
|
*/
|
|
621
|
-
interface
|
|
740
|
+
interface ToolDefinition {
|
|
622
741
|
id: string;
|
|
623
742
|
name: string;
|
|
624
743
|
title: string;
|
|
@@ -744,7 +863,7 @@ interface CreateExecutionPlanRequest {
|
|
|
744
863
|
context?: {
|
|
745
864
|
[key: string]: any;
|
|
746
865
|
};
|
|
747
|
-
availableTools:
|
|
866
|
+
availableTools: ToolDefinition[];
|
|
748
867
|
}
|
|
749
868
|
/**
|
|
750
869
|
* CreateExecutionPlanResponse represents the response with an execution plan
|
|
@@ -926,6 +1045,7 @@ interface UpdateOrgAgentsResponse {
|
|
|
926
1045
|
toolsCreated: number;
|
|
927
1046
|
subAgentsCreated: number;
|
|
928
1047
|
agentsCreated: number;
|
|
1048
|
+
skillsCreated: number;
|
|
929
1049
|
metadata: ResponseMetadata;
|
|
930
1050
|
}
|
|
931
1051
|
/**
|
|
@@ -1105,49 +1225,49 @@ declare const WorkflowAgentGetSubject = "workflow.agent.get";
|
|
|
1105
1225
|
*/
|
|
1106
1226
|
declare const WorkflowAgentUpdateSubject = "workflow.agent.update";
|
|
1107
1227
|
/**
|
|
1108
|
-
*
|
|
1228
|
+
* ToolDefinitions Management
|
|
1109
1229
|
*/
|
|
1110
|
-
declare const
|
|
1230
|
+
declare const ToolDefinitionsCreateSubject = "agents.tool-definitions.create";
|
|
1111
1231
|
/**
|
|
1112
|
-
*
|
|
1232
|
+
* ToolDefinitions Management
|
|
1113
1233
|
*/
|
|
1114
|
-
declare const
|
|
1234
|
+
declare const ToolDefinitionsCreatedSubject = "agents.tool-definitions.created";
|
|
1115
1235
|
/**
|
|
1116
|
-
*
|
|
1236
|
+
* ToolDefinitions Management
|
|
1117
1237
|
*/
|
|
1118
|
-
declare const
|
|
1238
|
+
declare const ToolDefinitionsGetSubject = "agents.tool-definitions.get";
|
|
1119
1239
|
/**
|
|
1120
|
-
*
|
|
1240
|
+
* ToolDefinitions Management
|
|
1121
1241
|
*/
|
|
1122
|
-
declare const
|
|
1242
|
+
declare const ToolDefinitionsUpdateSubject = "agents.tool-definitions.update";
|
|
1123
1243
|
/**
|
|
1124
|
-
*
|
|
1244
|
+
* ToolDefinitions Management
|
|
1125
1245
|
*/
|
|
1126
|
-
declare const
|
|
1246
|
+
declare const ToolDefinitionsUpdatedSubject = "agents.tool-definitions.updated";
|
|
1127
1247
|
/**
|
|
1128
|
-
*
|
|
1248
|
+
* ToolDefinitions Management
|
|
1129
1249
|
*/
|
|
1130
|
-
declare const
|
|
1250
|
+
declare const ToolDefinitionsDeleteSubject = "agents.tool-definitions.delete";
|
|
1131
1251
|
/**
|
|
1132
|
-
*
|
|
1252
|
+
* ToolDefinitions Management
|
|
1133
1253
|
*/
|
|
1134
|
-
declare const
|
|
1254
|
+
declare const ToolDefinitionsDeletedSubject = "agents.tool-definitions.deleted";
|
|
1135
1255
|
/**
|
|
1136
|
-
*
|
|
1256
|
+
* ToolDefinitions Management
|
|
1137
1257
|
*/
|
|
1138
|
-
declare const
|
|
1258
|
+
declare const ToolDefinitionsListSubject = "agents.tool-definitions.list";
|
|
1139
1259
|
/**
|
|
1140
|
-
*
|
|
1260
|
+
* ToolDefinitions Management
|
|
1141
1261
|
*/
|
|
1142
|
-
declare const
|
|
1262
|
+
declare const ToolDefinitionsGetByIDsSubject = "agents.tool-definitions.get-by-ids";
|
|
1143
1263
|
/**
|
|
1144
|
-
*
|
|
1264
|
+
* ToolDefinitions Management
|
|
1145
1265
|
*/
|
|
1146
|
-
declare const
|
|
1266
|
+
declare const ToolDefinitionsExecuteSubject = "agents.tool-definitions.execute";
|
|
1147
1267
|
/**
|
|
1148
|
-
*
|
|
1268
|
+
* ToolDefinitions Management
|
|
1149
1269
|
*/
|
|
1150
|
-
declare const
|
|
1270
|
+
declare const ToolDefinitionsValidateSubject = "agents.tool-definitions.validate";
|
|
1151
1271
|
/**
|
|
1152
1272
|
* SubAgents Management
|
|
1153
1273
|
*/
|
|
@@ -1192,6 +1312,42 @@ declare const SubAgentsExecuteSubject = "agents.subagents.execute";
|
|
|
1192
1312
|
* SubAgents Management
|
|
1193
1313
|
*/
|
|
1194
1314
|
declare const SubAgentsValidateSubject = "agents.subagents.validate";
|
|
1315
|
+
/**
|
|
1316
|
+
* Skills Management
|
|
1317
|
+
*/
|
|
1318
|
+
declare const SkillsCreateSubject = "agents.skills.create";
|
|
1319
|
+
/**
|
|
1320
|
+
* Skills Management
|
|
1321
|
+
*/
|
|
1322
|
+
declare const SkillsCreatedSubject = "agents.skills.created";
|
|
1323
|
+
/**
|
|
1324
|
+
* Skills Management
|
|
1325
|
+
*/
|
|
1326
|
+
declare const SkillsGetSubject = "agents.skills.get";
|
|
1327
|
+
/**
|
|
1328
|
+
* Skills Management
|
|
1329
|
+
*/
|
|
1330
|
+
declare const SkillsUpdateSubject = "agents.skills.update";
|
|
1331
|
+
/**
|
|
1332
|
+
* Skills Management
|
|
1333
|
+
*/
|
|
1334
|
+
declare const SkillsUpdatedSubject = "agents.skills.updated";
|
|
1335
|
+
/**
|
|
1336
|
+
* Skills Management
|
|
1337
|
+
*/
|
|
1338
|
+
declare const SkillsDeleteSubject = "agents.skills.delete";
|
|
1339
|
+
/**
|
|
1340
|
+
* Skills Management
|
|
1341
|
+
*/
|
|
1342
|
+
declare const SkillsDeletedSubject = "agents.skills.deleted";
|
|
1343
|
+
/**
|
|
1344
|
+
* Skills Management
|
|
1345
|
+
*/
|
|
1346
|
+
declare const SkillsListSubject = "agents.skills.list";
|
|
1347
|
+
/**
|
|
1348
|
+
* Skills Management
|
|
1349
|
+
*/
|
|
1350
|
+
declare const SkillsGetByIDsSubject = "agents.skills.get-by-ids";
|
|
1195
1351
|
/**
|
|
1196
1352
|
* Agent Instance Management
|
|
1197
1353
|
*/
|
|
@@ -1294,4 +1450,4 @@ interface ValidationError {
|
|
|
1294
1450
|
*/
|
|
1295
1451
|
type ValidationErrors = ValidationError[];
|
|
1296
1452
|
|
|
1297
|
-
export { type Agent, AgentChatCreateSubject, AgentChatGetSubject, AgentChatUpdateSubject, AgentChatValidateSubject, AgentCloneSubject, type AgentContext, type AgentContextConfig, AgentCreateSubject, AgentCreatedSubject, AgentDeleteSubject, AgentDeletedSubject, AgentEnsureDefaultSubject, AgentExecuteStatusSubject, AgentExecuteStopSubject, AgentExecuteSubject, type AgentExecution, AgentExportSubject, type AgentFilters, AgentFromTemplateSubject, AgentGetByOrgSubject, AgentGetDefaultSubject, AgentGetSubject, AgentImportSubject, AgentInstanceCancelPlanSubject, AgentInstanceClearHistorySubject, AgentInstanceCreatePlanSubject, AgentInstanceCreateSubject, AgentInstanceCreatedSubject, AgentInstanceDeleteSubject, AgentInstanceDeletedSubject, AgentInstanceExecutePlanSubject, AgentInstanceGetHistorySubject, AgentInstanceGetSubject, AgentInstanceListSubject, AgentInstancePausePlanSubject, AgentInstanceResumePlanSubject, AgentInstanceUpdateSubject, AgentInstanceUpdatedSubject, AgentListSubject, AgentListSummarySubject, AgentReactCreateSubject, AgentReactGetSubject, AgentReactUpdateSubject, AgentReactValidateSubject, type AgentResponse, AgentSearchSubject, type AgentStatus, AgentStatusActive, AgentStatusArchived, AgentStatusDraft, AgentStatusInactive, type AgentStatusTS, type AgentSubType, AgentSubTypeChat, AgentSubTypeDocument, AgentSubTypeReact, type AgentSubTypeTS, AgentSubTypeWorkflow, type AgentSummary, AgentTemplateGetSubject, AgentTemplateListSubject, type AgentTool, type AgentToolConfiguration, type AgentType, AgentTypeChat, AgentTypeReact, type AgentTypeTS, AgentUpdateOrgSubject, AgentUpdateSubject, AgentUpdatedSubject, AgentVersionActivateSubject, AgentVersionActivatedSubject, AgentVersionCreateSubject, AgentVersionCreatedSubject, AgentVersionGetSubject, AgentVersionListSubject, type CSATAnswer, type CSATConfig, type CSATQuestion, type CSATResponse, type CSATSurvey, ChatAgentExecuteSubject, ChatAgentStatusSubject, type CreateAgentRequest, type CreateExecutionPlanRequest, type CreateExecutionPlanResponse, type CreateSubAgentRequest, type
|
|
1453
|
+
export { type Agent, AgentChatCreateSubject, AgentChatGetSubject, AgentChatUpdateSubject, AgentChatValidateSubject, AgentCloneSubject, type AgentContext, type AgentContextConfig, AgentCreateSubject, AgentCreatedSubject, AgentDeleteSubject, AgentDeletedSubject, AgentEnsureDefaultSubject, AgentExecuteStatusSubject, AgentExecuteStopSubject, AgentExecuteSubject, type AgentExecution, AgentExportSubject, type AgentFilters, AgentFromTemplateSubject, AgentGetByOrgSubject, AgentGetDefaultSubject, AgentGetSubject, AgentImportSubject, AgentInstanceCancelPlanSubject, AgentInstanceClearHistorySubject, AgentInstanceCreatePlanSubject, AgentInstanceCreateSubject, AgentInstanceCreatedSubject, AgentInstanceDeleteSubject, AgentInstanceDeletedSubject, AgentInstanceExecutePlanSubject, AgentInstanceGetHistorySubject, AgentInstanceGetSubject, AgentInstanceListSubject, AgentInstancePausePlanSubject, AgentInstanceResumePlanSubject, AgentInstanceUpdateSubject, AgentInstanceUpdatedSubject, AgentListSubject, AgentListSummarySubject, AgentReactCreateSubject, AgentReactGetSubject, AgentReactUpdateSubject, AgentReactValidateSubject, type AgentResponse, AgentSearchSubject, type AgentSkill, type AgentStatus, AgentStatusActive, AgentStatusArchived, AgentStatusDraft, AgentStatusInactive, type AgentStatusTS, type AgentSubType, AgentSubTypeChat, AgentSubTypeDocument, AgentSubTypeReact, type AgentSubTypeTS, AgentSubTypeWorkflow, type AgentSummary, AgentTemplateGetSubject, AgentTemplateListSubject, type AgentTool, type AgentToolConfiguration, type AgentType, AgentTypeChat, AgentTypeReact, type AgentTypeTS, AgentUpdateOrgSubject, AgentUpdateSubject, AgentUpdatedSubject, AgentVersionActivateSubject, AgentVersionActivatedSubject, AgentVersionCreateSubject, AgentVersionCreatedSubject, AgentVersionGetSubject, AgentVersionListSubject, type CSATAnswer, type CSATConfig, type CSATQuestion, type CSATResponse, type CSATSurvey, ChatAgentExecuteSubject, ChatAgentStatusSubject, type CreateAgentRequest, type CreateExecutionPlanRequest, type CreateExecutionPlanResponse, type CreateSkillRequest, type CreateSubAgentRequest, type CreateToolDefinitionRequest, type DefaultDefinitions, type DeleteAgentRequest, type DeleteSkillRequest, type DeleteSubAgentRequest, type DeleteToolDefinitionRequest, type ExecutePlanRequest, type ExecutePlanResponse, type ExecuteToolRequest, type ExecuteToolResponse, type ExecutionMode, ExecutionModeAsync, ExecutionModeAsyncClient, ExecutionModeSync, type ExecutionModeTS, type ExecutionPlan, type ExecutionStatus, ExecutionStatusCompleted, ExecutionStatusFailed, ExecutionStatusPending, ExecutionStatusRunning, ExecutionStatusSkipped, type ExecutionStatusTS, ExecutionTTLHours, type GetAgentRequest, type GetDefaultAgentRequest, type GetSkillRequest, type GetSkillsByIDsRequest, type GetSkillsByIDsResponse, type GetSubAgentRequest, type GetSubAgentsByIDsRequest, type GetSubAgentsByIDsResponse, type GetToolDefinitionRequest, type GetToolDefinitionsByIDsRequest, type GetToolDefinitionsByIDsResponse, type HandoffConfig, type ListAgentsRequest, type ListAgentsResponse, type ListAgentsSummaryRequest, type ListAgentsSummaryResponse, type ListSkillsRequest, type ListSubAgentsRequest, type ListToolDefinitionsRequest, type MCPServerConfig, MaxExecutions, type MergeConfig, type MergeStrategy, MergeStrategyAppend, MergeStrategyMerge, MergeStrategyReplace, type MergeStrategyTS, type PlanApprovalConfig, type PlanStatus, PlanStatusApproved, PlanStatusCancelled, PlanStatusCompleted, PlanStatusExecuting, PlanStatusPendingApproval, PlanStatusRejected, type PlanStatusTS, type PlannedStep, type ReactAgentConfig, ReactAgentExecuteSubject, ReactAgentStatusSubject, ReactAgentStopSubject, type RetryPolicy, type Skill, type SkillCategory, SkillCategoryAnalysis, SkillCategoryCommunication, SkillCategoryCreative, SkillCategoryCustom, SkillCategoryIntegration, SkillCategoryProductivity, type SkillCategoryTS, type SkillResponse, SkillsCreateSubject, SkillsCreatedSubject, SkillsDeleteSubject, SkillsDeletedSubject, SkillsGetByIDsSubject, SkillsGetSubject, type SkillsListResponse, SkillsListSubject, SkillsUpdateSubject, SkillsUpdatedSubject, type SubAgent, type SubAgentResponse, SubAgentsCreateSubject, SubAgentsCreatedSubject, SubAgentsDeleteSubject, SubAgentsDeletedSubject, SubAgentsExecuteSubject, SubAgentsGetByIDsSubject, SubAgentsGetSubject, type SubAgentsListResponse, SubAgentsListSubject, SubAgentsUpdateSubject, SubAgentsUpdatedSubject, SubAgentsValidateSubject, type ToolConfig, type ToolDefinition, type ToolDefinitionResponse, ToolDefinitionsCreateSubject, ToolDefinitionsCreatedSubject, ToolDefinitionsDeleteSubject, ToolDefinitionsDeletedSubject, ToolDefinitionsExecuteSubject, ToolDefinitionsGetByIDsSubject, ToolDefinitionsGetSubject, type ToolDefinitionsListResponse, ToolDefinitionsListSubject, ToolDefinitionsUpdateSubject, ToolDefinitionsUpdatedSubject, ToolDefinitionsValidateSubject, type ToolExecution, type ToolExecutionPolicy, type ToolExecutionProgress, type ToolExecutionStatus, ToolExecutionStatusCompleted, ToolExecutionStatusExecuting, ToolExecutionStatusFailed, ToolExecutionStatusSkipped, ToolExecutionStatusStarted, type ToolExecutionStatusTS, ToolExecutionStatusTimeout, type UpdateAgentRequest, type UpdateOrgAgentsRequest, type UpdateOrgAgentsResponse, type UpdateSkillRequest, type UpdateSubAgentRequest, type UpdateToolDefinitionRequest, type UserSuggestedAction, type UserSuggestedActionsConfig, type UserSuggestedActionsRequest, type UserSuggestedActionsResponse, type ValidationError, type ValidationErrors, WorkflowAgentGetSubject, WorkflowAgentUpdateSubject };
|