@inkeep/agents-core 0.0.0-dev-20251010204118 → 0.0.0-dev-20251012022558
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-E4SFK6AI.js → chunk-ASA7FU3H.js} +1 -1
- package/dist/chunk-E6R6PML7.js +19 -0
- package/dist/{chunk-TCLX6C3C.js → chunk-H6PMWHNV.js} +14 -7
- package/dist/chunk-HYS7HUYJ.js +27 -0
- package/dist/{chunk-JTHQYGCX.js → chunk-JK3LPVOW.js} +1 -1
- package/dist/{chunk-ID4CFGVF.js → chunk-OEKS3RQI.js} +1 -1
- package/dist/{chunk-R2EERZSW.js → chunk-YECQCT5N.js} +1 -1
- 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 +3 -3
- package/dist/constants/models.cjs +31 -0
- package/dist/constants/models.d.cts +33 -0
- package/dist/constants/models.d.ts +33 -0
- package/dist/constants/models.js +1 -0
- package/dist/db/schema.js +1 -1
- package/dist/index.cjs +212961 -9
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +212920 -12
- package/dist/{signoz-queries-CifqdbnO.d.ts → signoz-queries-BuiipZTk.d.cts} +10 -5
- package/dist/{signoz-queries-CifqdbnO.d.cts → signoz-queries-BuiipZTk.d.ts} +10 -5
- package/dist/utils/schema-conversion.js +1 -1
- package/dist/validation/index.js +2 -2
- package/package.json +5 -1
- package/dist/chunk-MKBO26DX.js +0 -9
|
@@ -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 };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { convertZodToJsonSchema, convertZodToJsonSchemaWithPreview, extractPreviewFields, isZodSchema, preview } from '../chunk-
|
|
1
|
+
export { convertZodToJsonSchema, convertZodToJsonSchemaWithPreview, extractPreviewFields, isZodSchema, preview } from '../chunk-YECQCT5N.js';
|
package/dist/validation/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAndTypeGraphData, validateArtifactComponentReferences, validateDataComponentReferences, validateGraphStructure, validateToolReferences } from '../chunk-
|
|
2
|
-
export { AgentGraphApiInsertSchema, AgentGraphApiSelectSchema, AgentGraphApiUpdateSchema, AgentGraphInsertSchema, AgentGraphSelectSchema, AgentGraphUpdateSchema, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentInsertSchema, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationSelectSchema, ConversationUpdateSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentBaseSchema, DataComponentInsertSchema, DataComponentSelectSchema, DataComponentUpdateSchema, ErrorResponseSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FullGraphAgentInsertSchema, FullGraphDefinitionSchema, FullProjectDefinitionSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, FunctionInsertSchema, FunctionSelectSchema, FunctionToolApiInsertSchema, FunctionToolApiSelectSchema, FunctionToolApiUpdateSchema, FunctionToolConfigSchema, FunctionToolInsertSchema, FunctionToolSelectSchema, FunctionToolUpdateSchema, FunctionUpdateSchema, GraphStopWhenSchema, GraphWithinContextOfProjectSchema, HeadersScopeSchema, LedgerArtifactApiInsertSchema, LedgerArtifactApiSelectSchema, LedgerArtifactApiUpdateSchema, LedgerArtifactInsertSchema, LedgerArtifactSelectSchema, LedgerArtifactUpdateSchema, ListResponseSchema, MAX_ID_LENGTH, MCPToolConfigSchema, MIN_ID_LENGTH, McpToolDefinitionSchema, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettingsSchema, PaginationQueryParamsSchema, PaginationSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectModelSchema, ProjectSelectSchema, ProjectUpdateSchema, RemovedResponseSchema, SandboxConfigSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhenSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentInsertSchema, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationQuerySchema, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentSelectSchema, SubAgentStopWhenSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectGraphIdParamsSchema, TenantProjectGraphParamsSchema, TenantProjectGraphSubAgentIdParamsSchema, TenantProjectGraphSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, URL_SAFE_ID_PATTERN, resourceIdSchema, validatePropsAsJsonSchema } from '../chunk-
|
|
1
|
+
export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAndTypeGraphData, validateArtifactComponentReferences, validateDataComponentReferences, validateGraphStructure, validateToolReferences } from '../chunk-JK3LPVOW.js';
|
|
2
|
+
export { AgentGraphApiInsertSchema, AgentGraphApiSelectSchema, AgentGraphApiUpdateSchema, AgentGraphInsertSchema, AgentGraphSelectSchema, AgentGraphUpdateSchema, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentInsertSchema, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationSelectSchema, ConversationUpdateSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentBaseSchema, DataComponentInsertSchema, DataComponentSelectSchema, DataComponentUpdateSchema, ErrorResponseSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FullGraphAgentInsertSchema, FullGraphDefinitionSchema, FullProjectDefinitionSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, FunctionInsertSchema, FunctionSelectSchema, FunctionToolApiInsertSchema, FunctionToolApiSelectSchema, FunctionToolApiUpdateSchema, FunctionToolConfigSchema, FunctionToolInsertSchema, FunctionToolSelectSchema, FunctionToolUpdateSchema, FunctionUpdateSchema, GraphStopWhenSchema, GraphWithinContextOfProjectSchema, HeadersScopeSchema, LedgerArtifactApiInsertSchema, LedgerArtifactApiSelectSchema, LedgerArtifactApiUpdateSchema, LedgerArtifactInsertSchema, LedgerArtifactSelectSchema, LedgerArtifactUpdateSchema, ListResponseSchema, MAX_ID_LENGTH, MCPToolConfigSchema, MIN_ID_LENGTH, McpToolDefinitionSchema, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettingsSchema, PaginationQueryParamsSchema, PaginationSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectModelSchema, ProjectSelectSchema, ProjectUpdateSchema, RemovedResponseSchema, SandboxConfigSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhenSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentInsertSchema, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationQuerySchema, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentSelectSchema, SubAgentStopWhenSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectGraphIdParamsSchema, TenantProjectGraphParamsSchema, TenantProjectGraphSubAgentIdParamsSchema, TenantProjectGraphSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, URL_SAFE_ID_PATTERN, resourceIdSchema, validatePropsAsJsonSchema } from '../chunk-ASA7FU3H.js';
|
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-20251012022558",
|
|
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",
|
|
@@ -27,6 +27,10 @@
|
|
|
27
27
|
"types": "./dist/client-exports.d.ts",
|
|
28
28
|
"import": "./dist/client-exports.js"
|
|
29
29
|
},
|
|
30
|
+
"./constants/models": {
|
|
31
|
+
"types": "./dist/constants/models.d.ts",
|
|
32
|
+
"import": "./dist/constants/models.js"
|
|
33
|
+
},
|
|
30
34
|
"./utils/schema-conversion": {
|
|
31
35
|
"types": "./dist/utils/schema-conversion.d.ts",
|
|
32
36
|
"import": "./dist/utils/schema-conversion.js"
|
package/dist/chunk-MKBO26DX.js
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3
|
-
var __export = (target, all) => {
|
|
4
|
-
for (var name in all)
|
|
5
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
6
|
-
};
|
|
7
|
-
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
8
|
-
|
|
9
|
-
export { __export, __publicField };
|