@elqnt/agents 1.0.14 → 1.1.0

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 CHANGED
@@ -566,10 +566,69 @@ interface AgentJobTriggerResponse {
566
566
  errors: number;
567
567
  metadata: any;
568
568
  }
569
+ /**
570
+ * ListExecutionsByJobRequest represents a request to list executions for a job
571
+ */
572
+ interface ListExecutionsByJobRequest {
573
+ orgId: string;
574
+ jobId: string;
575
+ limit?: number;
576
+ offset?: number;
577
+ }
578
+ /**
579
+ * ListExecutionsByAgentRequest represents a request to list executions for an agent
580
+ */
581
+ interface ListExecutionsByAgentRequest {
582
+ orgId: string;
583
+ agentId: string;
584
+ limit?: number;
585
+ offset?: number;
586
+ }
587
+ /**
588
+ * ListExecutionsResponse represents the response with executions list
589
+ */
590
+ interface ListExecutionsResponse {
591
+ executions: JobExecution[];
592
+ total: number;
593
+ metadata: any;
594
+ }
595
+ /**
596
+ * GetExecutionRequest represents a request to get an execution
597
+ */
598
+ interface GetExecutionRequest {
599
+ orgId: string;
600
+ executionId: string;
601
+ }
602
+ /**
603
+ * ExecutionResponse represents the response with a single execution
604
+ */
605
+ interface ExecutionResponse {
606
+ execution?: JobExecution;
607
+ metadata: any;
608
+ }
609
+ /**
610
+ * TTLCleanupRequest represents a request to run TTL cleanup
611
+ */
612
+ interface TTLCleanupRequest {
613
+ retentionDays?: number;
614
+ }
615
+ /**
616
+ * TTLCleanupResponse represents the response from TTL cleanup
617
+ */
618
+ interface TTLCleanupResponse {
619
+ totalDeleted: number;
620
+ orgResults?: {
621
+ [key: string]: number;
622
+ };
623
+ duration: string;
624
+ metadata: any;
625
+ }
569
626
  type AgentTypeTS = 'chat' | 'react';
570
627
  type AgentSubTypeTS = 'chat' | 'react' | 'workflow' | 'document';
571
628
  type AgentStatusTS = 'draft' | 'active' | 'inactive' | 'archived';
572
629
  type SkillCategoryTS = 'productivity' | 'creative' | 'integration' | 'analysis' | 'communication' | 'custom';
630
+ type IntegrationProviderTS = 'google' | 'microsoft';
631
+ type IntegrationTypeTS = 'email' | 'calendar' | 'drive';
573
632
  type SkillCategory = string;
574
633
  declare const SkillCategoryProductivity: SkillCategory;
575
634
  declare const SkillCategoryCreative: SkillCategory;
@@ -577,6 +636,14 @@ declare const SkillCategoryIntegration: SkillCategory;
577
636
  declare const SkillCategoryAnalysis: SkillCategory;
578
637
  declare const SkillCategoryCommunication: SkillCategory;
579
638
  declare const SkillCategoryCustom: SkillCategory;
639
+ /**
640
+ * IntegrationRequirement specifies an OAuth integration needed for a skill to function
641
+ * Skills with integration requirements are only available to users who have connected the required provider
642
+ */
643
+ interface IntegrationRequirement {
644
+ provider: string;
645
+ type: string;
646
+ }
580
647
  /**
581
648
  * Skill represents a bundled set of tools with a prompt extension
582
649
  * Skills can be activated at runtime to extend agent capabilities
@@ -593,10 +660,19 @@ interface Skill {
593
660
  tools?: AgentTool[];
594
661
  systemPromptExtension?: string;
595
662
  iconName?: string;
596
- configSchema?: JSONSchema;
597
- config?: {
663
+ /**
664
+ * Config schemas for each level (JSON Schema definitions)
665
+ */
666
+ orgConfigSchema?: JSONSchema;
667
+ agentConfigSchema?: JSONSchema;
668
+ userConfigSchema?: JSONSchema;
669
+ /**
670
+ * Org-level config values
671
+ */
672
+ orgConfig?: {
598
673
  [key: string]: any;
599
674
  };
675
+ requiredIntegrations?: IntegrationRequirement[];
600
676
  enabled: boolean;
601
677
  isSystem?: boolean;
602
678
  persisted?: boolean;
