@elqnt/agents 1.0.12 → 1.0.14
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 +406 -2
- package/dist/index.d.ts +406 -2
- package/dist/index.js +78 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +52 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -497,6 +497,75 @@ interface GetSkillsByIDsResponse {
|
|
|
497
497
|
skills: Skill[];
|
|
498
498
|
metadata: any;
|
|
499
499
|
}
|
|
500
|
+
/**
|
|
501
|
+
* CreateAgentJobRequest represents a request to create an agent job
|
|
502
|
+
*/
|
|
503
|
+
interface CreateAgentJobRequest {
|
|
504
|
+
orgId: string;
|
|
505
|
+
job?: AgentJob;
|
|
506
|
+
}
|
|
507
|
+
/**
|
|
508
|
+
* UpdateAgentJobRequest represents a request to update an agent job
|
|
509
|
+
*/
|
|
510
|
+
interface UpdateAgentJobRequest {
|
|
511
|
+
orgId: string;
|
|
512
|
+
job?: AgentJob;
|
|
513
|
+
}
|
|
514
|
+
/**
|
|
515
|
+
* AgentJobIDRequest represents a request that only needs org + job ID
|
|
516
|
+
* Used for: Get, Delete, Pause, Resume operations
|
|
517
|
+
*/
|
|
518
|
+
interface AgentJobIDRequest {
|
|
519
|
+
orgId: string;
|
|
520
|
+
jobId: string;
|
|
521
|
+
}
|
|
522
|
+
/**
|
|
523
|
+
* ListAgentJobsRequest represents a request to list agent jobs
|
|
524
|
+
*/
|
|
525
|
+
interface ListAgentJobsRequest {
|
|
526
|
+
orgId: string;
|
|
527
|
+
agentId?: string;
|
|
528
|
+
ownerId?: string;
|
|
529
|
+
scope?: JobScope;
|
|
530
|
+
status?: JobStatus;
|
|
531
|
+
frequency?: JobFrequency;
|
|
532
|
+
limit?: number;
|
|
533
|
+
offset?: number;
|
|
534
|
+
}
|
|
535
|
+
/**
|
|
536
|
+
* AgentJobResponse represents a response containing an agent job
|
|
537
|
+
*/
|
|
538
|
+
interface AgentJobResponse {
|
|
539
|
+
job?: AgentJob;
|
|
540
|
+
metadata: any;
|
|
541
|
+
}
|
|
542
|
+
/**
|
|
543
|
+
* AgentJobsListResponse represents a response containing multiple agent jobs
|
|
544
|
+
*/
|
|
545
|
+
interface AgentJobsListResponse {
|
|
546
|
+
jobs: AgentJob[];
|
|
547
|
+
total: number;
|
|
548
|
+
metadata: any;
|
|
549
|
+
}
|
|
550
|
+
/**
|
|
551
|
+
* AgentJobTriggerRequest represents a request from scheduler service to trigger jobs
|
|
552
|
+
*/
|
|
553
|
+
interface AgentJobTriggerRequest {
|
|
554
|
+
orgId: string;
|
|
555
|
+
timestamp: string;
|
|
556
|
+
}
|
|
557
|
+
/**
|
|
558
|
+
* AgentJobTriggerResponse represents the response for job trigger processing
|
|
559
|
+
*/
|
|
560
|
+
interface AgentJobTriggerResponse {
|
|
561
|
+
results: JobExecutionResult[];
|
|
562
|
+
orgId: string;
|
|
563
|
+
total: number;
|
|
564
|
+
executed: number;
|
|
565
|
+
skipped: number;
|
|
566
|
+
errors: number;
|
|
567
|
+
metadata: any;
|
|
568
|
+
}
|
|
500
569
|
type AgentTypeTS = 'chat' | 'react';
|
|
501
570
|
type AgentSubTypeTS = 'chat' | 'react' | 'workflow' | 'document';
|
|
502
571
|
type AgentStatusTS = 'draft' | 'active' | 'inactive' | 'archived';
|
|
@@ -530,6 +599,7 @@ interface Skill {
|
|
|
530
599
|
};
|
|
531
600
|
enabled: boolean;
|
|
532
601
|
isSystem?: boolean;
|
|
602
|
+
persisted?: boolean;
|
|
533
603
|
displayOrder?: number;
|
|
534
604
|
createdAt?: string;
|
|
535
605
|
updatedAt?: string;
|
|
@@ -619,6 +689,7 @@ interface Agent {
|
|
|
619
689
|
temperature: number;
|
|
620
690
|
maxTokens: number;
|
|
621
691
|
systemPrompt: string;
|
|
692
|
+
goal?: string;
|
|
622
693
|
/**
|
|
623
694
|
* Shared metadata
|
|
624
695
|
*/
|
|
@@ -633,13 +704,16 @@ interface Agent {
|
|
|
633
704
|
/**
|
|
634
705
|
* === Skills Configuration ===
|
|
635
706
|
*/
|
|
636
|
-
useSkills?: boolean;
|
|
637
707
|
skills?: AgentSkill[];
|
|
638
708
|
/**
|
|
639
709
|
* === Essential Configs ===
|
|
640
710
|
*/
|
|
641
711
|
csatConfig: CSATConfig;
|
|
642
712
|
handoffConfig: HandoffConfig;
|
|
713
|
+
/**
|
|
714
|
+
* === Widget Embed Config ===
|
|
715
|
+
*/
|
|
716
|
+
widgetConfig?: WidgetConfig;
|
|
643
717
|
/**
|
|
644
718
|
* === TYPE-SPECIFIC CORE CONFIG ===
|
|
645
719
|
*/
|
|
@@ -699,6 +773,43 @@ interface HandoffConfig {
|
|
|
699
773
|
queueId?: string;
|
|
700
774
|
handoffMessage: string;
|
|
701
775
|
}
|
|
776
|
+
/**
|
|
777
|
+
* WidgetConfig defines the configuration for an embeddable chat widget
|
|
778
|
+
*/
|
|
779
|
+
interface WidgetConfig {
|
|
780
|
+
enabled: boolean;
|
|
781
|
+
widgetId: string;
|
|
782
|
+
appearance: WidgetAppearance;
|
|
783
|
+
behavior: WidgetBehavior;
|
|
784
|
+
security: WidgetSecurity;
|
|
785
|
+
}
|
|
786
|
+
/**
|
|
787
|
+
* WidgetAppearance defines the visual customization of the widget
|
|
788
|
+
*/
|
|
789
|
+
interface WidgetAppearance {
|
|
790
|
+
position: string;
|
|
791
|
+
primaryColor: string;
|
|
792
|
+
backgroundColor: string;
|
|
793
|
+
textColor: string;
|
|
794
|
+
borderRadius: number;
|
|
795
|
+
bubbleSize: number;
|
|
796
|
+
bubbleIconUrl?: string;
|
|
797
|
+
}
|
|
798
|
+
/**
|
|
799
|
+
* WidgetBehavior defines the behavioral settings of the widget
|
|
800
|
+
*/
|
|
801
|
+
interface WidgetBehavior {
|
|
802
|
+
welcomeMessage: string;
|
|
803
|
+
suggestedPrompts?: string[];
|
|
804
|
+
autoOpenDelay: number;
|
|
805
|
+
showPoweredBy: boolean;
|
|
806
|
+
}
|
|
807
|
+
/**
|
|
808
|
+
* WidgetSecurity defines the security settings for the widget
|
|
809
|
+
*/
|
|
810
|
+
interface WidgetSecurity {
|
|
811
|
+
allowedDomains: string[];
|
|
812
|
+
}
|
|
702
813
|
/**
|
|
703
814
|
* AgentFilters for filtering agents in list operations
|
|
704
815
|
*/
|
|
@@ -896,6 +1007,124 @@ interface ExecutePlanResponse {
|
|
|
896
1007
|
}
|
|
897
1008
|
type ToolExecutionStatusTS = 'pending' | 'executing' | 'completed' | 'failed' | 'timeout' | 'skipped';
|
|
898
1009
|
type ExecutionModeTS = 'sync' | 'async' | 'asyncClient';
|
|
1010
|
+
/**
|
|
1011
|
+
* GetWidgetConfigRequest represents a request to get widget config for an agent
|
|
1012
|
+
*/
|
|
1013
|
+
interface GetWidgetConfigRequest {
|
|
1014
|
+
orgId: string;
|
|
1015
|
+
agentId: string;
|
|
1016
|
+
}
|
|
1017
|
+
/**
|
|
1018
|
+
* GetWidgetConfigResponse represents the response with widget config
|
|
1019
|
+
*/
|
|
1020
|
+
interface GetWidgetConfigResponse {
|
|
1021
|
+
config?: WidgetConfig;
|
|
1022
|
+
metadata: any;
|
|
1023
|
+
}
|
|
1024
|
+
/**
|
|
1025
|
+
* SaveWidgetConfigRequest represents a request to save widget config for an agent
|
|
1026
|
+
*/
|
|
1027
|
+
interface SaveWidgetConfigRequest {
|
|
1028
|
+
orgId: string;
|
|
1029
|
+
agentId: string;
|
|
1030
|
+
config?: WidgetConfig;
|
|
1031
|
+
}
|
|
1032
|
+
/**
|
|
1033
|
+
* SaveWidgetConfigResponse represents the response after saving widget config
|
|
1034
|
+
*/
|
|
1035
|
+
interface SaveWidgetConfigResponse {
|
|
1036
|
+
config?: WidgetConfig;
|
|
1037
|
+
metadata: any;
|
|
1038
|
+
}
|
|
1039
|
+
type JobScopeTS = 'private' | 'team' | 'org';
|
|
1040
|
+
type JobStatusTS = 'active' | 'paused' | 'disabled';
|
|
1041
|
+
type JobFrequencyTS = 'one-time' | 'schedule';
|
|
1042
|
+
/**
|
|
1043
|
+
* JobScope defines who can see and use the job
|
|
1044
|
+
*/
|
|
1045
|
+
type JobScope = string;
|
|
1046
|
+
declare const JobScopePrivate: JobScope;
|
|
1047
|
+
declare const JobScopeTeam: JobScope;
|
|
1048
|
+
declare const JobScopeOrg: JobScope;
|
|
1049
|
+
/**
|
|
1050
|
+
* JobStatus defines the current state of a job
|
|
1051
|
+
*/
|
|
1052
|
+
type JobStatus = string;
|
|
1053
|
+
declare const JobStatusActive: JobStatus;
|
|
1054
|
+
declare const JobStatusPaused: JobStatus;
|
|
1055
|
+
declare const JobStatusDisabled: JobStatus;
|
|
1056
|
+
/**
|
|
1057
|
+
* JobFrequency defines whether a job runs once or on a schedule
|
|
1058
|
+
*/
|
|
1059
|
+
type JobFrequency = string;
|
|
1060
|
+
declare const JobFrequencyOneTime: JobFrequency;
|
|
1061
|
+
declare const JobFrequencySchedule: JobFrequency;
|
|
1062
|
+
/**
|
|
1063
|
+
* AgentJob represents a scheduled or one-time execution configuration for an agent
|
|
1064
|
+
*/
|
|
1065
|
+
interface AgentJob {
|
|
1066
|
+
id: string;
|
|
1067
|
+
agentId: string;
|
|
1068
|
+
ownerId: string;
|
|
1069
|
+
teamId?: string;
|
|
1070
|
+
/**
|
|
1071
|
+
* Job identity
|
|
1072
|
+
*/
|
|
1073
|
+
name: string;
|
|
1074
|
+
description?: string;
|
|
1075
|
+
/**
|
|
1076
|
+
* Scope determines who can see/manage and execution context
|
|
1077
|
+
*/
|
|
1078
|
+
scope: JobScopeTS;
|
|
1079
|
+
/**
|
|
1080
|
+
* Job configuration
|
|
1081
|
+
*/
|
|
1082
|
+
frequency: JobFrequencyTS;
|
|
1083
|
+
cron?: string;
|
|
1084
|
+
timezone?: string;
|
|
1085
|
+
prompt: string;
|
|
1086
|
+
/**
|
|
1087
|
+
* Status
|
|
1088
|
+
*/
|
|
1089
|
+
status: JobStatusTS;
|
|
1090
|
+
/**
|
|
1091
|
+
* Tracking fields (managed by system)
|
|
1092
|
+
*/
|
|
1093
|
+
lastRunAt?: string;
|
|
1094
|
+
nextRunAt?: string;
|
|
1095
|
+
runCount: number;
|
|
1096
|
+
lastError?: string;
|
|
1097
|
+
/**
|
|
1098
|
+
* Circuit breaker fields
|
|
1099
|
+
*/
|
|
1100
|
+
consecutiveFailures: number;
|
|
1101
|
+
disabledUntil?: string;
|
|
1102
|
+
/**
|
|
1103
|
+
* Audit fields
|
|
1104
|
+
*/
|
|
1105
|
+
createdAt: string;
|
|
1106
|
+
updatedAt: string;
|
|
1107
|
+
}
|
|
1108
|
+
/**
|
|
1109
|
+
* JobExecutionResult represents the result of processing a single agent job
|
|
1110
|
+
*/
|
|
1111
|
+
interface JobExecutionResult {
|
|
1112
|
+
jobId: string;
|
|
1113
|
+
agentId: string;
|
|
1114
|
+
jobName: string;
|
|
1115
|
+
executed: boolean;
|
|
1116
|
+
error?: string;
|
|
1117
|
+
}
|
|
1118
|
+
/**
|
|
1119
|
+
* ProcessJobTriggerResult represents the result of processing all agent jobs
|
|
1120
|
+
*/
|
|
1121
|
+
interface ProcessJobTriggerResult {
|
|
1122
|
+
results: JobExecutionResult[];
|
|
1123
|
+
total: number;
|
|
1124
|
+
executed: number;
|
|
1125
|
+
skipped: number;
|
|
1126
|
+
errors: number;
|
|
1127
|
+
}
|
|
899
1128
|
/**
|
|
900
1129
|
* CSAT Configuration
|
|
901
1130
|
*/
|
|
@@ -1351,6 +1580,46 @@ declare const SkillsListSubject = "agents.skills.list";
|
|
|
1351
1580
|
* Skills Management
|
|
1352
1581
|
*/
|
|
1353
1582
|
declare const SkillsGetByIDsSubject = "agents.skills.get-by-ids";
|
|
1583
|
+
/**
|
|
1584
|
+
* Widget Config Management
|
|
1585
|
+
*/
|
|
1586
|
+
declare const WidgetConfigGetByAgentSubject = "widgets.config.get.by.agent";
|
|
1587
|
+
/**
|
|
1588
|
+
* Widget Config Management
|
|
1589
|
+
*/
|
|
1590
|
+
declare const WidgetConfigSaveSubject = "widgets.config.save";
|
|
1591
|
+
/**
|
|
1592
|
+
* Job CRUD Operations
|
|
1593
|
+
*/
|
|
1594
|
+
declare const AgentJobCreateSubject = "agents.jobs.create";
|
|
1595
|
+
/**
|
|
1596
|
+
* Agent Job Management
|
|
1597
|
+
*/
|
|
1598
|
+
declare const AgentJobGetSubject = "agents.jobs.get";
|
|
1599
|
+
/**
|
|
1600
|
+
* Agent Job Management
|
|
1601
|
+
*/
|
|
1602
|
+
declare const AgentJobUpdateSubject = "agents.jobs.update";
|
|
1603
|
+
/**
|
|
1604
|
+
* Agent Job Management
|
|
1605
|
+
*/
|
|
1606
|
+
declare const AgentJobDeleteSubject = "agents.jobs.delete";
|
|
1607
|
+
/**
|
|
1608
|
+
* Agent Job Management
|
|
1609
|
+
*/
|
|
1610
|
+
declare const AgentJobListSubject = "agents.jobs.list";
|
|
1611
|
+
/**
|
|
1612
|
+
* Job Actions
|
|
1613
|
+
*/
|
|
1614
|
+
declare const AgentJobPauseSubject = "agents.jobs.pause";
|
|
1615
|
+
/**
|
|
1616
|
+
* Agent Job Management
|
|
1617
|
+
*/
|
|
1618
|
+
declare const AgentJobResumeSubject = "agents.jobs.resume";
|
|
1619
|
+
/**
|
|
1620
|
+
* Job Trigger (from Scheduler Service)
|
|
1621
|
+
*/
|
|
1622
|
+
declare const AgentJobTriggerSubject = "agents.job.trigger";
|
|
1354
1623
|
/**
|
|
1355
1624
|
* Agent Instance Management
|
|
1356
1625
|
*/
|
|
@@ -1452,5 +1721,140 @@ interface ValidationError {
|
|
|
1452
1721
|
* ValidationErrors represents a collection of validation errors
|
|
1453
1722
|
*/
|
|
1454
1723
|
type ValidationErrors = ValidationError[];
|
|
1724
|
+
/**
|
|
1725
|
+
* AgentWidget represents a widget configuration for an agent
|
|
1726
|
+
*/
|
|
1727
|
+
interface AgentWidget {
|
|
1728
|
+
id: string;
|
|
1729
|
+
agentId: string;
|
|
1730
|
+
orgId: string;
|
|
1731
|
+
widgetId: string;
|
|
1732
|
+
name: string;
|
|
1733
|
+
title: string;
|
|
1734
|
+
description?: string;
|
|
1735
|
+
enabled: boolean;
|
|
1736
|
+
isDefault: boolean;
|
|
1737
|
+
appearance: WidgetAppearance;
|
|
1738
|
+
behavior: WidgetBehavior;
|
|
1739
|
+
security: WidgetSecurity;
|
|
1740
|
+
createdAt: string;
|
|
1741
|
+
updatedAt: string;
|
|
1742
|
+
createdBy?: string;
|
|
1743
|
+
}
|
|
1744
|
+
/**
|
|
1745
|
+
* AgentWidget NATS Subjects
|
|
1746
|
+
*/
|
|
1747
|
+
declare const AgentWidgetsCreateSubject = "agents.widgets.create";
|
|
1748
|
+
/**
|
|
1749
|
+
* AgentWidget NATS Subjects
|
|
1750
|
+
*/
|
|
1751
|
+
declare const AgentWidgetsGetSubject = "agents.widgets.get";
|
|
1752
|
+
/**
|
|
1753
|
+
* AgentWidget NATS Subjects
|
|
1754
|
+
*/
|
|
1755
|
+
declare const AgentWidgetsGetByWidgetID = "agents.widgets.get-by-widget-id";
|
|
1756
|
+
/**
|
|
1757
|
+
* AgentWidget NATS Subjects
|
|
1758
|
+
*/
|
|
1759
|
+
declare const AgentWidgetsUpdateSubject = "agents.widgets.update";
|
|
1760
|
+
/**
|
|
1761
|
+
* AgentWidget NATS Subjects
|
|
1762
|
+
*/
|
|
1763
|
+
declare const AgentWidgetsDeleteSubject = "agents.widgets.delete";
|
|
1764
|
+
/**
|
|
1765
|
+
* AgentWidget NATS Subjects
|
|
1766
|
+
*/
|
|
1767
|
+
declare const AgentWidgetsListSubject = "agents.widgets.list";
|
|
1768
|
+
/**
|
|
1769
|
+
* AgentWidget NATS Subjects
|
|
1770
|
+
*/
|
|
1771
|
+
declare const AgentWidgetsSetDefaultSubject = "agents.widgets.set-default";
|
|
1772
|
+
/**
|
|
1773
|
+
* AgentWidget NATS Subjects
|
|
1774
|
+
*/
|
|
1775
|
+
declare const AgentWidgetsGetDefaultSubject = "agents.widgets.get-default";
|
|
1776
|
+
/**
|
|
1777
|
+
* CreateAgentWidgetRequest is the request to create a new widget
|
|
1778
|
+
*/
|
|
1779
|
+
interface CreateAgentWidgetRequest {
|
|
1780
|
+
orgId: string;
|
|
1781
|
+
agentId: string;
|
|
1782
|
+
widget: AgentWidget;
|
|
1783
|
+
}
|
|
1784
|
+
/**
|
|
1785
|
+
* AgentWidgetResponse is the response for single widget operations
|
|
1786
|
+
*/
|
|
1787
|
+
interface AgentWidgetResponse {
|
|
1788
|
+
widget?: AgentWidget;
|
|
1789
|
+
metadata: any;
|
|
1790
|
+
}
|
|
1791
|
+
/**
|
|
1792
|
+
* GetAgentWidgetRequest is the request to get a widget by ID
|
|
1793
|
+
*/
|
|
1794
|
+
interface GetAgentWidgetRequest {
|
|
1795
|
+
orgId: string;
|
|
1796
|
+
widgetId: string;
|
|
1797
|
+
}
|
|
1798
|
+
/**
|
|
1799
|
+
* GetWidgetByWidgetIDRequest is the request to get a widget by its embed widget_id
|
|
1800
|
+
*/
|
|
1801
|
+
interface GetWidgetByWidgetIDRequest {
|
|
1802
|
+
widgetId: string;
|
|
1803
|
+
}
|
|
1804
|
+
/**
|
|
1805
|
+
* UpdateAgentWidgetRequest is the request to update a widget
|
|
1806
|
+
*/
|
|
1807
|
+
interface UpdateAgentWidgetRequest {
|
|
1808
|
+
orgId: string;
|
|
1809
|
+
widget: AgentWidget;
|
|
1810
|
+
}
|
|
1811
|
+
/**
|
|
1812
|
+
* DeleteAgentWidgetRequest is the request to delete a widget
|
|
1813
|
+
*/
|
|
1814
|
+
interface DeleteAgentWidgetRequest {
|
|
1815
|
+
orgId: string;
|
|
1816
|
+
widgetId: string;
|
|
1817
|
+
}
|
|
1818
|
+
/**
|
|
1819
|
+
* ListAgentWidgetsRequest is the request to list widgets for an agent
|
|
1820
|
+
*/
|
|
1821
|
+
interface ListAgentWidgetsRequest {
|
|
1822
|
+
orgId: string;
|
|
1823
|
+
agentId: string;
|
|
1824
|
+
}
|
|
1825
|
+
/**
|
|
1826
|
+
* ListAgentWidgetsResponse is the response for listing widgets
|
|
1827
|
+
*/
|
|
1828
|
+
interface ListAgentWidgetsResponse {
|
|
1829
|
+
widgets: AgentWidget[];
|
|
1830
|
+
metadata: any;
|
|
1831
|
+
}
|
|
1832
|
+
/**
|
|
1833
|
+
* SetDefaultWidgetRequest is the request to set a widget as default
|
|
1834
|
+
*/
|
|
1835
|
+
interface SetDefaultWidgetRequest {
|
|
1836
|
+
orgId: string;
|
|
1837
|
+
agentId: string;
|
|
1838
|
+
widgetId: string;
|
|
1839
|
+
}
|
|
1840
|
+
/**
|
|
1841
|
+
* GetDefaultWidgetRequest is the request to get the default widget for an agent
|
|
1842
|
+
*/
|
|
1843
|
+
interface GetDefaultWidgetRequest {
|
|
1844
|
+
orgId: string;
|
|
1845
|
+
agentId: string;
|
|
1846
|
+
}
|
|
1847
|
+
/**
|
|
1848
|
+
* PublicWidgetConfig is the config exposed to the widget client (no sensitive data)
|
|
1849
|
+
*/
|
|
1850
|
+
interface PublicWidgetConfig {
|
|
1851
|
+
widgetId: string;
|
|
1852
|
+
agentId: string;
|
|
1853
|
+
orgId: string;
|
|
1854
|
+
name: string;
|
|
1855
|
+
title: string;
|
|
1856
|
+
appearance: WidgetAppearance;
|
|
1857
|
+
behavior: WidgetBehavior;
|
|
1858
|
+
}
|
|
1455
1859
|
|
|
1456
|
-
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 };
|
|
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 };
|