@inkeep/agents-core 0.19.5 → 0.19.7

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.
@@ -14,7 +14,8 @@ var SPAN_NAMES = {
14
14
  };
15
15
  var AI_OPERATIONS = {
16
16
  GENERATE_TEXT: "ai.generateText.doGenerate",
17
- STREAM_TEXT: "ai.streamText.doStream"
17
+ STREAM_TEXT: "ai.streamText.doStream",
18
+ STREAM_OBJECT: "ai.streamObject.doStream"
18
19
  };
19
20
  var SPAN_KEYS = {
20
21
  // Core span attributes
@@ -38,6 +39,7 @@ var SPAN_KEYS = {
38
39
  AI_RESPONSE_TIMESTAMP: "ai.response.timestamp",
39
40
  AI_RESPONSE_CONTENT: "ai.response.content",
40
41
  AI_RESPONSE_TEXT: "ai.response.text",
42
+ AI_RESPONSE_OBJECT: "ai.response.object",
41
43
  AI_RESPONSE_MODEL: "ai.response.model",
42
44
  AI_RESPONSE_TOOL_CALLS: "ai.response.toolCalls",
43
45
  AI_PROMPT_MESSAGES: "ai.prompt.messages",
@@ -83,7 +85,7 @@ var SPAN_KEYS = {
83
85
  // Artifact processing attributes
84
86
  ARTIFACT_ID: "artifact.id",
85
87
  ARTIFACT_TYPE: "artifact.type",
86
- ARTIFACT_AGENT_ID: "artifact.agent_id",
88
+ ARTIFACT_SUB_AGENT_ID: "artifact.sub_agent_id",
87
89
  ARTIFACT_TOOL_CALL_ID: "artifact.tool_call_id",
88
90
  ARTIFACT_DATA: "artifact.data",
89
91
  ARTIFACT_NAME: "artifact.name",
@@ -98,7 +100,8 @@ var ACTIVITY_TYPES = {
98
100
  CONTEXT_RESOLUTION: "context_resolution",
99
101
  USER_MESSAGE: "user_message",
100
102
  AI_ASSISTANT_MESSAGE: "ai_assistant_message",
101
- AI_MODEL_STREAMED_TEXT: "ai_model_streamed_text"
103
+ AI_MODEL_STREAMED_TEXT: "ai_model_streamed_text",
104
+ AI_MODEL_STREAMED_OBJECT: "ai_model_streamed_object"
102
105
  };
103
106
  var ACTIVITY_STATUS = {
104
107
  SUCCESS: "success",
@@ -115,6 +118,7 @@ var ACTIVITY_NAMES = {
115
118
  AI_ASSISTANT_MESSAGE: "AI Assistant Message",
116
119
  AI_TEXT_GENERATION: "AI Text Generation",
117
120
  AI_STREAMING_TEXT: "AI Streaming Text",
121
+ AI_STREAMING_OBJECT: "AI Streaming Object",
118
122
  UNKNOWN_AGENT: "Unknown Agent",
119
123
  USER: "User"
120
124
  };
@@ -221,6 +225,7 @@ var QUERY_EXPRESSIONS = {
221
225
  AI_ASSISTANT_MESSAGES: "aiAssistantMessages",
222
226
  AI_GENERATIONS: "aiGenerations",
223
227
  AI_STREAMING_TEXT: "aiStreamingText",
228
+ AI_STREAMING_OBJECT: "aiStreamingObject",
224
229
  CONTEXT_FETCHERS: "contextFetchers",
225
230
  DURATION_SPANS: "durationSpans",
226
231
  AGENT_GENERATIONS: "agentGenerations",
@@ -1808,7 +1808,8 @@ var SPAN_NAMES = {
1808
1808
  };
1809
1809
  var AI_OPERATIONS = {
1810
1810
  GENERATE_TEXT: "ai.generateText.doGenerate",
1811
- STREAM_TEXT: "ai.streamText.doStream"
1811
+ STREAM_TEXT: "ai.streamText.doStream",
1812
+ STREAM_OBJECT: "ai.streamObject.doStream"
1812
1813
  };
1813
1814
  var SPAN_KEYS = {
1814
1815
  // Core span attributes
@@ -1832,6 +1833,7 @@ var SPAN_KEYS = {
1832
1833
  AI_RESPONSE_TIMESTAMP: "ai.response.timestamp",
1833
1834
  AI_RESPONSE_CONTENT: "ai.response.content",
1834
1835
  AI_RESPONSE_TEXT: "ai.response.text",
1836
+ AI_RESPONSE_OBJECT: "ai.response.object",
1835
1837
  AI_RESPONSE_MODEL: "ai.response.model",
1836
1838
  AI_RESPONSE_TOOL_CALLS: "ai.response.toolCalls",
1837
1839
  AI_PROMPT_MESSAGES: "ai.prompt.messages",
@@ -1877,7 +1879,7 @@ var SPAN_KEYS = {
1877
1879
  // Artifact processing attributes
1878
1880
  ARTIFACT_ID: "artifact.id",
1879
1881
  ARTIFACT_TYPE: "artifact.type",
1880
- ARTIFACT_AGENT_ID: "artifact.agent_id",
1882
+ ARTIFACT_SUB_AGENT_ID: "artifact.sub_agent_id",
1881
1883
  ARTIFACT_TOOL_CALL_ID: "artifact.tool_call_id",
1882
1884
  ARTIFACT_DATA: "artifact.data",
1883
1885
  ARTIFACT_NAME: "artifact.name",
@@ -1892,7 +1894,8 @@ var ACTIVITY_TYPES = {
1892
1894
  CONTEXT_RESOLUTION: "context_resolution",
1893
1895
  USER_MESSAGE: "user_message",
1894
1896
  AI_ASSISTANT_MESSAGE: "ai_assistant_message",
1895
- AI_MODEL_STREAMED_TEXT: "ai_model_streamed_text"
1897
+ AI_MODEL_STREAMED_TEXT: "ai_model_streamed_text",
1898
+ AI_MODEL_STREAMED_OBJECT: "ai_model_streamed_object"
1896
1899
  };
1897
1900
  var ACTIVITY_STATUS = {
1898
1901
  SUCCESS: "success",
@@ -1909,6 +1912,7 @@ var ACTIVITY_NAMES = {
1909
1912
  AI_ASSISTANT_MESSAGE: "AI Assistant Message",
1910
1913
  AI_TEXT_GENERATION: "AI Text Generation",
1911
1914
  AI_STREAMING_TEXT: "AI Streaming Text",
1915
+ AI_STREAMING_OBJECT: "AI Streaming Object",
1912
1916
  UNKNOWN_AGENT: "Unknown Agent",
1913
1917
  USER: "User"
1914
1918
  };
@@ -2015,6 +2019,7 @@ var QUERY_EXPRESSIONS = {
2015
2019
  AI_ASSISTANT_MESSAGES: "aiAssistantMessages",
2016
2020
  AI_GENERATIONS: "aiGenerations",
2017
2021
  AI_STREAMING_TEXT: "aiStreamingText",
2022
+ AI_STREAMING_OBJECT: "aiStreamingObject",
2018
2023
  CONTEXT_FETCHERS: "contextFetchers",
2019
2024
  DURATION_SPANS: "durationSpans",
2020
2025
  AGENT_GENERATIONS: "agentGenerations",
@@ -1,4 +1,4 @@
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-CuWMQh1H.cjs';
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-Bqpkx5sK.cjs';
2
2
  import { z } from 'zod';
3
3
  import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-HqRMF7sM.cjs';
4
4
  export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, l as SandboxConfigSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-HqRMF7sM.cjs';
@@ -1,4 +1,4 @@
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-CuWMQh1H.js';
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-Bqpkx5sK.js';
2
2
  import { z } from 'zod';
3
3
  import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-HqRMF7sM.js';
4
4
  export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, l as SandboxConfigSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-HqRMF7sM.js';
@@ -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, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, UNKNOWN_VALUE } from './chunk-SLL6V3AE.js';
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-QFIITHNT.js';
2
2
  import { ModelSettingsSchema, FullAgentAgentInsertSchema, ArtifactComponentApiInsertSchema } from './chunk-VICWT3WO.js';
3
3
  export { AgentStopWhenSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, ModelSettingsSchema, SandboxConfigSchema, StopWhenSchema, SubAgentStopWhenSchema, validatePropsAsJsonSchema } from './chunk-VICWT3WO.js';
4
4
  import { CredentialStoreType } from './chunk-YFHT5M2R.js';
package/dist/index.cjs CHANGED
@@ -212935,7 +212935,8 @@ var SPAN_NAMES = {
212935
212935
  };
212936
212936
  var AI_OPERATIONS = {
212937
212937
  GENERATE_TEXT: "ai.generateText.doGenerate",
212938
- STREAM_TEXT: "ai.streamText.doStream"
212938
+ STREAM_TEXT: "ai.streamText.doStream",
212939
+ STREAM_OBJECT: "ai.streamObject.doStream"
212939
212940
  };
212940
212941
  var SPAN_KEYS = {
212941
212942
  // Core span attributes
@@ -212959,6 +212960,7 @@ var SPAN_KEYS = {
212959
212960
  AI_RESPONSE_TIMESTAMP: "ai.response.timestamp",
212960
212961
  AI_RESPONSE_CONTENT: "ai.response.content",
212961
212962
  AI_RESPONSE_TEXT: "ai.response.text",
212963
+ AI_RESPONSE_OBJECT: "ai.response.object",
212962
212964
  AI_RESPONSE_MODEL: "ai.response.model",
212963
212965
  AI_RESPONSE_TOOL_CALLS: "ai.response.toolCalls",
212964
212966
  AI_PROMPT_MESSAGES: "ai.prompt.messages",
@@ -213004,7 +213006,7 @@ var SPAN_KEYS = {
213004
213006
  // Artifact processing attributes
213005
213007
  ARTIFACT_ID: "artifact.id",
213006
213008
  ARTIFACT_TYPE: "artifact.type",
213007
- ARTIFACT_AGENT_ID: "artifact.agent_id",
213009
+ ARTIFACT_SUB_AGENT_ID: "artifact.sub_agent_id",
213008
213010
  ARTIFACT_TOOL_CALL_ID: "artifact.tool_call_id",
213009
213011
  ARTIFACT_DATA: "artifact.data",
213010
213012
  ARTIFACT_NAME: "artifact.name",
@@ -213019,7 +213021,8 @@ var ACTIVITY_TYPES = {
213019
213021
  CONTEXT_RESOLUTION: "context_resolution",
213020
213022
  USER_MESSAGE: "user_message",
213021
213023
  AI_ASSISTANT_MESSAGE: "ai_assistant_message",
213022
- AI_MODEL_STREAMED_TEXT: "ai_model_streamed_text"
213024
+ AI_MODEL_STREAMED_TEXT: "ai_model_streamed_text",
213025
+ AI_MODEL_STREAMED_OBJECT: "ai_model_streamed_object"
213023
213026
  };
213024
213027
  var ACTIVITY_STATUS = {
213025
213028
  SUCCESS: "success",
@@ -213036,6 +213039,7 @@ var ACTIVITY_NAMES = {
213036
213039
  AI_ASSISTANT_MESSAGE: "AI Assistant Message",
213037
213040
  AI_TEXT_GENERATION: "AI Text Generation",
213038
213041
  AI_STREAMING_TEXT: "AI Streaming Text",
213042
+ AI_STREAMING_OBJECT: "AI Streaming Object",
213039
213043
  UNKNOWN_AGENT: "Unknown Agent",
213040
213044
  USER: "User"
213041
213045
  };
@@ -213142,6 +213146,7 @@ var QUERY_EXPRESSIONS = {
213142
213146
  AI_ASSISTANT_MESSAGES: "aiAssistantMessages",
213143
213147
  AI_GENERATIONS: "aiGenerations",
213144
213148
  AI_STREAMING_TEXT: "aiStreamingText",
213149
+ AI_STREAMING_OBJECT: "aiStreamingObject",
213145
213150
  CONTEXT_FETCHERS: "contextFetchers",
213146
213151
  DURATION_SPANS: "durationSpans",
213147
213152
  AGENT_GENERATIONS: "agentGenerations",
@@ -225020,8 +225025,7 @@ var envSchema = zod.z.object({
225020
225025
  ENVIRONMENT: zod.z.enum(["development", "production", "pentest", "test"]).optional(),
225021
225026
  DB_FILE_NAME: zod.z.string().optional(),
225022
225027
  TURSO_DATABASE_URL: zod.z.string().optional(),
225023
- TURSO_AUTH_TOKEN: zod.z.string().optional(),
225024
- OTEL_TRACES_FORCE_FLUSH_ENABLED: zod.z.coerce.boolean().optional()
225028
+ TURSO_AUTH_TOKEN: zod.z.string().optional()
225025
225029
  });
225026
225030
  var parseEnv = () => {
225027
225031
  try {
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { ANTHROPIC_MODELS, AnthropicModel, GOOGLE_MODELS, GoogleModel, ModelName, OPENAI_MODELS, OpenAIModel } from './constants/models.cjs';
2
- 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-CuWMQh1H.cjs';
2
+ 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-Bqpkx5sK.cjs';
3
3
  import { z } from 'zod';
4
4
  import { s as CredentialReferenceApiInsert, t as ContextConfigSelect, m as ContextFetchDefinition, i as MCPTransportType, u as MCPToolConfig, v as AgentScopeConfig, C as ConversationHistoryConfig, w as ProjectScopeConfig, x as PaginationConfig, y as AgentInsert, z as AgentUpdate, B as FullAgentDefinition, D as AgentSelect, E as ApiKeySelect, G as ApiKeyInsert, H as ApiKeyUpdate, I as CreateApiKeyParams, J as ApiKeyCreateResult, K as ArtifactComponentSelect, L as ArtifactComponentInsert, N as ArtifactComponentUpdate, O as SubAgentScopeConfig, Q as ContextCacheSelect, R as ContextCacheInsert, U as ContextConfigInsert, V as ContextConfigUpdate, W as ConversationSelect, X as ConversationInsert, p as ConversationMetadata, Y as ConversationUpdate, Z as CredentialReferenceSelect, _ as ToolSelect, $ as CredentialReferenceInsert, a0 as CredentialReferenceUpdate, a1 as DataComponentSelect, a2 as DataComponentInsert, a3 as DataComponentUpdate, a4 as ExternalAgentInsert, a5 as ExternalAgentSelect, a6 as ExternalAgentUpdate, a7 as FunctionApiInsert, a8 as FunctionToolApiInsert, a9 as FunctionToolApiUpdate, aa as Artifact, ab as LedgerArtifactSelect, r as MessageMetadata, q as MessageContent, ac as MessageVisibility, ad as MessageInsert, ae as MessageUpdate, af as FullProjectDefinition, ag as ProjectInfo, ah as ProjectSelect, ai as PaginationResult, aj as ProjectResourceCounts, ak as ProjectInsert, al as ProjectUpdate, am as SubAgentRelationInsert, an as ExternalSubAgentRelationInsert, ao as SubAgentRelationUpdate, ap as SubAgentToolRelationUpdate, n as ToolMcpConfig, o as ToolServerCapabilities, aq as SubAgentInsert, ar as SubAgentUpdate, as as SubAgentSelect, at as TaskInsert, T as TaskMetadataConfig, au as TaskSelect, av as McpTool, aw as ToolInsert, ax as ToolUpdate, h as CredentialStoreType, ay as ExecutionContext } from './utility-HqRMF7sM.cjs';
5
5
  export { ba as A2AError, bG as A2ARequest, bH as A2AResponse, aL as APIKeySecurityScheme, bU as AgentApiInsert, dY as AgentApiInsertSchema, bT as AgentApiSelect, dX as AgentApiSelectSchema, bV as AgentApiUpdate, dZ as AgentApiUpdateSchema, aH as AgentCapabilities, aV as AgentCard, dl as AgentConversationHistoryConfig, dV as AgentInsertSchema, gj as AgentListResponse, aI as AgentProvider, g3 as AgentResponse, dU as AgentSelectSchema, aJ as AgentSkill, e as AgentStopWhen, b as AgentStopWhenSchema, dW as AgentUpdateSchema, fP as AgentWithinContextOfProjectSchema, 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, gn as ApiKeyListResponse, g7 as ApiKeyResponse, 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, gs as ArtifactComponentListResponse, gc as ArtifactComponentResponse, eK as ArtifactComponentSelectSchema, eM as ArtifactComponentUpdateSchema, aO as AuthorizationCodeOAuthFlow, d4 as CanUseItem, fO as CanUseItemSchema, bq as CancelTaskRequest, bB as CancelTaskResponse, bA as CancelTaskSuccessResponse, aP as ClientCredentialsOAuthFlow, b8 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, gm as ContextConfigListResponse, g6 as ContextConfigResponse, 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, gv as ConversationListResponse, gf as ConversationResponse, 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, go as CredentialReferenceListResponse, g8 as CredentialReferenceResponse, 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, gr as DataComponentListResponse, gb as DataComponentResponse, ex as DataComponentSelectSchema, eA as DataComponentUpdateSchema, aF as DataPart, fT as ErrorResponseSchema, fU as ExistsResponseSchema, e_ as ExternalAgentApiInsertSchema, cL as ExternalAgentApiSelect, eZ as ExternalAgentApiSelectSchema, cN as ExternalAgentApiUpdate, e$ as ExternalAgentApiUpdateSchema, eX as ExternalAgentInsertSchema, gl as ExternalAgentListResponse, g5 as ExternalAgentResponse, eW as ExternalAgentSelectSchema, eY as ExternalAgentUpdateSchema, cM as ExternalSubAgentApiInsert, bS as ExternalSubAgentRelationApiInsert, dT as ExternalSubAgentRelationApiInsertSchema, dS as ExternalSubAgentRelationInsertSchema, co as FetchConfig, fs as FetchConfigSchema, cn as FetchDefinition, ft as FetchDefinitionSchema, aB as FileBase, aE as FilePart, aC as FileWithBytes, aD as FileWithUri, d3 as FullAgentAgentInsert, a as FullAgentAgentInsertSchema, g0 as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, ca as FunctionApiSelect, j as FunctionApiSelectSchema, cb as FunctionApiUpdate, k as FunctionApiUpdateSchema, c8 as FunctionInsert, fq as FunctionInsertSchema, gp as FunctionListResponse, g9 as FunctionResponse, 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, gq as FunctionToolListResponse, ga as FunctionToolResponse, fj as FunctionToolSelectSchema, fl as FunctionToolUpdateSchema, c9 as FunctionUpdate, fr as FunctionUpdateSchema, bs as GetTaskPushNotificationConfigRequest, bF as GetTaskPushNotificationConfigResponse, bE as GetTaskPushNotificationConfigSuccessResponse, bp as GetTaskRequest, bz as GetTaskResponse, by as GetTaskSuccessResponse, aM as HTTPAuthSecurityScheme, gB as HeadersScopeSchema, aQ as ImplicitOAuthFlow, b3 as InternalError, d5 as InternalSubAgentDefinition, b9 as InvalidAgentResponseError, b2 as InvalidParamsError, b0 as InvalidRequestError, a$ as JSONParseError, bk as JSONRPCError, bm as JSONRPCErrorResponse, bi as JSONRPCMessage, bj as JSONRPCRequest, bl 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, fR 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, aW as Message, ci as MessageApiInsert, ep as MessageApiInsertSchema, ch as MessageApiSelect, eo as MessageApiSelectSchema, cj as MessageApiUpdate, eq as MessageApiUpdateSchema, em as MessageInsertSchema, gw as MessageListResponse, df as MessageMode, bI as MessagePart, gg as MessageResponse, de as MessageRole, cg as MessageSelect, el as MessageSelectSchema, bg as MessageSendConfiguration, bh as MessageSendParams, dd as MessageType, en as MessageUpdateSchema, b1 as MethodNotFoundError, dA as ModelSchema, g as ModelSettings, M as ModelSettingsSchema, dg as Models, aS as OAuth2SecurityScheme, aN as OAuthFlows, aT as OpenIdConnectSecurityScheme, db as Pagination, gK as PaginationQueryParamsSchema, fQ as PaginationSchema, P as Part, az as PartBase, aR as PasswordOAuthFlow, d9 as ProjectApiInsert, f_ as ProjectApiInsertSchema, d8 as ProjectApiSelect, fZ as ProjectApiSelectSchema, da as ProjectApiUpdate, f$ as ProjectApiUpdateSchema, fX as ProjectInsertSchema, gh as ProjectListResponse, dB as ProjectModelSchema, dh as ProjectModels, g1 as ProjectResponse, fW as ProjectSelectSchema, fY as ProjectUpdateSchema, bb as PushNotificationAuthenticationInfo, bc as PushNotificationConfig, b6 as PushNotificationNotSupportedError, fV as RemovedResponseSchema, dC as SandboxConfig, l as SandboxConfigSchema, aU as SecurityScheme, aK as SecuritySchemeBase, bn as SendMessageRequest, bv as SendMessageResponse, bu as SendMessageSuccessResponse, bo as SendStreamingMessageRequest, bx as SendStreamingMessageResponse, bw as SendStreamingMessageSuccessResponse, br as SetTaskPushNotificationConfigRequest, bD as SetTaskPushNotificationConfigResponse, bC as SetTaskPushNotificationConfigSuccessResponse, fS as SingleResponseSchema, dj as StatusComponent, fM as StatusComponentSchema, fN as StatusUpdateSchema, di as StatusUpdateSettings, d as StopWhen, S as StopWhenSchema, bL as SubAgentApiInsert, dJ as SubAgentApiInsertSchema, bK as SubAgentApiSelect, dI as SubAgentApiSelectSchema, bM 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, gA as SubAgentArtifactComponentListResponse, gy as SubAgentArtifactComponentResponse, 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, gz as SubAgentDataComponentListResponse, gx as SubAgentDataComponentResponse, cw as SubAgentDataComponentSelect, eE as SubAgentDataComponentSelectSchema, cy as SubAgentDataComponentUpdate, eG as SubAgentDataComponentUpdateSchema, d6 as SubAgentDefinition, dG as SubAgentInsertSchema, gi as SubAgentListResponse, bP as SubAgentRelationApiInsert, dP as SubAgentRelationApiInsertSchema, bO as SubAgentRelationApiSelect, dO as SubAgentRelationApiSelectSchema, bQ as SubAgentRelationApiUpdate, dQ as SubAgentRelationApiUpdateSchema, dM as SubAgentRelationInsertSchema, gt as SubAgentRelationListResponse, bR as SubAgentRelationQuery, dR as SubAgentRelationQuerySchema, gd as SubAgentRelationResponse, bN as SubAgentRelationSelect, dL as SubAgentRelationSelectSchema, dN as SubAgentRelationUpdateSchema, g2 as SubAgentResponse, dF as SubAgentSelectSchema, f as SubAgentStopWhen, c 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, gu as SubAgentToolRelationListResponse, ge as SubAgentToolRelationResponse, cV as SubAgentToolRelationSelect, fA as SubAgentToolRelationSelectSchema, fC as SubAgentToolRelationUpdateSchema, dH as SubAgentUpdateSchema, dc as SummaryEvent, dt as TOOL_STATUS_VALUES, aY as Task, bY as TaskApiInsert, e2 as TaskApiInsertSchema, bX as TaskApiSelect, e1 as TaskApiSelectSchema, bZ as TaskApiUpdate, e3 as TaskApiUpdateSchema, bJ as TaskArtifact, a_ as TaskArtifactUpdateEvent, be as TaskIdParams, d$ as TaskInsertSchema, b5 as TaskNotCancelableError, b4 as TaskNotFoundError, bd as TaskPushNotificationConfig, bf 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, bt as TaskResubscriptionRequest, d_ as TaskSelectSchema, aG as TaskState, aX as TaskStatus, aZ as TaskStatusUpdateEvent, bW as TaskUpdate, e0 as TaskUpdateSchema, gD as TenantIdParamsSchema, gC as TenantParamsSchema, gH as TenantProjectAgentIdParamsSchema, gG as TenantProjectAgentParamsSchema, gJ as TenantProjectAgentSubAgentIdParamsSchema, gI as TenantProjectAgentSubAgentParamsSchema, gF as TenantProjectIdParamsSchema, gE as TenantProjectParamsSchema, aA 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, gk as ToolListResponse, g4 as ToolResponse, ed as ToolSelectSchema, eb as ToolStatusSchema, ff as ToolUpdateSchema, dy as URL_SAFE_ID_PATTERN, b7 as UnsupportedOperationError, du as VALID_RELATION_TYPES, dz as resourceIdSchema } from './utility-HqRMF7sM.cjs';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { ANTHROPIC_MODELS, AnthropicModel, GOOGLE_MODELS, GoogleModel, ModelName, OPENAI_MODELS, OpenAIModel } from './constants/models.js';
2
- 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-CuWMQh1H.js';
2
+ 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-Bqpkx5sK.js';
3
3
  import { z } from 'zod';
4
4
  import { s as CredentialReferenceApiInsert, t as ContextConfigSelect, m as ContextFetchDefinition, i as MCPTransportType, u as MCPToolConfig, v as AgentScopeConfig, C as ConversationHistoryConfig, w as ProjectScopeConfig, x as PaginationConfig, y as AgentInsert, z as AgentUpdate, B as FullAgentDefinition, D as AgentSelect, E as ApiKeySelect, G as ApiKeyInsert, H as ApiKeyUpdate, I as CreateApiKeyParams, J as ApiKeyCreateResult, K as ArtifactComponentSelect, L as ArtifactComponentInsert, N as ArtifactComponentUpdate, O as SubAgentScopeConfig, Q as ContextCacheSelect, R as ContextCacheInsert, U as ContextConfigInsert, V as ContextConfigUpdate, W as ConversationSelect, X as ConversationInsert, p as ConversationMetadata, Y as ConversationUpdate, Z as CredentialReferenceSelect, _ as ToolSelect, $ as CredentialReferenceInsert, a0 as CredentialReferenceUpdate, a1 as DataComponentSelect, a2 as DataComponentInsert, a3 as DataComponentUpdate, a4 as ExternalAgentInsert, a5 as ExternalAgentSelect, a6 as ExternalAgentUpdate, a7 as FunctionApiInsert, a8 as FunctionToolApiInsert, a9 as FunctionToolApiUpdate, aa as Artifact, ab as LedgerArtifactSelect, r as MessageMetadata, q as MessageContent, ac as MessageVisibility, ad as MessageInsert, ae as MessageUpdate, af as FullProjectDefinition, ag as ProjectInfo, ah as ProjectSelect, ai as PaginationResult, aj as ProjectResourceCounts, ak as ProjectInsert, al as ProjectUpdate, am as SubAgentRelationInsert, an as ExternalSubAgentRelationInsert, ao as SubAgentRelationUpdate, ap as SubAgentToolRelationUpdate, n as ToolMcpConfig, o as ToolServerCapabilities, aq as SubAgentInsert, ar as SubAgentUpdate, as as SubAgentSelect, at as TaskInsert, T as TaskMetadataConfig, au as TaskSelect, av as McpTool, aw as ToolInsert, ax as ToolUpdate, h as CredentialStoreType, ay as ExecutionContext } from './utility-HqRMF7sM.js';
5
5
  export { ba as A2AError, bG as A2ARequest, bH as A2AResponse, aL as APIKeySecurityScheme, bU as AgentApiInsert, dY as AgentApiInsertSchema, bT as AgentApiSelect, dX as AgentApiSelectSchema, bV as AgentApiUpdate, dZ as AgentApiUpdateSchema, aH as AgentCapabilities, aV as AgentCard, dl as AgentConversationHistoryConfig, dV as AgentInsertSchema, gj as AgentListResponse, aI as AgentProvider, g3 as AgentResponse, dU as AgentSelectSchema, aJ as AgentSkill, e as AgentStopWhen, b as AgentStopWhenSchema, dW as AgentUpdateSchema, fP as AgentWithinContextOfProjectSchema, 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, gn as ApiKeyListResponse, g7 as ApiKeyResponse, 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, gs as ArtifactComponentListResponse, gc as ArtifactComponentResponse, eK as ArtifactComponentSelectSchema, eM as ArtifactComponentUpdateSchema, aO as AuthorizationCodeOAuthFlow, d4 as CanUseItem, fO as CanUseItemSchema, bq as CancelTaskRequest, bB as CancelTaskResponse, bA as CancelTaskSuccessResponse, aP as ClientCredentialsOAuthFlow, b8 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, gm as ContextConfigListResponse, g6 as ContextConfigResponse, 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, gv as ConversationListResponse, gf as ConversationResponse, 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, go as CredentialReferenceListResponse, g8 as CredentialReferenceResponse, 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, gr as DataComponentListResponse, gb as DataComponentResponse, ex as DataComponentSelectSchema, eA as DataComponentUpdateSchema, aF as DataPart, fT as ErrorResponseSchema, fU as ExistsResponseSchema, e_ as ExternalAgentApiInsertSchema, cL as ExternalAgentApiSelect, eZ as ExternalAgentApiSelectSchema, cN as ExternalAgentApiUpdate, e$ as ExternalAgentApiUpdateSchema, eX as ExternalAgentInsertSchema, gl as ExternalAgentListResponse, g5 as ExternalAgentResponse, eW as ExternalAgentSelectSchema, eY as ExternalAgentUpdateSchema, cM as ExternalSubAgentApiInsert, bS as ExternalSubAgentRelationApiInsert, dT as ExternalSubAgentRelationApiInsertSchema, dS as ExternalSubAgentRelationInsertSchema, co as FetchConfig, fs as FetchConfigSchema, cn as FetchDefinition, ft as FetchDefinitionSchema, aB as FileBase, aE as FilePart, aC as FileWithBytes, aD as FileWithUri, d3 as FullAgentAgentInsert, a as FullAgentAgentInsertSchema, g0 as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, ca as FunctionApiSelect, j as FunctionApiSelectSchema, cb as FunctionApiUpdate, k as FunctionApiUpdateSchema, c8 as FunctionInsert, fq as FunctionInsertSchema, gp as FunctionListResponse, g9 as FunctionResponse, 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, gq as FunctionToolListResponse, ga as FunctionToolResponse, fj as FunctionToolSelectSchema, fl as FunctionToolUpdateSchema, c9 as FunctionUpdate, fr as FunctionUpdateSchema, bs as GetTaskPushNotificationConfigRequest, bF as GetTaskPushNotificationConfigResponse, bE as GetTaskPushNotificationConfigSuccessResponse, bp as GetTaskRequest, bz as GetTaskResponse, by as GetTaskSuccessResponse, aM as HTTPAuthSecurityScheme, gB as HeadersScopeSchema, aQ as ImplicitOAuthFlow, b3 as InternalError, d5 as InternalSubAgentDefinition, b9 as InvalidAgentResponseError, b2 as InvalidParamsError, b0 as InvalidRequestError, a$ as JSONParseError, bk as JSONRPCError, bm as JSONRPCErrorResponse, bi as JSONRPCMessage, bj as JSONRPCRequest, bl 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, fR 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, aW as Message, ci as MessageApiInsert, ep as MessageApiInsertSchema, ch as MessageApiSelect, eo as MessageApiSelectSchema, cj as MessageApiUpdate, eq as MessageApiUpdateSchema, em as MessageInsertSchema, gw as MessageListResponse, df as MessageMode, bI as MessagePart, gg as MessageResponse, de as MessageRole, cg as MessageSelect, el as MessageSelectSchema, bg as MessageSendConfiguration, bh as MessageSendParams, dd as MessageType, en as MessageUpdateSchema, b1 as MethodNotFoundError, dA as ModelSchema, g as ModelSettings, M as ModelSettingsSchema, dg as Models, aS as OAuth2SecurityScheme, aN as OAuthFlows, aT as OpenIdConnectSecurityScheme, db as Pagination, gK as PaginationQueryParamsSchema, fQ as PaginationSchema, P as Part, az as PartBase, aR as PasswordOAuthFlow, d9 as ProjectApiInsert, f_ as ProjectApiInsertSchema, d8 as ProjectApiSelect, fZ as ProjectApiSelectSchema, da as ProjectApiUpdate, f$ as ProjectApiUpdateSchema, fX as ProjectInsertSchema, gh as ProjectListResponse, dB as ProjectModelSchema, dh as ProjectModels, g1 as ProjectResponse, fW as ProjectSelectSchema, fY as ProjectUpdateSchema, bb as PushNotificationAuthenticationInfo, bc as PushNotificationConfig, b6 as PushNotificationNotSupportedError, fV as RemovedResponseSchema, dC as SandboxConfig, l as SandboxConfigSchema, aU as SecurityScheme, aK as SecuritySchemeBase, bn as SendMessageRequest, bv as SendMessageResponse, bu as SendMessageSuccessResponse, bo as SendStreamingMessageRequest, bx as SendStreamingMessageResponse, bw as SendStreamingMessageSuccessResponse, br as SetTaskPushNotificationConfigRequest, bD as SetTaskPushNotificationConfigResponse, bC as SetTaskPushNotificationConfigSuccessResponse, fS as SingleResponseSchema, dj as StatusComponent, fM as StatusComponentSchema, fN as StatusUpdateSchema, di as StatusUpdateSettings, d as StopWhen, S as StopWhenSchema, bL as SubAgentApiInsert, dJ as SubAgentApiInsertSchema, bK as SubAgentApiSelect, dI as SubAgentApiSelectSchema, bM 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, gA as SubAgentArtifactComponentListResponse, gy as SubAgentArtifactComponentResponse, 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, gz as SubAgentDataComponentListResponse, gx as SubAgentDataComponentResponse, cw as SubAgentDataComponentSelect, eE as SubAgentDataComponentSelectSchema, cy as SubAgentDataComponentUpdate, eG as SubAgentDataComponentUpdateSchema, d6 as SubAgentDefinition, dG as SubAgentInsertSchema, gi as SubAgentListResponse, bP as SubAgentRelationApiInsert, dP as SubAgentRelationApiInsertSchema, bO as SubAgentRelationApiSelect, dO as SubAgentRelationApiSelectSchema, bQ as SubAgentRelationApiUpdate, dQ as SubAgentRelationApiUpdateSchema, dM as SubAgentRelationInsertSchema, gt as SubAgentRelationListResponse, bR as SubAgentRelationQuery, dR as SubAgentRelationQuerySchema, gd as SubAgentRelationResponse, bN as SubAgentRelationSelect, dL as SubAgentRelationSelectSchema, dN as SubAgentRelationUpdateSchema, g2 as SubAgentResponse, dF as SubAgentSelectSchema, f as SubAgentStopWhen, c 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, gu as SubAgentToolRelationListResponse, ge as SubAgentToolRelationResponse, cV as SubAgentToolRelationSelect, fA as SubAgentToolRelationSelectSchema, fC as SubAgentToolRelationUpdateSchema, dH as SubAgentUpdateSchema, dc as SummaryEvent, dt as TOOL_STATUS_VALUES, aY as Task, bY as TaskApiInsert, e2 as TaskApiInsertSchema, bX as TaskApiSelect, e1 as TaskApiSelectSchema, bZ as TaskApiUpdate, e3 as TaskApiUpdateSchema, bJ as TaskArtifact, a_ as TaskArtifactUpdateEvent, be as TaskIdParams, d$ as TaskInsertSchema, b5 as TaskNotCancelableError, b4 as TaskNotFoundError, bd as TaskPushNotificationConfig, bf 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, bt as TaskResubscriptionRequest, d_ as TaskSelectSchema, aG as TaskState, aX as TaskStatus, aZ as TaskStatusUpdateEvent, bW as TaskUpdate, e0 as TaskUpdateSchema, gD as TenantIdParamsSchema, gC as TenantParamsSchema, gH as TenantProjectAgentIdParamsSchema, gG as TenantProjectAgentParamsSchema, gJ as TenantProjectAgentSubAgentIdParamsSchema, gI as TenantProjectAgentSubAgentParamsSchema, gF as TenantProjectIdParamsSchema, gE as TenantProjectParamsSchema, aA 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, gk as ToolListResponse, g4 as ToolResponse, ed as ToolSelectSchema, eb as ToolStatusSchema, ff as ToolUpdateSchema, dy as URL_SAFE_ID_PATTERN, b7 as UnsupportedOperationError, du as VALID_RELATION_TYPES, dz as resourceIdSchema } from './utility-HqRMF7sM.js';
package/dist/index.js CHANGED
@@ -1,6 +1,5 @@
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-SLL6V3AE.js';
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-QFIITHNT.js';
2
2
  export { ANTHROPIC_MODELS, GOOGLE_MODELS, OPENAI_MODELS } from './chunk-LZJWVTQ2.js';
3
- export { TaskState } from './chunk-H2F72PDA.js';
4
3
  import { getLogger, convertZodToJsonSchema } from './chunk-YECQCT5N.js';
5
4
  export { PinoLogger, convertZodToJsonSchema, convertZodToJsonSchemaWithPreview, extractPreviewFields, getLogger, isZodSchema, loggerFactory, preview } from './chunk-YECQCT5N.js';
6
5
  import { validateAndTypeAgentData, validateAgentStructure, isInternalAgent, isExternalAgent } from './chunk-4FMDWUE4.js';
@@ -9,6 +8,7 @@ import { ContextConfigApiUpdateSchema, validatePropsAsJsonSchema } from './chunk
9
8
  export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentInsertSchema, AgentListResponse, AgentResponse, AgentSelectSchema, AgentStopWhenSchema, AgentUpdateSchema, AgentWithinContextOfProjectSchema, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeyListResponse, ApiKeyResponse, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentInsertSchema, ArtifactComponentListResponse, ArtifactComponentResponse, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigListResponse, ContextConfigResponse, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationListResponse, ConversationResponse, ConversationSelectSchema, ConversationUpdateSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceListResponse, CredentialReferenceResponse, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentBaseSchema, DataComponentInsertSchema, DataComponentListResponse, DataComponentResponse, DataComponentSelectSchema, DataComponentUpdateSchema, ErrorResponseSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentListResponse, ExternalAgentResponse, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FullAgentAgentInsertSchema, FullProjectDefinitionSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, FunctionInsertSchema, FunctionListResponse, FunctionResponse, FunctionSelectSchema, FunctionToolApiInsertSchema, FunctionToolApiSelectSchema, FunctionToolApiUpdateSchema, FunctionToolConfigSchema, FunctionToolInsertSchema, FunctionToolListResponse, FunctionToolResponse, FunctionToolSelectSchema, FunctionToolUpdateSchema, FunctionUpdateSchema, HeadersScopeSchema, LedgerArtifactApiInsertSchema, LedgerArtifactApiSelectSchema, LedgerArtifactApiUpdateSchema, LedgerArtifactInsertSchema, LedgerArtifactSelectSchema, LedgerArtifactUpdateSchema, ListResponseSchema, MAX_ID_LENGTH, MCPToolConfigSchema, MIN_ID_LENGTH, McpToolDefinitionSchema, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageListResponse, MessageResponse, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettingsSchema, PaginationQueryParamsSchema, PaginationSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectListResponse, ProjectModelSchema, ProjectResponse, ProjectSelectSchema, ProjectUpdateSchema, RemovedResponseSchema, SandboxConfigSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhenSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentListResponse, SubAgentArtifactComponentResponse, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentListResponse, SubAgentDataComponentResponse, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentInsertSchema, SubAgentListResponse, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationListResponse, SubAgentRelationQuerySchema, SubAgentRelationResponse, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentResponse, SubAgentSelectSchema, SubAgentStopWhenSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationListResponse, SubAgentToolRelationResponse, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectAgentIdParamsSchema, TenantProjectAgentParamsSchema, TenantProjectAgentSubAgentIdParamsSchema, TenantProjectAgentSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolListResponse, ToolResponse, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, URL_SAFE_ID_PATTERN, resourceIdSchema, validatePropsAsJsonSchema } from './chunk-VICWT3WO.js';
10
9
  import { schema_exports, contextConfigs, externalAgents, functions, functionTools, agentFunctionToolRelations, subAgentRelations, subAgents, subAgentToolRelations, tools, credentialReferences, agents, subAgentDataComponents, subAgentArtifactComponents, dataComponents, artifactComponents, projects, apiKeys, contextCache, conversations, messages, ledgerArtifacts, tasks, taskRelations } from './chunk-B6F3RF4T.js';
11
10
  export { agentFunctionToolRelations, agentFunctionToolRelationsRelations, agentRelations, agentToolRelationsRelations, agents, apiKeys, apiKeysRelations, artifactComponents, artifactComponentsRelations, contextCache, contextCacheRelations, contextConfigs, contextConfigsRelations, conversations, conversationsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, ledgerArtifacts, ledgerArtifactsRelations, messages, messagesRelations, projects, projectsRelations, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentRelations, subAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, taskRelations, taskRelationsRelations, tasks, tasksRelations, tools, toolsRelations } from './chunk-B6F3RF4T.js';
11
+ export { TaskState } from './chunk-H2F72PDA.js';
12
12
  import { CredentialStoreType, MCPServerType, MCPTransportType } from './chunk-YFHT5M2R.js';
13
13
  export { CredentialStoreType, MCPServerType, MCPTransportType, TOOL_STATUS_VALUES, VALID_RELATION_TYPES } from './chunk-YFHT5M2R.js';
14
14
  import { __commonJS, __require, __publicField } from './chunk-E6R6PML7.js';
@@ -222517,8 +222517,7 @@ var envSchema = z$1.object({
222517
222517
  ENVIRONMENT: z$1.enum(["development", "production", "pentest", "test"]).optional(),
222518
222518
  DB_FILE_NAME: z$1.string().optional(),
222519
222519
  TURSO_DATABASE_URL: z$1.string().optional(),
222520
- TURSO_AUTH_TOKEN: z$1.string().optional(),
222521
- OTEL_TRACES_FORCE_FLUSH_ENABLED: z$1.coerce.boolean().optional()
222520
+ TURSO_AUTH_TOKEN: z$1.string().optional()
222522
222521
  });
222523
222522
  var parseEnv = () => {
222524
222523
  try {
@@ -14,6 +14,7 @@ declare const SPAN_NAMES: {
14
14
  declare const AI_OPERATIONS: {
15
15
  readonly GENERATE_TEXT: "ai.generateText.doGenerate";
16
16
  readonly STREAM_TEXT: "ai.streamText.doStream";
17
+ readonly STREAM_OBJECT: "ai.streamObject.doStream";
17
18
  };
18
19
  /** OpenTelemetry span attribute keys used for tracing */
19
20
  declare const SPAN_KEYS: {
@@ -35,6 +36,7 @@ declare const SPAN_KEYS: {
35
36
  readonly AI_RESPONSE_TIMESTAMP: "ai.response.timestamp";
36
37
  readonly AI_RESPONSE_CONTENT: "ai.response.content";
37
38
  readonly AI_RESPONSE_TEXT: "ai.response.text";
39
+ readonly AI_RESPONSE_OBJECT: "ai.response.object";
38
40
  readonly AI_RESPONSE_MODEL: "ai.response.model";
39
41
  readonly AI_RESPONSE_TOOL_CALLS: "ai.response.toolCalls";
40
42
  readonly AI_PROMPT_MESSAGES: "ai.prompt.messages";
@@ -71,7 +73,7 @@ declare const SPAN_KEYS: {
71
73
  readonly CONVERSATION_ID: "conversation.id";
72
74
  readonly ARTIFACT_ID: "artifact.id";
73
75
  readonly ARTIFACT_TYPE: "artifact.type";
74
- readonly ARTIFACT_AGENT_ID: "artifact.agent_id";
76
+ readonly ARTIFACT_SUB_AGENT_ID: "artifact.sub_agent_id";
75
77
  readonly ARTIFACT_TOOL_CALL_ID: "artifact.tool_call_id";
76
78
  readonly ARTIFACT_DATA: "artifact.data";
77
79
  readonly ARTIFACT_NAME: "artifact.name";
@@ -88,6 +90,7 @@ declare const ACTIVITY_TYPES: {
88
90
  readonly USER_MESSAGE: "user_message";
89
91
  readonly AI_ASSISTANT_MESSAGE: "ai_assistant_message";
90
92
  readonly AI_MODEL_STREAMED_TEXT: "ai_model_streamed_text";
93
+ readonly AI_MODEL_STREAMED_OBJECT: "ai_model_streamed_object";
91
94
  };
92
95
  /** Activity Status Values */
93
96
  declare const ACTIVITY_STATUS: {
@@ -107,6 +110,7 @@ declare const ACTIVITY_NAMES: {
107
110
  readonly AI_ASSISTANT_MESSAGE: "AI Assistant Message";
108
111
  readonly AI_TEXT_GENERATION: "AI Text Generation";
109
112
  readonly AI_STREAMING_TEXT: "AI Streaming Text";
113
+ readonly AI_STREAMING_OBJECT: "AI Streaming Object";
110
114
  readonly UNKNOWN_AGENT: "Unknown Agent";
111
115
  readonly USER: "User";
112
116
  };
@@ -210,6 +214,7 @@ declare const QUERY_EXPRESSIONS: {
210
214
  readonly AI_ASSISTANT_MESSAGES: "aiAssistantMessages";
211
215
  readonly AI_GENERATIONS: "aiGenerations";
212
216
  readonly AI_STREAMING_TEXT: "aiStreamingText";
217
+ readonly AI_STREAMING_OBJECT: "aiStreamingObject";
213
218
  readonly CONTEXT_FETCHERS: "contextFetchers";
214
219
  readonly DURATION_SPANS: "durationSpans";
215
220
  readonly AGENT_GENERATIONS: "agentGenerations";
@@ -14,6 +14,7 @@ declare const SPAN_NAMES: {
14
14
  declare const AI_OPERATIONS: {
15
15
  readonly GENERATE_TEXT: "ai.generateText.doGenerate";
16
16
  readonly STREAM_TEXT: "ai.streamText.doStream";
17
+ readonly STREAM_OBJECT: "ai.streamObject.doStream";
17
18
  };
18
19
  /** OpenTelemetry span attribute keys used for tracing */
19
20
  declare const SPAN_KEYS: {
@@ -35,6 +36,7 @@ declare const SPAN_KEYS: {
35
36
  readonly AI_RESPONSE_TIMESTAMP: "ai.response.timestamp";
36
37
  readonly AI_RESPONSE_CONTENT: "ai.response.content";
37
38
  readonly AI_RESPONSE_TEXT: "ai.response.text";
39
+ readonly AI_RESPONSE_OBJECT: "ai.response.object";
38
40
  readonly AI_RESPONSE_MODEL: "ai.response.model";
39
41
  readonly AI_RESPONSE_TOOL_CALLS: "ai.response.toolCalls";
40
42
  readonly AI_PROMPT_MESSAGES: "ai.prompt.messages";
@@ -71,7 +73,7 @@ declare const SPAN_KEYS: {
71
73
  readonly CONVERSATION_ID: "conversation.id";
72
74
  readonly ARTIFACT_ID: "artifact.id";
73
75
  readonly ARTIFACT_TYPE: "artifact.type";
74
- readonly ARTIFACT_AGENT_ID: "artifact.agent_id";
76
+ readonly ARTIFACT_SUB_AGENT_ID: "artifact.sub_agent_id";
75
77
  readonly ARTIFACT_TOOL_CALL_ID: "artifact.tool_call_id";
76
78
  readonly ARTIFACT_DATA: "artifact.data";
77
79
  readonly ARTIFACT_NAME: "artifact.name";
@@ -88,6 +90,7 @@ declare const ACTIVITY_TYPES: {
88
90
  readonly USER_MESSAGE: "user_message";
89
91
  readonly AI_ASSISTANT_MESSAGE: "ai_assistant_message";
90
92
  readonly AI_MODEL_STREAMED_TEXT: "ai_model_streamed_text";
93
+ readonly AI_MODEL_STREAMED_OBJECT: "ai_model_streamed_object";
91
94
  };
92
95
  /** Activity Status Values */
93
96
  declare const ACTIVITY_STATUS: {
@@ -107,6 +110,7 @@ declare const ACTIVITY_NAMES: {
107
110
  readonly AI_ASSISTANT_MESSAGE: "AI Assistant Message";
108
111
  readonly AI_TEXT_GENERATION: "AI Text Generation";
109
112
  readonly AI_STREAMING_TEXT: "AI Streaming Text";
113
+ readonly AI_STREAMING_OBJECT: "AI Streaming Object";
110
114
  readonly UNKNOWN_AGENT: "Unknown Agent";
111
115
  readonly USER: "User";
112
116
  };
@@ -210,6 +214,7 @@ declare const QUERY_EXPRESSIONS: {
210
214
  readonly AI_ASSISTANT_MESSAGES: "aiAssistantMessages";
211
215
  readonly AI_GENERATIONS: "aiGenerations";
212
216
  readonly AI_STREAMING_TEXT: "aiStreamingText";
217
+ readonly AI_STREAMING_OBJECT: "aiStreamingObject";
213
218
  readonly CONTEXT_FETCHERS: "contextFetchers";
214
219
  readonly DURATION_SPANS: "durationSpans";
215
220
  readonly AGENT_GENERATIONS: "agentGenerations";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-core",
3
- "version": "0.19.5",
3
+ "version": "0.19.7",
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",