@inkeep/agents-core 0.0.0-dev-20260122001146 → 0.0.0-dev-20260122003353
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/data-access/manage/dataComponents.d.ts +2 -2
- package/dist/data-access/manage/functionTools.d.ts +7 -5
- package/dist/data-access/manage/functionTools.js +25 -17
- package/dist/data-access/runtime/tasks.d.ts +1 -1
- package/dist/db/manage/manage-schema.d.ts +375 -375
- package/dist/db/runtime/runtime-schema.d.ts +175 -175
- package/dist/validation/schemas.d.ts +1214 -1228
- package/dist/validation/schemas.js +1 -1
- package/package.json +1 -1
|
@@ -624,7 +624,7 @@ const ToolApiUpdateSchema = createApiUpdateSchema(ToolUpdateSchema).openapi("Too
|
|
|
624
624
|
const FunctionToolSelectSchema = createSelectSchema(functionTools);
|
|
625
625
|
const FunctionToolInsertSchema = createInsertSchema(functionTools).extend({ id: resourceIdSchema });
|
|
626
626
|
const FunctionToolUpdateSchema = FunctionToolInsertSchema.partial();
|
|
627
|
-
const FunctionToolApiSelectSchema = createApiSchema(FunctionToolSelectSchema).openapi("FunctionTool");
|
|
627
|
+
const FunctionToolApiSelectSchema = createApiSchema(FunctionToolSelectSchema).extend({ relationshipId: z.string().optional() }).openapi("FunctionTool");
|
|
628
628
|
const FunctionToolApiInsertSchema = createAgentScopedApiInsertSchema(FunctionToolInsertSchema).openapi("FunctionToolCreate");
|
|
629
629
|
const FunctionToolApiUpdateSchema = createApiUpdateSchema(FunctionToolUpdateSchema).openapi("FunctionToolUpdate");
|
|
630
630
|
const SubAgentFunctionToolRelationSelectSchema = createSelectSchema(subAgentFunctionToolRelations);
|
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-20260122003353",
|
|
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",
|