@elqnt/agents 3.4.0 → 3.6.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.
Files changed (58) hide show
  1. package/dist/{agent-models-D6WgsFMZ.d.mts → agent-models-vL3a7oFB.d.mts} +35 -9
  2. package/dist/{agent-models-D6WgsFMZ.d.ts → agent-models-vL3a7oFB.d.ts} +35 -9
  3. package/dist/api/index.d.mts +6 -6
  4. package/dist/api/index.d.ts +6 -6
  5. package/dist/api/index.js +2 -2
  6. package/dist/api/index.js.map +1 -1
  7. package/dist/api/index.mjs +1 -1
  8. package/dist/api/server.d.mts +3 -3
  9. package/dist/api/server.d.ts +3 -3
  10. package/dist/api/server.js +6 -6
  11. package/dist/api/server.js.map +1 -1
  12. package/dist/api/server.mjs +5 -5
  13. package/dist/api/server.mjs.map +1 -1
  14. package/dist/chunk-2JDVRL35.js.map +1 -1
  15. package/dist/{chunk-XQ7LOAN3.js → chunk-B2FNXJRV.js} +4 -2
  16. package/dist/chunk-B2FNXJRV.js.map +1 -0
  17. package/dist/{chunk-3PFZRJ4A.js → chunk-ENKX5CU7.js} +6 -6
  18. package/dist/chunk-ENKX5CU7.js.map +1 -0
  19. package/dist/{chunk-RG42SHBX.js → chunk-G2T3H3V4.js} +83 -83
  20. package/dist/chunk-G2T3H3V4.js.map +1 -0
  21. package/dist/{chunk-TY57JG3P.mjs → chunk-IXUXNTSL.mjs} +3 -1
  22. package/dist/chunk-IXUXNTSL.mjs.map +1 -0
  23. package/dist/{chunk-L5FLJB3H.mjs → chunk-OQ6FJAI2.mjs} +5 -5
  24. package/dist/chunk-OQ6FJAI2.mjs.map +1 -0
  25. package/dist/{chunk-43FTKGM6.mjs → chunk-WYNGW5GI.mjs} +2 -2
  26. package/dist/chunk-ZS7DRNCT.js.map +1 -1
  27. package/dist/hooks/index.d.mts +5 -5
  28. package/dist/hooks/index.d.ts +5 -5
  29. package/dist/hooks/index.js +3 -3
  30. package/dist/hooks/index.js.map +1 -1
  31. package/dist/hooks/index.mjs +2 -2
  32. package/dist/index.d.mts +3 -3
  33. package/dist/index.d.ts +3 -3
  34. package/dist/index.js +6 -4
  35. package/dist/index.js.map +1 -1
  36. package/dist/index.mjs +5 -3
  37. package/dist/models/index.d.mts +2 -2
  38. package/dist/models/index.d.ts +2 -2
  39. package/dist/models/index.js +4 -2
  40. package/dist/models/index.js.map +1 -1
  41. package/dist/models/index.mjs +3 -1
  42. package/dist/{sandbox-DOxoM2Ge.d.mts → sandbox-Djb8gA7e.d.mts} +32 -2
  43. package/dist/{sandbox-DOxoM2Ge.d.ts → sandbox-Djb8gA7e.d.ts} +32 -2
  44. package/dist/transport/index.d.mts +3 -3
  45. package/dist/transport/index.d.ts +3 -3
  46. package/dist/transport/index.js.map +1 -1
  47. package/dist/{types-BtfxlyHk.d.mts → types-Bv7_AOrZ.d.mts} +1 -1
  48. package/dist/{types-BBPz_6kK.d.ts → types-CuOOCeF8.d.ts} +1 -1
  49. package/dist/utils/index.d.mts +1 -1
  50. package/dist/utils/index.d.ts +1 -1
  51. package/dist/utils/index.js.map +1 -1
  52. package/package.json +5 -5
  53. package/dist/chunk-3PFZRJ4A.js.map +0 -1
  54. package/dist/chunk-L5FLJB3H.mjs.map +0 -1
  55. package/dist/chunk-RG42SHBX.js.map +0 -1
  56. package/dist/chunk-TY57JG3P.mjs.map +0 -1
  57. package/dist/chunk-XQ7LOAN3.js.map +0 -1
  58. /package/dist/{chunk-43FTKGM6.mjs.map → chunk-WYNGW5GI.mjs.map} +0 -0
@@ -1,4 +1,4 @@
1
- import { ProductNameTS, JSONSchema, ResponseMetadata } from '@elqnt/types';
1
+ import { JSONSchema, ResponseMetadata } from '@elqnt/types';
2
2
 
3
3
  /**
4
4
  * AgentContext accumulates meaningful state from agentic tool executions.
@@ -747,16 +747,17 @@ interface TriggerBackgroundAgentRequest {
747
747
  enableSSE?: boolean;
748
748
  /**
749
749
  * v2: when set, the run is anchored to a Done task. The agents service
750
- * auto-attaches the done_tasks skill so the agent can call
751
- * post_task_update / set_task_output / request_task_help even if its
752
- * declared SkillNames doesn't include done_tasks.
750
+ * auto-attaches the done_tasks skill so the agent can post_task_update,
751
+ * set_task_output, request_task_help even if the agent's declared
752
+ * SkillNames doesn't include done_tasks. The taskId is also surfaced in
753
+ * execution metadata so downstream tools can reference it.
753
754
  */
754
755
  taskId?: string;
755
756
  /**
756
757
  * v2: when set, the run uses this library for knowledge_search by default.
757
758
  * Sourced from the parent task's project.libraryId at dispatch time.
758
- * The runtime injects this into knowledge_search tool calls; the agent
759
- * does NOT need to pass library_id explicitly.
759
+ * The runtime injects it into knowledge_search tool dispatch so the agent
760
+ * doesn't need to pass library_id explicitly.
760
761
  */
761
762
  libraryId?: string;
762
763
  }
@@ -887,6 +888,14 @@ interface Skill {
887
888
  displayOrder?: number;
888
889
  createdAt?: string;
889
890
  updatedAt?: string;
891
+ /**
892
+ * ArtifactVersion drives the system_skills reconciler upsert guard
893
+ * (rows update only when the registry version is greater). Bump this on
894
+ * any change to a skill's definition (tools, ConfigSchema, prompt) so the
895
+ * new shape propagates to system_skills across existing orgs/environments.
896
+ * Unset (0) is treated as version 1 by the reconciler.
897
+ */
898
+ artifactVersion?: number;
890
899
  }
891
900
  /**
892
901
  * AgentSkill represents an agent's configuration for a specific skill
@@ -1018,7 +1027,7 @@ interface AgentTool {
1018
1027
  interface Agent {
1019
1028
  id?: string;
1020
1029
  orgId: string;
1021
- product: ProductNameTS;
1030
+ product: string;
1022
1031
  type: AgentTypeTS;
1023
1032
  subType: AgentSubTypeTS;
1024
1033
  name: string;
@@ -1115,6 +1124,14 @@ interface Agent {
1115
1124
  updatedAt: string;
1116
1125
  createdBy: string;
1117
1126
  updatedBy: string;
1127
+ /**
1128
+ * === ARTIFACT VERSIONING ===
1129
+ * Bumped in the registry (backend/services/admin/artifacts/<product>/agents.go)
1130
+ * whenever the platform-shipped agent changes meaningfully. The artifact
1131
+ * reconciler diffs this against installed_artifact_versions to roll
1132
+ * updates out to existing customer orgs. See skill 29-data-changes §C.
1133
+ */
1134
+ artifactVersion?: number;
1118
1135
  metadata?: {
1119
1136
  [key: string]: any;
1120
1137
  };