@@ -612,6 +688,26 @@ interface AgentSkill {
612
688
  skillName?: string;
613
689
  enabled: boolean;
614
690
  order?: number;
691
+ config?: {
692
+ [key: string]: any;
693
+ };
694
+ }
695
+ /**
696
+ * SkillUserConfig represents user-level configuration for a skill
697
+ * Stores OAuth tokens, user preferences, and per-agent overrides
698
+ */
699
+ interface SkillUserConfig {
700
+ id: string;
701
+ userId: string;
702
+ skillId: string;
703
+ agentId?: string;
704
+ enabled: boolean;
705
+ displayOrder?: number;
706
+ config?: {
707
+ [key: string]: any;
708
+ };
709
+ createdAt: string;
710
+ updatedAt: string;
615
711
  }
616
712
  type AgentType = string;
617
713
  declare const AgentTypeChat: AgentType;
@@ -840,6 +936,7 @@ interface AgentSummary {
840
936
  isPublic: boolean;
841
937
  capabilities?: string[];
842
938
  samplePrompts?: string[];
939
+ skills?: AgentSkill[];
843
940
  metadata?: {
844
941
  [key: string]: any;
845
942
  };
@@ -1037,8 +1134,9 @@ interface SaveWidgetConfigResponse {
1037
1134
  metadata: any;
1038
1135
  }
1039
1136
  type JobScopeTS = 'private' | 'team' | 'org';
1040
- type JobStatusTS = 'active' | 'paused' | 'disabled';
1137
+ type JobStatusTS = 'active' | 'executing' | 'paused' | 'disabled';
1041
1138
  type JobFrequencyTS = 'one-time' | 'schedule';
1139
+ type JobExecutionStatusTS = 'running' | 'success' | 'failed' | 'timed_out';
1042
1140
  /**
1043
1141
  * JobScope defines who can see and use the job
1044
1142
  */
@@ -1051,6 +1149,7 @@ declare const JobScopeOrg: JobScope;
1051
1149
  */
1052
1150
  type JobStatus = string;
1053
1151
  declare const JobStatusActive: JobStatus;
1152
+ declare const JobStatusExecuting: JobStatus;
1054
1153
  declare const JobStatusPaused: JobStatus;
1055
1154
  declare const JobStatusDisabled: JobStatus;
1056
1155
  /**
@@ -1099,12 +1198,66 @@ interface AgentJob {
1099
1198
  */
1100
1199
  consecutiveFailures: number;
1101
1200
  disabledUntil?: string;
1201
+ /**
1202
+ * Execution tracking (updated by Runtime Service)
1203
+ */
1204
+ lastExecutionId?: string;
1205
+ lastExecutionStatus?: string;
1206
+ lastExecutedAt?: string;
1102
1207
  /**
1103
1208
  * Audit fields
1104
1209
  */
1105
1210
  createdAt: string;
1106
1211
  updatedAt: string;
1107
1212
  }
1213
+ /**
1214
+ * JobExecutionStatus defines the status of a job execution
1215
+ */
1216
+ type JobExecutionStatus = string;
1217
+ declare const JobExecutionStatusRunning: JobExecutionStatus;
1218
+ declare const JobExecutionStatusSuccess: JobExecutionStatus;
1219
+ declare const JobExecutionStatusFailed: JobExecutionStatus;
1220
+ declare const JobExecutionStatusTimedOut: JobExecutionStatus;
1221
+ /**
1222
+ * ArtifactRef represents a reference to an artifact produced during execution
1223
+ * Actual files are stored by tools; this just tracks references
1224
+ */
1225
+ interface ArtifactRef {
1226
+ type: string;
1227
+ name: string;
1228
+ path: string;
1229
+ size?: number;
1230
+ }
1231
+ /**
1232
+ * JobExecution represents a single execution of an agent job
1233
+ */
1234
+ interface JobExecution {
1235
+ id: string;
1236
+ jobId: string;
1237
+ agentId: string;
1238
+ /**
1239
+ * Execution status
1240
+ */
1241
+ status: JobExecutionStatusTS;
1242
+ startedAt: string;
1243
+ completedAt?: string;
1244
+ /**
1245
+ * Execution metrics
1246
+ */
1247
+ roundsExecuted: number;
1248
+ totalTokens: number;
1249
+ /**
1250
+ * Results
1251
+ */
1252
+ result?: any;
1253
+ error?: string;
1254
+ artifacts?: ArtifactRef[];
1255
+ metadata?: any;
1256
+ /**
1257
+ * Audit
1258
+ */
1259
+ createdAt: string;
1260
+ }
1108
1261
  /**
1109
1262
  * JobExecutionResult represents the result of processing a single agent job
1110
1263
  */
