@inkeep/agents-core 0.0.0-dev-20251009233425 → 0.0.0-dev-20251010064032
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-ZSQFZL3Y.js → chunk-2TJ2L67D.js} +1 -1
- package/dist/{chunk-BVURASVM.js → chunk-NEJ3QDK6.js} +42 -40
- package/dist/client-exports.cjs +31 -29
- package/dist/client-exports.d.cts +2 -2
- package/dist/client-exports.d.ts +2 -2
- package/dist/client-exports.js +2 -2
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/index.cjs +69 -67
- package/dist/index.d.cts +10 -10
- package/dist/index.d.ts +10 -10
- package/dist/index.js +6 -6
- package/dist/{schema-B1rukNyF.d.ts → schema-B6nVWV--.d.ts} +1 -1
- package/dist/{schema-BIYOOKX_.d.cts → schema-BwkT6bbU.d.cts} +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-BEeDGMP9.d.cts → utility-D_8q6Vlh.d.cts} +57 -57
- package/dist/{utility-BEeDGMP9.d.ts → utility-D_8q6Vlh.d.ts} +57 -57
- package/dist/validation/index.cjs +69 -67
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/package.json +1 -1
|
@@ -898,7 +898,7 @@ var StopWhenSchema = zodOpenapi.z.object({
|
|
|
898
898
|
stepCountIs: zodOpenapi.z.number().min(1).max(1e3).optional()
|
|
899
899
|
});
|
|
900
900
|
var GraphStopWhenSchema = StopWhenSchema.pick({ transferCountIs: true });
|
|
901
|
-
var
|
|
901
|
+
var SubAgentStopWhenSchema = StopWhenSchema.pick({ stepCountIs: true });
|
|
902
902
|
var MIN_ID_LENGTH = 1;
|
|
903
903
|
var MAX_ID_LENGTH = 255;
|
|
904
904
|
var URL_SAFE_ID_PATTERN = /^[a-zA-Z0-9\-_.]+$/;
|
|
@@ -950,18 +950,20 @@ var SubAgentUpdateSchema = SubAgentInsertSchema.partial();
|
|
|
950
950
|
var SubAgentApiSelectSchema = createGraphScopedApiSchema(SubAgentSelectSchema);
|
|
951
951
|
var SubAgentApiInsertSchema = createGraphScopedApiInsertSchema(SubAgentInsertSchema);
|
|
952
952
|
var SubAgentApiUpdateSchema = createGraphScopedApiUpdateSchema(SubAgentUpdateSchema);
|
|
953
|
-
var
|
|
954
|
-
var
|
|
953
|
+
var SubAgentRelationSelectSchema = drizzleZod.createSelectSchema(subAgentRelations);
|
|
954
|
+
var SubAgentRelationInsertSchema = drizzleZod.createInsertSchema(subAgentRelations).extend({
|
|
955
955
|
id: resourceIdSchema,
|
|
956
956
|
graphId: resourceIdSchema,
|
|
957
957
|
sourceSubAgentId: resourceIdSchema,
|
|
958
958
|
targetSubAgentId: resourceIdSchema.optional(),
|
|
959
959
|
externalSubAgentId: resourceIdSchema.optional()
|
|
960
960
|
});
|
|
961
|
-
var
|
|
962
|
-
var
|
|
963
|
-
|
|
964
|
-
|
|
961
|
+
var SubAgentRelationUpdateSchema = SubAgentRelationInsertSchema.partial();
|
|
962
|
+
var SubAgentRelationApiSelectSchema = createGraphScopedApiSchema(
|
|
963
|
+
SubAgentRelationSelectSchema
|
|
964
|
+
);
|
|
965
|
+
var SubAgentRelationApiInsertSchema = createGraphScopedApiInsertSchema(
|
|
966
|
+
SubAgentRelationInsertSchema
|
|
965
967
|
).extend({
|
|
966
968
|
relationType: zodOpenapi.z.enum(VALID_RELATION_TYPES)
|
|
967
969
|
}).refine(
|
|
@@ -975,8 +977,8 @@ var AgentRelationApiInsertSchema = createGraphScopedApiInsertSchema(
|
|
|
975
977
|
path: ["targetSubAgentId", "externalSubAgentId"]
|
|
976
978
|
}
|
|
977
979
|
);
|
|
978
|
-
var
|
|
979
|
-
|
|
980
|
+
var SubAgentRelationApiUpdateSchema = createGraphScopedApiUpdateSchema(
|
|
981
|
+
SubAgentRelationUpdateSchema
|
|
980
982
|
).extend({
|
|
981
983
|
relationType: zodOpenapi.z.enum(VALID_RELATION_TYPES).optional()
|
|
982
984
|
}).refine(
|
|
@@ -989,23 +991,23 @@ var AgentRelationApiUpdateSchema = createGraphScopedApiUpdateSchema(
|
|
|
989
991
|
return hasTarget !== hasExternal;
|
|
990
992
|
},
|
|
991
993
|
{
|
|
992
|
-
message: "Must specify exactly one of targetSubAgentId or externalSubAgentId when updating agent relationships",
|
|
994
|
+
message: "Must specify exactly one of targetSubAgentId or externalSubAgentId when updating sub-agent relationships",
|
|
993
995
|
path: ["targetSubAgentId", "externalSubAgentId"]
|
|
994
996
|
}
|
|
995
997
|
);
|
|
996
|
-
var
|
|
998
|
+
var SubAgentRelationQuerySchema = zodOpenapi.z.object({
|
|
997
999
|
sourceSubAgentId: zodOpenapi.z.string().optional(),
|
|
998
1000
|
targetSubAgentId: zodOpenapi.z.string().optional(),
|
|
999
1001
|
externalSubAgentId: zodOpenapi.z.string().optional()
|
|
1000
1002
|
});
|
|
1001
|
-
var
|
|
1003
|
+
var ExternalSubAgentRelationInsertSchema = drizzleZod.createInsertSchema(subAgentRelations).extend({
|
|
1002
1004
|
id: resourceIdSchema,
|
|
1003
1005
|
graphId: resourceIdSchema,
|
|
1004
1006
|
sourceSubAgentId: resourceIdSchema,
|
|
1005
1007
|
externalSubAgentId: resourceIdSchema
|
|
1006
1008
|
});
|
|
1007
|
-
var
|
|
1008
|
-
|
|
1009
|
+
var ExternalSubAgentRelationApiInsertSchema = createApiInsertSchema(
|
|
1010
|
+
ExternalSubAgentRelationInsertSchema
|
|
1009
1011
|
);
|
|
1010
1012
|
var AgentGraphSelectSchema = drizzleZod.createSelectSchema(agentGraph);
|
|
1011
1013
|
var AgentGraphInsertSchema = drizzleZod.createInsertSchema(agentGraph).extend({
|
|
@@ -1136,20 +1138,20 @@ var DataComponentUpdateSchema = DataComponentInsertSchema.partial();
|
|
|
1136
1138
|
var DataComponentApiSelectSchema = createApiSchema(DataComponentSelectSchema);
|
|
1137
1139
|
var DataComponentApiInsertSchema = createApiInsertSchema(DataComponentInsertSchema);
|
|
1138
1140
|
var DataComponentApiUpdateSchema = createApiUpdateSchema(DataComponentUpdateSchema);
|
|
1139
|
-
var
|
|
1140
|
-
var
|
|
1141
|
-
var
|
|
1142
|
-
var
|
|
1143
|
-
|
|
1141
|
+
var SubAgentDataComponentSelectSchema = drizzleZod.createSelectSchema(subAgentDataComponents);
|
|
1142
|
+
var SubAgentDataComponentInsertSchema = drizzleZod.createInsertSchema(subAgentDataComponents);
|
|
1143
|
+
var SubAgentDataComponentUpdateSchema = SubAgentDataComponentInsertSchema.partial();
|
|
1144
|
+
var SubAgentDataComponentApiSelectSchema = createGraphScopedApiSchema(
|
|
1145
|
+
SubAgentDataComponentSelectSchema
|
|
1144
1146
|
);
|
|
1145
|
-
var
|
|
1147
|
+
var SubAgentDataComponentApiInsertSchema = SubAgentDataComponentInsertSchema.omit({
|
|
1146
1148
|
tenantId: true,
|
|
1147
1149
|
projectId: true,
|
|
1148
1150
|
id: true,
|
|
1149
1151
|
createdAt: true
|
|
1150
1152
|
});
|
|
1151
|
-
var
|
|
1152
|
-
|
|
1153
|
+
var SubAgentDataComponentApiUpdateSchema = createGraphScopedApiUpdateSchema(
|
|
1154
|
+
SubAgentDataComponentUpdateSchema
|
|
1153
1155
|
);
|
|
1154
1156
|
var ArtifactComponentSelectSchema = drizzleZod.createSelectSchema(artifactComponents);
|
|
1155
1157
|
var ArtifactComponentInsertSchema = drizzleZod.createInsertSchema(artifactComponents).extend({
|
|
@@ -1166,26 +1168,26 @@ var ArtifactComponentApiInsertSchema = ArtifactComponentInsertSchema.omit({
|
|
|
1166
1168
|
var ArtifactComponentApiUpdateSchema = createApiUpdateSchema(
|
|
1167
1169
|
ArtifactComponentUpdateSchema
|
|
1168
1170
|
);
|
|
1169
|
-
var
|
|
1170
|
-
var
|
|
1171
|
+
var SubAgentArtifactComponentSelectSchema = drizzleZod.createSelectSchema(subAgentArtifactComponents);
|
|
1172
|
+
var SubAgentArtifactComponentInsertSchema = drizzleZod.createInsertSchema(
|
|
1171
1173
|
subAgentArtifactComponents
|
|
1172
1174
|
).extend({
|
|
1173
1175
|
id: resourceIdSchema,
|
|
1174
1176
|
subAgentId: resourceIdSchema,
|
|
1175
1177
|
artifactComponentId: resourceIdSchema
|
|
1176
1178
|
});
|
|
1177
|
-
var
|
|
1178
|
-
var
|
|
1179
|
-
|
|
1179
|
+
var SubAgentArtifactComponentUpdateSchema = SubAgentArtifactComponentInsertSchema.partial();
|
|
1180
|
+
var SubAgentArtifactComponentApiSelectSchema = createGraphScopedApiSchema(
|
|
1181
|
+
SubAgentArtifactComponentSelectSchema
|
|
1180
1182
|
);
|
|
1181
|
-
var
|
|
1183
|
+
var SubAgentArtifactComponentApiInsertSchema = SubAgentArtifactComponentInsertSchema.omit({
|
|
1182
1184
|
tenantId: true,
|
|
1183
1185
|
projectId: true,
|
|
1184
1186
|
id: true,
|
|
1185
1187
|
createdAt: true
|
|
1186
1188
|
});
|
|
1187
|
-
var
|
|
1188
|
-
|
|
1189
|
+
var SubAgentArtifactComponentApiUpdateSchema = createGraphScopedApiUpdateSchema(
|
|
1190
|
+
SubAgentArtifactComponentUpdateSchema
|
|
1189
1191
|
);
|
|
1190
1192
|
var ExternalAgentSelectSchema = drizzleZod.createSelectSchema(externalAgents).extend({
|
|
1191
1193
|
credentialReferenceId: zodOpenapi.z.string().nullable().optional(),
|
|
@@ -1354,23 +1356,23 @@ var ContextConfigApiInsertSchema = createApiInsertSchema(ContextConfigInsertSche
|
|
|
1354
1356
|
var ContextConfigApiUpdateSchema = createApiUpdateSchema(ContextConfigUpdateSchema).omit({
|
|
1355
1357
|
graphId: true
|
|
1356
1358
|
});
|
|
1357
|
-
var
|
|
1358
|
-
var
|
|
1359
|
+
var SubAgentToolRelationSelectSchema = drizzleZod.createSelectSchema(subAgentToolRelations);
|
|
1360
|
+
var SubAgentToolRelationInsertSchema = drizzleZod.createInsertSchema(subAgentToolRelations).extend({
|
|
1359
1361
|
id: resourceIdSchema,
|
|
1360
1362
|
subAgentId: resourceIdSchema,
|
|
1361
1363
|
toolId: resourceIdSchema,
|
|
1362
1364
|
selectedTools: zodOpenapi.z.array(zodOpenapi.z.string()).nullish(),
|
|
1363
1365
|
headers: zodOpenapi.z.record(zodOpenapi.z.string(), zodOpenapi.z.string()).nullish()
|
|
1364
1366
|
});
|
|
1365
|
-
var
|
|
1366
|
-
var
|
|
1367
|
-
|
|
1367
|
+
var SubAgentToolRelationUpdateSchema = SubAgentToolRelationInsertSchema.partial();
|
|
1368
|
+
var SubAgentToolRelationApiSelectSchema = createGraphScopedApiSchema(
|
|
1369
|
+
SubAgentToolRelationSelectSchema
|
|
1368
1370
|
);
|
|
1369
|
-
var
|
|
1370
|
-
|
|
1371
|
+
var SubAgentToolRelationApiInsertSchema = createGraphScopedApiInsertSchema(
|
|
1372
|
+
SubAgentToolRelationInsertSchema
|
|
1371
1373
|
);
|
|
1372
|
-
var
|
|
1373
|
-
|
|
1374
|
+
var SubAgentToolRelationApiUpdateSchema = createGraphScopedApiUpdateSchema(
|
|
1375
|
+
SubAgentToolRelationUpdateSchema
|
|
1374
1376
|
);
|
|
1375
1377
|
var LedgerArtifactSelectSchema = drizzleZod.createSelectSchema(ledgerArtifacts);
|
|
1376
1378
|
var LedgerArtifactInsertSchema = drizzleZod.createInsertSchema(ledgerArtifacts);
|
|
@@ -1770,38 +1772,12 @@ function validatePropsAsJsonSchema(props) {
|
|
|
1770
1772
|
}
|
|
1771
1773
|
|
|
1772
1774
|
exports.A2AMessageMetadataSchema = A2AMessageMetadataSchema;
|
|
1773
|
-
exports.AgentArtifactComponentApiInsertSchema = AgentArtifactComponentApiInsertSchema;
|
|
1774
|
-
exports.AgentArtifactComponentApiSelectSchema = AgentArtifactComponentApiSelectSchema;
|
|
1775
|
-
exports.AgentArtifactComponentApiUpdateSchema = AgentArtifactComponentApiUpdateSchema;
|
|
1776
|
-
exports.AgentArtifactComponentInsertSchema = AgentArtifactComponentInsertSchema;
|
|
1777
|
-
exports.AgentArtifactComponentSelectSchema = AgentArtifactComponentSelectSchema;
|
|
1778
|
-
exports.AgentArtifactComponentUpdateSchema = AgentArtifactComponentUpdateSchema;
|
|
1779
|
-
exports.AgentDataComponentApiInsertSchema = AgentDataComponentApiInsertSchema;
|
|
1780
|
-
exports.AgentDataComponentApiSelectSchema = AgentDataComponentApiSelectSchema;
|
|
1781
|
-
exports.AgentDataComponentApiUpdateSchema = AgentDataComponentApiUpdateSchema;
|
|
1782
|
-
exports.AgentDataComponentInsertSchema = AgentDataComponentInsertSchema;
|
|
1783
|
-
exports.AgentDataComponentSelectSchema = AgentDataComponentSelectSchema;
|
|
1784
|
-
exports.AgentDataComponentUpdateSchema = AgentDataComponentUpdateSchema;
|
|
1785
1775
|
exports.AgentGraphApiInsertSchema = AgentGraphApiInsertSchema;
|
|
1786
1776
|
exports.AgentGraphApiSelectSchema = AgentGraphApiSelectSchema;
|
|
1787
1777
|
exports.AgentGraphApiUpdateSchema = AgentGraphApiUpdateSchema;
|
|
1788
1778
|
exports.AgentGraphInsertSchema = AgentGraphInsertSchema;
|
|
1789
1779
|
exports.AgentGraphSelectSchema = AgentGraphSelectSchema;
|
|
1790
1780
|
exports.AgentGraphUpdateSchema = AgentGraphUpdateSchema;
|
|
1791
|
-
exports.AgentRelationApiInsertSchema = AgentRelationApiInsertSchema;
|
|
1792
|
-
exports.AgentRelationApiSelectSchema = AgentRelationApiSelectSchema;
|
|
1793
|
-
exports.AgentRelationApiUpdateSchema = AgentRelationApiUpdateSchema;
|
|
1794
|
-
exports.AgentRelationInsertSchema = AgentRelationInsertSchema;
|
|
1795
|
-
exports.AgentRelationQuerySchema = AgentRelationQuerySchema;
|
|
1796
|
-
exports.AgentRelationSelectSchema = AgentRelationSelectSchema;
|
|
1797
|
-
exports.AgentRelationUpdateSchema = AgentRelationUpdateSchema;
|
|
1798
|
-
exports.AgentStopWhenSchema = AgentStopWhenSchema;
|
|
1799
|
-
exports.AgentToolRelationApiInsertSchema = AgentToolRelationApiInsertSchema;
|
|
1800
|
-
exports.AgentToolRelationApiSelectSchema = AgentToolRelationApiSelectSchema;
|
|
1801
|
-
exports.AgentToolRelationApiUpdateSchema = AgentToolRelationApiUpdateSchema;
|
|
1802
|
-
exports.AgentToolRelationInsertSchema = AgentToolRelationInsertSchema;
|
|
1803
|
-
exports.AgentToolRelationSelectSchema = AgentToolRelationSelectSchema;
|
|
1804
|
-
exports.AgentToolRelationUpdateSchema = AgentToolRelationUpdateSchema;
|
|
1805
1781
|
exports.AllAgentSchema = AllAgentSchema;
|
|
1806
1782
|
exports.ApiKeyApiCreationResponseSchema = ApiKeyApiCreationResponseSchema;
|
|
1807
1783
|
exports.ApiKeyApiInsertSchema = ApiKeyApiInsertSchema;
|
|
@@ -1858,10 +1834,10 @@ exports.ExternalAgentApiInsertSchema = ExternalAgentApiInsertSchema;
|
|
|
1858
1834
|
exports.ExternalAgentApiSelectSchema = ExternalAgentApiSelectSchema;
|
|
1859
1835
|
exports.ExternalAgentApiUpdateSchema = ExternalAgentApiUpdateSchema;
|
|
1860
1836
|
exports.ExternalAgentInsertSchema = ExternalAgentInsertSchema;
|
|
1861
|
-
exports.ExternalAgentRelationApiInsertSchema = ExternalAgentRelationApiInsertSchema;
|
|
1862
|
-
exports.ExternalAgentRelationInsertSchema = ExternalAgentRelationInsertSchema;
|
|
1863
1837
|
exports.ExternalAgentSelectSchema = ExternalAgentSelectSchema;
|
|
1864
1838
|
exports.ExternalAgentUpdateSchema = ExternalAgentUpdateSchema;
|
|
1839
|
+
exports.ExternalSubAgentRelationApiInsertSchema = ExternalSubAgentRelationApiInsertSchema;
|
|
1840
|
+
exports.ExternalSubAgentRelationInsertSchema = ExternalSubAgentRelationInsertSchema;
|
|
1865
1841
|
exports.FetchConfigSchema = FetchConfigSchema;
|
|
1866
1842
|
exports.FetchDefinitionSchema = FetchDefinitionSchema;
|
|
1867
1843
|
exports.FullGraphAgentInsertSchema = FullGraphAgentInsertSchema;
|
|
@@ -1915,8 +1891,34 @@ exports.StopWhenSchema = StopWhenSchema;
|
|
|
1915
1891
|
exports.SubAgentApiInsertSchema = SubAgentApiInsertSchema;
|
|
1916
1892
|
exports.SubAgentApiSelectSchema = SubAgentApiSelectSchema;
|
|
1917
1893
|
exports.SubAgentApiUpdateSchema = SubAgentApiUpdateSchema;
|
|
1894
|
+
exports.SubAgentArtifactComponentApiInsertSchema = SubAgentArtifactComponentApiInsertSchema;
|
|
1895
|
+
exports.SubAgentArtifactComponentApiSelectSchema = SubAgentArtifactComponentApiSelectSchema;
|
|
1896
|
+
exports.SubAgentArtifactComponentApiUpdateSchema = SubAgentArtifactComponentApiUpdateSchema;
|
|
1897
|
+
exports.SubAgentArtifactComponentInsertSchema = SubAgentArtifactComponentInsertSchema;
|
|
1898
|
+
exports.SubAgentArtifactComponentSelectSchema = SubAgentArtifactComponentSelectSchema;
|
|
1899
|
+
exports.SubAgentArtifactComponentUpdateSchema = SubAgentArtifactComponentUpdateSchema;
|
|
1900
|
+
exports.SubAgentDataComponentApiInsertSchema = SubAgentDataComponentApiInsertSchema;
|
|
1901
|
+
exports.SubAgentDataComponentApiSelectSchema = SubAgentDataComponentApiSelectSchema;
|
|
1902
|
+
exports.SubAgentDataComponentApiUpdateSchema = SubAgentDataComponentApiUpdateSchema;
|
|
1903
|
+
exports.SubAgentDataComponentInsertSchema = SubAgentDataComponentInsertSchema;
|
|
1904
|
+
exports.SubAgentDataComponentSelectSchema = SubAgentDataComponentSelectSchema;
|
|
1905
|
+
exports.SubAgentDataComponentUpdateSchema = SubAgentDataComponentUpdateSchema;
|
|
1918
1906
|
exports.SubAgentInsertSchema = SubAgentInsertSchema;
|
|
1907
|
+
exports.SubAgentRelationApiInsertSchema = SubAgentRelationApiInsertSchema;
|
|
1908
|
+
exports.SubAgentRelationApiSelectSchema = SubAgentRelationApiSelectSchema;
|
|
1909
|
+
exports.SubAgentRelationApiUpdateSchema = SubAgentRelationApiUpdateSchema;
|
|
1910
|
+
exports.SubAgentRelationInsertSchema = SubAgentRelationInsertSchema;
|
|
1911
|
+
exports.SubAgentRelationQuerySchema = SubAgentRelationQuerySchema;
|
|
1912
|
+
exports.SubAgentRelationSelectSchema = SubAgentRelationSelectSchema;
|
|
1913
|
+
exports.SubAgentRelationUpdateSchema = SubAgentRelationUpdateSchema;
|
|
1919
1914
|
exports.SubAgentSelectSchema = SubAgentSelectSchema;
|
|
1915
|
+
exports.SubAgentStopWhenSchema = SubAgentStopWhenSchema;
|
|
1916
|
+
exports.SubAgentToolRelationApiInsertSchema = SubAgentToolRelationApiInsertSchema;
|
|
1917
|
+
exports.SubAgentToolRelationApiSelectSchema = SubAgentToolRelationApiSelectSchema;
|
|
1918
|
+
exports.SubAgentToolRelationApiUpdateSchema = SubAgentToolRelationApiUpdateSchema;
|
|
1919
|
+
exports.SubAgentToolRelationInsertSchema = SubAgentToolRelationInsertSchema;
|
|
1920
|
+
exports.SubAgentToolRelationSelectSchema = SubAgentToolRelationSelectSchema;
|
|
1921
|
+
exports.SubAgentToolRelationUpdateSchema = SubAgentToolRelationUpdateSchema;
|
|
1920
1922
|
exports.SubAgentUpdateSchema = SubAgentUpdateSchema;
|
|
1921
1923
|
exports.TaskApiInsertSchema = TaskApiInsertSchema;
|
|
1922
1924
|
exports.TaskApiSelectSchema = TaskApiSelectSchema;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { d3 as AgentDefinition, d2 as InternalAgentDefinition, cJ as ExternalAgentApiInsert, fG as GraphWithinContextOfProjectSchema, z as FullGraphDefinition } from '../utility-
|
|
3
|
-
export {
|
|
2
|
+
import { d3 as AgentDefinition, d2 as InternalAgentDefinition, cJ as ExternalAgentApiInsert, fG as GraphWithinContextOfProjectSchema, z as FullGraphDefinition } from '../utility-D_8q6Vlh.cjs';
|
|
3
|
+
export { dV as AgentGraphApiInsertSchema, dU as AgentGraphApiSelectSchema, dW as AgentGraphApiUpdateSchema, dS as AgentGraphInsertSchema, dR as AgentGraphSelectSchema, dT as AgentGraphUpdateSchema, eZ as AllAgentSchema, f2 as ApiKeyApiCreationResponseSchema, f3 as ApiKeyApiInsertSchema, f1 as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, e$ as ApiKeyInsertSchema, e_ as ApiKeySelectSchema, f0 as ApiKeyUpdateSchema, eL as ArtifactComponentApiInsertSchema, eK as ArtifactComponentApiSelectSchema, eM as ArtifactComponentApiUpdateSchema, eI as ArtifactComponentInsertSchema, eH as ArtifactComponentSelectSchema, eJ as ArtifactComponentUpdateSchema, fF as CanUseItemSchema, es as ContextCacheApiInsertSchema, er as ContextCacheApiSelectSchema, et as ContextCacheApiUpdateSchema, ep as ContextCacheInsertSchema, eo as ContextCacheSelectSchema, eq as ContextCacheUpdateSchema, fp as ContextConfigApiInsertSchema, fo as ContextConfigApiSelectSchema, fq as ContextConfigApiUpdateSchema, fm as ContextConfigInsertSchema, fl as ContextConfigSelectSchema, fn as ContextConfigUpdateSchema, eg as ConversationApiInsertSchema, ef as ConversationApiSelectSchema, eh as ConversationApiUpdateSchema, ed as ConversationInsertSchema, ec as ConversationSelectSchema, ee as ConversationUpdateSchema, f8 as CredentialReferenceApiInsertSchema, f7 as CredentialReferenceApiSelectSchema, f9 as CredentialReferenceApiUpdateSchema, f5 as CredentialReferenceInsertSchema, f4 as CredentialReferenceSelectSchema, f6 as CredentialReferenceUpdateSchema, ez as DataComponentApiInsertSchema, ey as DataComponentApiSelectSchema, eA as DataComponentApiUpdateSchema, ew as DataComponentBaseSchema, ev as DataComponentInsertSchema, eu as DataComponentSelectSchema, ex as DataComponentUpdateSchema, fK as ErrorResponseSchema, fL as ExistsResponseSchema, eX as ExternalAgentApiInsertSchema, eW as ExternalAgentApiSelectSchema, eY as ExternalAgentApiUpdateSchema, eU as ExternalAgentInsertSchema, eT as ExternalAgentSelectSchema, eV as ExternalAgentUpdateSchema, dQ as ExternalSubAgentRelationApiInsertSchema, dP as ExternalSubAgentRelationInsertSchema, fj as FetchConfigSchema, fk as FetchDefinitionSchema, a as FullGraphAgentInsertSchema, fT as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, i as FunctionApiSelectSchema, j as FunctionApiUpdateSchema, fh as FunctionInsertSchema, fg as FunctionSelectSchema, dB as FunctionToolConfig, dA as FunctionToolConfigSchema, fi as FunctionUpdateSchema, d as GraphStopWhen, G as GraphStopWhenSchema, fU as HeadersScopeSchema, fB as LedgerArtifactApiInsertSchema, fA as LedgerArtifactApiSelectSchema, fC as LedgerArtifactApiUpdateSchema, fy as LedgerArtifactInsertSchema, fx as LedgerArtifactSelectSchema, fz as LedgerArtifactUpdateSchema, fI as ListResponseSchema, du as MAX_ID_LENGTH, fb as MCPToolConfigSchema, dt as MIN_ID_LENGTH, e9 as McpToolDefinitionSchema, fa as McpToolSchema, e7 as McpTransportConfigSchema, em as MessageApiInsertSchema, el as MessageApiSelectSchema, en as MessageApiUpdateSchema, ej as MessageInsertSchema, ei as MessageSelectSchema, ek as MessageUpdateSchema, dx as ModelSchema, f as ModelSettings, M as ModelSettingsSchema, g1 as PaginationQueryParamsSchema, fH as PaginationSchema, fR as ProjectApiInsertSchema, fQ as ProjectApiSelectSchema, fS as ProjectApiUpdateSchema, fO as ProjectInsertSchema, dy as ProjectModelSchema, fN as ProjectSelectSchema, fP as ProjectUpdateSchema, fM as RemovedResponseSchema, dz as SandboxConfig, k as SandboxConfigSchema, fJ as SingleResponseSchema, fD as StatusComponentSchema, fE as StatusUpdateSchema, c as StopWhen, S as StopWhenSchema, dG as SubAgentApiInsertSchema, dF as SubAgentApiSelectSchema, dH as SubAgentApiUpdateSchema, eR as SubAgentArtifactComponentApiInsertSchema, eQ as SubAgentArtifactComponentApiSelectSchema, eS as SubAgentArtifactComponentApiUpdateSchema, eO as SubAgentArtifactComponentInsertSchema, eN as SubAgentArtifactComponentSelectSchema, eP as SubAgentArtifactComponentUpdateSchema, eF as SubAgentDataComponentApiInsertSchema, eE as SubAgentDataComponentApiSelectSchema, eG as SubAgentDataComponentApiUpdateSchema, eC as SubAgentDataComponentInsertSchema, eB as SubAgentDataComponentSelectSchema, eD as SubAgentDataComponentUpdateSchema, dD as SubAgentInsertSchema, dM as SubAgentRelationApiInsertSchema, dL as SubAgentRelationApiSelectSchema, dN as SubAgentRelationApiUpdateSchema, dJ as SubAgentRelationInsertSchema, dO as SubAgentRelationQuerySchema, dI as SubAgentRelationSelectSchema, dK as SubAgentRelationUpdateSchema, dC as SubAgentSelectSchema, e as SubAgentStopWhen, b as SubAgentStopWhenSchema, fv as SubAgentToolRelationApiInsertSchema, fu as SubAgentToolRelationApiSelectSchema, fw as SubAgentToolRelationApiUpdateSchema, fs as SubAgentToolRelationInsertSchema, fr as SubAgentToolRelationSelectSchema, ft as SubAgentToolRelationUpdateSchema, dE as SubAgentUpdateSchema, d$ as TaskApiInsertSchema, d_ as TaskApiSelectSchema, e0 as TaskApiUpdateSchema, dY as TaskInsertSchema, e5 as TaskRelationApiInsertSchema, e4 as TaskRelationApiSelectSchema, e6 as TaskRelationApiUpdateSchema, e2 as TaskRelationInsertSchema, e1 as TaskRelationSelectSchema, e3 as TaskRelationUpdateSchema, dX as TaskSelectSchema, dZ as TaskUpdateSchema, fW as TenantIdParamsSchema, fV as TenantParamsSchema, f_ as TenantProjectGraphIdParamsSchema, fZ as TenantProjectGraphParamsSchema, g0 as TenantProjectGraphSubAgentIdParamsSchema, f$ as TenantProjectGraphSubAgentParamsSchema, fY as TenantProjectIdParamsSchema, fX as TenantProjectParamsSchema, fe as ToolApiInsertSchema, fd as ToolApiSelectSchema, ff as ToolApiUpdateSchema, eb as ToolInsertSchema, ea as ToolSelectSchema, e8 as ToolStatusSchema, fc as ToolUpdateSchema, dv as URL_SAFE_ID_PATTERN, dw as resourceIdSchema } from '../utility-D_8q6Vlh.cjs';
|
|
4
4
|
export { P as PropsValidationResult, v as validatePropsAsJsonSchema } from '../props-validation-BMR1qNiy.cjs';
|
|
5
5
|
import 'drizzle-zod';
|
|
6
6
|
import 'drizzle-orm/sqlite-core';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { d3 as AgentDefinition, d2 as InternalAgentDefinition, cJ as ExternalAgentApiInsert, fG as GraphWithinContextOfProjectSchema, z as FullGraphDefinition } from '../utility-
|
|
3
|
-
export {
|
|
2
|
+
import { d3 as AgentDefinition, d2 as InternalAgentDefinition, cJ as ExternalAgentApiInsert, fG as GraphWithinContextOfProjectSchema, z as FullGraphDefinition } from '../utility-D_8q6Vlh.js';
|
|
3
|
+
export { dV as AgentGraphApiInsertSchema, dU as AgentGraphApiSelectSchema, dW as AgentGraphApiUpdateSchema, dS as AgentGraphInsertSchema, dR as AgentGraphSelectSchema, dT as AgentGraphUpdateSchema, eZ as AllAgentSchema, f2 as ApiKeyApiCreationResponseSchema, f3 as ApiKeyApiInsertSchema, f1 as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, e$ as ApiKeyInsertSchema, e_ as ApiKeySelectSchema, f0 as ApiKeyUpdateSchema, eL as ArtifactComponentApiInsertSchema, eK as ArtifactComponentApiSelectSchema, eM as ArtifactComponentApiUpdateSchema, eI as ArtifactComponentInsertSchema, eH as ArtifactComponentSelectSchema, eJ as ArtifactComponentUpdateSchema, fF as CanUseItemSchema, es as ContextCacheApiInsertSchema, er as ContextCacheApiSelectSchema, et as ContextCacheApiUpdateSchema, ep as ContextCacheInsertSchema, eo as ContextCacheSelectSchema, eq as ContextCacheUpdateSchema, fp as ContextConfigApiInsertSchema, fo as ContextConfigApiSelectSchema, fq as ContextConfigApiUpdateSchema, fm as ContextConfigInsertSchema, fl as ContextConfigSelectSchema, fn as ContextConfigUpdateSchema, eg as ConversationApiInsertSchema, ef as ConversationApiSelectSchema, eh as ConversationApiUpdateSchema, ed as ConversationInsertSchema, ec as ConversationSelectSchema, ee as ConversationUpdateSchema, f8 as CredentialReferenceApiInsertSchema, f7 as CredentialReferenceApiSelectSchema, f9 as CredentialReferenceApiUpdateSchema, f5 as CredentialReferenceInsertSchema, f4 as CredentialReferenceSelectSchema, f6 as CredentialReferenceUpdateSchema, ez as DataComponentApiInsertSchema, ey as DataComponentApiSelectSchema, eA as DataComponentApiUpdateSchema, ew as DataComponentBaseSchema, ev as DataComponentInsertSchema, eu as DataComponentSelectSchema, ex as DataComponentUpdateSchema, fK as ErrorResponseSchema, fL as ExistsResponseSchema, eX as ExternalAgentApiInsertSchema, eW as ExternalAgentApiSelectSchema, eY as ExternalAgentApiUpdateSchema, eU as ExternalAgentInsertSchema, eT as ExternalAgentSelectSchema, eV as ExternalAgentUpdateSchema, dQ as ExternalSubAgentRelationApiInsertSchema, dP as ExternalSubAgentRelationInsertSchema, fj as FetchConfigSchema, fk as FetchDefinitionSchema, a as FullGraphAgentInsertSchema, fT as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, i as FunctionApiSelectSchema, j as FunctionApiUpdateSchema, fh as FunctionInsertSchema, fg as FunctionSelectSchema, dB as FunctionToolConfig, dA as FunctionToolConfigSchema, fi as FunctionUpdateSchema, d as GraphStopWhen, G as GraphStopWhenSchema, fU as HeadersScopeSchema, fB as LedgerArtifactApiInsertSchema, fA as LedgerArtifactApiSelectSchema, fC as LedgerArtifactApiUpdateSchema, fy as LedgerArtifactInsertSchema, fx as LedgerArtifactSelectSchema, fz as LedgerArtifactUpdateSchema, fI as ListResponseSchema, du as MAX_ID_LENGTH, fb as MCPToolConfigSchema, dt as MIN_ID_LENGTH, e9 as McpToolDefinitionSchema, fa as McpToolSchema, e7 as McpTransportConfigSchema, em as MessageApiInsertSchema, el as MessageApiSelectSchema, en as MessageApiUpdateSchema, ej as MessageInsertSchema, ei as MessageSelectSchema, ek as MessageUpdateSchema, dx as ModelSchema, f as ModelSettings, M as ModelSettingsSchema, g1 as PaginationQueryParamsSchema, fH as PaginationSchema, fR as ProjectApiInsertSchema, fQ as ProjectApiSelectSchema, fS as ProjectApiUpdateSchema, fO as ProjectInsertSchema, dy as ProjectModelSchema, fN as ProjectSelectSchema, fP as ProjectUpdateSchema, fM as RemovedResponseSchema, dz as SandboxConfig, k as SandboxConfigSchema, fJ as SingleResponseSchema, fD as StatusComponentSchema, fE as StatusUpdateSchema, c as StopWhen, S as StopWhenSchema, dG as SubAgentApiInsertSchema, dF as SubAgentApiSelectSchema, dH as SubAgentApiUpdateSchema, eR as SubAgentArtifactComponentApiInsertSchema, eQ as SubAgentArtifactComponentApiSelectSchema, eS as SubAgentArtifactComponentApiUpdateSchema, eO as SubAgentArtifactComponentInsertSchema, eN as SubAgentArtifactComponentSelectSchema, eP as SubAgentArtifactComponentUpdateSchema, eF as SubAgentDataComponentApiInsertSchema, eE as SubAgentDataComponentApiSelectSchema, eG as SubAgentDataComponentApiUpdateSchema, eC as SubAgentDataComponentInsertSchema, eB as SubAgentDataComponentSelectSchema, eD as SubAgentDataComponentUpdateSchema, dD as SubAgentInsertSchema, dM as SubAgentRelationApiInsertSchema, dL as SubAgentRelationApiSelectSchema, dN as SubAgentRelationApiUpdateSchema, dJ as SubAgentRelationInsertSchema, dO as SubAgentRelationQuerySchema, dI as SubAgentRelationSelectSchema, dK as SubAgentRelationUpdateSchema, dC as SubAgentSelectSchema, e as SubAgentStopWhen, b as SubAgentStopWhenSchema, fv as SubAgentToolRelationApiInsertSchema, fu as SubAgentToolRelationApiSelectSchema, fw as SubAgentToolRelationApiUpdateSchema, fs as SubAgentToolRelationInsertSchema, fr as SubAgentToolRelationSelectSchema, ft as SubAgentToolRelationUpdateSchema, dE as SubAgentUpdateSchema, d$ as TaskApiInsertSchema, d_ as TaskApiSelectSchema, e0 as TaskApiUpdateSchema, dY as TaskInsertSchema, e5 as TaskRelationApiInsertSchema, e4 as TaskRelationApiSelectSchema, e6 as TaskRelationApiUpdateSchema, e2 as TaskRelationInsertSchema, e1 as TaskRelationSelectSchema, e3 as TaskRelationUpdateSchema, dX as TaskSelectSchema, dZ as TaskUpdateSchema, fW as TenantIdParamsSchema, fV as TenantParamsSchema, f_ as TenantProjectGraphIdParamsSchema, fZ as TenantProjectGraphParamsSchema, g0 as TenantProjectGraphSubAgentIdParamsSchema, f$ as TenantProjectGraphSubAgentParamsSchema, fY as TenantProjectIdParamsSchema, fX as TenantProjectParamsSchema, fe as ToolApiInsertSchema, fd as ToolApiSelectSchema, ff as ToolApiUpdateSchema, eb as ToolInsertSchema, ea as ToolSelectSchema, e8 as ToolStatusSchema, fc as ToolUpdateSchema, dv as URL_SAFE_ID_PATTERN, dw as resourceIdSchema } from '../utility-D_8q6Vlh.js';
|
|
4
4
|
export { P as PropsValidationResult, v as validatePropsAsJsonSchema } from '../props-validation-BMR1qNiy.js';
|
|
5
5
|
import 'drizzle-zod';
|
|
6
6
|
import 'drizzle-orm/sqlite-core';
|
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 {
|
|
1
|
+
export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAndTypeGraphData, validateArtifactComponentReferences, validateDataComponentReferences, validateGraphStructure, validateToolReferences } from '../chunk-2TJ2L67D.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, FullProjectDefinitionSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, FunctionInsertSchema, FunctionSelectSchema, FunctionToolConfigSchema, 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-NEJ3QDK6.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-20251010064032",
|
|
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",
|