@inkeep/agents-core 0.0.0-dev-20251010204118 → 0.0.0-dev-20251010210603
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/{chunk-TCLX6C3C.js → chunk-H6PMWHNV.js} +14 -7
- package/dist/client-exports.cjs +13 -7
- package/dist/client-exports.d.cts +1 -1
- package/dist/client-exports.d.ts +1 -1
- package/dist/client-exports.js +1 -1
- package/dist/index.cjs +13 -7
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/{signoz-queries-CifqdbnO.d.cts → signoz-queries-BuiipZTk.d.cts} +10 -5
- package/dist/{signoz-queries-CifqdbnO.d.ts → signoz-queries-BuiipZTk.d.ts} +10 -5
- package/package.json +1 -1
|
@@ -9,7 +9,8 @@ var SPAN_NAMES = {
|
|
|
9
9
|
CONTEXT_RESOLUTION: "context-resolver.resolve_single_fetch_definition",
|
|
10
10
|
CONTEXT_HANDLE: "context.handle_context_resolution",
|
|
11
11
|
AGENT_GENERATION: "agent.generate",
|
|
12
|
-
CONTEXT_FETCHER: "context-fetcher.http-request"
|
|
12
|
+
CONTEXT_FETCHER: "context-fetcher.http-request",
|
|
13
|
+
ARTIFACT_PROCESSING: "graph_session.process_artifact"
|
|
13
14
|
};
|
|
14
15
|
var AI_OPERATIONS = {
|
|
15
16
|
GENERATE_TEXT: "ai.generateText.doGenerate",
|
|
@@ -78,7 +79,15 @@ var SPAN_KEYS = {
|
|
|
78
79
|
// Core attributes
|
|
79
80
|
NAME: "name",
|
|
80
81
|
PARENT_SPAN_ID: "parentSpanID",
|
|
81
|
-
CONVERSATION_ID: "conversation.id"
|
|
82
|
+
CONVERSATION_ID: "conversation.id",
|
|
83
|
+
// Artifact processing attributes
|
|
84
|
+
ARTIFACT_ID: "artifact.id",
|
|
85
|
+
ARTIFACT_TYPE: "artifact.type",
|
|
86
|
+
ARTIFACT_AGENT_ID: "artifact.agent_id",
|
|
87
|
+
ARTIFACT_TOOL_CALL_ID: "artifact.tool_call_id",
|
|
88
|
+
ARTIFACT_DATA: "artifact.data",
|
|
89
|
+
ARTIFACT_NAME: "artifact.name",
|
|
90
|
+
ARTIFACT_DESCRIPTION: "artifact.description"
|
|
82
91
|
};
|
|
83
92
|
var UNKNOWN_VALUE = "unknown";
|
|
84
93
|
var ACTIVITY_TYPES = {
|
|
@@ -109,9 +118,6 @@ var ACTIVITY_NAMES = {
|
|
|
109
118
|
UNKNOWN_AGENT: "Unknown Agent",
|
|
110
119
|
USER: "User"
|
|
111
120
|
};
|
|
112
|
-
var TOOL_NAMES = {
|
|
113
|
-
SAVE_TOOL_RESULT: "save_tool_result"
|
|
114
|
-
};
|
|
115
121
|
var AI_TOOL_TYPES = {
|
|
116
122
|
MCP: "mcp",
|
|
117
123
|
TRANSFER: "transfer",
|
|
@@ -218,7 +224,8 @@ var QUERY_EXPRESSIONS = {
|
|
|
218
224
|
CONTEXT_FETCHERS: "contextFetchers",
|
|
219
225
|
DURATION_SPANS: "durationSpans",
|
|
220
226
|
AGENT_GENERATIONS: "agentGenerations",
|
|
221
|
-
SPANS_WITH_ERRORS: "spansWithErrors"
|
|
227
|
+
SPANS_WITH_ERRORS: "spansWithErrors",
|
|
228
|
+
ARTIFACT_PROCESSING: "artifactProcessing"
|
|
222
229
|
};
|
|
223
230
|
var REDUCE_OPERATIONS = {
|
|
224
231
|
SUM: "sum",
|
|
@@ -268,4 +275,4 @@ var QUERY_DEFAULTS = {
|
|
|
268
275
|
EMPTY_GROUP_BY: []
|
|
269
276
|
};
|
|
270
277
|
|
|
271
|
-
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, DATA_SOURCES, DATA_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES,
|
|
278
|
+
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, DATA_SOURCES, DATA_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, UNKNOWN_VALUE };
|
package/dist/client-exports.cjs
CHANGED
|
@@ -1696,7 +1696,8 @@ var SPAN_NAMES = {
|
|
|
1696
1696
|
CONTEXT_RESOLUTION: "context-resolver.resolve_single_fetch_definition",
|
|
1697
1697
|
CONTEXT_HANDLE: "context.handle_context_resolution",
|
|
1698
1698
|
AGENT_GENERATION: "agent.generate",
|
|
1699
|
-
CONTEXT_FETCHER: "context-fetcher.http-request"
|
|
1699
|
+
CONTEXT_FETCHER: "context-fetcher.http-request",
|
|
1700
|
+
ARTIFACT_PROCESSING: "graph_session.process_artifact"
|
|
1700
1701
|
};
|
|
1701
1702
|
var AI_OPERATIONS = {
|
|
1702
1703
|
GENERATE_TEXT: "ai.generateText.doGenerate",
|
|
@@ -1765,7 +1766,15 @@ var SPAN_KEYS = {
|
|
|
1765
1766
|
// Core attributes
|
|
1766
1767
|
NAME: "name",
|
|
1767
1768
|
PARENT_SPAN_ID: "parentSpanID",
|
|
1768
|
-
CONVERSATION_ID: "conversation.id"
|
|
1769
|
+
CONVERSATION_ID: "conversation.id",
|
|
1770
|
+
// Artifact processing attributes
|
|
1771
|
+
ARTIFACT_ID: "artifact.id",
|
|
1772
|
+
ARTIFACT_TYPE: "artifact.type",
|
|
1773
|
+
ARTIFACT_AGENT_ID: "artifact.agent_id",
|
|
1774
|
+
ARTIFACT_TOOL_CALL_ID: "artifact.tool_call_id",
|
|
1775
|
+
ARTIFACT_DATA: "artifact.data",
|
|
1776
|
+
ARTIFACT_NAME: "artifact.name",
|
|
1777
|
+
ARTIFACT_DESCRIPTION: "artifact.description"
|
|
1769
1778
|
};
|
|
1770
1779
|
var UNKNOWN_VALUE = "unknown";
|
|
1771
1780
|
var ACTIVITY_TYPES = {
|
|
@@ -1796,9 +1805,6 @@ var ACTIVITY_NAMES = {
|
|
|
1796
1805
|
UNKNOWN_AGENT: "Unknown Agent",
|
|
1797
1806
|
USER: "User"
|
|
1798
1807
|
};
|
|
1799
|
-
var TOOL_NAMES = {
|
|
1800
|
-
SAVE_TOOL_RESULT: "save_tool_result"
|
|
1801
|
-
};
|
|
1802
1808
|
var AI_TOOL_TYPES = {
|
|
1803
1809
|
MCP: "mcp",
|
|
1804
1810
|
TRANSFER: "transfer",
|
|
@@ -1905,7 +1911,8 @@ var QUERY_EXPRESSIONS = {
|
|
|
1905
1911
|
CONTEXT_FETCHERS: "contextFetchers",
|
|
1906
1912
|
DURATION_SPANS: "durationSpans",
|
|
1907
1913
|
AGENT_GENERATIONS: "agentGenerations",
|
|
1908
|
-
SPANS_WITH_ERRORS: "spansWithErrors"
|
|
1914
|
+
SPANS_WITH_ERRORS: "spansWithErrors",
|
|
1915
|
+
ARTIFACT_PROCESSING: "artifactProcessing"
|
|
1909
1916
|
};
|
|
1910
1917
|
var REDUCE_OPERATIONS = {
|
|
1911
1918
|
SUM: "sum",
|
|
@@ -2174,7 +2181,6 @@ exports.SPAN_NAMES = SPAN_NAMES;
|
|
|
2174
2181
|
exports.SandboxConfigSchema = SandboxConfigSchema;
|
|
2175
2182
|
exports.SingleResponseSchema = SingleResponseSchema;
|
|
2176
2183
|
exports.StopWhenSchema = StopWhenSchema;
|
|
2177
|
-
exports.TOOL_NAMES = TOOL_NAMES;
|
|
2178
2184
|
exports.TRANSFER_FROM_SUB_AGENT_ID = TRANSFER_FROM_SUB_AGENT_ID;
|
|
2179
2185
|
exports.TRANSFER_TO_SUB_AGENT_ID = TRANSFER_TO_SUB_AGENT_ID;
|
|
2180
2186
|
exports.TenantParamsSchema = TenantParamsSchema2;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS,
|
|
1
|
+
export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS, o as AGGREGATE_OPERATORS, A as AI_OPERATIONS, i as AI_TOOL_TYPES, n as DATA_SOURCES, j as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, l as ORDER_DIRECTIONS, P as PANEL_TYPES, p as QUERY_DEFAULTS, k as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, m as QUERY_TYPES, R as REDUCE_OPERATIONS, d as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE } from './signoz-queries-BuiipZTk.cjs';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullGraphAgentInsertSchema } from './utility-CyPQ1tC_.cjs';
|
|
4
4
|
export { e as AgentStopWhen, b as AgentStopWhenSchema, g as CredentialStoreType, i as FunctionApiSelectSchema, j as FunctionApiUpdateSchema, d as GraphStopWhen, G as GraphStopWhenSchema, h as MCPTransportType, f as ModelSettings, M as ModelSettingsSchema, k as SandboxConfigSchema, c as StopWhen, S as StopWhenSchema } from './utility-CyPQ1tC_.cjs';
|
package/dist/client-exports.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS,
|
|
1
|
+
export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS, o as AGGREGATE_OPERATORS, A as AI_OPERATIONS, i as AI_TOOL_TYPES, n as DATA_SOURCES, j as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, l as ORDER_DIRECTIONS, P as PANEL_TYPES, p as QUERY_DEFAULTS, k as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, m as QUERY_TYPES, R as REDUCE_OPERATIONS, d as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE } from './signoz-queries-BuiipZTk.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullGraphAgentInsertSchema } from './utility-CyPQ1tC_.js';
|
|
4
4
|
export { e as AgentStopWhen, b as AgentStopWhenSchema, g as CredentialStoreType, i as FunctionApiSelectSchema, j as FunctionApiUpdateSchema, d as GraphStopWhen, G as GraphStopWhenSchema, h as MCPTransportType, f as ModelSettings, M as ModelSettingsSchema, k as SandboxConfigSchema, c as StopWhen, S as StopWhenSchema } from './utility-CyPQ1tC_.js';
|
package/dist/client-exports.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, DATA_SOURCES, DATA_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES,
|
|
1
|
+
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, DATA_SOURCES, DATA_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, UNKNOWN_VALUE } from './chunk-H6PMWHNV.js';
|
|
2
2
|
import { ModelSettingsSchema, FullGraphAgentInsertSchema, ArtifactComponentApiInsertSchema } from './chunk-E4SFK6AI.js';
|
|
3
3
|
export { SubAgentStopWhenSchema as AgentStopWhenSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, GraphStopWhenSchema, ModelSettingsSchema, SandboxConfigSchema, StopWhenSchema, validatePropsAsJsonSchema } from './chunk-E4SFK6AI.js';
|
|
4
4
|
import { CredentialStoreType } from './chunk-YFHT5M2R.js';
|
package/dist/index.cjs
CHANGED
|
@@ -76,7 +76,8 @@ var SPAN_NAMES = {
|
|
|
76
76
|
CONTEXT_RESOLUTION: "context-resolver.resolve_single_fetch_definition",
|
|
77
77
|
CONTEXT_HANDLE: "context.handle_context_resolution",
|
|
78
78
|
AGENT_GENERATION: "agent.generate",
|
|
79
|
-
CONTEXT_FETCHER: "context-fetcher.http-request"
|
|
79
|
+
CONTEXT_FETCHER: "context-fetcher.http-request",
|
|
80
|
+
ARTIFACT_PROCESSING: "graph_session.process_artifact"
|
|
80
81
|
};
|
|
81
82
|
var AI_OPERATIONS = {
|
|
82
83
|
GENERATE_TEXT: "ai.generateText.doGenerate",
|
|
@@ -145,7 +146,15 @@ var SPAN_KEYS = {
|
|
|
145
146
|
// Core attributes
|
|
146
147
|
NAME: "name",
|
|
147
148
|
PARENT_SPAN_ID: "parentSpanID",
|
|
148
|
-
CONVERSATION_ID: "conversation.id"
|
|
149
|
+
CONVERSATION_ID: "conversation.id",
|
|
150
|
+
// Artifact processing attributes
|
|
151
|
+
ARTIFACT_ID: "artifact.id",
|
|
152
|
+
ARTIFACT_TYPE: "artifact.type",
|
|
153
|
+
ARTIFACT_AGENT_ID: "artifact.agent_id",
|
|
154
|
+
ARTIFACT_TOOL_CALL_ID: "artifact.tool_call_id",
|
|
155
|
+
ARTIFACT_DATA: "artifact.data",
|
|
156
|
+
ARTIFACT_NAME: "artifact.name",
|
|
157
|
+
ARTIFACT_DESCRIPTION: "artifact.description"
|
|
149
158
|
};
|
|
150
159
|
var UNKNOWN_VALUE = "unknown";
|
|
151
160
|
var ACTIVITY_TYPES = {
|
|
@@ -176,9 +185,6 @@ var ACTIVITY_NAMES = {
|
|
|
176
185
|
UNKNOWN_AGENT: "Unknown Agent",
|
|
177
186
|
USER: "User"
|
|
178
187
|
};
|
|
179
|
-
var TOOL_NAMES = {
|
|
180
|
-
SAVE_TOOL_RESULT: "save_tool_result"
|
|
181
|
-
};
|
|
182
188
|
var AI_TOOL_TYPES = {
|
|
183
189
|
MCP: "mcp",
|
|
184
190
|
TRANSFER: "transfer",
|
|
@@ -285,7 +291,8 @@ var QUERY_EXPRESSIONS = {
|
|
|
285
291
|
CONTEXT_FETCHERS: "contextFetchers",
|
|
286
292
|
DURATION_SPANS: "durationSpans",
|
|
287
293
|
AGENT_GENERATIONS: "agentGenerations",
|
|
288
|
-
SPANS_WITH_ERRORS: "spansWithErrors"
|
|
294
|
+
SPANS_WITH_ERRORS: "spansWithErrors",
|
|
295
|
+
ARTIFACT_PROCESSING: "artifactProcessing"
|
|
289
296
|
};
|
|
290
297
|
var REDUCE_OPERATIONS = {
|
|
291
298
|
SUM: "sum",
|
|
@@ -12275,7 +12282,6 @@ exports.SubAgentToolRelationInsertSchema = SubAgentToolRelationInsertSchema;
|
|
|
12275
12282
|
exports.SubAgentToolRelationSelectSchema = SubAgentToolRelationSelectSchema;
|
|
12276
12283
|
exports.SubAgentToolRelationUpdateSchema = SubAgentToolRelationUpdateSchema;
|
|
12277
12284
|
exports.SubAgentUpdateSchema = SubAgentUpdateSchema;
|
|
12278
|
-
exports.TOOL_NAMES = TOOL_NAMES;
|
|
12279
12285
|
exports.TOOL_STATUS_VALUES = TOOL_STATUS_VALUES;
|
|
12280
12286
|
exports.TRANSFER_FROM_SUB_AGENT_ID = TRANSFER_FROM_SUB_AGENT_ID;
|
|
12281
12287
|
exports.TRANSFER_TO_SUB_AGENT_ID = TRANSFER_TO_SUB_AGENT_ID;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS,
|
|
1
|
+
export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS, o as AGGREGATE_OPERATORS, A as AI_OPERATIONS, i as AI_TOOL_TYPES, n as DATA_SOURCES, j as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, l as ORDER_DIRECTIONS, P as PANEL_TYPES, p as QUERY_DEFAULTS, k as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, m as QUERY_TYPES, R as REDUCE_OPERATIONS, d as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE } from './signoz-queries-BuiipZTk.cjs';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { r as CredentialReferenceApiInsert, s as ContextConfigSelect, l as ContextFetchDefinition, h as MCPTransportType, t as MCPToolConfig, u as GraphScopeConfig, C as ConversationHistoryConfig, v as ProjectScopeConfig, w as PaginationConfig, x as AgentGraphInsert, y as AgentGraphUpdate, z as FullGraphDefinition, B as ApiKeySelect, D as ApiKeyInsert, E as ApiKeyUpdate, H as CreateApiKeyParams, I as ApiKeyCreateResult, J as ArtifactComponentSelect, K as ArtifactComponentInsert, L as ArtifactComponentUpdate, N as AgentScopeConfig, O as ContextCacheSelect, Q as ContextCacheInsert, R as ContextConfigInsert, U as ContextConfigUpdate, V as ConversationSelect, W as ConversationInsert, o as ConversationMetadata, X as ConversationUpdate, Y as CredentialReferenceSelect, Z as ToolSelect, _ as CredentialReferenceInsert, $ as CredentialReferenceUpdate, a0 as DataComponentSelect, a1 as DataComponentInsert, a2 as DataComponentUpdate, a3 as ExternalAgentInsert, a4 as ExternalAgentSelect, a5 as ExternalAgentUpdate, a6 as FunctionApiInsert, a7 as FunctionToolApiInsert, a8 as FunctionToolApiUpdate, a9 as Artifact, aa as LedgerArtifactSelect, q as MessageMetadata, p as MessageContent, ab as MessageVisibility, ac as MessageInsert, ad as MessageUpdate, ae as FullProjectDefinition, af as ProjectInfo, ag as ProjectSelect, ah as PaginationResult, ai as ProjectResourceCounts, aj as ProjectInsert, ak as ProjectUpdate, al as SubAgentRelationInsert, am as ExternalSubAgentRelationInsert, an as SubAgentRelationUpdate, ao as SubAgentToolRelationUpdate, m as ToolMcpConfig, n as ToolServerCapabilities, ap as SubAgentInsert, aq as SubAgentUpdate, ar as SubAgentSelect, as as TaskInsert, T as TaskMetadataConfig, at as TaskSelect, au as McpTool, av as ToolInsert, aw as ToolUpdate, g as CredentialStoreType, ax as ExecutionContext } from './utility-CyPQ1tC_.cjs';
|
|
4
4
|
export { b9 as A2AError, bF as A2ARequest, bG as A2AResponse, aK as APIKeySecurityScheme, aG as AgentCapabilities, aU as AgentCard, dl as AgentConversationHistoryConfig, d6 as AgentDefinition, bU as AgentGraphApiInsert, dY as AgentGraphApiInsertSchema, bT as AgentGraphApiSelect, dX as AgentGraphApiSelectSchema, bV as AgentGraphApiUpdate, dZ as AgentGraphApiUpdateSchema, dV as AgentGraphInsertSchema, bS as AgentGraphSelect, dU as AgentGraphSelectSchema, dW as AgentGraphUpdateSchema, aH as AgentProvider, aI as AgentSkill, f0 as AllAgentSchema, cO as AllAgentSelect, cS as ApiKeyApiCreationResponse, f5 as ApiKeyApiCreationResponseSchema, cQ as ApiKeyApiInsert, f6 as ApiKeyApiInsertSchema, cP as ApiKeyApiSelect, f4 as ApiKeyApiSelectSchema, cR as ApiKeyApiUpdate, A as ApiKeyApiUpdateSchema, f2 as ApiKeyInsertSchema, f1 as ApiKeySelectSchema, f3 as ApiKeyUpdateSchema, cD as ArtifactComponentApiInsert, eO as ArtifactComponentApiInsertSchema, cC as ArtifactComponentApiSelect, eN as ArtifactComponentApiSelectSchema, cE as ArtifactComponentApiUpdate, eP as ArtifactComponentApiUpdateSchema, eL as ArtifactComponentInsertSchema, eK as ArtifactComponentSelectSchema, eM as ArtifactComponentUpdateSchema, aN as AuthorizationCodeOAuthFlow, d4 as CanUseItem, fO as CanUseItemSchema, bp as CancelTaskRequest, bA as CancelTaskResponse, bz as CancelTaskSuccessResponse, aO as ClientCredentialsOAuthFlow, b7 as ContentTypeNotSupportedError, cr as ContextCacheApiInsert, ev as ContextCacheApiInsertSchema, cq as ContextCacheApiSelect, eu as ContextCacheApiSelectSchema, cs as ContextCacheApiUpdate, ew as ContextCacheApiUpdateSchema, dm as ContextCacheEntry, es as ContextCacheInsertSchema, er as ContextCacheSelectSchema, cp as ContextCacheUpdate, et as ContextCacheUpdateSchema, cl as ContextConfigApiInsert, fy as ContextConfigApiInsertSchema, ck as ContextConfigApiSelect, fx as ContextConfigApiSelectSchema, cm as ContextConfigApiUpdate, fz as ContextConfigApiUpdateSchema, fv as ContextConfigInsertSchema, fu as ContextConfigSelectSchema, fw as ContextConfigUpdateSchema, ce as ConversationApiInsert, ej as ConversationApiInsertSchema, cd as ConversationApiSelect, ei as ConversationApiSelectSchema, cf as ConversationApiUpdate, ek as ConversationApiUpdateSchema, eg as ConversationInsertSchema, dk as ConversationScopeOptions, ef as ConversationSelectSchema, eh as ConversationUpdateSchema, fb as CredentialReferenceApiInsertSchema, cT as CredentialReferenceApiSelect, fa as CredentialReferenceApiSelectSchema, cU as CredentialReferenceApiUpdate, fc as CredentialReferenceApiUpdateSchema, f8 as CredentialReferenceInsertSchema, f7 as CredentialReferenceSelectSchema, f9 as CredentialReferenceUpdateSchema, cu as DataComponentApiInsert, eC as DataComponentApiInsertSchema, ct as DataComponentApiSelect, eB as DataComponentApiSelectSchema, cv as DataComponentApiUpdate, eD as DataComponentApiUpdateSchema, ez as DataComponentBaseSchema, ey as DataComponentInsertSchema, ex as DataComponentSelectSchema, eA as DataComponentUpdateSchema, aE as DataPart, fU as ErrorResponseSchema, fV as ExistsResponseSchema, cM as ExternalAgentApiInsert, e_ as ExternalAgentApiInsertSchema, cL as ExternalAgentApiSelect, eZ as ExternalAgentApiSelectSchema, cN as ExternalAgentApiUpdate, e$ as ExternalAgentApiUpdateSchema, eX as ExternalAgentInsertSchema, eW as ExternalAgentSelectSchema, eY as ExternalAgentUpdateSchema, bR as ExternalSubAgentRelationApiInsert, dT as ExternalSubAgentRelationApiInsertSchema, dS as ExternalSubAgentRelationInsertSchema, co as FetchConfig, fs as FetchConfigSchema, cn as FetchDefinition, ft as FetchDefinitionSchema, aA as FileBase, aD as FilePart, aB as FileWithBytes, aC as FileWithUri, d3 as FullGraphAgentInsert, a as FullGraphAgentInsertSchema, fP as FullGraphDefinitionSchema, g1 as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, ca as FunctionApiSelect, i as FunctionApiSelectSchema, cb as FunctionApiUpdate, j as FunctionApiUpdateSchema, c8 as FunctionInsert, fq as FunctionInsertSchema, c7 as FunctionSelect, fp as FunctionSelectSchema, fn as FunctionToolApiInsertSchema, cc as FunctionToolApiSelect, fm as FunctionToolApiSelectSchema, fo as FunctionToolApiUpdateSchema, dE as FunctionToolConfig, dD as FunctionToolConfigSchema, fk as FunctionToolInsertSchema, fj as FunctionToolSelectSchema, fl as FunctionToolUpdateSchema, c9 as FunctionUpdate, fr as FunctionUpdateSchema, br as GetTaskPushNotificationConfigRequest, bE as GetTaskPushNotificationConfigResponse, bD as GetTaskPushNotificationConfigSuccessResponse, bo as GetTaskRequest, by as GetTaskResponse, bx as GetTaskSuccessResponse, d as GraphStopWhen, G as GraphStopWhenSchema, fQ as GraphWithinContextOfProjectSchema, aL as HTTPAuthSecurityScheme, g2 as HeadersScopeSchema, aP as ImplicitOAuthFlow, d5 as InternalAgentDefinition, b2 as InternalError, b8 as InvalidAgentResponseError, b1 as InvalidParamsError, a$ as InvalidRequestError, a_ as JSONParseError, bj as JSONRPCError, bl as JSONRPCErrorResponse, bh as JSONRPCMessage, bi as JSONRPCRequest, bk as JSONRPCResult, d1 as LedgerArtifactApiInsert, fK as LedgerArtifactApiInsertSchema, d0 as LedgerArtifactApiSelect, fJ as LedgerArtifactApiSelectSchema, d2 as LedgerArtifactApiUpdate, fL as LedgerArtifactApiUpdateSchema, c_ as LedgerArtifactInsert, fH as LedgerArtifactInsertSchema, fG as LedgerArtifactSelectSchema, c$ as LedgerArtifactUpdate, fI as LedgerArtifactUpdateSchema, fS as ListResponseSchema, dx as MAX_ID_LENGTH, dv as MCPServerType, fe as MCPToolConfigSchema, dw as MIN_ID_LENGTH, dn as McpAuthType, dp as McpServerAuth, dr as McpServerCapabilities, ds as McpToolDefinition, ec as McpToolDefinitionSchema, fd as McpToolSchema, dq as McpTransportConfig, ea as McpTransportConfigSchema, aV as Message, ci as MessageApiInsert, ep as MessageApiInsertSchema, ch as MessageApiSelect, eo as MessageApiSelectSchema, cj as MessageApiUpdate, eq as MessageApiUpdateSchema, em as MessageInsertSchema, df as MessageMode, bH as MessagePart, de as MessageRole, cg as MessageSelect, el as MessageSelectSchema, bf as MessageSendConfiguration, bg as MessageSendParams, dd as MessageType, en as MessageUpdateSchema, b0 as MethodNotFoundError, dA as ModelSchema, f as ModelSettings, M as ModelSettingsSchema, dg as Models, aR as OAuth2SecurityScheme, aM as OAuthFlows, aS as OpenIdConnectSecurityScheme, db as Pagination, gb as PaginationQueryParamsSchema, fR as PaginationSchema, P as Part, ay as PartBase, aQ as PasswordOAuthFlow, d9 as ProjectApiInsert, f$ as ProjectApiInsertSchema, d8 as ProjectApiSelect, f_ as ProjectApiSelectSchema, da as ProjectApiUpdate, g0 as ProjectApiUpdateSchema, fY as ProjectInsertSchema, dB as ProjectModelSchema, dh as ProjectModels, fX as ProjectSelectSchema, fZ as ProjectUpdateSchema, ba as PushNotificationAuthenticationInfo, bb as PushNotificationConfig, b5 as PushNotificationNotSupportedError, fW as RemovedResponseSchema, dC as SandboxConfig, k as SandboxConfigSchema, aT as SecurityScheme, aJ as SecuritySchemeBase, bm as SendMessageRequest, bu as SendMessageResponse, bt as SendMessageSuccessResponse, bn as SendStreamingMessageRequest, bw as SendStreamingMessageResponse, bv as SendStreamingMessageSuccessResponse, bq as SetTaskPushNotificationConfigRequest, bC as SetTaskPushNotificationConfigResponse, bB as SetTaskPushNotificationConfigSuccessResponse, fT as SingleResponseSchema, dj as StatusComponent, fM as StatusComponentSchema, fN as StatusUpdateSchema, di as StatusUpdateSettings, c as StopWhen, S as StopWhenSchema, bK as SubAgentApiInsert, dJ as SubAgentApiInsertSchema, bJ as SubAgentApiSelect, dI as SubAgentApiSelectSchema, bL as SubAgentApiUpdate, dK as SubAgentApiUpdateSchema, cJ as SubAgentArtifactComponentApiInsert, eU as SubAgentArtifactComponentApiInsertSchema, cI as SubAgentArtifactComponentApiSelect, eT as SubAgentArtifactComponentApiSelectSchema, cK as SubAgentArtifactComponentApiUpdate, eV as SubAgentArtifactComponentApiUpdateSchema, cG as SubAgentArtifactComponentInsert, eR as SubAgentArtifactComponentInsertSchema, cF as SubAgentArtifactComponentSelect, eQ as SubAgentArtifactComponentSelectSchema, cH as SubAgentArtifactComponentUpdate, eS as SubAgentArtifactComponentUpdateSchema, cA as SubAgentDataComponentApiInsert, eI as SubAgentDataComponentApiInsertSchema, cz as SubAgentDataComponentApiSelect, eH as SubAgentDataComponentApiSelectSchema, cB as SubAgentDataComponentApiUpdate, eJ as SubAgentDataComponentApiUpdateSchema, cx as SubAgentDataComponentInsert, eF as SubAgentDataComponentInsertSchema, cw as SubAgentDataComponentSelect, eE as SubAgentDataComponentSelectSchema, cy as SubAgentDataComponentUpdate, eG as SubAgentDataComponentUpdateSchema, dG as SubAgentInsertSchema, bO as SubAgentRelationApiInsert, dP as SubAgentRelationApiInsertSchema, bN as SubAgentRelationApiSelect, dO as SubAgentRelationApiSelectSchema, bP as SubAgentRelationApiUpdate, dQ as SubAgentRelationApiUpdateSchema, dM as SubAgentRelationInsertSchema, bQ as SubAgentRelationQuery, dR as SubAgentRelationQuerySchema, bM as SubAgentRelationSelect, dL as SubAgentRelationSelectSchema, dN as SubAgentRelationUpdateSchema, dF as SubAgentSelectSchema, e as SubAgentStopWhen, b as SubAgentStopWhenSchema, cY as SubAgentToolRelationApiInsert, fE as SubAgentToolRelationApiInsertSchema, cX as SubAgentToolRelationApiSelect, fD as SubAgentToolRelationApiSelectSchema, cZ as SubAgentToolRelationApiUpdate, fF as SubAgentToolRelationApiUpdateSchema, cW as SubAgentToolRelationInsert, fB as SubAgentToolRelationInsertSchema, cV as SubAgentToolRelationSelect, fA as SubAgentToolRelationSelectSchema, fC as SubAgentToolRelationUpdateSchema, dH as SubAgentUpdateSchema, dc as SummaryEvent, dt as TOOL_STATUS_VALUES, aX as Task, bY as TaskApiInsert, e2 as TaskApiInsertSchema, bX as TaskApiSelect, e1 as TaskApiSelectSchema, bZ as TaskApiUpdate, e3 as TaskApiUpdateSchema, bI as TaskArtifact, aZ as TaskArtifactUpdateEvent, bd as TaskIdParams, d$ as TaskInsertSchema, b4 as TaskNotCancelableError, b3 as TaskNotFoundError, bc as TaskPushNotificationConfig, be as TaskQueryParams, c2 as TaskRelationApiInsert, e8 as TaskRelationApiInsertSchema, c1 as TaskRelationApiSelect, e7 as TaskRelationApiSelectSchema, c3 as TaskRelationApiUpdate, e9 as TaskRelationApiUpdateSchema, b$ as TaskRelationInsert, e5 as TaskRelationInsertSchema, b_ as TaskRelationSelect, e4 as TaskRelationSelectSchema, c0 as TaskRelationUpdate, e6 as TaskRelationUpdateSchema, bs as TaskResubscriptionRequest, d_ as TaskSelectSchema, aF as TaskState, aW as TaskStatus, aY as TaskStatusUpdateEvent, bW as TaskUpdate, e0 as TaskUpdateSchema, g4 as TenantIdParamsSchema, g3 as TenantParamsSchema, g8 as TenantProjectGraphIdParamsSchema, g7 as TenantProjectGraphParamsSchema, ga as TenantProjectGraphSubAgentIdParamsSchema, g9 as TenantProjectGraphSubAgentParamsSchema, g6 as TenantProjectIdParamsSchema, g5 as TenantProjectParamsSchema, az as TextPart, c5 as ToolApiInsert, fh as ToolApiInsertSchema, c4 as ToolApiSelect, fg as ToolApiSelectSchema, c6 as ToolApiUpdate, fi as ToolApiUpdateSchema, d7 as ToolDefinition, ee as ToolInsertSchema, ed as ToolSelectSchema, eb as ToolStatusSchema, ff as ToolUpdateSchema, dy as URL_SAFE_ID_PATTERN, b6 as UnsupportedOperationError, du as VALID_RELATION_TYPES, dz as resourceIdSchema } from './utility-CyPQ1tC_.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS,
|
|
1
|
+
export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS, o as AGGREGATE_OPERATORS, A as AI_OPERATIONS, i as AI_TOOL_TYPES, n as DATA_SOURCES, j as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, l as ORDER_DIRECTIONS, P as PANEL_TYPES, p as QUERY_DEFAULTS, k as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, m as QUERY_TYPES, R as REDUCE_OPERATIONS, d as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE } from './signoz-queries-BuiipZTk.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { r as CredentialReferenceApiInsert, s as ContextConfigSelect, l as ContextFetchDefinition, h as MCPTransportType, t as MCPToolConfig, u as GraphScopeConfig, C as ConversationHistoryConfig, v as ProjectScopeConfig, w as PaginationConfig, x as AgentGraphInsert, y as AgentGraphUpdate, z as FullGraphDefinition, B as ApiKeySelect, D as ApiKeyInsert, E as ApiKeyUpdate, H as CreateApiKeyParams, I as ApiKeyCreateResult, J as ArtifactComponentSelect, K as ArtifactComponentInsert, L as ArtifactComponentUpdate, N as AgentScopeConfig, O as ContextCacheSelect, Q as ContextCacheInsert, R as ContextConfigInsert, U as ContextConfigUpdate, V as ConversationSelect, W as ConversationInsert, o as ConversationMetadata, X as ConversationUpdate, Y as CredentialReferenceSelect, Z as ToolSelect, _ as CredentialReferenceInsert, $ as CredentialReferenceUpdate, a0 as DataComponentSelect, a1 as DataComponentInsert, a2 as DataComponentUpdate, a3 as ExternalAgentInsert, a4 as ExternalAgentSelect, a5 as ExternalAgentUpdate, a6 as FunctionApiInsert, a7 as FunctionToolApiInsert, a8 as FunctionToolApiUpdate, a9 as Artifact, aa as LedgerArtifactSelect, q as MessageMetadata, p as MessageContent, ab as MessageVisibility, ac as MessageInsert, ad as MessageUpdate, ae as FullProjectDefinition, af as ProjectInfo, ag as ProjectSelect, ah as PaginationResult, ai as ProjectResourceCounts, aj as ProjectInsert, ak as ProjectUpdate, al as SubAgentRelationInsert, am as ExternalSubAgentRelationInsert, an as SubAgentRelationUpdate, ao as SubAgentToolRelationUpdate, m as ToolMcpConfig, n as ToolServerCapabilities, ap as SubAgentInsert, aq as SubAgentUpdate, ar as SubAgentSelect, as as TaskInsert, T as TaskMetadataConfig, at as TaskSelect, au as McpTool, av as ToolInsert, aw as ToolUpdate, g as CredentialStoreType, ax as ExecutionContext } from './utility-CyPQ1tC_.js';
|
|
4
4
|
export { b9 as A2AError, bF as A2ARequest, bG as A2AResponse, aK as APIKeySecurityScheme, aG as AgentCapabilities, aU as AgentCard, dl as AgentConversationHistoryConfig, d6 as AgentDefinition, bU as AgentGraphApiInsert, dY as AgentGraphApiInsertSchema, bT as AgentGraphApiSelect, dX as AgentGraphApiSelectSchema, bV as AgentGraphApiUpdate, dZ as AgentGraphApiUpdateSchema, dV as AgentGraphInsertSchema, bS as AgentGraphSelect, dU as AgentGraphSelectSchema, dW as AgentGraphUpdateSchema, aH as AgentProvider, aI as AgentSkill, f0 as AllAgentSchema, cO as AllAgentSelect, cS as ApiKeyApiCreationResponse, f5 as ApiKeyApiCreationResponseSchema, cQ as ApiKeyApiInsert, f6 as ApiKeyApiInsertSchema, cP as ApiKeyApiSelect, f4 as ApiKeyApiSelectSchema, cR as ApiKeyApiUpdate, A as ApiKeyApiUpdateSchema, f2 as ApiKeyInsertSchema, f1 as ApiKeySelectSchema, f3 as ApiKeyUpdateSchema, cD as ArtifactComponentApiInsert, eO as ArtifactComponentApiInsertSchema, cC as ArtifactComponentApiSelect, eN as ArtifactComponentApiSelectSchema, cE as ArtifactComponentApiUpdate, eP as ArtifactComponentApiUpdateSchema, eL as ArtifactComponentInsertSchema, eK as ArtifactComponentSelectSchema, eM as ArtifactComponentUpdateSchema, aN as AuthorizationCodeOAuthFlow, d4 as CanUseItem, fO as CanUseItemSchema, bp as CancelTaskRequest, bA as CancelTaskResponse, bz as CancelTaskSuccessResponse, aO as ClientCredentialsOAuthFlow, b7 as ContentTypeNotSupportedError, cr as ContextCacheApiInsert, ev as ContextCacheApiInsertSchema, cq as ContextCacheApiSelect, eu as ContextCacheApiSelectSchema, cs as ContextCacheApiUpdate, ew as ContextCacheApiUpdateSchema, dm as ContextCacheEntry, es as ContextCacheInsertSchema, er as ContextCacheSelectSchema, cp as ContextCacheUpdate, et as ContextCacheUpdateSchema, cl as ContextConfigApiInsert, fy as ContextConfigApiInsertSchema, ck as ContextConfigApiSelect, fx as ContextConfigApiSelectSchema, cm as ContextConfigApiUpdate, fz as ContextConfigApiUpdateSchema, fv as ContextConfigInsertSchema, fu as ContextConfigSelectSchema, fw as ContextConfigUpdateSchema, ce as ConversationApiInsert, ej as ConversationApiInsertSchema, cd as ConversationApiSelect, ei as ConversationApiSelectSchema, cf as ConversationApiUpdate, ek as ConversationApiUpdateSchema, eg as ConversationInsertSchema, dk as ConversationScopeOptions, ef as ConversationSelectSchema, eh as ConversationUpdateSchema, fb as CredentialReferenceApiInsertSchema, cT as CredentialReferenceApiSelect, fa as CredentialReferenceApiSelectSchema, cU as CredentialReferenceApiUpdate, fc as CredentialReferenceApiUpdateSchema, f8 as CredentialReferenceInsertSchema, f7 as CredentialReferenceSelectSchema, f9 as CredentialReferenceUpdateSchema, cu as DataComponentApiInsert, eC as DataComponentApiInsertSchema, ct as DataComponentApiSelect, eB as DataComponentApiSelectSchema, cv as DataComponentApiUpdate, eD as DataComponentApiUpdateSchema, ez as DataComponentBaseSchema, ey as DataComponentInsertSchema, ex as DataComponentSelectSchema, eA as DataComponentUpdateSchema, aE as DataPart, fU as ErrorResponseSchema, fV as ExistsResponseSchema, cM as ExternalAgentApiInsert, e_ as ExternalAgentApiInsertSchema, cL as ExternalAgentApiSelect, eZ as ExternalAgentApiSelectSchema, cN as ExternalAgentApiUpdate, e$ as ExternalAgentApiUpdateSchema, eX as ExternalAgentInsertSchema, eW as ExternalAgentSelectSchema, eY as ExternalAgentUpdateSchema, bR as ExternalSubAgentRelationApiInsert, dT as ExternalSubAgentRelationApiInsertSchema, dS as ExternalSubAgentRelationInsertSchema, co as FetchConfig, fs as FetchConfigSchema, cn as FetchDefinition, ft as FetchDefinitionSchema, aA as FileBase, aD as FilePart, aB as FileWithBytes, aC as FileWithUri, d3 as FullGraphAgentInsert, a as FullGraphAgentInsertSchema, fP as FullGraphDefinitionSchema, g1 as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, ca as FunctionApiSelect, i as FunctionApiSelectSchema, cb as FunctionApiUpdate, j as FunctionApiUpdateSchema, c8 as FunctionInsert, fq as FunctionInsertSchema, c7 as FunctionSelect, fp as FunctionSelectSchema, fn as FunctionToolApiInsertSchema, cc as FunctionToolApiSelect, fm as FunctionToolApiSelectSchema, fo as FunctionToolApiUpdateSchema, dE as FunctionToolConfig, dD as FunctionToolConfigSchema, fk as FunctionToolInsertSchema, fj as FunctionToolSelectSchema, fl as FunctionToolUpdateSchema, c9 as FunctionUpdate, fr as FunctionUpdateSchema, br as GetTaskPushNotificationConfigRequest, bE as GetTaskPushNotificationConfigResponse, bD as GetTaskPushNotificationConfigSuccessResponse, bo as GetTaskRequest, by as GetTaskResponse, bx as GetTaskSuccessResponse, d as GraphStopWhen, G as GraphStopWhenSchema, fQ as GraphWithinContextOfProjectSchema, aL as HTTPAuthSecurityScheme, g2 as HeadersScopeSchema, aP as ImplicitOAuthFlow, d5 as InternalAgentDefinition, b2 as InternalError, b8 as InvalidAgentResponseError, b1 as InvalidParamsError, a$ as InvalidRequestError, a_ as JSONParseError, bj as JSONRPCError, bl as JSONRPCErrorResponse, bh as JSONRPCMessage, bi as JSONRPCRequest, bk as JSONRPCResult, d1 as LedgerArtifactApiInsert, fK as LedgerArtifactApiInsertSchema, d0 as LedgerArtifactApiSelect, fJ as LedgerArtifactApiSelectSchema, d2 as LedgerArtifactApiUpdate, fL as LedgerArtifactApiUpdateSchema, c_ as LedgerArtifactInsert, fH as LedgerArtifactInsertSchema, fG as LedgerArtifactSelectSchema, c$ as LedgerArtifactUpdate, fI as LedgerArtifactUpdateSchema, fS as ListResponseSchema, dx as MAX_ID_LENGTH, dv as MCPServerType, fe as MCPToolConfigSchema, dw as MIN_ID_LENGTH, dn as McpAuthType, dp as McpServerAuth, dr as McpServerCapabilities, ds as McpToolDefinition, ec as McpToolDefinitionSchema, fd as McpToolSchema, dq as McpTransportConfig, ea as McpTransportConfigSchema, aV as Message, ci as MessageApiInsert, ep as MessageApiInsertSchema, ch as MessageApiSelect, eo as MessageApiSelectSchema, cj as MessageApiUpdate, eq as MessageApiUpdateSchema, em as MessageInsertSchema, df as MessageMode, bH as MessagePart, de as MessageRole, cg as MessageSelect, el as MessageSelectSchema, bf as MessageSendConfiguration, bg as MessageSendParams, dd as MessageType, en as MessageUpdateSchema, b0 as MethodNotFoundError, dA as ModelSchema, f as ModelSettings, M as ModelSettingsSchema, dg as Models, aR as OAuth2SecurityScheme, aM as OAuthFlows, aS as OpenIdConnectSecurityScheme, db as Pagination, gb as PaginationQueryParamsSchema, fR as PaginationSchema, P as Part, ay as PartBase, aQ as PasswordOAuthFlow, d9 as ProjectApiInsert, f$ as ProjectApiInsertSchema, d8 as ProjectApiSelect, f_ as ProjectApiSelectSchema, da as ProjectApiUpdate, g0 as ProjectApiUpdateSchema, fY as ProjectInsertSchema, dB as ProjectModelSchema, dh as ProjectModels, fX as ProjectSelectSchema, fZ as ProjectUpdateSchema, ba as PushNotificationAuthenticationInfo, bb as PushNotificationConfig, b5 as PushNotificationNotSupportedError, fW as RemovedResponseSchema, dC as SandboxConfig, k as SandboxConfigSchema, aT as SecurityScheme, aJ as SecuritySchemeBase, bm as SendMessageRequest, bu as SendMessageResponse, bt as SendMessageSuccessResponse, bn as SendStreamingMessageRequest, bw as SendStreamingMessageResponse, bv as SendStreamingMessageSuccessResponse, bq as SetTaskPushNotificationConfigRequest, bC as SetTaskPushNotificationConfigResponse, bB as SetTaskPushNotificationConfigSuccessResponse, fT as SingleResponseSchema, dj as StatusComponent, fM as StatusComponentSchema, fN as StatusUpdateSchema, di as StatusUpdateSettings, c as StopWhen, S as StopWhenSchema, bK as SubAgentApiInsert, dJ as SubAgentApiInsertSchema, bJ as SubAgentApiSelect, dI as SubAgentApiSelectSchema, bL as SubAgentApiUpdate, dK as SubAgentApiUpdateSchema, cJ as SubAgentArtifactComponentApiInsert, eU as SubAgentArtifactComponentApiInsertSchema, cI as SubAgentArtifactComponentApiSelect, eT as SubAgentArtifactComponentApiSelectSchema, cK as SubAgentArtifactComponentApiUpdate, eV as SubAgentArtifactComponentApiUpdateSchema, cG as SubAgentArtifactComponentInsert, eR as SubAgentArtifactComponentInsertSchema, cF as SubAgentArtifactComponentSelect, eQ as SubAgentArtifactComponentSelectSchema, cH as SubAgentArtifactComponentUpdate, eS as SubAgentArtifactComponentUpdateSchema, cA as SubAgentDataComponentApiInsert, eI as SubAgentDataComponentApiInsertSchema, cz as SubAgentDataComponentApiSelect, eH as SubAgentDataComponentApiSelectSchema, cB as SubAgentDataComponentApiUpdate, eJ as SubAgentDataComponentApiUpdateSchema, cx as SubAgentDataComponentInsert, eF as SubAgentDataComponentInsertSchema, cw as SubAgentDataComponentSelect, eE as SubAgentDataComponentSelectSchema, cy as SubAgentDataComponentUpdate, eG as SubAgentDataComponentUpdateSchema, dG as SubAgentInsertSchema, bO as SubAgentRelationApiInsert, dP as SubAgentRelationApiInsertSchema, bN as SubAgentRelationApiSelect, dO as SubAgentRelationApiSelectSchema, bP as SubAgentRelationApiUpdate, dQ as SubAgentRelationApiUpdateSchema, dM as SubAgentRelationInsertSchema, bQ as SubAgentRelationQuery, dR as SubAgentRelationQuerySchema, bM as SubAgentRelationSelect, dL as SubAgentRelationSelectSchema, dN as SubAgentRelationUpdateSchema, dF as SubAgentSelectSchema, e as SubAgentStopWhen, b as SubAgentStopWhenSchema, cY as SubAgentToolRelationApiInsert, fE as SubAgentToolRelationApiInsertSchema, cX as SubAgentToolRelationApiSelect, fD as SubAgentToolRelationApiSelectSchema, cZ as SubAgentToolRelationApiUpdate, fF as SubAgentToolRelationApiUpdateSchema, cW as SubAgentToolRelationInsert, fB as SubAgentToolRelationInsertSchema, cV as SubAgentToolRelationSelect, fA as SubAgentToolRelationSelectSchema, fC as SubAgentToolRelationUpdateSchema, dH as SubAgentUpdateSchema, dc as SummaryEvent, dt as TOOL_STATUS_VALUES, aX as Task, bY as TaskApiInsert, e2 as TaskApiInsertSchema, bX as TaskApiSelect, e1 as TaskApiSelectSchema, bZ as TaskApiUpdate, e3 as TaskApiUpdateSchema, bI as TaskArtifact, aZ as TaskArtifactUpdateEvent, bd as TaskIdParams, d$ as TaskInsertSchema, b4 as TaskNotCancelableError, b3 as TaskNotFoundError, bc as TaskPushNotificationConfig, be as TaskQueryParams, c2 as TaskRelationApiInsert, e8 as TaskRelationApiInsertSchema, c1 as TaskRelationApiSelect, e7 as TaskRelationApiSelectSchema, c3 as TaskRelationApiUpdate, e9 as TaskRelationApiUpdateSchema, b$ as TaskRelationInsert, e5 as TaskRelationInsertSchema, b_ as TaskRelationSelect, e4 as TaskRelationSelectSchema, c0 as TaskRelationUpdate, e6 as TaskRelationUpdateSchema, bs as TaskResubscriptionRequest, d_ as TaskSelectSchema, aF as TaskState, aW as TaskStatus, aY as TaskStatusUpdateEvent, bW as TaskUpdate, e0 as TaskUpdateSchema, g4 as TenantIdParamsSchema, g3 as TenantParamsSchema, g8 as TenantProjectGraphIdParamsSchema, g7 as TenantProjectGraphParamsSchema, ga as TenantProjectGraphSubAgentIdParamsSchema, g9 as TenantProjectGraphSubAgentParamsSchema, g6 as TenantProjectIdParamsSchema, g5 as TenantProjectParamsSchema, az as TextPart, c5 as ToolApiInsert, fh as ToolApiInsertSchema, c4 as ToolApiSelect, fg as ToolApiSelectSchema, c6 as ToolApiUpdate, fi as ToolApiUpdateSchema, d7 as ToolDefinition, ee as ToolInsertSchema, ed as ToolSelectSchema, eb as ToolStatusSchema, ff as ToolUpdateSchema, dy as URL_SAFE_ID_PATTERN, b6 as UnsupportedOperationError, du as VALID_RELATION_TYPES, dz as resourceIdSchema } from './utility-CyPQ1tC_.js';
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, DATA_SOURCES, DATA_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES,
|
|
1
|
+
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, DATA_SOURCES, DATA_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, UNKNOWN_VALUE } from './chunk-H6PMWHNV.js';
|
|
2
2
|
export { TaskState } from './chunk-H2F72PDA.js';
|
|
3
3
|
import { validateAndTypeGraphData, validateGraphStructure, isInternalAgent, isExternalAgent } from './chunk-JTHQYGCX.js';
|
|
4
4
|
export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAndTypeGraphData, validateArtifactComponentReferences, validateDataComponentReferences, validateGraphStructure, validateToolReferences } from './chunk-JTHQYGCX.js';
|
|
@@ -9,6 +9,7 @@ declare const SPAN_NAMES: {
|
|
|
9
9
|
readonly CONTEXT_HANDLE: "context.handle_context_resolution";
|
|
10
10
|
readonly AGENT_GENERATION: "agent.generate";
|
|
11
11
|
readonly CONTEXT_FETCHER: "context-fetcher.http-request";
|
|
12
|
+
readonly ARTIFACT_PROCESSING: "graph_session.process_artifact";
|
|
12
13
|
};
|
|
13
14
|
declare const AI_OPERATIONS: {
|
|
14
15
|
readonly GENERATE_TEXT: "ai.generateText.doGenerate";
|
|
@@ -68,6 +69,13 @@ declare const SPAN_KEYS: {
|
|
|
68
69
|
readonly NAME: "name";
|
|
69
70
|
readonly PARENT_SPAN_ID: "parentSpanID";
|
|
70
71
|
readonly CONVERSATION_ID: "conversation.id";
|
|
72
|
+
readonly ARTIFACT_ID: "artifact.id";
|
|
73
|
+
readonly ARTIFACT_TYPE: "artifact.type";
|
|
74
|
+
readonly ARTIFACT_AGENT_ID: "artifact.agent_id";
|
|
75
|
+
readonly ARTIFACT_TOOL_CALL_ID: "artifact.tool_call_id";
|
|
76
|
+
readonly ARTIFACT_DATA: "artifact.data";
|
|
77
|
+
readonly ARTIFACT_NAME: "artifact.name";
|
|
78
|
+
readonly ARTIFACT_DESCRIPTION: "artifact.description";
|
|
71
79
|
};
|
|
72
80
|
declare const UNKNOWN_VALUE: "unknown";
|
|
73
81
|
/** Activity Types */
|
|
@@ -102,10 +110,6 @@ declare const ACTIVITY_NAMES: {
|
|
|
102
110
|
readonly UNKNOWN_AGENT: "Unknown Agent";
|
|
103
111
|
readonly USER: "User";
|
|
104
112
|
};
|
|
105
|
-
/** Tool Names */
|
|
106
|
-
declare const TOOL_NAMES: {
|
|
107
|
-
readonly SAVE_TOOL_RESULT: "save_tool_result";
|
|
108
|
-
};
|
|
109
113
|
/** AI Tool Types */
|
|
110
114
|
declare const AI_TOOL_TYPES: {
|
|
111
115
|
readonly MCP: "mcp";
|
|
@@ -210,6 +214,7 @@ declare const QUERY_EXPRESSIONS: {
|
|
|
210
214
|
readonly DURATION_SPANS: "durationSpans";
|
|
211
215
|
readonly AGENT_GENERATIONS: "agentGenerations";
|
|
212
216
|
readonly SPANS_WITH_ERRORS: "spansWithErrors";
|
|
217
|
+
readonly ARTIFACT_PROCESSING: "artifactProcessing";
|
|
213
218
|
};
|
|
214
219
|
/** Query Reduce Operations */
|
|
215
220
|
declare const REDUCE_OPERATIONS: {
|
|
@@ -266,4 +271,4 @@ declare const QUERY_DEFAULTS: {
|
|
|
266
271
|
readonly EMPTY_GROUP_BY: readonly [];
|
|
267
272
|
};
|
|
268
273
|
|
|
269
|
-
export { AI_OPERATIONS as A, DELEGATION_FROM_SUB_AGENT_ID as D, FIELD_TYPES as F, OPERATORS as O, PANEL_TYPES as P, QUERY_FIELD_CONFIGS as Q, REDUCE_OPERATIONS as R, SPAN_NAMES as S, TRANSFER_FROM_SUB_AGENT_ID as T, UNKNOWN_VALUE as U, DELEGATION_TO_SUB_AGENT_ID as a, DELEGATION_ID as b, TRANSFER_TO_SUB_AGENT_ID as c, SPAN_KEYS as d, ACTIVITY_TYPES as e, ACTIVITY_STATUS as f, AGENT_IDS as g, ACTIVITY_NAMES as h,
|
|
274
|
+
export { AI_OPERATIONS as A, DELEGATION_FROM_SUB_AGENT_ID as D, FIELD_TYPES as F, OPERATORS as O, PANEL_TYPES as P, QUERY_FIELD_CONFIGS as Q, REDUCE_OPERATIONS as R, SPAN_NAMES as S, TRANSFER_FROM_SUB_AGENT_ID as T, UNKNOWN_VALUE as U, DELEGATION_TO_SUB_AGENT_ID as a, DELEGATION_ID as b, TRANSFER_TO_SUB_AGENT_ID as c, SPAN_KEYS as d, ACTIVITY_TYPES as e, ACTIVITY_STATUS as f, AGENT_IDS as g, ACTIVITY_NAMES as h, AI_TOOL_TYPES as i, DATA_TYPES as j, QUERY_EXPRESSIONS as k, ORDER_DIRECTIONS as l, QUERY_TYPES as m, DATA_SOURCES as n, AGGREGATE_OPERATORS as o, QUERY_DEFAULTS as p };
|
|
@@ -9,6 +9,7 @@ declare const SPAN_NAMES: {
|
|
|
9
9
|
readonly CONTEXT_HANDLE: "context.handle_context_resolution";
|
|
10
10
|
readonly AGENT_GENERATION: "agent.generate";
|
|
11
11
|
readonly CONTEXT_FETCHER: "context-fetcher.http-request";
|
|
12
|
+
readonly ARTIFACT_PROCESSING: "graph_session.process_artifact";
|
|
12
13
|
};
|
|
13
14
|
declare const AI_OPERATIONS: {
|
|
14
15
|
readonly GENERATE_TEXT: "ai.generateText.doGenerate";
|
|
@@ -68,6 +69,13 @@ declare const SPAN_KEYS: {
|
|
|
68
69
|
readonly NAME: "name";
|
|
69
70
|
readonly PARENT_SPAN_ID: "parentSpanID";
|
|
70
71
|
readonly CONVERSATION_ID: "conversation.id";
|
|
72
|
+
readonly ARTIFACT_ID: "artifact.id";
|
|
73
|
+
readonly ARTIFACT_TYPE: "artifact.type";
|
|
74
|
+
readonly ARTIFACT_AGENT_ID: "artifact.agent_id";
|
|
75
|
+
readonly ARTIFACT_TOOL_CALL_ID: "artifact.tool_call_id";
|
|
76
|
+
readonly ARTIFACT_DATA: "artifact.data";
|
|
77
|
+
readonly ARTIFACT_NAME: "artifact.name";
|
|
78
|
+
readonly ARTIFACT_DESCRIPTION: "artifact.description";
|
|
71
79
|
};
|
|
72
80
|
declare const UNKNOWN_VALUE: "unknown";
|
|
73
81
|
/** Activity Types */
|
|
@@ -102,10 +110,6 @@ declare const ACTIVITY_NAMES: {
|
|
|
102
110
|
readonly UNKNOWN_AGENT: "Unknown Agent";
|
|
103
111
|
readonly USER: "User";
|
|
104
112
|
};
|
|
105
|
-
/** Tool Names */
|
|
106
|
-
declare const TOOL_NAMES: {
|
|
107
|
-
readonly SAVE_TOOL_RESULT: "save_tool_result";
|
|
108
|
-
};
|
|
109
113
|
/** AI Tool Types */
|
|
110
114
|
declare const AI_TOOL_TYPES: {
|
|
111
115
|
readonly MCP: "mcp";
|
|
@@ -210,6 +214,7 @@ declare const QUERY_EXPRESSIONS: {
|
|
|
210
214
|
readonly DURATION_SPANS: "durationSpans";
|
|
211
215
|
readonly AGENT_GENERATIONS: "agentGenerations";
|
|
212
216
|
readonly SPANS_WITH_ERRORS: "spansWithErrors";
|
|
217
|
+
readonly ARTIFACT_PROCESSING: "artifactProcessing";
|
|
213
218
|
};
|
|
214
219
|
/** Query Reduce Operations */
|
|
215
220
|
declare const REDUCE_OPERATIONS: {
|
|
@@ -266,4 +271,4 @@ declare const QUERY_DEFAULTS: {
|
|
|
266
271
|
readonly EMPTY_GROUP_BY: readonly [];
|
|
267
272
|
};
|
|
268
273
|
|
|
269
|
-
export { AI_OPERATIONS as A, DELEGATION_FROM_SUB_AGENT_ID as D, FIELD_TYPES as F, OPERATORS as O, PANEL_TYPES as P, QUERY_FIELD_CONFIGS as Q, REDUCE_OPERATIONS as R, SPAN_NAMES as S, TRANSFER_FROM_SUB_AGENT_ID as T, UNKNOWN_VALUE as U, DELEGATION_TO_SUB_AGENT_ID as a, DELEGATION_ID as b, TRANSFER_TO_SUB_AGENT_ID as c, SPAN_KEYS as d, ACTIVITY_TYPES as e, ACTIVITY_STATUS as f, AGENT_IDS as g, ACTIVITY_NAMES as h,
|
|
274
|
+
export { AI_OPERATIONS as A, DELEGATION_FROM_SUB_AGENT_ID as D, FIELD_TYPES as F, OPERATORS as O, PANEL_TYPES as P, QUERY_FIELD_CONFIGS as Q, REDUCE_OPERATIONS as R, SPAN_NAMES as S, TRANSFER_FROM_SUB_AGENT_ID as T, UNKNOWN_VALUE as U, DELEGATION_TO_SUB_AGENT_ID as a, DELEGATION_ID as b, TRANSFER_TO_SUB_AGENT_ID as c, SPAN_KEYS as d, ACTIVITY_TYPES as e, ACTIVITY_STATUS as f, AGENT_IDS as g, ACTIVITY_NAMES as h, AI_TOOL_TYPES as i, DATA_TYPES as j, QUERY_EXPRESSIONS as k, ORDER_DIRECTIONS as l, QUERY_TYPES as m, DATA_SOURCES as n, AGGREGATE_OPERATORS as o, QUERY_DEFAULTS as p };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-core",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20251010210603",
|
|
4
4
|
"description": "Agents Core contains the database schema, types, and validation schemas for Inkeep Agent Framework, along with core components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|