@@ -1125,6 +1278,89 @@ interface ProcessJobTriggerResult {
1125
1278
  skipped: number;
1126
1279
  errors: number;
1127
1280
  }
1281
+ /**
1282
+ * ExecuteJobRequest is sent to Runtime Service to execute a job
1283
+ */
1284
+ interface ExecuteJobRequest {
1285
+ /**
1286
+ * Execution identification (created by Agents Service before dispatch)
1287
+ */
1288
+ executionId: string;
1289
+ /**
1290
+ * Job identification
1291
+ */
1292
+ jobId: string;
1293
+ agentId: string;
1294
+ orgId: string;
1295
+ /**
1296
+ * Execution context
1297
+ */
1298
+ prompt: string;
1299
+ scope: JobScopeTS;
1300
+ ownerId: string;
1301
+ /**
1302
+ * Agent configuration (denormalized for Runtime)
1303
+ */
1304
+ agentConfig: ExecuteJobAgentConfig;
1305
+ /**
1306
+ * Execution settings
1307
+ */
1308
+ timeoutMinutes?: number;
1309
+ metadata?: {
1310
+ [key: string]: any;
1311
+ };
1312
+ }
1313
+ /**
1314
+ * ExecuteJobAgentConfig contains agent configuration needed for execution
1315
+ */
1316
+ interface ExecuteJobAgentConfig {
1317
+ provider: string;
1318
+ model: string;
1319
+ temperature: number;
1320
+ maxTokens: number;
1321
+ systemPrompt: string;
1322
+ tools?: AgentTool[];
1323
+ skills?: AgentSkill[];
1324
+ }
1325
+ /**
1326
+ * ExecutionCompletedEvent is received from Runtime Service when execution completes
1327
+ */
1328
+ interface ExecutionCompletedEvent {
1329
+ /**
1330
+ * Identification
1331
+ */
1332
+ executionId: string;
1333
+ jobId: string;
1334
+ orgId: string;
1335
+ /**
1336
+ * Status: "success", "failed", "timed_out"
1337
+ */
1338
+ status: string;
1339
+ /**
1340
+ * Results (present on success)
1341
+ */
1342
+ result?: any;
1343
+ artifacts?: ArtifactRef[];
1344
+ /**
1345
+ * Error info (present on failure)
1346
+ */
1347
+ error?: string;
1348
+ /**
1349
+ * Metrics
1350
+ */
1351
+ roundsExecuted: number;
1352
+ totalTokens: number;
1353
+ /**
1354
+ * Timing
1355
+ */
1356
+ completedAt: string;
1357
+ /**
1358
+ * Additional context
1359
+ */
1360
+ metadata?: {
1361
+ [key: string]: any;
1362
+ };
1363
+ }
1128
1364
  /**
1129
1365
  * CSAT Configuration
1130
1366
  */
@@ -1620,6 +1856,26 @@ declare const AgentJobResumeSubject = "agents.jobs.resume";
1620
1856
  * Job Trigger (from Scheduler Service)
1621
1857
  */
1622
1858
  declare const AgentJobTriggerSubject = "agents.job.trigger";
1859
+ /**
1860
+ * Execution Query Operations
1861
+ */
1862
+ declare const JobExecutionGetSubject = "agents.executions.get";
1863
+ /**
1864
+ * Job Execution Management
1865
+ */
1866
+ declare const JobExecutionListSubject = "agents.executions.list";
1867
+ /**
1868
+ * Runtime Service Communication
1869
+ */
1870
+ declare const RuntimeJobExecuteSubject = "runtime.job.execute";
1871
+ /**
1872
+ * Job Execution Management
1873
+ */
1874
+ declare const RuntimeJobCompletedSubject = "runtime.job.completed";
1875
+ /**
1876
+ * TTL Cleanup (triggered by Scheduler)
1877
+ */
1878
+ declare const ExecutionsTTLCleanupSubject = "maintenance.executions.cleanup";
1623
1879
  /**
1624
1880
  * Agent Instance Management
1625
1881
  */
@@ -1857,4 +2113,4 @@ interface PublicWidgetConfig {
1857
2113
  behavior: WidgetBehavior;
1858
2114
  }
1859
2115
 
