@inkeep/agents-core 0.10.1 → 0.11.0

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.
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
- import { C as ConversationHistoryConfig, A as ApiKeyApiUpdateSchema, F as FullGraphAgentInsertSchema } from './utility-D7QP8MkV.cjs';
3
- export { d as AgentStopWhen, a as AgentStopWhenSchema, e as CredentialStoreType, c as GraphStopWhen, G as GraphStopWhenSchema, M as MCPTransportType, b as StopWhen, S as StopWhenSchema } from './utility-D7QP8MkV.cjs';
2
+ import { C as ConversationHistoryConfig, A as ApiKeyApiUpdateSchema, F as FullGraphAgentInsertSchema } from './utility-ChGndcyd.cjs';
3
+ export { d as AgentStopWhen, a as AgentStopWhenSchema, e as CredentialStoreType, c as GraphStopWhen, G as GraphStopWhenSchema, M as MCPTransportType, b as StopWhen, S as StopWhenSchema } from './utility-ChGndcyd.cjs';
4
4
  import 'drizzle-zod';
5
5
  import 'drizzle-orm/sqlite-core';
6
6
  import '@hono/zod-openapi';
@@ -67,8 +67,8 @@ declare const AgentApiInsertSchema: z.ZodObject<{
67
67
  canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
68
68
  canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
69
69
  type: z.ZodOptional<z.ZodEnum<{
70
- external: "external";
71
70
  internal: "internal";
71
+ external: "external";
72
72
  }>>;
73
73
  }, z.core.$strip>;
74
74
  declare const ToolApiInsertSchema: z.ZodObject<{
@@ -168,11 +168,13 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
168
168
  description: z.ZodOptional<z.ZodString>;
169
169
  defaultAgentId: z.ZodOptional<z.ZodString>;
170
170
  agents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
171
- name: z.ZodString;
172
171
  id: z.ZodString;
172
+ name: z.ZodString;
173
+ description: z.ZodString;
174
+ prompt: z.ZodString;
173
175
  createdAt: z.ZodOptional<z.ZodString>;
174
176
  updatedAt: z.ZodOptional<z.ZodString>;
175
- description: z.ZodString;
177
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
176
178
  models: z.ZodOptional<z.ZodObject<{
177
179
  base: z.ZodOptional<z.ZodObject<{
178
180
  model: z.ZodOptional<z.ZodString>;
@@ -196,8 +198,6 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
196
198
  }, {
197
199
  stepCountIs?: number | undefined;
198
200
  }>>>>;
199
- prompt: z.ZodString;
200
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
201
201
  type: z.ZodLiteral<"internal">;
202
202
  canUse: z.ZodArray<z.ZodObject<{
203
203
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
- import { C as ConversationHistoryConfig, A as ApiKeyApiUpdateSchema, F as FullGraphAgentInsertSchema } from './utility-D7QP8MkV.js';
3
- export { d as AgentStopWhen, a as AgentStopWhenSchema, e as CredentialStoreType, c as GraphStopWhen, G as GraphStopWhenSchema, M as MCPTransportType, b as StopWhen, S as StopWhenSchema } from './utility-D7QP8MkV.js';
2
+ import { C as ConversationHistoryConfig, A as ApiKeyApiUpdateSchema, F as FullGraphAgentInsertSchema } from './utility-ChGndcyd.js';
3
+ export { d as AgentStopWhen, a as AgentStopWhenSchema, e as CredentialStoreType, c as GraphStopWhen, G as GraphStopWhenSchema, M as MCPTransportType, b as StopWhen, S as StopWhenSchema } from './utility-ChGndcyd.js';
4
4
  import 'drizzle-zod';
5
5
  import 'drizzle-orm/sqlite-core';
6
6
  import '@hono/zod-openapi';
@@ -67,8 +67,8 @@ declare const AgentApiInsertSchema: z.ZodObject<{
67
67
  canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
68
68
  canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
69
69
  type: z.ZodOptional<z.ZodEnum<{
70
- external: "external";
71
70
  internal: "internal";
71
+ external: "external";
72
72
  }>>;
73
73
  }, z.core.$strip>;
74
74
  declare const ToolApiInsertSchema: z.ZodObject<{
@@ -168,11 +168,13 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
168
168
  description: z.ZodOptional<z.ZodString>;
169
169
  defaultAgentId: z.ZodOptional<z.ZodString>;
170
170
  agents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
171
- name: z.ZodString;
172
171
  id: z.ZodString;
172
+ name: z.ZodString;
173
+ description: z.ZodString;
174
+ prompt: z.ZodString;
173
175
  createdAt: z.ZodOptional<z.ZodString>;
174
176
  updatedAt: z.ZodOptional<z.ZodString>;
175
- description: z.ZodString;
177
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
176
178
  models: z.ZodOptional<z.ZodObject<{
177
179
  base: z.ZodOptional<z.ZodObject<{
178
180
  model: z.ZodOptional<z.ZodString>;
@@ -196,8 +198,6 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
196
198
  }, {
197
199
  stepCountIs?: number | undefined;
198
200
  }>>>>;
199
- prompt: z.ZodString;
200
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
201
201
  type: z.ZodLiteral<"internal">;
202
202
  canUse: z.ZodArray<z.ZodObject<{
203
203
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -1,5 +1,5 @@
1
- import { FullGraphAgentInsertSchema } from './chunk-JXAL2ALG.js';
2
- export { AgentStopWhenSchema, GraphStopWhenSchema, StopWhenSchema } from './chunk-JXAL2ALG.js';
1
+ import { FullGraphAgentInsertSchema } from './chunk-R5V3UTGB.js';
2
+ export { AgentStopWhenSchema, GraphStopWhenSchema, StopWhenSchema } from './chunk-R5V3UTGB.js';
3
3
  import { CredentialStoreType } from './chunk-YFHT5M2R.js';
4
4
  export { CredentialStoreType, MCPTransportType } from './chunk-YFHT5M2R.js';
5
5
  import { z } from 'zod';