@inkeep/agents-core 0.0.0-dev-20251020154015 → 0.0.0-dev-20251020214311
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-AN3YZP42.js → chunk-ZGJI6UNK.js} +34 -11
- package/dist/index.cjs +34 -11
- package/dist/index.js +2 -2
- package/dist/validation/index.cjs +34 -11
- package/dist/validation/index.js +1 -1
- package/package.json +1 -1
|
@@ -173,15 +173,38 @@ function generateIdFromName(name) {
|
|
|
173
173
|
var MAX_CODE_SIZE = 5e4;
|
|
174
174
|
var MAX_DATA_SIZE = 1e4;
|
|
175
175
|
var DANGEROUS_PATTERNS = [
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
176
|
+
{
|
|
177
|
+
pattern: /\beval\s*\(/i,
|
|
178
|
+
message: "eval() is not allowed"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
pattern: /\bFunction\s*\(/i,
|
|
182
|
+
message: "Function constructor is not allowed"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
pattern: /dangerouslySetInnerHTML/i,
|
|
186
|
+
message: "dangerouslySetInnerHTML is not allowed"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
pattern: /<script\b/i,
|
|
190
|
+
message: "Script tags are not allowed"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
pattern: /\bon\w+\s*=/i,
|
|
194
|
+
message: "Inline event handlers (onClick=, onLoad=, etc.) are not allowed"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
pattern: /document\.write/i,
|
|
198
|
+
message: "document.write is not allowed"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
pattern: /window\.location/i,
|
|
202
|
+
message: "window.location is not allowed"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
pattern: /\.innerHTML\s*=/i,
|
|
206
|
+
message: "innerHTML manipulation is not allowed"
|
|
207
|
+
}
|
|
185
208
|
];
|
|
186
209
|
var ALLOWED_IMPORTS = ["lucide-react"];
|
|
187
210
|
function validatePreview(preview) {
|
|
@@ -211,11 +234,11 @@ function validatePreview(preview) {
|
|
|
211
234
|
message: `Data size exceeds maximum allowed (${MAX_DATA_SIZE} characters)`
|
|
212
235
|
});
|
|
213
236
|
}
|
|
214
|
-
for (const pattern of DANGEROUS_PATTERNS) {
|
|
237
|
+
for (const { pattern, message } of DANGEROUS_PATTERNS) {
|
|
215
238
|
if (pattern.test(preview.code)) {
|
|
216
239
|
errors.push({
|
|
217
240
|
field: "preview.code",
|
|
218
|
-
message: `Code contains potentially dangerous pattern: ${
|
|
241
|
+
message: `Code contains potentially dangerous pattern: ${message}`
|
|
219
242
|
});
|
|
220
243
|
}
|
|
221
244
|
}
|
package/dist/index.cjs
CHANGED
|
@@ -219729,15 +219729,38 @@ var setActiveAgentForThread = (db) => async ({
|
|
|
219729
219729
|
var MAX_CODE_SIZE = 5e4;
|
|
219730
219730
|
var MAX_DATA_SIZE = 1e4;
|
|
219731
219731
|
var DANGEROUS_PATTERNS = [
|
|
219732
|
-
|
|
219733
|
-
|
|
219734
|
-
|
|
219735
|
-
|
|
219736
|
-
|
|
219737
|
-
|
|
219738
|
-
|
|
219739
|
-
|
|
219740
|
-
|
|
219732
|
+
{
|
|
219733
|
+
pattern: /\beval\s*\(/i,
|
|
219734
|
+
message: "eval() is not allowed"
|
|
219735
|
+
},
|
|
219736
|
+
{
|
|
219737
|
+
pattern: /\bFunction\s*\(/i,
|
|
219738
|
+
message: "Function constructor is not allowed"
|
|
219739
|
+
},
|
|
219740
|
+
{
|
|
219741
|
+
pattern: /dangerouslySetInnerHTML/i,
|
|
219742
|
+
message: "dangerouslySetInnerHTML is not allowed"
|
|
219743
|
+
},
|
|
219744
|
+
{
|
|
219745
|
+
pattern: /<script\b/i,
|
|
219746
|
+
message: "Script tags are not allowed"
|
|
219747
|
+
},
|
|
219748
|
+
{
|
|
219749
|
+
pattern: /\bon\w+\s*=/i,
|
|
219750
|
+
message: "Inline event handlers (onClick=, onLoad=, etc.) are not allowed"
|
|
219751
|
+
},
|
|
219752
|
+
{
|
|
219753
|
+
pattern: /document\.write/i,
|
|
219754
|
+
message: "document.write is not allowed"
|
|
219755
|
+
},
|
|
219756
|
+
{
|
|
219757
|
+
pattern: /window\.location/i,
|
|
219758
|
+
message: "window.location is not allowed"
|
|
219759
|
+
},
|
|
219760
|
+
{
|
|
219761
|
+
pattern: /\.innerHTML\s*=/i,
|
|
219762
|
+
message: "innerHTML manipulation is not allowed"
|
|
219763
|
+
}
|
|
219741
219764
|
];
|
|
219742
219765
|
var ALLOWED_IMPORTS = ["lucide-react"];
|
|
219743
219766
|
function validatePreview(preview2) {
|
|
@@ -219767,11 +219790,11 @@ function validatePreview(preview2) {
|
|
|
219767
219790
|
message: `Data size exceeds maximum allowed (${MAX_DATA_SIZE} characters)`
|
|
219768
219791
|
});
|
|
219769
219792
|
}
|
|
219770
|
-
for (const pattern of DANGEROUS_PATTERNS) {
|
|
219793
|
+
for (const { pattern, message } of DANGEROUS_PATTERNS) {
|
|
219771
219794
|
if (pattern.test(preview2.code)) {
|
|
219772
219795
|
errors.push({
|
|
219773
219796
|
field: "preview.code",
|
|
219774
|
-
message: `Code contains potentially dangerous pattern: ${
|
|
219797
|
+
message: `Code contains potentially dangerous pattern: ${message}`
|
|
219775
219798
|
});
|
|
219776
219799
|
}
|
|
219777
219800
|
}
|
package/dist/index.js
CHANGED
|
@@ -4,8 +4,8 @@ export { ANTHROPIC_MODELS, GOOGLE_MODELS, OPENAI_MODELS } from './chunk-MQTANAMG
|
|
|
4
4
|
export { TaskState } from './chunk-H2F72PDA.js';
|
|
5
5
|
import { getLogger, convertZodToJsonSchema } from './chunk-YECQCT5N.js';
|
|
6
6
|
export { PinoLogger, convertZodToJsonSchema, convertZodToJsonSchemaWithPreview, extractPreviewFields, getLogger, isZodSchema, loggerFactory, preview } from './chunk-YECQCT5N.js';
|
|
7
|
-
import { validatePreview, validateAndTypeAgentData, validateAgentStructure, isInternalAgent, isExternalAgent } from './chunk-
|
|
8
|
-
export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAgentStructure, validateAndTypeAgentData, validateArtifactComponentReferences, validateDataComponentReferences, validatePreview, validateToolReferences } from './chunk-
|
|
7
|
+
import { validatePreview, validateAndTypeAgentData, validateAgentStructure, isInternalAgent, isExternalAgent } from './chunk-ZGJI6UNK.js';
|
|
8
|
+
export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAgentStructure, validateAndTypeAgentData, validateArtifactComponentReferences, validateDataComponentReferences, validatePreview, validateToolReferences } from './chunk-ZGJI6UNK.js';
|
|
9
9
|
import { ContextConfigApiUpdateSchema, validatePropsAsJsonSchema } from './chunk-HN77JIDP.js';
|
|
10
10
|
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, 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-HN77JIDP.js';
|
|
11
11
|
import { schema_exports, contextConfigs, externalAgents, functions, functionTools, subAgentFunctionToolRelations, subAgentRelations, subAgents, subAgentToolRelations, tools, credentialReferences, agents, subAgentDataComponents, subAgentArtifactComponents, dataComponents, artifactComponents, projects, apiKeys, contextCache, conversations, messages, ledgerArtifacts, tasks, taskRelations } from './chunk-5B6IOJZY.js';
|
|
@@ -1794,15 +1794,38 @@ function generateIdFromName(name) {
|
|
|
1794
1794
|
var MAX_CODE_SIZE = 5e4;
|
|
1795
1795
|
var MAX_DATA_SIZE = 1e4;
|
|
1796
1796
|
var DANGEROUS_PATTERNS = [
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1797
|
+
{
|
|
1798
|
+
pattern: /\beval\s*\(/i,
|
|
1799
|
+
message: "eval() is not allowed"
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
pattern: /\bFunction\s*\(/i,
|
|
1803
|
+
message: "Function constructor is not allowed"
|
|
1804
|
+
},
|
|
1805
|
+
{
|
|
1806
|
+
pattern: /dangerouslySetInnerHTML/i,
|
|
1807
|
+
message: "dangerouslySetInnerHTML is not allowed"
|
|
1808
|
+
},
|
|
1809
|
+
{
|
|
1810
|
+
pattern: /<script\b/i,
|
|
1811
|
+
message: "Script tags are not allowed"
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
pattern: /\bon\w+\s*=/i,
|
|
1815
|
+
message: "Inline event handlers (onClick=, onLoad=, etc.) are not allowed"
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
pattern: /document\.write/i,
|
|
1819
|
+
message: "document.write is not allowed"
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
pattern: /window\.location/i,
|
|
1823
|
+
message: "window.location is not allowed"
|
|
1824
|
+
},
|
|
1825
|
+
{
|
|
1826
|
+
pattern: /\.innerHTML\s*=/i,
|
|
1827
|
+
message: "innerHTML manipulation is not allowed"
|
|
1828
|
+
}
|
|
1806
1829
|
];
|
|
1807
1830
|
var ALLOWED_IMPORTS = ["lucide-react"];
|
|
1808
1831
|
function validatePreview(preview) {
|
|
@@ -1832,11 +1855,11 @@ function validatePreview(preview) {
|
|
|
1832
1855
|
message: `Data size exceeds maximum allowed (${MAX_DATA_SIZE} characters)`
|
|
1833
1856
|
});
|
|
1834
1857
|
}
|
|
1835
|
-
for (const pattern of DANGEROUS_PATTERNS) {
|
|
1858
|
+
for (const { pattern, message } of DANGEROUS_PATTERNS) {
|
|
1836
1859
|
if (pattern.test(preview.code)) {
|
|
1837
1860
|
errors.push({
|
|
1838
1861
|
field: "preview.code",
|
|
1839
|
-
message: `Code contains potentially dangerous pattern: ${
|
|
1862
|
+
message: `Code contains potentially dangerous pattern: ${message}`
|
|
1840
1863
|
});
|
|
1841
1864
|
}
|
|
1842
1865
|
}
|
package/dist/validation/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAgentStructure, validateAndTypeAgentData, validateArtifactComponentReferences, validateDataComponentReferences, validatePreview, validateToolReferences } from '../chunk-
|
|
1
|
+
export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAgentStructure, validateAndTypeAgentData, validateArtifactComponentReferences, validateDataComponentReferences, validatePreview, validateToolReferences } from '../chunk-ZGJI6UNK.js';
|
|
2
2
|
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, 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-HN77JIDP.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-20251020214311",
|
|
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",
|