1860
- 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, type AgentJob, AgentJobCreateSubject, AgentJobDeleteSubject, AgentJobGetSubject, type AgentJobIDRequest, AgentJobListSubject, AgentJobPauseSubject, type AgentJobResponse, AgentJobResumeSubject, type AgentJobTriggerRequest, type AgentJobTriggerResponse, AgentJobTriggerSubject, AgentJobUpdateSubject, type AgentJobsListResponse, 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 AgentWidget, type AgentWidgetResponse, AgentWidgetsCreateSubject, AgentWidgetsDeleteSubject, AgentWidgetsGetByWidgetID, AgentWidgetsGetDefaultSubject, AgentWidgetsGetSubject, AgentWidgetsListSubject, AgentWidgetsSetDefaultSubject, AgentWidgetsUpdateSubject, type CSATAnswer, type CSATConfig, type CSATQuestion, type CSATResponse, type CSATSurvey, ChatAgentExecuteSubject, ChatAgentStatusSubject, type CreateAgentJobRequest, type CreateAgentRequest, type CreateAgentWidgetRequest, type CreateExecutionPlanRequest, type CreateExecutionPlanResponse, type CreateSkillRequest, type CreateSubAgentRequest, type CreateToolDefinitionRequest, type DefaultDefinitions, type DeleteAgentRequest, type DeleteAgentWidgetRequest, 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 GetAgentWidgetRequest, type GetDefaultAgentRequest, type GetDefaultWidgetRequest, type GetSkillRequest, type GetSkillsByIDsRequest, type GetSkillsByIDsResponse, type GetSubAgentRequest, type GetSubAgentsByIDsRequest, type GetSubAgentsByIDsResponse, type GetToolDefinitionRequest, type GetToolDefinitionsByIDsRequest, type GetToolDefinitionsByIDsResponse, type GetWidgetByWidgetIDRequest, type GetWidgetConfigRequest, type GetWidgetConfigResponse, type HandoffConfig, type JobExecutionResult, type JobFrequency, JobFrequencyOneTime, JobFrequencySchedule, type JobFrequencyTS, type JobScope, JobScopeOrg, JobScopePrivate, type JobScopeTS, JobScopeTeam, type JobStatus, JobStatusActive, JobStatusDisabled, JobStatusPaused, type JobStatusTS, type ListAgentJobsRequest, type ListAgentWidgetsRequest, type ListAgentWidgetsResponse, 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 ProcessJobTriggerResult, type PublicWidgetConfig, type ReactAgentConfig, ReactAgentExecuteSubject, ReactAgentStatusSubject, ReactAgentStopSubject, type RetryPolicy, type SaveWidgetConfigRequest, type SaveWidgetConfigResponse, type SetDefaultWidgetRequest, 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 UpdateAgentJobRequest, type UpdateAgentRequest, type UpdateAgentWidgetRequest, type UpdateOrgAgentsRequest, type UpdateOrgAgentsResponse, type UpdateSkillRequest, type UpdateSubAgentRequest, type UpdateToolDefinitionRequest, type UserSuggestedAction, type UserSuggestedActionsConfig, type UserSuggestedActionsRequest, type UserSuggestedActionsResponse, type ValidationError, type ValidationErrors, type WidgetAppearance, type WidgetBehavior, type WidgetConfig, WidgetConfigGetByAgentSubject, WidgetConfigSaveSubject, type WidgetSecurity, WorkflowAgentGetSubject, WorkflowAgentUpdateSubject };
2116
+ 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, type AgentJob, AgentJobCreateSubject, AgentJobDeleteSubject, AgentJobGetSubject, type AgentJobIDRequest, AgentJobListSubject, AgentJobPauseSubject, type AgentJobResponse, AgentJobResumeSubject, type AgentJobTriggerRequest, type AgentJobTriggerResponse, AgentJobTriggerSubject, AgentJobUpdateSubject, type AgentJobsListResponse, 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 AgentWidget, type AgentWidgetResponse, AgentWidgetsCreateSubject, AgentWidgetsDeleteSubject, AgentWidgetsGetByWidgetID, AgentWidgetsGetDefaultSubject, AgentWidgetsGetSubject, AgentWidgetsListSubject, AgentWidgetsSetDefaultSubject, AgentWidgetsUpdateSubject, type ArtifactRef, type CSATAnswer, type CSATConfig, type CSATQuestion, type CSATResponse, type CSATSurvey, ChatAgentExecuteSubject, ChatAgentStatusSubject, type CreateAgentJobRequest, type CreateAgentRequest, type CreateAgentWidgetRequest, type CreateExecutionPlanRequest, type CreateExecutionPlanResponse, type CreateSkillRequest, type CreateSubAgentRequest, type CreateToolDefinitionRequest, type DefaultDefinitions, type DeleteAgentRequest, type DeleteAgentWidgetRequest, type DeleteSkillRequest, type DeleteSubAgentRequest, type DeleteToolDefinitionRequest, type ExecuteJobAgentConfig, type ExecuteJobRequest, type ExecutePlanRequest, type ExecutePlanResponse, type ExecuteToolRequest, type ExecuteToolResponse, type ExecutionCompletedEvent, type ExecutionMode, ExecutionModeAsync, ExecutionModeAsyncClient, ExecutionModeSync, type ExecutionModeTS, type ExecutionPlan, type ExecutionResponse, type ExecutionStatus, ExecutionStatusCompleted, ExecutionStatusFailed, ExecutionStatusPending, ExecutionStatusRunning, ExecutionStatusSkipped, type ExecutionStatusTS, ExecutionTTLHours, ExecutionsTTLCleanupSubject, type GetAgentRequest, type GetAgentWidgetRequest, type GetDefaultAgentRequest, type GetDefaultWidgetRequest, type GetExecutionRequest, type GetSkillRequest, type GetSkillsByIDsRequest, type GetSkillsByIDsResponse, type GetSubAgentRequest, type GetSubAgentsByIDsRequest, type GetSubAgentsByIDsResponse, type GetToolDefinitionRequest, type GetToolDefinitionsByIDsRequest, type GetToolDefinitionsByIDsResponse, type GetWidgetByWidgetIDRequest, type GetWidgetConfigRequest, type GetWidgetConfigResponse, type HandoffConfig, type IntegrationProviderTS, type IntegrationRequirement, type IntegrationTypeTS, type JobExecution, JobExecutionGetSubject, JobExecutionListSubject, type JobExecutionResult, type JobExecutionStatus, JobExecutionStatusFailed, JobExecutionStatusRunning, JobExecutionStatusSuccess, type JobExecutionStatusTS, JobExecutionStatusTimedOut, type JobFrequency, JobFrequencyOneTime, JobFrequencySchedule, type JobFrequencyTS, type JobScope, JobScopeOrg, JobScopePrivate, type JobScopeTS, JobScopeTeam, type JobStatus, JobStatusActive, JobStatusDisabled, JobStatusExecuting, JobStatusPaused, type JobStatusTS, type ListAgentJobsRequest, type ListAgentWidgetsRequest, type ListAgentWidgetsResponse, type ListAgentsRequest, type ListAgentsResponse, type ListAgentsSummaryRequest, type ListAgentsSummaryResponse, type ListExecutionsByAgentRequest, type ListExecutionsByJobRequest, type ListExecutionsResponse, 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 ProcessJobTriggerResult, type PublicWidgetConfig, type ReactAgentConfig, ReactAgentExecuteSubject, ReactAgentStatusSubject, ReactAgentStopSubject, type RetryPolicy, RuntimeJobCompletedSubject, RuntimeJobExecuteSubject, type SaveWidgetConfigRequest, type SaveWidgetConfigResponse, type SetDefaultWidgetRequest, type Skill, type SkillCategory, SkillCategoryAnalysis, SkillCategoryCommunication, SkillCategoryCreative, SkillCategoryCustom, SkillCategoryIntegration, SkillCategoryProductivity, type SkillCategoryTS, type SkillResponse, type SkillUserConfig, 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 TTLCleanupRequest, type TTLCleanupResponse, 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 UpdateAgentJobRequest, type UpdateAgentRequest, type UpdateAgentWidgetRequest, type UpdateOrgAgentsRequest, type UpdateOrgAgentsResponse, type UpdateSkillRequest, type UpdateSubAgentRequest, type UpdateToolDefinitionRequest, type UserSuggestedAction, type UserSuggestedActionsConfig, type UserSuggestedActionsRequest, type UserSuggestedActionsResponse, type ValidationError, type ValidationErrors, type WidgetAppearance, type WidgetBehavior, type WidgetConfig, WidgetConfigGetByAgentSubject, WidgetConfigSaveSubject, type WidgetSecurity, WorkflowAgentGetSubject, WorkflowAgentUpdateSubject };