@@ -1142,6 +1159,7 @@ interface WidgetConfig {
1142
1159
  * WidgetAppearance defines the visual customization of the widget
1143
1160
  */
1144
1161
  interface WidgetAppearance {
1162
+ widgetStyle?: string;
1145
1163
  position: string;
1146
1164
  primaryColor: string;
1147
1165
  backgroundColor: string;
@@ -1149,6 +1167,7 @@ interface WidgetAppearance {
1149
1167
  borderRadius: number;
1150
1168
  bubbleSize: number;
1151
1169
  bubbleIconUrl?: string;
1170
+ bubbleBackgroundColor?: string;
1152
1171
  }
1153
1172
  /**
1154
1173
  * WidgetBehavior defines the behavioral settings of the widget
@@ -1169,7 +1188,7 @@ interface WidgetSecurity {
1169
1188
  * AgentFilters for filtering agents in list operations
1170
1189
  */
1171
1190
  interface AgentFilters {
1172
- product?: ProductNameTS;
1191
+ product?: string;
1173
1192
  type?: AgentType;
1174
1193
  subType?: AgentSubType;
1175
1194
  status?: AgentStatus;
@@ -2173,6 +2192,13 @@ declare const AgentJobResumeSubject = "agents.jobs.resume";
2173
2192
  * Job Trigger (from Scheduler Service)
2174
2193
  */
2175
2194
  declare const AgentJobTriggerSubject = "agents.job.trigger";
2195
+ /**
2196
+ * Task Schedule Trigger (from Scheduler Service) — drives recurring Done
2197
+ * tasks. Each tick fans out across orgs, finds tasks whose schedule is due
2198
+ * (schedule.nextRunAt <= now), and dispatches a one-time agent run per task
2199
+ * (the task itself is the recurring definition; see task_schedule_handler.go).
2200
+ */
2201
+ declare const AgentTaskTriggerSubject = "agents.task.trigger";
2176
2202
  /**
2177
2203
  * Background Agent Tool Subjects (from chat agent tool calls)
2178
2204
  */
@@ -2561,4 +2587,4 @@ interface PublicWidgetConfig {
2561
2587
  behavior: WidgetBehavior;
2562
2588
  }
2563
2589
 
2564
- export { AgentJobDeleteSubject as $, type Agent as A, AgentExecuteSubject as B, type AgentExecution as C, AgentExportSubject as D, type AgentFilters as E, AgentFromTemplateSubject as F, AgentGetByOrgSubject as G, AgentGetDefaultSubject as H, AgentGetSubject as I, AgentImportSubject as J, AgentInstanceCancelPlanSubject as K, AgentInstanceClearHistorySubject as L, AgentInstanceCreatePlanSubject as M, AgentInstanceCreateSubject as N, AgentInstanceCreatedSubject as O, AgentInstanceDeleteSubject as P, AgentInstanceDeletedSubject as Q, AgentInstanceExecutePlanSubject as R, AgentInstanceGetHistorySubject as S, AgentInstanceGetSubject as T, AgentInstanceListSubject as U, AgentInstancePausePlanSubject as V, AgentInstanceResumePlanSubject as W, AgentInstanceUpdateSubject as X, AgentInstanceUpdatedSubject as Y, type AgentJob as Z, AgentJobCreateSubject as _, type AgentCategory as a, type AgentWidget as a$, AgentJobGetSubject as a0, type AgentJobIDRequest as a1, AgentJobListSubject as a2, AgentJobPauseSubject as a3, type AgentJobResponse as a4, AgentJobResumeSubject as a5, type AgentJobTriggerRequest as a6, type AgentJobTriggerResponse as a7, AgentJobTriggerSubject as a8, AgentJobUpdateSubject as a9, type AgentStatusTS as aA, type AgentStatusUpdate as aB, type AgentSubType as aC, AgentSubTypeChat as aD, AgentSubTypeDocument as aE, AgentSubTypeReact as aF, type AgentSubTypeTS as aG, AgentSubTypeWorkflow as aH, type AgentSummary as aI, type AgentTemplate as aJ, AgentTemplateGetSubject as aK, AgentTemplateListSubject as aL, type AgentTool as aM, type AgentToolConfiguration as aN, type AgentType as aO, AgentTypeChat as aP, AgentTypeReact as aQ, type AgentTypeTS as aR, AgentUpdateOrgSubject as aS, AgentUpdateSubject as aT, AgentUpdatedSubject as aU, AgentVersionActivateSubject as aV, AgentVersionActivatedSubject as aW, AgentVersionCreateSubject as aX, AgentVersionCreatedSubject as aY, AgentVersionGetSubject as aZ, AgentVersionListSubject as a_, type AgentJobsListResponse as aa, AgentListSubject as ab, AgentListSummarySubject as ac, type AgentProvisionDefinition as ad, AgentReactCreateSubject as ae, AgentReactGetSubject as af, AgentReactUpdateSubject as ag, AgentReactValidateSubject as ah, type AgentResponse as ai, type AgentScope as aj, AgentScopeCustom as ak, AgentScopeOrg as al, type AgentScopeTS as am, AgentScopeTeam as an, AgentScopeUser as ao, AgentSearchSubject as ap, type AgentSkill as aq, type AgentSkillConfigResponse as ar, AgentSkillGetConfigSubject as as, type AgentSkillTool as at, AgentSkillUpdateConfigSubject as au, type AgentStatus as av, AgentStatusActive as aw, AgentStatusArchived as ax, AgentStatusDraft as ay, AgentStatusInactive as az, AgentCategoryDevelopment as b, type GetDefaultWidgetRequest as b$, type AgentWidgetResponse as b0, AgentWidgetsCreateSubject as b1, AgentWidgetsDeleteSubject as b2, AgentWidgetsGetByWidgetID as b3, AgentWidgetsGetDefaultSubject as b4, AgentWidgetsGetSubject as b5, AgentWidgetsListSubject as b6, AgentWidgetsSetDefaultSubject as b7, AgentWidgetsUpdateSubject as b8, type ArtifactRef as b9, type DeleteToolDefinitionRequest as bA, type ExecuteJobRequest as bB, type ExecutePlanRequest as bC, type ExecutePlanResponse as bD, type ExecuteToolRequest as bE, type ExecuteToolResponse as bF, type ExecutionCompletedEvent as bG, type ExecutionMode as bH, ExecutionModeAsync as bI, ExecutionModeAsyncClient as bJ, ExecutionModeSync as bK, type ExecutionModeTS as bL, type ExecutionPlan as bM, type ExecutionResponse as bN, type ExecutionStatus as bO, ExecutionStatusCompleted as bP, ExecutionStatusFailed as bQ, ExecutionStatusPending as bR, ExecutionStatusRunning as bS, ExecutionStatusSkipped as bT, type ExecutionStatusTS as bU, ExecutionTTLHours as bV, ExecutionsTTLCleanupSubject as bW, type GetAgentRequest as bX, type GetAgentSkillConfigRequest as bY, type GetAgentWidgetRequest as bZ, type GetDefaultAgentRequest as b_, type BackgroundAgentProgressEvent as ba, type BackgroundAgentStatusRequest as bb, type BackgroundAgentStatusResponse as bc, type CSATAnswer as bd, type CSATConfig as be, type CSATQuestion as bf, type CSATResponse as bg, type CSATSurvey as bh, ChatAgentExecuteSubject as bi, ChatAgentStatusSubject as bj, CheckBackgroundAgentStatusToolSubject as bk, type CreateAgentJobRequest as bl, type CreateAgentRequest as bm, type CreateAgentWidgetRequest as bn, type CreateExecutionPlanRequest as bo, type CreateExecutionPlanResponse as bp, type CreateSkillRequest as bq, type CreateSubAgentRequest as br, type CreateToolDefinitionRequest as bs, type CustomizableField as bt, type DefaultDefinitions as bu, type DeleteAgentRequest as bv, type DeleteAgentWidgetRequest as bw, type DeleteSkillRequest as bx, type DeleteSkillUserConfigRequest as by, type DeleteSubAgentRequest as bz, AgentCategoryFinance as c, type PlanApprovalConfig as c$, type GetExecutionRequest as c0, type GetSkillRequest as c1, type GetSkillUserConfigRequest as c2, type GetSkillsByIDsRequest as c3, type GetSkillsByIDsResponse as c4, type GetSubAgentRequest as c5, type GetSubAgentsByIDsRequest as c6, type GetSubAgentsByIDsResponse as c7, type GetToolDefinitionRequest as c8, type GetToolDefinitionsByIDsRequest as c9, JobStatusActive as cA, JobStatusDisabled as cB, JobStatusExecuting as cC, JobStatusPaused as cD, type JobStatusTS as cE, type ListAgentJobsRequest as cF, type ListAgentWidgetsRequest as cG, type ListAgentWidgetsResponse as cH, type ListAgentsRequest as cI, type ListAgentsResponse as cJ, type ListAgentsSummaryRequest as cK, type ListAgentsSummaryResponse as cL, type ListExecutionsByAgentRequest as cM, type ListExecutionsByJobRequest as cN, type ListExecutionsResponse as cO, type ListSkillUserConfigRequest as cP, type ListSkillsRequest as cQ, type ListSubAgentsRequest as cR, type ListToolDefinitionsRequest as cS, type MCPServerConfig as cT, MaxExecutions as cU, type MergeConfig as cV, type MergeStrategy as cW, MergeStrategyAppend as cX, MergeStrategyMerge as cY, MergeStrategyReplace as cZ, type MergeStrategyTS as c_, type GetToolDefinitionsByIDsResponse as ca, type GetWidgetByWidgetIDRequest as cb, type GetWidgetConfigRequest as cc, type GetWidgetConfigResponse as cd, type HandoffConfig as ce, type IntegrationRequirement as cf, type JobExecution as cg, JobExecutionGetSubject as ch, JobExecutionListSubject as ci, type JobExecutionResult as cj, type JobExecutionStatus as ck, JobExecutionStatusFailed as cl, JobExecutionStatusRunning as cm, JobExecutionStatusSuccess as cn, type JobExecutionStatusTS as co, JobExecutionStatusTimedOut as cp, type JobFrequency as cq, JobFrequencyOneTime as cr, JobFrequencySchedule as cs, type JobFrequencyTS as ct, type JobScope as cu, JobScopeOrg as cv, JobScopePrivate as cw, type JobScopeTS as cx, JobScopeTeam as cy, type JobStatus as cz, AgentCategoryGeneral as d, SubAgentsExecuteSubject as d$, type PlanStatus as d0, PlanStatusApproved as d1, PlanStatusCancelled as d2, PlanStatusCompleted as d3, PlanStatusExecuting as d4, PlanStatusPendingApproval as d5, PlanStatusRejected as d6, type PlanStatusTS as d7, type PlannedStep as d8, type ProcessJobTriggerResult as d9, type SkillCategoryTS as dA, SkillResolveConfigSubject as dB, type SkillResponse as dC, type SkillUserConfig as dD, SkillUserConfigDeleteSubject as dE, SkillUserConfigGetSubject as dF, type SkillUserConfigListResponse as dG, SkillUserConfigListSubject as dH, type SkillUserConfigResponse as dI, SkillUserConfigUpdateSubject as dJ, SkillsCreateSubject as dK, SkillsCreatedSubject as dL, SkillsDeleteSubject as dM, SkillsDeletedSubject as dN, SkillsGetByIDsSubject as dO, SkillsGetSubject as dP, type SkillsListResponse as dQ, SkillsListSubject as dR, SkillsUpdateOrgConfigSubject as dS, SkillsUpdateSubject as dT, SkillsUpdatedSubject as dU, type SubAgent as dV, type SubAgentResponse as dW, SubAgentsCreateSubject as dX, SubAgentsCreatedSubject as dY, SubAgentsDeleteSubject as dZ, SubAgentsDeletedSubject as d_, type PublicWidgetConfig as da, type PublisherType as db, PublisherTypeEloquent as dc, PublisherTypePartner as dd, type PublisherTypeTS as de, type ReactAgentConfig as df, ReactAgentExecuteSubject as dg, ReactAgentStatusSubject as dh, ReactAgentStopSubject as di, type ResolveSkillConfigRequest as dj, type ResolveSkillConfigResponse as dk, type RetryPolicy as dl, RuntimeJobCompletedSubject as dm, RuntimeJobExecuteSubject as dn, type SaveWidgetConfigRequest as dp, type SaveWidgetConfigResponse as dq, type SetDefaultWidgetRequest as dr, type Skill as ds, type SkillCategory as dt, SkillCategoryAnalysis as du, SkillCategoryCommunication as dv, SkillCategoryCreative as dw, SkillCategoryCustom as dx, SkillCategoryIntegration as dy, SkillCategoryProductivity as dz, AgentCategoryHR as e, type WidgetBehavior as e$, SubAgentsGetByIDsSubject as e0, SubAgentsGetSubject as e1, type SubAgentsListResponse as e2, SubAgentsListSubject as e3, SubAgentsUpdateSubject as e4, SubAgentsUpdatedSubject as e5, SubAgentsValidateSubject as e6, type TTLCleanupRequest as e7, type TTLCleanupResponse as e8, type TaskStatusTS as e9, ToolExecutionStatusExecuting as eA, ToolExecutionStatusFailed as eB, ToolExecutionStatusSkipped as eC, ToolExecutionStatusStarted as eD, type ToolExecutionStatusTS as eE, ToolExecutionStatusTimeout as eF, type TriggerBackgroundAgentRequest as eG, type TriggerBackgroundAgentResponse as eH, TriggerBackgroundAgentToolSubject as eI, type UpdateAgentJobRequest as eJ, type UpdateAgentRequest as eK, type UpdateAgentSkillConfigRequest as eL, type UpdateAgentWidgetRequest as eM, type UpdateOrgAgentsRequest as eN, type UpdateOrgAgentsResponse as eO, type UpdateSkillOrgConfigRequest as eP, type UpdateSkillRequest as eQ, type UpdateSkillUserConfigRequest as eR, type UpdateSubAgentRequest as eS, type UpdateToolDefinitionRequest as eT, type UserSuggestedAction as eU, type UserSuggestedActionsConfig as eV, type UserSuggestedActionsRequest as eW, type UserSuggestedActionsResponse as eX, type ValidationError as eY, type ValidationErrors as eZ, type WidgetAppearance as e_, type TemplateCategoryCount as ea, type TemplateFilters as eb, type TemplateStatus as ec, TemplateStatusDraft as ed, TemplateStatusPublished as ee, type TemplateStatusTS as ef, type ToolConfig as eg, type ToolDefinition as eh, type ToolDefinitionResponse as ei, ToolDefinitionsCreateSubject as ej, ToolDefinitionsCreatedSubject as ek, ToolDefinitionsDeleteSubject as el, ToolDefinitionsDeletedSubject as em, ToolDefinitionsExecuteSubject as en, ToolDefinitionsGetByIDsSubject as eo, ToolDefinitionsGetSubject as ep, type ToolDefinitionsListResponse as eq, ToolDefinitionsListSubject as er, ToolDefinitionsUpdateSubject as es, ToolDefinitionsUpdatedSubject as et, ToolDefinitionsValidateSubject as eu, type ToolExecution as ev, type ToolExecutionPolicy as ew, type ToolExecutionProgress as ex, type ToolExecutionStatus as ey, ToolExecutionStatusCompleted as ez, AgentCategoryMarketing as f, type WidgetConfig as f0, WidgetConfigGetByAgentSubject as f1, WidgetConfigSaveSubject as f2, type WidgetSecurity as f3, WorkflowAgentGetSubject as f4, WorkflowAgentUpdateSubject as f5, AgentCategoryProductivity as g, AgentCategoryResearch as h, AgentCategorySales as i, AgentCategorySupport as j, type AgentCategoryTS as k, AgentCategoryWriting as l, AgentChatCreateSubject as m, AgentChatGetSubject as n, AgentChatUpdateSubject as o, AgentChatValidateSubject as p, AgentCloneSubject as q, type AgentContext as r, type AgentContextConfig as s, AgentCreateSubject as t, AgentCreatedSubject as u, AgentDeleteSubject as v, AgentDeletedSubject as w, AgentEnsureDefaultSubject as x, AgentExecuteStatusSubject as y, AgentExecuteStopSubject as z };
2590
+ export { AgentJobDeleteSubject as $, type Agent as A, AgentExecuteSubject as B, type AgentExecution as C, AgentExportSubject as D, type AgentFilters as E, AgentFromTemplateSubject as F, AgentGetByOrgSubject as G, AgentGetDefaultSubject as H, AgentGetSubject as I, AgentImportSubject as J, AgentInstanceCancelPlanSubject as K, AgentInstanceClearHistorySubject as L, AgentInstanceCreatePlanSubject as M, AgentInstanceCreateSubject as N, AgentInstanceCreatedSubject as O, AgentInstanceDeleteSubject as P, AgentInstanceDeletedSubject as Q, AgentInstanceExecutePlanSubject as R, AgentInstanceGetHistorySubject as S, AgentInstanceGetSubject as T, AgentInstanceListSubject as U, AgentInstancePausePlanSubject as V, AgentInstanceResumePlanSubject as W, AgentInstanceUpdateSubject as X, AgentInstanceUpdatedSubject as Y, type AgentJob as Z, AgentJobCreateSubject as _, type AgentCategory as a, AgentVersionListSubject as a$, AgentJobGetSubject as a0, type AgentJobIDRequest as a1, AgentJobListSubject as a2, AgentJobPauseSubject as a3, type AgentJobResponse as a4, AgentJobResumeSubject as a5, type AgentJobTriggerRequest as a6, type AgentJobTriggerResponse as a7, AgentJobTriggerSubject as a8, AgentJobUpdateSubject as a9, type AgentStatusTS as aA, type AgentStatusUpdate as aB, type AgentSubType as aC, AgentSubTypeChat as aD, AgentSubTypeDocument as aE, AgentSubTypeReact as aF, type AgentSubTypeTS as aG, AgentSubTypeWorkflow as aH, type AgentSummary as aI, AgentTaskTriggerSubject as aJ, type AgentTemplate as aK, AgentTemplateGetSubject as aL, AgentTemplateListSubject as aM, type AgentTool as aN, type AgentToolConfiguration as aO, type AgentType as aP, AgentTypeChat as aQ, AgentTypeReact as aR, type AgentTypeTS as aS, AgentUpdateOrgSubject as aT, AgentUpdateSubject as aU, AgentUpdatedSubject as aV, AgentVersionActivateSubject as aW, AgentVersionActivatedSubject as aX, AgentVersionCreateSubject as aY, AgentVersionCreatedSubject as aZ, AgentVersionGetSubject as a_, type AgentJobsListResponse as aa, AgentListSubject as ab, AgentListSummarySubject as ac, type AgentProvisionDefinition as ad, AgentReactCreateSubject as ae, AgentReactGetSubject as af, AgentReactUpdateSubject as ag, AgentReactValidateSubject as ah, type AgentResponse as ai, type AgentScope as aj, AgentScopeCustom as ak, AgentScopeOrg as al, type AgentScopeTS as am, AgentScopeTeam as an, AgentScopeUser as ao, AgentSearchSubject as ap, type AgentSkill as aq, type AgentSkillConfigResponse as ar, AgentSkillGetConfigSubject as as, type AgentSkillTool as at, AgentSkillUpdateConfigSubject as au, type AgentStatus as av, AgentStatusActive as aw, AgentStatusArchived as ax, AgentStatusDraft as ay, AgentStatusInactive as az, AgentCategoryDevelopment as b, type GetDefaultAgentRequest as b$, type AgentWidget as b0, type AgentWidgetResponse as b1, AgentWidgetsCreateSubject as b2, AgentWidgetsDeleteSubject as b3, AgentWidgetsGetByWidgetID as b4, AgentWidgetsGetDefaultSubject as b5, AgentWidgetsGetSubject as b6, AgentWidgetsListSubject as b7, AgentWidgetsSetDefaultSubject as b8, AgentWidgetsUpdateSubject as b9, type DeleteSubAgentRequest as bA, type DeleteToolDefinitionRequest as bB, type ExecuteJobRequest as bC, type ExecutePlanRequest as bD, type ExecutePlanResponse as bE, type ExecuteToolRequest as bF, type ExecuteToolResponse as bG, type ExecutionCompletedEvent as bH, type ExecutionMode as bI, ExecutionModeAsync as bJ, ExecutionModeAsyncClient as bK, ExecutionModeSync as bL, type ExecutionModeTS as bM, type ExecutionPlan as bN, type ExecutionResponse as bO, type ExecutionStatus as bP, ExecutionStatusCompleted as bQ, ExecutionStatusFailed as bR, ExecutionStatusPending as bS, ExecutionStatusRunning as bT, ExecutionStatusSkipped as bU, type ExecutionStatusTS as bV, ExecutionTTLHours as bW, ExecutionsTTLCleanupSubject as bX, type GetAgentRequest as bY, type GetAgentSkillConfigRequest as bZ, type GetAgentWidgetRequest as b_, type ArtifactRef as ba, type BackgroundAgentProgressEvent as bb, type BackgroundAgentStatusRequest as bc, type BackgroundAgentStatusResponse as bd, type CSATAnswer as be, type CSATConfig as bf, type CSATQuestion as bg, type CSATResponse as bh, type CSATSurvey as bi, ChatAgentExecuteSubject as bj, ChatAgentStatusSubject as bk, CheckBackgroundAgentStatusToolSubject as bl, type CreateAgentJobRequest as bm, type CreateAgentRequest as bn, type CreateAgentWidgetRequest as bo, type CreateExecutionPlanRequest as bp, type CreateExecutionPlanResponse as bq, type CreateSkillRequest as br, type CreateSubAgentRequest as bs, type CreateToolDefinitionRequest as bt, type CustomizableField as bu, type DefaultDefinitions as bv, type DeleteAgentRequest as bw, type DeleteAgentWidgetRequest as bx, type DeleteSkillRequest as by, type DeleteSkillUserConfigRequest as bz, AgentCategoryFinance as c, type MergeStrategyTS as c$, type GetDefaultWidgetRequest as c0, type GetExecutionRequest as c1, type GetSkillRequest as c2, type GetSkillUserConfigRequest as c3, type GetSkillsByIDsRequest as c4, type GetSkillsByIDsResponse as c5, type GetSubAgentRequest as c6, type GetSubAgentsByIDsRequest as c7, type GetSubAgentsByIDsResponse as c8, type GetToolDefinitionRequest as c9, type JobStatus as cA, JobStatusActive as cB, JobStatusDisabled as cC, JobStatusExecuting as cD, JobStatusPaused as cE, type JobStatusTS as cF, type ListAgentJobsRequest as cG, type ListAgentWidgetsRequest as cH, type ListAgentWidgetsResponse as cI, type ListAgentsRequest as cJ, type ListAgentsResponse as cK, type ListAgentsSummaryRequest as cL, type ListAgentsSummaryResponse as cM, type ListExecutionsByAgentRequest as cN, type ListExecutionsByJobRequest as cO, type ListExecutionsResponse as cP, type ListSkillUserConfigRequest as cQ, type ListSkillsRequest as cR, type ListSubAgentsRequest as cS, type ListToolDefinitionsRequest as cT, type MCPServerConfig as cU, MaxExecutions as cV, type MergeConfig as cW, type MergeStrategy as cX, MergeStrategyAppend as cY, MergeStrategyMerge as cZ, MergeStrategyReplace as c_, type GetToolDefinitionsByIDsRequest as ca, type GetToolDefinitionsByIDsResponse as cb, type GetWidgetByWidgetIDRequest as cc, type GetWidgetConfigRequest as cd, type GetWidgetConfigResponse as ce, type HandoffConfig as cf, type IntegrationRequirement as cg, type JobExecution as ch, JobExecutionGetSubject as ci, JobExecutionListSubject as cj, type JobExecutionResult as ck, type JobExecutionStatus as cl, JobExecutionStatusFailed as cm, JobExecutionStatusRunning as cn, JobExecutionStatusSuccess as co, type JobExecutionStatusTS as cp, JobExecutionStatusTimedOut as cq, type JobFrequency as cr, JobFrequencyOneTime as cs, JobFrequencySchedule as ct, type JobFrequencyTS as cu, type JobScope as cv, JobScopeOrg as cw, JobScopePrivate as cx, type JobScopeTS as cy, JobScopeTeam as cz, AgentCategoryGeneral as d, SubAgentsDeletedSubject as d$, type PlanApprovalConfig as d0, type PlanStatus as d1, PlanStatusApproved as d2, PlanStatusCancelled as d3, PlanStatusCompleted as d4, PlanStatusExecuting as d5, PlanStatusPendingApproval as d6, PlanStatusRejected as d7, type PlanStatusTS as d8, type PlannedStep as d9, SkillCategoryProductivity as dA, type SkillCategoryTS as dB, SkillResolveConfigSubject as dC, type SkillResponse as dD, type SkillUserConfig as dE, SkillUserConfigDeleteSubject as dF, SkillUserConfigGetSubject as dG, type SkillUserConfigListResponse as dH, SkillUserConfigListSubject as dI, type SkillUserConfigResponse as dJ, SkillUserConfigUpdateSubject as dK, SkillsCreateSubject as dL, SkillsCreatedSubject as dM, SkillsDeleteSubject as dN, SkillsDeletedSubject as dO, SkillsGetByIDsSubject as dP, SkillsGetSubject as dQ, type SkillsListResponse as dR, SkillsListSubject as dS, SkillsUpdateOrgConfigSubject as dT, SkillsUpdateSubject as dU, SkillsUpdatedSubject as dV, type SubAgent as dW, type SubAgentResponse as dX, SubAgentsCreateSubject as dY, SubAgentsCreatedSubject as dZ, SubAgentsDeleteSubject as d_, type ProcessJobTriggerResult as da, type PublicWidgetConfig as db, type PublisherType as dc, PublisherTypeEloquent as dd, PublisherTypePartner as de, type PublisherTypeTS as df, type ReactAgentConfig as dg, ReactAgentExecuteSubject as dh, ReactAgentStatusSubject as di, ReactAgentStopSubject as dj, type ResolveSkillConfigRequest as dk, type ResolveSkillConfigResponse as dl, type RetryPolicy as dm, RuntimeJobCompletedSubject as dn, RuntimeJobExecuteSubject as dp, type SaveWidgetConfigRequest as dq, type SaveWidgetConfigResponse as dr, type SetDefaultWidgetRequest as ds, type Skill as dt, type SkillCategory as du, SkillCategoryAnalysis as dv, SkillCategoryCommunication as dw, SkillCategoryCreative as dx, SkillCategoryCustom as dy, SkillCategoryIntegration as dz, AgentCategoryHR as e, type WidgetAppearance as e$, SubAgentsExecuteSubject as e0, SubAgentsGetByIDsSubject as e1, SubAgentsGetSubject as e2, type SubAgentsListResponse as e3, SubAgentsListSubject as e4, SubAgentsUpdateSubject as e5, SubAgentsUpdatedSubject as e6, SubAgentsValidateSubject as e7, type TTLCleanupRequest as e8, type TTLCleanupResponse as e9, ToolExecutionStatusCompleted as eA, ToolExecutionStatusExecuting as eB, ToolExecutionStatusFailed as eC, ToolExecutionStatusSkipped as eD, ToolExecutionStatusStarted as eE, type ToolExecutionStatusTS as eF, ToolExecutionStatusTimeout as eG, type TriggerBackgroundAgentRequest as eH, type TriggerBackgroundAgentResponse as eI, TriggerBackgroundAgentToolSubject as eJ, type UpdateAgentJobRequest as eK, type UpdateAgentRequest as eL, type UpdateAgentSkillConfigRequest as eM, type UpdateAgentWidgetRequest as eN, type UpdateOrgAgentsRequest as eO, type UpdateOrgAgentsResponse as eP, type UpdateSkillOrgConfigRequest as eQ, type UpdateSkillRequest as eR, type UpdateSkillUserConfigRequest as eS, type UpdateSubAgentRequest as eT, type UpdateToolDefinitionRequest as eU, type UserSuggestedAction as eV, type UserSuggestedActionsConfig as eW, type UserSuggestedActionsRequest as eX, type UserSuggestedActionsResponse as eY, type ValidationError as eZ, type ValidationErrors as e_, type TaskStatusTS as ea, type TemplateCategoryCount as eb, type TemplateFilters as ec, type TemplateStatus as ed, TemplateStatusDraft as ee, TemplateStatusPublished as ef, type TemplateStatusTS as eg, type ToolConfig as eh, type ToolDefinition as ei, type ToolDefinitionResponse as ej, ToolDefinitionsCreateSubject as ek, ToolDefinitionsCreatedSubject as el, ToolDefinitionsDeleteSubject as em, ToolDefinitionsDeletedSubject as en, ToolDefinitionsExecuteSubject as eo, ToolDefinitionsGetByIDsSubject as ep, ToolDefinitionsGetSubject as eq, type ToolDefinitionsListResponse as er, ToolDefinitionsListSubject as es, ToolDefinitionsUpdateSubject as et, ToolDefinitionsUpdatedSubject as eu, ToolDefinitionsValidateSubject as ev, type ToolExecution as ew, type ToolExecutionPolicy as ex, type ToolExecutionProgress as ey, type ToolExecutionStatus as ez, AgentCategoryMarketing as f, type WidgetBehavior as f0, type WidgetConfig as f1, WidgetConfigGetByAgentSubject as f2, WidgetConfigSaveSubject as f3, type WidgetSecurity as f4, WorkflowAgentGetSubject as f5, WorkflowAgentUpdateSubject as f6, AgentCategoryProductivity as g, AgentCategoryResearch as h, AgentCategorySales as i, AgentCategorySupport as j, type AgentCategoryTS as k, AgentCategoryWriting as l, AgentChatCreateSubject as m, AgentChatGetSubject as n, AgentChatUpdateSubject as o, AgentChatValidateSubject as p, AgentCloneSubject as q, type AgentContext as r, type AgentContextConfig as s, AgentCreateSubject as t, AgentCreatedSubject as u, AgentDeleteSubject as v, AgentDeletedSubject as w, AgentEnsureDefaultSubject as x, AgentExecuteStatusSubject as y, AgentExecuteStopSubject as z };
@@ -1,4 +1,4 @@
1
- import { ProductNameTS, JSONSchema, ResponseMetadata } from '@elqnt/types';
1
+ import { JSONSchema, ResponseMetadata } from '@elqnt/types';
2
2
 
3
3
  /**
4
4
  * AgentContext accumulates meaningful state from agentic tool executions.
@@ -747,16 +747,17 @@ interface TriggerBackgroundAgentRequest {
747
747
  enableSSE?: boolean;
748
748
  /**
749
749
  * v2: when set, the run is anchored to a Done task. The agents service
750
- * auto-attaches the done_tasks skill so the agent can call
751
- * post_task_update / set_task_output / request_task_help even if its
752
- * declared SkillNames doesn't include done_tasks.
750
+ * auto-attaches the done_tasks skill so the agent can post_task_update,
751
+ * set_task_output, request_task_help even if the agent's declared
752
+ * SkillNames doesn't include done_tasks. The taskId is also surfaced in
753
+ * execution metadata so downstream tools can reference it.
753
754
  */
754
755
  taskId?: string;
755
756
  /**
756
757
  * v2: when set, the run uses this library for knowledge_search by default.
757
758
  * Sourced from the parent task's project.libraryId at dispatch time.
758
- * The runtime injects this into knowledge_search tool calls; the agent
759
- * does NOT need to pass library_id explicitly.
759
+ * The runtime injects it into knowledge_search tool dispatch so the agent
760
+ * doesn't need to pass library_id explicitly.
760
761
  */
761
762
  libraryId?: string;
762
763
  }
@@ -887,6 +888,14 @@ interface Skill {
887
888
  displayOrder?: number;
888
889
  createdAt?: string;
889
890
  updatedAt?: string;
891
+ /**
892
+ * ArtifactVersion drives the system_skills reconciler upsert guard
893
+ * (rows update only when the registry version is greater). Bump this on
894
+ * any change to a skill's definition (tools, ConfigSchema, prompt) so the
895
+ * new shape propagates to system_skills across existing orgs/environments.
896
+ * Unset (0) is treated as version 1 by the reconciler.
897
+ */
898
+ artifactVersion?: number;
890
899
  }
891
900
  /**
892
901
  * AgentSkill represents an agent's configuration for a specific skill
@@ -1018,7 +1027,7 @@ interface AgentTool {
1018
1027
  interface Agent {
1019
1028
  id?: string;
1020
1029
  orgId: string;
1021
- product: ProductNameTS;
1030
+ product: string;
1022
1031
  type: AgentTypeTS;
1023
1032
  subType: AgentSubTypeTS;
1024
1033
  name: string;
@@ -1115,6 +1124,14 @@ interface Agent {
1115
1124
  updatedAt: string;
1116
1125
  createdBy: string;
1117
1126
  updatedBy: string;
1127
+ /**
1128
+ * === ARTIFACT VERSIONING ===
1129
+ * Bumped in the registry (backend/services/admin/artifacts/<product>/agents.go)
1130
+ * whenever the platform-shipped agent changes meaningfully. The artifact
1131
+ * reconciler diffs this against installed_artifact_versions to roll
1132
+ * updates out to existing customer orgs. See skill 29-data-changes §C.
1133
+ */
1134
+ artifactVersion?: number;
1118
1135
  metadata?: {
1119
1136
  [key: string]: any;
1120
1137
  };
@@ -1142,6 +1159,7 @@ interface WidgetConfig {
1142
1159
  * WidgetAppearance defines the visual customization of the widget
1143
1160
  */
1144
1161
  interface WidgetAppearance {
1162
+ widgetStyle?: string;
1145
1163
  position: string;
1146
1164
  primaryColor: string;
1147
1165
  backgroundColor: string;
@@ -1149,6 +1167,7 @@ interface WidgetAppearance {
1149
1167
  borderRadius: number;
1150
1168
  bubbleSize: number;
1151
1169
  bubbleIconUrl?: string;
1170
+ bubbleBackgroundColor?: string;
1152
1171
  }
1153
1172
  /**
1154
1173
  * WidgetBehavior defines the behavioral settings of the widget
@@ -1169,7 +1188,7 @@ interface WidgetSecurity {
1169
1188
  * AgentFilters for filtering agents in list operations
1170
1189
  */
1171
1190
  interface AgentFilters {
1172
- product?: ProductNameTS;
1191
+ product?: string;
1173
1192
  type?: AgentType;
1174
1193
  subType?: AgentSubType;
1175
1194
  status?: AgentStatus;
@@ -2173,6 +2192,13 @@ declare const AgentJobResumeSubject = "agents.jobs.resume";
2173
2192
  * Job Trigger (from Scheduler Service)
2174
2193
  */
2175
2194
  declare const AgentJobTriggerSubject = "agents.job.trigger";
2195
+ /**
2196
+ * Task Schedule Trigger (from Scheduler Service) — drives recurring Done
2197
+ * tasks. Each tick fans out across orgs, finds tasks whose schedule is due
2198
+ * (schedule.nextRunAt <= now), and dispatches a one-time agent run per task
2199
+ * (the task itself is the recurring definition; see task_schedule_handler.go).
2200
+ */
2201
+ declare const AgentTaskTriggerSubject = "agents.task.trigger";
2176
2202
  /**
2177
2203
  * Background Agent Tool Subjects (from chat agent tool calls)
2178
2204
  */
@@ -2561,4 +2587,4 @@ interface PublicWidgetConfig {
2561
2587
  behavior: WidgetBehavior;
2562
2588
  }
2563
2589
 
2564
- export { AgentJobDeleteSubject as $, type Agent as A, AgentExecuteSubject as B, type AgentExecution as C, AgentExportSubject as D, type AgentFilters as E, AgentFromTemplateSubject as F, AgentGetByOrgSubject as G, AgentGetDefaultSubject as H, AgentGetSubject as I, AgentImportSubject as J, AgentInstanceCancelPlanSubject as K, AgentInstanceClearHistorySubject as L, AgentInstanceCreatePlanSubject as M, AgentInstanceCreateSubject as N, AgentInstanceCreatedSubject as O, AgentInstanceDeleteSubject as P, AgentInstanceDeletedSubject as Q, AgentInstanceExecutePlanSubject as R, AgentInstanceGetHistorySubject as S, AgentInstanceGetSubject as T, AgentInstanceListSubject as U, AgentInstancePausePlanSubject as V, AgentInstanceResumePlanSubject as W, AgentInstanceUpdateSubject as X, AgentInstanceUpdatedSubject as Y, type AgentJob as Z, AgentJobCreateSubject as _, type AgentCategory as a, type AgentWidget as a$, AgentJobGetSubject as a0, type AgentJobIDRequest as a1, AgentJobListSubject as a2, AgentJobPauseSubject as a3, type AgentJobResponse as a4, AgentJobResumeSubject as a5, type AgentJobTriggerRequest as a6, type AgentJobTriggerResponse as a7, AgentJobTriggerSubject as a8, AgentJobUpdateSubject as a9, type AgentStatusTS as aA, type AgentStatusUpdate as aB, type AgentSubType as aC, AgentSubTypeChat as aD, AgentSubTypeDocument as aE, AgentSubTypeReact as aF, type AgentSubTypeTS as aG, AgentSubTypeWorkflow as aH, type AgentSummary as aI, type AgentTemplate as aJ, AgentTemplateGetSubject as aK, AgentTemplateListSubject as aL, type AgentTool as aM, type AgentToolConfiguration as aN, type AgentType as aO, AgentTypeChat as aP, AgentTypeReact as aQ, type AgentTypeTS as aR, AgentUpdateOrgSubject as aS, AgentUpdateSubject as aT, AgentUpdatedSubject as aU, AgentVersionActivateSubject as aV, AgentVersionActivatedSubject as aW, AgentVersionCreateSubject as aX, AgentVersionCreatedSubject as aY, AgentVersionGetSubject as aZ, AgentVersionListSubject as a_, type AgentJobsListResponse as aa, AgentListSubject as ab, AgentListSummarySubject as ac, type AgentProvisionDefinition as ad, AgentReactCreateSubject as ae, AgentReactGetSubject as af, AgentReactUpdateSubject as ag, AgentReactValidateSubject as ah, type AgentResponse as ai, type AgentScope as aj, AgentScopeCustom as ak, AgentScopeOrg as al, type AgentScopeTS as am, AgentScopeTeam as an, AgentScopeUser as ao, AgentSearchSubject as ap, type AgentSkill as aq, type AgentSkillConfigResponse as ar, AgentSkillGetConfigSubject as as, type AgentSkillTool as at, AgentSkillUpdateConfigSubject as au, type AgentStatus as av, AgentStatusActive as aw, AgentStatusArchived as ax, AgentStatusDraft as ay, AgentStatusInactive as az, AgentCategoryDevelopment as b, type GetDefaultWidgetRequest as b$, type AgentWidgetResponse as b0, AgentWidgetsCreateSubject as b1, AgentWidgetsDeleteSubject as b2, AgentWidgetsGetByWidgetID as b3, AgentWidgetsGetDefaultSubject as b4, AgentWidgetsGetSubject as b5, AgentWidgetsListSubject as b6, AgentWidgetsSetDefaultSubject as b7, AgentWidgetsUpdateSubject as b8, type ArtifactRef as b9, type DeleteToolDefinitionRequest as bA, type ExecuteJobRequest as bB, type ExecutePlanRequest as bC, type ExecutePlanResponse as bD, type ExecuteToolRequest as bE, type ExecuteToolResponse as bF, type ExecutionCompletedEvent as bG, type ExecutionMode as bH, ExecutionModeAsync as bI, ExecutionModeAsyncClient as bJ, ExecutionModeSync as bK, type ExecutionModeTS as bL, type ExecutionPlan as bM, type ExecutionResponse as bN, type ExecutionStatus as bO, ExecutionStatusCompleted as bP, ExecutionStatusFailed as bQ, ExecutionStatusPending as bR, ExecutionStatusRunning as bS, ExecutionStatusSkipped as bT, type ExecutionStatusTS as bU, ExecutionTTLHours as bV, ExecutionsTTLCleanupSubject as bW, type GetAgentRequest as bX, type GetAgentSkillConfigRequest as bY, type GetAgentWidgetRequest as bZ, type GetDefaultAgentRequest as b_, type BackgroundAgentProgressEvent as ba, type BackgroundAgentStatusRequest as bb, type BackgroundAgentStatusResponse as bc, type CSATAnswer as bd, type CSATConfig as be, type CSATQuestion as bf, type CSATResponse as bg, type CSATSurvey as bh, ChatAgentExecuteSubject as bi, ChatAgentStatusSubject as bj, CheckBackgroundAgentStatusToolSubject as bk, type CreateAgentJobRequest as bl, type CreateAgentRequest as bm, type CreateAgentWidgetRequest as bn, type CreateExecutionPlanRequest as bo, type CreateExecutionPlanResponse as bp, type CreateSkillRequest as bq, type CreateSubAgentRequest as br, type CreateToolDefinitionRequest as bs, type CustomizableField as bt, type DefaultDefinitions as bu, type DeleteAgentRequest as bv, type DeleteAgentWidgetRequest as bw, type DeleteSkillRequest as bx, type DeleteSkillUserConfigRequest as by, type DeleteSubAgentRequest as bz, AgentCategoryFinance as c, type PlanApprovalConfig as c$, type GetExecutionRequest as c0, type GetSkillRequest as c1, type GetSkillUserConfigRequest as c2, type GetSkillsByIDsRequest as c3, type GetSkillsByIDsResponse as c4, type GetSubAgentRequest as c5, type GetSubAgentsByIDsRequest as c6, type GetSubAgentsByIDsResponse as c7, type GetToolDefinitionRequest as c8, type GetToolDefinitionsByIDsRequest as c9, JobStatusActive as cA, JobStatusDisabled as cB, JobStatusExecuting as cC, JobStatusPaused as cD, type JobStatusTS as cE, type ListAgentJobsRequest as cF, type ListAgentWidgetsRequest as cG, type ListAgentWidgetsResponse as cH, type ListAgentsRequest as cI, type ListAgentsResponse as cJ, type ListAgentsSummaryRequest as cK, type ListAgentsSummaryResponse as cL, type ListExecutionsByAgentRequest as cM, type ListExecutionsByJobRequest as cN, type ListExecutionsResponse as cO, type ListSkillUserConfigRequest as cP, type ListSkillsRequest as cQ, type ListSubAgentsRequest as cR, type ListToolDefinitionsRequest as cS, type MCPServerConfig as cT, MaxExecutions as cU, type MergeConfig as cV, type MergeStrategy as cW, MergeStrategyAppend as cX, MergeStrategyMerge as cY, MergeStrategyReplace as cZ, type MergeStrategyTS as c_, type GetToolDefinitionsByIDsResponse as ca, type GetWidgetByWidgetIDRequest as cb, type GetWidgetConfigRequest as cc, type GetWidgetConfigResponse as cd, type HandoffConfig as ce, type IntegrationRequirement as cf, type JobExecution as cg, JobExecutionGetSubject as ch, JobExecutionListSubject as ci, type JobExecutionResult as cj, type JobExecutionStatus as ck, JobExecutionStatusFailed as cl, JobExecutionStatusRunning as cm, JobExecutionStatusSuccess as cn, type JobExecutionStatusTS as co, JobExecutionStatusTimedOut as cp, type JobFrequency as cq, JobFrequencyOneTime as cr, JobFrequencySchedule as cs, type JobFrequencyTS as ct, type JobScope as cu, JobScopeOrg as cv, JobScopePrivate as cw, type JobScopeTS as cx, JobScopeTeam as cy, type JobStatus as cz, AgentCategoryGeneral as d, SubAgentsExecuteSubject as d$, type PlanStatus as d0, PlanStatusApproved as d1, PlanStatusCancelled as d2, PlanStatusCompleted as d3, PlanStatusExecuting as d4, PlanStatusPendingApproval as d5, PlanStatusRejected as d6, type PlanStatusTS as d7, type PlannedStep as d8, type ProcessJobTriggerResult as d9, type SkillCategoryTS as dA, SkillResolveConfigSubject as dB, type SkillResponse as dC, type SkillUserConfig as dD, SkillUserConfigDeleteSubject as dE, SkillUserConfigGetSubject as dF, type SkillUserConfigListResponse as dG, SkillUserConfigListSubject as dH, type SkillUserConfigResponse as dI, SkillUserConfigUpdateSubject as dJ, SkillsCreateSubject as dK, SkillsCreatedSubject as dL, SkillsDeleteSubject as dM, SkillsDeletedSubject as dN, SkillsGetByIDsSubject as dO, SkillsGetSubject as dP, type SkillsListResponse as dQ, SkillsListSubject as dR, SkillsUpdateOrgConfigSubject as dS, SkillsUpdateSubject as dT, SkillsUpdatedSubject as dU, type SubAgent as dV, type SubAgentResponse as dW, SubAgentsCreateSubject as dX, SubAgentsCreatedSubject as dY, SubAgentsDeleteSubject as dZ, SubAgentsDeletedSubject as d_, type PublicWidgetConfig as da, type PublisherType as db, PublisherTypeEloquent as dc, PublisherTypePartner as dd, type PublisherTypeTS as de, type ReactAgentConfig as df, ReactAgentExecuteSubject as dg, ReactAgentStatusSubject as dh, ReactAgentStopSubject as di, type ResolveSkillConfigRequest as dj, type ResolveSkillConfigResponse as dk, type RetryPolicy as dl, RuntimeJobCompletedSubject as dm, RuntimeJobExecuteSubject as dn, type SaveWidgetConfigRequest as dp, type SaveWidgetConfigResponse as dq, type SetDefaultWidgetRequest as dr, type Skill as ds, type SkillCategory as dt, SkillCategoryAnalysis as du, SkillCategoryCommunication as dv, SkillCategoryCreative as dw, SkillCategoryCustom as dx, SkillCategoryIntegration as dy, SkillCategoryProductivity as dz, AgentCategoryHR as e, type WidgetBehavior as e$, SubAgentsGetByIDsSubject as e0, SubAgentsGetSubject as e1, type SubAgentsListResponse as e2, SubAgentsListSubject as e3, SubAgentsUpdateSubject as e4, SubAgentsUpdatedSubject as e5, SubAgentsValidateSubject as e6, type TTLCleanupRequest as e7, type TTLCleanupResponse as e8, type TaskStatusTS as e9, ToolExecutionStatusExecuting as eA, ToolExecutionStatusFailed as eB, ToolExecutionStatusSkipped as eC, ToolExecutionStatusStarted as eD, type ToolExecutionStatusTS as eE, ToolExecutionStatusTimeout as eF, type TriggerBackgroundAgentRequest as eG, type TriggerBackgroundAgentResponse as eH, TriggerBackgroundAgentToolSubject as eI, type UpdateAgentJobRequest as eJ, type UpdateAgentRequest as eK, type UpdateAgentSkillConfigRequest as eL, type UpdateAgentWidgetRequest as eM, type UpdateOrgAgentsRequest as eN, type UpdateOrgAgentsResponse as eO, type UpdateSkillOrgConfigRequest as eP, type UpdateSkillRequest as eQ, type UpdateSkillUserConfigRequest as eR, type UpdateSubAgentRequest as eS, type UpdateToolDefinitionRequest as eT, type UserSuggestedAction as eU, type UserSuggestedActionsConfig as eV, type UserSuggestedActionsRequest as eW, type UserSuggestedActionsResponse as eX, type ValidationError as eY, type ValidationErrors as eZ, type WidgetAppearance as e_, type TemplateCategoryCount as ea, type TemplateFilters as eb, type TemplateStatus as ec, TemplateStatusDraft as ed, TemplateStatusPublished as ee, type TemplateStatusTS as ef, type ToolConfig as eg, type ToolDefinition as eh, type ToolDefinitionResponse as ei, ToolDefinitionsCreateSubject as ej, ToolDefinitionsCreatedSubject as ek, ToolDefinitionsDeleteSubject as el, ToolDefinitionsDeletedSubject as em, ToolDefinitionsExecuteSubject as en, ToolDefinitionsGetByIDsSubject as eo, ToolDefinitionsGetSubject as ep, type ToolDefinitionsListResponse as eq, ToolDefinitionsListSubject as er, ToolDefinitionsUpdateSubject as es, ToolDefinitionsUpdatedSubject as et, ToolDefinitionsValidateSubject as eu, type ToolExecution as ev, type ToolExecutionPolicy as ew, type ToolExecutionProgress as ex, type ToolExecutionStatus as ey, ToolExecutionStatusCompleted as ez, AgentCategoryMarketing as f, type WidgetConfig as f0, WidgetConfigGetByAgentSubject as f1, WidgetConfigSaveSubject as f2, type WidgetSecurity as f3, WorkflowAgentGetSubject as f4, WorkflowAgentUpdateSubject as f5, AgentCategoryProductivity as g, AgentCategoryResearch as h, AgentCategorySales as i, AgentCategorySupport as j, type AgentCategoryTS as k, AgentCategoryWriting as l, AgentChatCreateSubject as m, AgentChatGetSubject as n, AgentChatUpdateSubject as o, AgentChatValidateSubject as p, AgentCloneSubject as q, type AgentContext as r, type AgentContextConfig as s, AgentCreateSubject as t, AgentCreatedSubject as u, AgentDeleteSubject as v, AgentDeletedSubject as w, AgentEnsureDefaultSubject as x, AgentExecuteStatusSubject as y, AgentExecuteStopSubject as z };
2590
+ export { AgentJobDeleteSubject as $, type Agent as A, AgentExecuteSubject as B, type AgentExecution as C, AgentExportSubject as D, type AgentFilters as E, AgentFromTemplateSubject as F, AgentGetByOrgSubject as G, AgentGetDefaultSubject as H, AgentGetSubject as I, AgentImportSubject as J, AgentInstanceCancelPlanSubject as K, AgentInstanceClearHistorySubject as L, AgentInstanceCreatePlanSubject as M, AgentInstanceCreateSubject as N, AgentInstanceCreatedSubject as O, AgentInstanceDeleteSubject as P, AgentInstanceDeletedSubject as Q, AgentInstanceExecutePlanSubject as R, AgentInstanceGetHistorySubject as S, AgentInstanceGetSubject as T, AgentInstanceListSubject as U, AgentInstancePausePlanSubject as V, AgentInstanceResumePlanSubject as W, AgentInstanceUpdateSubject as X, AgentInstanceUpdatedSubject as Y, type AgentJob as Z, AgentJobCreateSubject as _, type AgentCategory as a, AgentVersionListSubject as a$, AgentJobGetSubject as a0, type AgentJobIDRequest as a1, AgentJobListSubject as a2, AgentJobPauseSubject as a3, type AgentJobResponse as a4, AgentJobResumeSubject as a5, type AgentJobTriggerRequest as a6, type AgentJobTriggerResponse as a7, AgentJobTriggerSubject as a8, AgentJobUpdateSubject as a9, type AgentStatusTS as aA, type AgentStatusUpdate as aB, type AgentSubType as aC, AgentSubTypeChat as aD, AgentSubTypeDocument as aE, AgentSubTypeReact as aF, type AgentSubTypeTS as aG, AgentSubTypeWorkflow as aH, type AgentSummary as aI, AgentTaskTriggerSubject as aJ, type AgentTemplate as aK, AgentTemplateGetSubject as aL, AgentTemplateListSubject as aM, type AgentTool as aN, type AgentToolConfiguration as aO, type AgentType as aP, AgentTypeChat as aQ, AgentTypeReact as aR, type AgentTypeTS as aS, AgentUpdateOrgSubject as aT, AgentUpdateSubject as aU, AgentUpdatedSubject as aV, AgentVersionActivateSubject as aW, AgentVersionActivatedSubject as aX, AgentVersionCreateSubject as aY, AgentVersionCreatedSubject as aZ, AgentVersionGetSubject as a_, type AgentJobsListResponse as aa, AgentListSubject as ab, AgentListSummarySubject as ac, type AgentProvisionDefinition as ad, AgentReactCreateSubject as ae, AgentReactGetSubject as af, AgentReactUpdateSubject as ag, AgentReactValidateSubject as ah, type AgentResponse as ai, type AgentScope as aj, AgentScopeCustom as ak, AgentScopeOrg as al, type AgentScopeTS as am, AgentScopeTeam as an, AgentScopeUser as ao, AgentSearchSubject as ap, type AgentSkill as aq, type AgentSkillConfigResponse as ar, AgentSkillGetConfigSubject as as, type AgentSkillTool as at, AgentSkillUpdateConfigSubject as au, type AgentStatus as av, AgentStatusActive as aw, AgentStatusArchived as ax, AgentStatusDraft as ay, AgentStatusInactive as az, AgentCategoryDevelopment as b, type GetDefaultAgentRequest as b$, type AgentWidget as b0, type AgentWidgetResponse as b1, AgentWidgetsCreateSubject as b2, AgentWidgetsDeleteSubject as b3, AgentWidgetsGetByWidgetID as b4, AgentWidgetsGetDefaultSubject as b5, AgentWidgetsGetSubject as b6, AgentWidgetsListSubject as b7, AgentWidgetsSetDefaultSubject as b8, AgentWidgetsUpdateSubject as b9, type DeleteSubAgentRequest as bA, type DeleteToolDefinitionRequest as bB, type ExecuteJobRequest as bC, type ExecutePlanRequest as bD, type ExecutePlanResponse as bE, type ExecuteToolRequest as bF, type ExecuteToolResponse as bG, type ExecutionCompletedEvent as bH, type ExecutionMode as bI, ExecutionModeAsync as bJ, ExecutionModeAsyncClient as bK, ExecutionModeSync as bL, type ExecutionModeTS as bM, type ExecutionPlan as bN, type ExecutionResponse as bO, type ExecutionStatus as bP, ExecutionStatusCompleted as bQ, ExecutionStatusFailed as bR, ExecutionStatusPending as bS, ExecutionStatusRunning as bT, ExecutionStatusSkipped as bU, type ExecutionStatusTS as bV, ExecutionTTLHours as bW, ExecutionsTTLCleanupSubject as bX, type GetAgentRequest as bY, type GetAgentSkillConfigRequest as bZ, type GetAgentWidgetRequest as b_, type ArtifactRef as ba, type BackgroundAgentProgressEvent as bb, type BackgroundAgentStatusRequest as bc, type BackgroundAgentStatusResponse as bd, type CSATAnswer as be, type CSATConfig as bf, type CSATQuestion as bg, type CSATResponse as bh, type CSATSurvey as bi, ChatAgentExecuteSubject as bj, ChatAgentStatusSubject as bk, CheckBackgroundAgentStatusToolSubject as bl, type CreateAgentJobRequest as bm, type CreateAgentRequest as bn, type CreateAgentWidgetRequest as bo, type CreateExecutionPlanRequest as bp, type CreateExecutionPlanResponse as bq, type CreateSkillRequest as br, type CreateSubAgentRequest as bs, type CreateToolDefinitionRequest as bt, type CustomizableField as bu, type DefaultDefinitions as bv, type DeleteAgentRequest as bw, type DeleteAgentWidgetRequest as bx, type DeleteSkillRequest as by, type DeleteSkillUserConfigRequest as bz, AgentCategoryFinance as c, type MergeStrategyTS as c$, type GetDefaultWidgetRequest as c0, type GetExecutionRequest as c1, type GetSkillRequest as c2, type GetSkillUserConfigRequest as c3, type GetSkillsByIDsRequest as c4, type GetSkillsByIDsResponse as c5, type GetSubAgentRequest as c6, type GetSubAgentsByIDsRequest as c7, type GetSubAgentsByIDsResponse as c8, type GetToolDefinitionRequest as c9, type JobStatus as cA, JobStatusActive as cB, JobStatusDisabled as cC, JobStatusExecuting as cD, JobStatusPaused as cE, type JobStatusTS as cF, type ListAgentJobsRequest as cG, type ListAgentWidgetsRequest as cH, type ListAgentWidgetsResponse as cI, type ListAgentsRequest as cJ, type ListAgentsResponse as cK, type ListAgentsSummaryRequest as cL, type ListAgentsSummaryResponse as cM, type ListExecutionsByAgentRequest as cN, type ListExecutionsByJobRequest as cO, type ListExecutionsResponse as cP, type ListSkillUserConfigRequest as cQ, type ListSkillsRequest as cR, type ListSubAgentsRequest as cS, type ListToolDefinitionsRequest as cT, type MCPServerConfig as cU, MaxExecutions as cV, type MergeConfig as cW, type MergeStrategy as cX, MergeStrategyAppend as cY, MergeStrategyMerge as cZ, MergeStrategyReplace as c_, type GetToolDefinitionsByIDsRequest as ca, type GetToolDefinitionsByIDsResponse as cb, type GetWidgetByWidgetIDRequest as cc, type GetWidgetConfigRequest as cd, type GetWidgetConfigResponse as ce, type HandoffConfig as cf, type IntegrationRequirement as cg, type JobExecution as ch, JobExecutionGetSubject as ci, JobExecutionListSubject as cj, type JobExecutionResult as ck, type JobExecutionStatus as cl, JobExecutionStatusFailed as cm, JobExecutionStatusRunning as cn, JobExecutionStatusSuccess as co, type JobExecutionStatusTS as cp, JobExecutionStatusTimedOut as cq, type JobFrequency as cr, JobFrequencyOneTime as cs, JobFrequencySchedule as ct, type JobFrequencyTS as cu, type JobScope as cv, JobScopeOrg as cw, JobScopePrivate as cx, type JobScopeTS as cy, JobScopeTeam as cz, AgentCategoryGeneral as d, SubAgentsDeletedSubject as d$, type PlanApprovalConfig as d0, type PlanStatus as d1, PlanStatusApproved as d2, PlanStatusCancelled as d3, PlanStatusCompleted as d4, PlanStatusExecuting as d5, PlanStatusPendingApproval as d6, PlanStatusRejected as d7, type PlanStatusTS as d8, type PlannedStep as d9, SkillCategoryProductivity as dA, type SkillCategoryTS as dB, SkillResolveConfigSubject as dC, type SkillResponse as dD, type SkillUserConfig as dE, SkillUserConfigDeleteSubject as dF, SkillUserConfigGetSubject as dG, type SkillUserConfigListResponse as dH, SkillUserConfigListSubject as dI, type SkillUserConfigResponse as dJ, SkillUserConfigUpdateSubject as dK, SkillsCreateSubject as dL, SkillsCreatedSubject as dM, SkillsDeleteSubject as dN, SkillsDeletedSubject as dO, SkillsGetByIDsSubject as dP, SkillsGetSubject as dQ, type SkillsListResponse as dR, SkillsListSubject as dS, SkillsUpdateOrgConfigSubject as dT, SkillsUpdateSubject as dU, SkillsUpdatedSubject as dV, type SubAgent as dW, type SubAgentResponse as dX, SubAgentsCreateSubject as dY, SubAgentsCreatedSubject as dZ, SubAgentsDeleteSubject as d_, type ProcessJobTriggerResult as da, type PublicWidgetConfig as db, type PublisherType as dc, PublisherTypeEloquent as dd, PublisherTypePartner as de, type PublisherTypeTS as df, type ReactAgentConfig as dg, ReactAgentExecuteSubject as dh, ReactAgentStatusSubject as di, ReactAgentStopSubject as dj, type ResolveSkillConfigRequest as dk, type ResolveSkillConfigResponse as dl, type RetryPolicy as dm, RuntimeJobCompletedSubject as dn, RuntimeJobExecuteSubject as dp, type SaveWidgetConfigRequest as dq, type SaveWidgetConfigResponse as dr, type SetDefaultWidgetRequest as ds, type Skill as dt, type SkillCategory as du, SkillCategoryAnalysis as dv, SkillCategoryCommunication as dw, SkillCategoryCreative as dx, SkillCategoryCustom as dy, SkillCategoryIntegration as dz, AgentCategoryHR as e, type WidgetAppearance as e$, SubAgentsExecuteSubject as e0, SubAgentsGetByIDsSubject as e1, SubAgentsGetSubject as e2, type SubAgentsListResponse as e3, SubAgentsListSubject as e4, SubAgentsUpdateSubject as e5, SubAgentsUpdatedSubject as e6, SubAgentsValidateSubject as e7, type TTLCleanupRequest as e8, type TTLCleanupResponse as e9, ToolExecutionStatusCompleted as eA, ToolExecutionStatusExecuting as eB, ToolExecutionStatusFailed as eC, ToolExecutionStatusSkipped as eD, ToolExecutionStatusStarted as eE, type ToolExecutionStatusTS as eF, ToolExecutionStatusTimeout as eG, type TriggerBackgroundAgentRequest as eH, type TriggerBackgroundAgentResponse as eI, TriggerBackgroundAgentToolSubject as eJ, type UpdateAgentJobRequest as eK, type UpdateAgentRequest as eL, type UpdateAgentSkillConfigRequest as eM, type UpdateAgentWidgetRequest as eN, type UpdateOrgAgentsRequest as eO, type UpdateOrgAgentsResponse as eP, type UpdateSkillOrgConfigRequest as eQ, type UpdateSkillRequest as eR, type UpdateSkillUserConfigRequest as eS, type UpdateSubAgentRequest as eT, type UpdateToolDefinitionRequest as eU, type UserSuggestedAction as eV, type UserSuggestedActionsConfig as eW, type UserSuggestedActionsRequest as eX, type UserSuggestedActionsResponse as eY, type ValidationError as eZ, type ValidationErrors as e_, type TaskStatusTS as ea, type TemplateCategoryCount as eb, type TemplateFilters as ec, type TemplateStatus as ed, TemplateStatusDraft as ee, TemplateStatusPublished as ef, type TemplateStatusTS as eg, type ToolConfig as eh, type ToolDefinition as ei, type ToolDefinitionResponse as ej, ToolDefinitionsCreateSubject as ek, ToolDefinitionsCreatedSubject as el, ToolDefinitionsDeleteSubject as em, ToolDefinitionsDeletedSubject as en, ToolDefinitionsExecuteSubject as eo, ToolDefinitionsGetByIDsSubject as ep, ToolDefinitionsGetSubject as eq, type ToolDefinitionsListResponse as er, ToolDefinitionsListSubject as es, ToolDefinitionsUpdateSubject as et, ToolDefinitionsUpdatedSubject as eu, ToolDefinitionsValidateSubject as ev, type ToolExecution as ew, type ToolExecutionPolicy as ex, type ToolExecutionProgress as ey, type ToolExecutionStatus as ez, AgentCategoryMarketing as f, type WidgetBehavior as f0, type WidgetConfig as f1, WidgetConfigGetByAgentSubject as f2, WidgetConfigSaveSubject as f3, type WidgetSecurity as f4, WorkflowAgentGetSubject as f5, WorkflowAgentUpdateSubject as f6, AgentCategoryProductivity as g, AgentCategoryResearch as h, AgentCategorySales as i, AgentCategorySupport as j, type AgentCategoryTS as k, AgentCategoryWriting as l, AgentChatCreateSubject as m, AgentChatGetSubject as n, AgentChatUpdateSubject as o, AgentChatValidateSubject as p, AgentCloneSubject as q, type AgentContext as r, type AgentContextConfig as s, AgentCreateSubject as t, AgentCreatedSubject as u, AgentDeleteSubject as v, AgentDeletedSubject as w, AgentEnsureDefaultSubject as x, AgentExecuteStatusSubject as y, AgentExecuteStopSubject as z };
@@ -1,9 +1,9 @@
1
1
  import { ApiClientOptions, ApiResponse } from '@elqnt/api-client';
2
2
  import { ResponseMetadata } from '@elqnt/types';
3
- import { A as Agent, bc as BackgroundAgentStatusResponse, ai as AgentResponse, Z as AgentJob, a4 as AgentJobResponse, ds as Skill, dC as SkillResponse, dV as SubAgent, dW as SubAgentResponse, eh as ToolDefinition, ei as ToolDefinitionResponse, a$ as AgentWidget, b0 as AgentWidgetResponse, dI as SkillUserConfigResponse, c4 as GetSkillsByIDsResponse, ca as GetToolDefinitionsByIDsResponse, aa as AgentJobsListResponse, cJ as ListAgentsResponse, cL as ListAgentsSummaryResponse, dG as SkillUserConfigListResponse, dQ as SkillsListResponse, e2 as SubAgentsListResponse, eq as ToolDefinitionsListResponse, cH as ListAgentWidgetsResponse, dk as ResolveSkillConfigResponse, eG as TriggerBackgroundAgentRequest, eH as TriggerBackgroundAgentResponse } from '../agent-models-D6WgsFMZ.mjs';
4
- export { aI as AgentSummary, dD as SkillUserConfig } from '../agent-models-D6WgsFMZ.mjs';
5
- import { ap as IntegrationProviderTS, aA as IntegrationTypeTS, e as ConnectIntegrationResponse, h as CreateSandboxRequest, i as CreateSandboxResponse, m as DeleteSandboxResponse, r as DisconnectIntegrationResponse, R as GetUserIntegrationResponse, O as GetSandboxResponse, ai as IntegrationCallbackResponse, aL as ListUserIntegrationsResponse, aJ as ListSandboxesResponse, aT as RefreshIntegrationResponse, aV as RunEmailTriageResponse, b9 as UpdateTriageEnabledResponse, b5 as UpdateSandboxRequest, b6 as UpdateSandboxResponse } from '../sandbox-DOxoM2Ge.mjs';
6
- export { aW as Sandbox, ba as UserIntegration } from '../sandbox-DOxoM2Ge.mjs';
3
+ import { A as Agent, bd as BackgroundAgentStatusResponse, ai as AgentResponse, Z as AgentJob, a4 as AgentJobResponse, dt as Skill, dD as SkillResponse, dW as SubAgent, dX as SubAgentResponse, ei as ToolDefinition, ej as ToolDefinitionResponse, b0 as AgentWidget, b1 as AgentWidgetResponse, dJ as SkillUserConfigResponse, c5 as GetSkillsByIDsResponse, cb as GetToolDefinitionsByIDsResponse, aa as AgentJobsListResponse, cK as ListAgentsResponse, cM as ListAgentsSummaryResponse, dH as SkillUserConfigListResponse, dR as SkillsListResponse, e3 as SubAgentsListResponse, er as ToolDefinitionsListResponse, cI as ListAgentWidgetsResponse, dl as ResolveSkillConfigResponse, eH as TriggerBackgroundAgentRequest, eI as TriggerBackgroundAgentResponse } from '../agent-models-vL3a7oFB.mjs';
4
+ export { aI as AgentSummary, dE as SkillUserConfig } from '../agent-models-vL3a7oFB.mjs';
5
+ import { ap as IntegrationProviderTS, aA as IntegrationTypeTS, e as ConnectIntegrationResponse, h as CreateSandboxRequest, i as CreateSandboxResponse, m as DeleteSandboxResponse, r as DisconnectIntegrationResponse, R as GetUserIntegrationResponse, O as GetSandboxResponse, ai as IntegrationCallbackResponse, aL as ListUserIntegrationsResponse, aJ as ListSandboxesResponse, aU as RefreshIntegrationResponse, aW as RunEmailTriageResponse, ba as UpdateTriageEnabledResponse, b6 as UpdateSandboxRequest, b7 as UpdateSandboxResponse } from '../sandbox-Djb8gA7e.mjs';
6
+ export { aX as Sandbox, bb as UserIntegration } from '../sandbox-Djb8gA7e.mjs';
7
7
  import { a as StructuredOutputRequest, b as StructuredOutputResponse } from '../structured-Bs0IjwLD.mjs';
8
8
  export { S as StructuredOutputProvider, c as StructuredOutputUsage } from '../structured-Bs0IjwLD.mjs';
9
9
  import { ChatMessage } from '@elqnt/chat/models';
@@ -33,8 +33,8 @@ declare function listSkillsApi(options: ApiClientOptions): Promise<ApiResponse<S
33
33
  declare function getSkillApi(skillId: string, options: ApiClientOptions): Promise<ApiResponse<SkillResponse>>;
34
34
  declare function getSkillsByIdsApi(ids: string[], options: ApiClientOptions): Promise<ApiResponse<GetSkillsByIDsResponse>>;
35
35
  declare function createSkillApi(skill: Partial<Skill>, options: ApiClientOptions): Promise<ApiResponse<SkillResponse>>;
36
- declare function updateSkillApi(skillId: string, skill: Partial<Skill>, options: ApiClientOptions): Promise<ApiResponse<SkillResponse>>;
37
- declare function deleteSkillApi(skillId: string, options: ApiClientOptions): Promise<ApiResponse<{
36
+ declare function updateSkillApi(_skillId: string, skill: Partial<Skill>, options: ApiClientOptions): Promise<ApiResponse<SkillResponse>>;
37
+ declare function deleteSkillApi(name: string, options: ApiClientOptions): Promise<ApiResponse<{
38
38
  success: boolean;
39
39
  metadata: ResponseMetadata;
40
40
  }>>;
@@ -1,9 +1,9 @@
1
1
  import { ApiClientOptions, ApiResponse } from '@elqnt/api-client';
2
2
  import { ResponseMetadata } from '@elqnt/types';
3
- import { A as Agent, bc as BackgroundAgentStatusResponse, ai as AgentResponse, Z as AgentJob, a4 as AgentJobResponse, ds as Skill, dC as SkillResponse, dV as SubAgent, dW as SubAgentResponse, eh as ToolDefinition, ei as ToolDefinitionResponse, a$ as AgentWidget, b0 as AgentWidgetResponse, dI as SkillUserConfigResponse, c4 as GetSkillsByIDsResponse, ca as GetToolDefinitionsByIDsResponse, aa as AgentJobsListResponse, cJ as ListAgentsResponse, cL as ListAgentsSummaryResponse, dG as SkillUserConfigListResponse, dQ as SkillsListResponse, e2 as SubAgentsListResponse, eq as ToolDefinitionsListResponse, cH as ListAgentWidgetsResponse, dk as ResolveSkillConfigResponse, eG as TriggerBackgroundAgentRequest, eH as TriggerBackgroundAgentResponse } from '../agent-models-D6WgsFMZ.js';
4
- export { aI as AgentSummary, dD as SkillUserConfig } from '../agent-models-D6WgsFMZ.js';
5
- import { ap as IntegrationProviderTS, aA as IntegrationTypeTS, e as ConnectIntegrationResponse, h as CreateSandboxRequest, i as CreateSandboxResponse, m as DeleteSandboxResponse, r as DisconnectIntegrationResponse, R as GetUserIntegrationResponse, O as GetSandboxResponse, ai as IntegrationCallbackResponse, aL as ListUserIntegrationsResponse, aJ as ListSandboxesResponse, aT as RefreshIntegrationResponse, aV as RunEmailTriageResponse, b9 as UpdateTriageEnabledResponse, b5 as UpdateSandboxRequest, b6 as UpdateSandboxResponse } from '../sandbox-DOxoM2Ge.js';
6
- export { aW as Sandbox, ba as UserIntegration } from '../sandbox-DOxoM2Ge.js';
3
+ import { A as Agent, bd as BackgroundAgentStatusResponse, ai as AgentResponse, Z as AgentJob, a4 as AgentJobResponse, dt as Skill, dD as SkillResponse, dW as SubAgent, dX as SubAgentResponse, ei as ToolDefinition, ej as ToolDefinitionResponse, b0 as AgentWidget, b1 as AgentWidgetResponse, dJ as SkillUserConfigResponse, c5 as GetSkillsByIDsResponse, cb as GetToolDefinitionsByIDsResponse, aa as AgentJobsListResponse, cK as ListAgentsResponse, cM as ListAgentsSummaryResponse, dH as SkillUserConfigListResponse, dR as SkillsListResponse, e3 as SubAgentsListResponse, er as ToolDefinitionsListResponse, cI as ListAgentWidgetsResponse, dl as ResolveSkillConfigResponse, eH as TriggerBackgroundAgentRequest, eI as TriggerBackgroundAgentResponse } from '../agent-models-vL3a7oFB.js';
4
+ export { aI as AgentSummary, dE as SkillUserConfig } from '../agent-models-vL3a7oFB.js';
5
+ import { ap as IntegrationProviderTS, aA as IntegrationTypeTS, e as ConnectIntegrationResponse, h as CreateSandboxRequest, i as CreateSandboxResponse, m as DeleteSandboxResponse, r as DisconnectIntegrationResponse, R as GetUserIntegrationResponse, O as GetSandboxResponse, ai as IntegrationCallbackResponse, aL as ListUserIntegrationsResponse, aJ as ListSandboxesResponse, aU as RefreshIntegrationResponse, aW as RunEmailTriageResponse, ba as UpdateTriageEnabledResponse, b6 as UpdateSandboxRequest, b7 as UpdateSandboxResponse } from '../sandbox-Djb8gA7e.js';
6
+ export { aX as Sandbox, bb as UserIntegration } from '../sandbox-Djb8gA7e.js';
7
7
  import { a as StructuredOutputRequest, b as StructuredOutputResponse } from '../structured-Bs0IjwLD.js';
8
8
  export { S as StructuredOutputProvider, c as StructuredOutputUsage } from '../structured-Bs0IjwLD.js';
9
9
  import { ChatMessage } from '@elqnt/chat/models';
@@ -33,8 +33,8 @@ declare function listSkillsApi(options: ApiClientOptions): Promise<ApiResponse<S
33
33
  declare function getSkillApi(skillId: string, options: ApiClientOptions): Promise<ApiResponse<SkillResponse>>;
34
34
  declare function getSkillsByIdsApi(ids: string[], options: ApiClientOptions): Promise<ApiResponse<GetSkillsByIDsResponse>>;
35
35
  declare function createSkillApi(skill: Partial<Skill>, options: ApiClientOptions): Promise<ApiResponse<SkillResponse>>;
36
- declare function updateSkillApi(skillId: string, skill: Partial<Skill>, options: ApiClientOptions): Promise<ApiResponse<SkillResponse>>;
37
- declare function deleteSkillApi(skillId: string, options: ApiClientOptions): Promise<ApiResponse<{
36
+ declare function updateSkillApi(_skillId: string, skill: Partial<Skill>, options: ApiClientOptions): Promise<ApiResponse<SkillResponse>>;
37
+ declare function deleteSkillApi(name: string, options: ApiClientOptions): Promise<ApiResponse<{
38
38
  success: boolean;
39
39
  metadata: ResponseMetadata;
40
40
  }>>;
package/dist/api/index.js CHANGED
@@ -90,7 +90,7 @@
90
90
 
91
91
 
92
92
 
93
- var _chunk3PFZRJ4Ajs = require('../chunk-3PFZRJ4A.js');
93
+ var _chunkENKX5CU7js = require('../chunk-ENKX5CU7.js');
94
94
 
95
95
 
96
96
 
@@ -182,5 +182,5 @@ var _chunk3PFZRJ4Ajs = require('../chunk-3PFZRJ4A.js');
182
182
 
183
183
 
184
184
 
185
- exports.checkBackgroundAgentStatusApi = _chunk3PFZRJ4Ajs.checkBackgroundAgentStatusApi; exports.completeSchedulerTaskApi = _chunk3PFZRJ4Ajs.completeSchedulerTaskApi; exports.connectIntegrationApi = _chunk3PFZRJ4Ajs.connectIntegrationApi; exports.createAgentApi = _chunk3PFZRJ4Ajs.createAgentApi; exports.createAgentJobApi = _chunk3PFZRJ4Ajs.createAgentJobApi; exports.createBackgroundChatApi = _chunk3PFZRJ4Ajs.createBackgroundChatApi; exports.createSandboxApi = _chunk3PFZRJ4Ajs.createSandboxApi; exports.createScheduleApi = _chunk3PFZRJ4Ajs.createScheduleApi; exports.createSchedulerTaskApi = _chunk3PFZRJ4Ajs.createSchedulerTaskApi; exports.createSkillApi = _chunk3PFZRJ4Ajs.createSkillApi; exports.createSubAgentApi = _chunk3PFZRJ4Ajs.createSubAgentApi; exports.createToolDefinitionApi = _chunk3PFZRJ4Ajs.createToolDefinitionApi; exports.createWidgetApi = _chunk3PFZRJ4Ajs.createWidgetApi; exports.deleteAgentApi = _chunk3PFZRJ4Ajs.deleteAgentApi; exports.deleteAgentJobApi = _chunk3PFZRJ4Ajs.deleteAgentJobApi; exports.deleteSandboxApi = _chunk3PFZRJ4Ajs.deleteSandboxApi; exports.deleteScheduleApi = _chunk3PFZRJ4Ajs.deleteScheduleApi; exports.deleteSchedulerTaskApi = _chunk3PFZRJ4Ajs.deleteSchedulerTaskApi; exports.deleteSkillApi = _chunk3PFZRJ4Ajs.deleteSkillApi; exports.deleteSkillUserConfigApi = _chunk3PFZRJ4Ajs.deleteSkillUserConfigApi; exports.deleteSubAgentApi = _chunk3PFZRJ4Ajs.deleteSubAgentApi; exports.deleteToolDefinitionApi = _chunk3PFZRJ4Ajs.deleteToolDefinitionApi; exports.deleteWidgetApi = _chunk3PFZRJ4Ajs.deleteWidgetApi; exports.disconnectIntegrationApi = _chunk3PFZRJ4Ajs.disconnectIntegrationApi; exports.exportAgentApi = _chunk3PFZRJ4Ajs.exportAgentApi; exports.getAgentApi = _chunk3PFZRJ4Ajs.getAgentApi; exports.getAgentByNameApi = _chunk3PFZRJ4Ajs.getAgentByNameApi; exports.getAgentCSATAnalyticsApi = _chunk3PFZRJ4Ajs.getAgentCSATAnalyticsApi; exports.getAgentChatsAnalyticsApi = _chunk3PFZRJ4Ajs.getAgentChatsAnalyticsApi; exports.getAgentJobApi = _chunk3PFZRJ4Ajs.getAgentJobApi; exports.getAgentListAnalyticsApi = _chunk3PFZRJ4Ajs.getAgentListAnalyticsApi; exports.getDefaultAgentApi = _chunk3PFZRJ4Ajs.getDefaultAgentApi; exports.getDefaultWidgetApi = _chunk3PFZRJ4Ajs.getDefaultWidgetApi; exports.getIntegrationApi = _chunk3PFZRJ4Ajs.getIntegrationApi; exports.getSandboxApi = _chunk3PFZRJ4Ajs.getSandboxApi; exports.getScheduleApi = _chunk3PFZRJ4Ajs.getScheduleApi; exports.getSchedulerTaskApi = _chunk3PFZRJ4Ajs.getSchedulerTaskApi; exports.getSkillApi = _chunk3PFZRJ4Ajs.getSkillApi; exports.getSkillCategoriesApi = _chunk3PFZRJ4Ajs.getSkillCategoriesApi; exports.getSkillUserConfigApi = _chunk3PFZRJ4Ajs.getSkillUserConfigApi; exports.getSkillsByIdsApi = _chunk3PFZRJ4Ajs.getSkillsByIdsApi; exports.getSubAgentApi = _chunk3PFZRJ4Ajs.getSubAgentApi; exports.getTaskOutcomesApi = _chunk3PFZRJ4Ajs.getTaskOutcomesApi; exports.getToolDefinitionApi = _chunk3PFZRJ4Ajs.getToolDefinitionApi; exports.getToolDefinitionsByIdsApi = _chunk3PFZRJ4Ajs.getToolDefinitionsByIdsApi; exports.getWidgetApi = _chunk3PFZRJ4Ajs.getWidgetApi; exports.getWidgetByWidgetIdApi = _chunk3PFZRJ4Ajs.getWidgetByWidgetIdApi; exports.importAgentApi = _chunk3PFZRJ4Ajs.importAgentApi; exports.integrationCallbackApi = _chunk3PFZRJ4Ajs.integrationCallbackApi; exports.listAgentJobsApi = _chunk3PFZRJ4Ajs.listAgentJobsApi; exports.listAgentsApi = _chunk3PFZRJ4Ajs.listAgentsApi; exports.listAgentsSummaryApi = _chunk3PFZRJ4Ajs.listAgentsSummaryApi; exports.listIntegrationsApi = _chunk3PFZRJ4Ajs.listIntegrationsApi; exports.listSandboxesApi = _chunk3PFZRJ4Ajs.listSandboxesApi; exports.listSchedulerTasksApi = _chunk3PFZRJ4Ajs.listSchedulerTasksApi; exports.listSchedulesApi = _chunk3PFZRJ4Ajs.listSchedulesApi; exports.listSkillUserConfigsApi = _chunk3PFZRJ4Ajs.listSkillUserConfigsApi; exports.listSkillsApi = _chunk3PFZRJ4Ajs.listSkillsApi; exports.listSubAgentsApi = _chunk3PFZRJ4Ajs.listSubAgentsApi; exports.listToolDefinitionsApi = _chunk3PFZRJ4Ajs.listToolDefinitionsApi; exports.listWidgetsApi = _chunk3PFZRJ4Ajs.listWidgetsApi; exports.loadChatApi = _chunk3PFZRJ4Ajs.loadChatApi; exports.pauseAgentJobApi = _chunk3PFZRJ4Ajs.pauseAgentJobApi; exports.pauseScheduleApi = _chunk3PFZRJ4Ajs.pauseScheduleApi; exports.provisionAgentsApi = _chunk3PFZRJ4Ajs.provisionAgentsApi; exports.refreshIntegrationApi = _chunk3PFZRJ4Ajs.refreshIntegrationApi; exports.resolveSkillConfigApi = _chunk3PFZRJ4Ajs.resolveSkillConfigApi; exports.resumeAgentJobApi = _chunk3PFZRJ4Ajs.resumeAgentJobApi; exports.resumeScheduleApi = _chunk3PFZRJ4Ajs.resumeScheduleApi; exports.runEmailTriageApi = _chunk3PFZRJ4Ajs.runEmailTriageApi; exports.runScheduleApi = _chunk3PFZRJ4Ajs.runScheduleApi; exports.searchSkillsApi = _chunk3PFZRJ4Ajs.searchSkillsApi; exports.sendChatMessageApi = _chunk3PFZRJ4Ajs.sendChatMessageApi; exports.setDefaultWidgetApi = _chunk3PFZRJ4Ajs.setDefaultWidgetApi; exports.snoozeSchedulerTaskApi = _chunk3PFZRJ4Ajs.snoozeSchedulerTaskApi; exports.startSchedulerTaskApi = _chunk3PFZRJ4Ajs.startSchedulerTaskApi; exports.structuredOutputApi = _chunk3PFZRJ4Ajs.structuredOutputApi; exports.triggerBackgroundAgentApi = _chunk3PFZRJ4Ajs.triggerBackgroundAgentApi; exports.updateAgentApi = _chunk3PFZRJ4Ajs.updateAgentApi; exports.updateAgentJobApi = _chunk3PFZRJ4Ajs.updateAgentJobApi; exports.updateIntegrationTriageApi = _chunk3PFZRJ4Ajs.updateIntegrationTriageApi; exports.updateSandboxApi = _chunk3PFZRJ4Ajs.updateSandboxApi; exports.updateScheduleApi = _chunk3PFZRJ4Ajs.updateScheduleApi; exports.updateSchedulerTaskApi = _chunk3PFZRJ4Ajs.updateSchedulerTaskApi; exports.updateSkillApi = _chunk3PFZRJ4Ajs.updateSkillApi; exports.updateSkillOrgConfigApi = _chunk3PFZRJ4Ajs.updateSkillOrgConfigApi; exports.updateSkillUserConfigApi = _chunk3PFZRJ4Ajs.updateSkillUserConfigApi; exports.updateSubAgentApi = _chunk3PFZRJ4Ajs.updateSubAgentApi; exports.updateToolDefinitionApi = _chunk3PFZRJ4Ajs.updateToolDefinitionApi; exports.updateWidgetApi = _chunk3PFZRJ4Ajs.updateWidgetApi;
185
+ exports.checkBackgroundAgentStatusApi = _chunkENKX5CU7js.checkBackgroundAgentStatusApi; exports.completeSchedulerTaskApi = _chunkENKX5CU7js.completeSchedulerTaskApi; exports.connectIntegrationApi = _chunkENKX5CU7js.connectIntegrationApi; exports.createAgentApi = _chunkENKX5CU7js.createAgentApi; exports.createAgentJobApi = _chunkENKX5CU7js.createAgentJobApi; exports.createBackgroundChatApi = _chunkENKX5CU7js.createBackgroundChatApi; exports.createSandboxApi = _chunkENKX5CU7js.createSandboxApi; exports.createScheduleApi = _chunkENKX5CU7js.createScheduleApi; exports.createSchedulerTaskApi = _chunkENKX5CU7js.createSchedulerTaskApi; exports.createSkillApi = _chunkENKX5CU7js.createSkillApi; exports.createSubAgentApi = _chunkENKX5CU7js.createSubAgentApi; exports.createToolDefinitionApi = _chunkENKX5CU7js.createToolDefinitionApi; exports.createWidgetApi = _chunkENKX5CU7js.createWidgetApi; exports.deleteAgentApi = _chunkENKX5CU7js.deleteAgentApi; exports.deleteAgentJobApi = _chunkENKX5CU7js.deleteAgentJobApi; exports.deleteSandboxApi = _chunkENKX5CU7js.deleteSandboxApi; exports.deleteScheduleApi = _chunkENKX5CU7js.deleteScheduleApi; exports.deleteSchedulerTaskApi = _chunkENKX5CU7js.deleteSchedulerTaskApi; exports.deleteSkillApi = _chunkENKX5CU7js.deleteSkillApi; exports.deleteSkillUserConfigApi = _chunkENKX5CU7js.deleteSkillUserConfigApi; exports.deleteSubAgentApi = _chunkENKX5CU7js.deleteSubAgentApi; exports.deleteToolDefinitionApi = _chunkENKX5CU7js.deleteToolDefinitionApi; exports.deleteWidgetApi = _chunkENKX5CU7js.deleteWidgetApi; exports.disconnectIntegrationApi = _chunkENKX5CU7js.disconnectIntegrationApi; exports.exportAgentApi = _chunkENKX5CU7js.exportAgentApi; exports.getAgentApi = _chunkENKX5CU7js.getAgentApi; exports.getAgentByNameApi = _chunkENKX5CU7js.getAgentByNameApi; exports.getAgentCSATAnalyticsApi = _chunkENKX5CU7js.getAgentCSATAnalyticsApi; exports.getAgentChatsAnalyticsApi = _chunkENKX5CU7js.getAgentChatsAnalyticsApi; exports.getAgentJobApi = _chunkENKX5CU7js.getAgentJobApi; exports.getAgentListAnalyticsApi = _chunkENKX5CU7js.getAgentListAnalyticsApi; exports.getDefaultAgentApi = _chunkENKX5CU7js.getDefaultAgentApi; exports.getDefaultWidgetApi = _chunkENKX5CU7js.getDefaultWidgetApi; exports.getIntegrationApi = _chunkENKX5CU7js.getIntegrationApi; exports.getSandboxApi = _chunkENKX5CU7js.getSandboxApi; exports.getScheduleApi = _chunkENKX5CU7js.getScheduleApi; exports.getSchedulerTaskApi = _chunkENKX5CU7js.getSchedulerTaskApi; exports.getSkillApi = _chunkENKX5CU7js.getSkillApi; exports.getSkillCategoriesApi = _chunkENKX5CU7js.getSkillCategoriesApi; exports.getSkillUserConfigApi = _chunkENKX5CU7js.getSkillUserConfigApi; exports.getSkillsByIdsApi = _chunkENKX5CU7js.getSkillsByIdsApi; exports.getSubAgentApi = _chunkENKX5CU7js.getSubAgentApi; exports.getTaskOutcomesApi = _chunkENKX5CU7js.getTaskOutcomesApi; exports.getToolDefinitionApi = _chunkENKX5CU7js.getToolDefinitionApi; exports.getToolDefinitionsByIdsApi = _chunkENKX5CU7js.getToolDefinitionsByIdsApi; exports.getWidgetApi = _chunkENKX5CU7js.getWidgetApi; exports.getWidgetByWidgetIdApi = _chunkENKX5CU7js.getWidgetByWidgetIdApi; exports.importAgentApi = _chunkENKX5CU7js.importAgentApi; exports.integrationCallbackApi = _chunkENKX5CU7js.integrationCallbackApi; exports.listAgentJobsApi = _chunkENKX5CU7js.listAgentJobsApi; exports.listAgentsApi = _chunkENKX5CU7js.listAgentsApi; exports.listAgentsSummaryApi = _chunkENKX5CU7js.listAgentsSummaryApi; exports.listIntegrationsApi = _chunkENKX5CU7js.listIntegrationsApi; exports.listSandboxesApi = _chunkENKX5CU7js.listSandboxesApi; exports.listSchedulerTasksApi = _chunkENKX5CU7js.listSchedulerTasksApi; exports.listSchedulesApi = _chunkENKX5CU7js.listSchedulesApi; exports.listSkillUserConfigsApi = _chunkENKX5CU7js.listSkillUserConfigsApi; exports.listSkillsApi = _chunkENKX5CU7js.listSkillsApi; exports.listSubAgentsApi = _chunkENKX5CU7js.listSubAgentsApi; exports.listToolDefinitionsApi = _chunkENKX5CU7js.listToolDefinitionsApi; exports.listWidgetsApi = _chunkENKX5CU7js.listWidgetsApi; exports.loadChatApi = _chunkENKX5CU7js.loadChatApi; exports.pauseAgentJobApi = _chunkENKX5CU7js.pauseAgentJobApi; exports.pauseScheduleApi = _chunkENKX5CU7js.pauseScheduleApi; exports.provisionAgentsApi = _chunkENKX5CU7js.provisionAgentsApi; exports.refreshIntegrationApi = _chunkENKX5CU7js.refreshIntegrationApi; exports.resolveSkillConfigApi = _chunkENKX5CU7js.resolveSkillConfigApi; exports.resumeAgentJobApi = _chunkENKX5CU7js.resumeAgentJobApi; exports.resumeScheduleApi = _chunkENKX5CU7js.resumeScheduleApi; exports.runEmailTriageApi = _chunkENKX5CU7js.runEmailTriageApi; exports.runScheduleApi = _chunkENKX5CU7js.runScheduleApi; exports.searchSkillsApi = _chunkENKX5CU7js.searchSkillsApi; exports.sendChatMessageApi = _chunkENKX5CU7js.sendChatMessageApi; exports.setDefaultWidgetApi = _chunkENKX5CU7js.setDefaultWidgetApi; exports.snoozeSchedulerTaskApi = _chunkENKX5CU7js.snoozeSchedulerTaskApi; exports.startSchedulerTaskApi = _chunkENKX5CU7js.startSchedulerTaskApi; exports.structuredOutputApi = _chunkENKX5CU7js.structuredOutputApi; exports.triggerBackgroundAgentApi = _chunkENKX5CU7js.triggerBackgroundAgentApi; exports.updateAgentApi = _chunkENKX5CU7js.updateAgentApi; exports.updateAgentJobApi = _chunkENKX5CU7js.updateAgentJobApi; exports.updateIntegrationTriageApi = _chunkENKX5CU7js.updateIntegrationTriageApi; exports.updateSandboxApi = _chunkENKX5CU7js.updateSandboxApi; exports.updateScheduleApi = _chunkENKX5CU7js.updateScheduleApi; exports.updateSchedulerTaskApi = _chunkENKX5CU7js.updateSchedulerTaskApi; exports.updateSkillApi = _chunkENKX5CU7js.updateSkillApi; exports.updateSkillOrgConfigApi = _chunkENKX5CU7js.updateSkillOrgConfigApi; exports.updateSkillUserConfigApi = _chunkENKX5CU7js.updateSkillUserConfigApi; exports.updateSubAgentApi = _chunkENKX5CU7js.updateSubAgentApi; exports.updateToolDefinitionApi = _chunkENKX5CU7js.updateToolDefinitionApi; exports.updateWidgetApi = _chunkENKX5CU7js.updateWidgetApi;
186
186
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["/home/runner/work/eloquent/eloquent/packages/@elqnt/agents/dist/api/index.js"],"names":[],"mappings":"AAAA,qFAAY;AACZ;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,u2LAAC","file":"/home/runner/work/eloquent/eloquent/packages/@elqnt/agents/dist/api/index.js"}
1
+ {"version":3,"sources":["/Users/ahmed/workspace/eloquent/eloquent/packages/@elqnt/agents/dist/api/index.js"],"names":[],"mappings":"AAAA,qFAAY;AACZ;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,u2LAAC","file":"/Users/ahmed/workspace/eloquent/eloquent/packages/@elqnt/agents/dist/api/index.js"}
@@ -90,7 +90,7 @@ import {
90
90
  updateSubAgentApi,
91
91
  updateToolDefinitionApi,
92
92
  updateWidgetApi
93
- } from "../chunk-L5FLJB3H.mjs";
93
+ } from "../chunk-OQ6FJAI2.mjs";
94
94
  export {
95
95
  checkBackgroundAgentStatusApi,
96
96
  completeSchedulerTaskApi,
@@ -1,6 +1,6 @@
1
1
  import { ApiResponse } from '@elqnt/api-client';
2
2
  import { ResponseMetadata } from '@elqnt/types';
3
- import { bc as BackgroundAgentStatusResponse, Z as AgentJob, a4 as AgentJobResponse, A as Agent, ai as AgentResponse, ds as Skill, dC as SkillResponse, dV as SubAgent, dW as SubAgentResponse, eh as ToolDefinition, ei as ToolDefinitionResponse, a$ as AgentWidget, b0 as AgentWidgetResponse, dI as SkillUserConfigResponse, c4 as GetSkillsByIDsResponse, ca as GetToolDefinitionsByIDsResponse, aa as AgentJobsListResponse, cJ as ListAgentsResponse, cL as ListAgentsSummaryResponse, dG as SkillUserConfigListResponse, dQ as SkillsListResponse, e2 as SubAgentsListResponse, eq as ToolDefinitionsListResponse, cH as ListAgentWidgetsResponse, dk as ResolveSkillConfigResponse, eG as TriggerBackgroundAgentRequest, eH as TriggerBackgroundAgentResponse } from '../agent-models-D6WgsFMZ.mjs';
3
+ import { bd as BackgroundAgentStatusResponse, Z as AgentJob, a4 as AgentJobResponse, A as Agent, ai as AgentResponse, dt as Skill, dD as SkillResponse, dW as SubAgent, dX as SubAgentResponse, ei as ToolDefinition, ej as ToolDefinitionResponse, b0 as AgentWidget, b1 as AgentWidgetResponse, dJ as SkillUserConfigResponse, c5 as GetSkillsByIDsResponse, cb as GetToolDefinitionsByIDsResponse, aa as AgentJobsListResponse, cK as ListAgentsResponse, cM as ListAgentsSummaryResponse, dH as SkillUserConfigListResponse, dR as SkillsListResponse, e3 as SubAgentsListResponse, er as ToolDefinitionsListResponse, cI as ListAgentWidgetsResponse, dl as ResolveSkillConfigResponse, eH as TriggerBackgroundAgentRequest, eI as TriggerBackgroundAgentResponse } from '../agent-models-vL3a7oFB.mjs';
4
4
  import { a as StructuredOutputRequest, b as StructuredOutputResponse } from '../structured-Bs0IjwLD.mjs';
5
5
 
6
6
  /**
@@ -56,8 +56,8 @@ declare function listSkillsServer(options: ServerApiOptions): Promise<ApiRespons
56
56
  declare function getSkillServer(skillId: string, options: ServerApiOptions): Promise<ApiResponse<SkillResponse>>;
57
57
  declare function getSkillsByIdsServer(ids: string[], options: ServerApiOptions): Promise<ApiResponse<GetSkillsByIDsResponse>>;
58
58
  declare function createSkillServer(skill: Partial<Skill>, options: ServerApiOptions): Promise<ApiResponse<SkillResponse>>;
59
- declare function updateSkillServer(skillId: string, skill: Partial<Skill>, options: ServerApiOptions): Promise<ApiResponse<SkillResponse>>;
60
- declare function deleteSkillServer(skillId: string, options: ServerApiOptions): Promise<ApiResponse<{
59
+ declare function updateSkillServer(_skillId: string, skill: Partial<Skill>, options: ServerApiOptions): Promise<ApiResponse<SkillResponse>>;
60
+ declare function deleteSkillServer(name: string, options: ServerApiOptions): Promise<ApiResponse<{
61
61
  success: boolean;
62
62
  metadata: ResponseMetadata;
63
63
  }>>;
@@ -1,6 +1,6 @@
1
1
  import { ApiResponse } from '@elqnt/api-client';
2
2
  import { ResponseMetadata } from '@elqnt/types';
3
- import { bc as BackgroundAgentStatusResponse, Z as AgentJob, a4 as AgentJobResponse, A as Agent, ai as AgentResponse, ds as Skill, dC as SkillResponse, dV as SubAgent, dW as SubAgentResponse, eh as ToolDefinition, ei as ToolDefinitionResponse, a$ as AgentWidget, b0 as AgentWidgetResponse, dI as SkillUserConfigResponse, c4 as GetSkillsByIDsResponse, ca as GetToolDefinitionsByIDsResponse, aa as AgentJobsListResponse, cJ as ListAgentsResponse, cL as ListAgentsSummaryResponse, dG as SkillUserConfigListResponse, dQ as SkillsListResponse, e2 as SubAgentsListResponse, eq as ToolDefinitionsListResponse, cH as ListAgentWidgetsResponse, dk as ResolveSkillConfigResponse, eG as TriggerBackgroundAgentRequest, eH as TriggerBackgroundAgentResponse } from '../agent-models-D6WgsFMZ.js';
3
+ import { bd as BackgroundAgentStatusResponse, Z as AgentJob, a4 as AgentJobResponse, A as Agent, ai as AgentResponse, dt as Skill, dD as SkillResponse, dW as SubAgent, dX as SubAgentResponse, ei as ToolDefinition, ej as ToolDefinitionResponse, b0 as AgentWidget, b1 as AgentWidgetResponse, dJ as SkillUserConfigResponse, c5 as GetSkillsByIDsResponse, cb as GetToolDefinitionsByIDsResponse, aa as AgentJobsListResponse, cK as ListAgentsResponse, cM as ListAgentsSummaryResponse, dH as SkillUserConfigListResponse, dR as SkillsListResponse, e3 as SubAgentsListResponse, er as ToolDefinitionsListResponse, cI as ListAgentWidgetsResponse, dl as ResolveSkillConfigResponse, eH as TriggerBackgroundAgentRequest, eI as TriggerBackgroundAgentResponse } from '../agent-models-vL3a7oFB.js';
4
4
  import { a as StructuredOutputRequest, b as StructuredOutputResponse } from '../structured-Bs0IjwLD.js';
5
5
 
6
6
  /**
@@ -56,8 +56,8 @@ declare function listSkillsServer(options: ServerApiOptions): Promise<ApiRespons
56
56
  declare function getSkillServer(skillId: string, options: ServerApiOptions): Promise<ApiResponse<SkillResponse>>;
57
57
  declare function getSkillsByIdsServer(ids: string[], options: ServerApiOptions): Promise<ApiResponse<GetSkillsByIDsResponse>>;
58
58
  declare function createSkillServer(skill: Partial<Skill>, options: ServerApiOptions): Promise<ApiResponse<SkillResponse>>;
59
- declare function updateSkillServer(skillId: string, skill: Partial<Skill>, options: ServerApiOptions): Promise<ApiResponse<SkillResponse>>;
60
- declare function deleteSkillServer(skillId: string, options: ServerApiOptions): Promise<ApiResponse<{
59
+ declare function updateSkillServer(_skillId: string, skill: Partial<Skill>, options: ServerApiOptions): Promise<ApiResponse<SkillResponse>>;
60
+ declare function deleteSkillServer(name: string, options: ServerApiOptions): Promise<ApiResponse<{
61
61
  success: boolean;
62
62
  metadata: ResponseMetadata;
63
63
  }>>;
@@ -1,4 +1,4 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});"use client";
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } }"use client";
2
2
 
3
3
  // api/server.ts
4
4
  var _server = require('@elqnt/api-client/server');
@@ -46,13 +46,13 @@ async function getSkillsByIdsServer(ids, options) {
46
46
  return _server.serverApiRequest.call(void 0, "/api/v1/skills/by-ids", buildRequestOptions(options, "POST", { ids }));
47
47
  }
48
48
  async function createSkillServer(skill, options) {
49
- return _server.serverApiRequest.call(void 0, "/api/v1/skills", buildRequestOptions(options, "POST", { skill }));
49
+ return _server.serverApiRequest.call(void 0, "/api/v1/skills", buildRequestOptions(options, "POST", skill));
50
50
  }
51
- async function updateSkillServer(skillId, skill, options) {
52
- return _server.serverApiRequest.call(void 0, `/api/v1/skills/${skillId}`, buildRequestOptions(options, "PUT", { skill }));
51
+ async function updateSkillServer(_skillId, skill, options) {
52
+ return _server.serverApiRequest.call(void 0, `/api/v1/skills/by-name?name=${encodeURIComponent(_nullishCoalesce(skill.name, () => ( "")))}`, buildRequestOptions(options, "PUT", skill));
53
53
  }
54
- async function deleteSkillServer(skillId, options) {
55
- return _server.serverApiRequest.call(void 0, `/api/v1/skills/${skillId}`, buildRequestOptions(options, "DELETE"));
54
+ async function deleteSkillServer(name, options) {
55
+ return _server.serverApiRequest.call(void 0, `/api/v1/skills/by-name?name=${encodeURIComponent(name)}`, buildRequestOptions(options, "DELETE"));
56
56
  }
57
57
  async function getSkillCategoriesServer(options) {
58
58
  return _server.serverApiRequest.call(void 0, "/api/v1/skills/categories", buildRequestOptions(options, "GET"));