@inkeep/agents-core 0.0.0-dev-20260212210717 → 0.0.0-dev-20260212214459

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.
@@ -114,7 +114,6 @@ declare const ToolOutputErrorEventSchema: z.ZodObject<{
114
114
  type: z.ZodLiteral<"tool-output-error">;
115
115
  toolCallId: z.ZodString;
116
116
  errorText: z.ZodString;
117
- output: z.ZodNullable<z.ZodAny>;
118
117
  }, z.core.$strip>;
119
118
  /**
120
119
  * Tool approval request event - requesting user approval for tool execution
@@ -188,7 +187,6 @@ declare const StreamEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
188
187
  type: z.ZodLiteral<"tool-output-error">;
189
188
  toolCallId: z.ZodString;
190
189
  errorText: z.ZodString;
191
- output: z.ZodNullable<z.ZodAny>;
192
190
  }, z.core.$strip>, z.ZodObject<{
193
191
  type: z.ZodLiteral<"tool-approval-request">;
194
192
  approvalId: z.ZodString;
@@ -112,8 +112,7 @@ const ToolOutputAvailableEventSchema = z.object({
112
112
  const ToolOutputErrorEventSchema = z.object({
113
113
  type: z.literal("tool-output-error"),
114
114
  toolCallId: z.string(),
115
- errorText: z.string(),
116
- output: z.any().nullable()
115
+ errorText: z.string()
117
116
  });
118
117
  /**
119
118
  * Tool approval request event - requesting user approval for tool execution
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-core",
3
- "version": "0.0.0-dev-20260212210717",
3
+ "version": "0.0.0-dev-20260212214459",
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",