@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.
@@ -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-20260122001146",
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",