@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.
- package/dist/auth/auth-schema.d.ts +83 -83
- package/dist/auth/auth-validation-schemas.d.ts +148 -148
- package/dist/auth/auth.d.ts +22 -22
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/manage/skills.d.ts +1 -1
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +4 -4
- package/dist/data-access/runtime/conversations.d.ts +11 -11
- package/dist/data-access/runtime/messages.d.ts +12 -12
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/manage-schema.d.ts +357 -357
- package/dist/db/runtime/runtime-schema.d.ts +268 -268
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +1630 -1630
- package/dist/validation/stream-event-schemas.d.ts +0 -2
- package/dist/validation/stream-event-schemas.js +1 -2
- package/package.json +1 -1
|
@@ -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-
|
|
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",
|