@inkeep/agents-core 0.19.9 → 0.20.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.
@@ -2214,7 +2214,7 @@ var FullAgentDefinitionSchema = AgentAgentApiInsertSchema.extend({
2214
2214
  stopWhen: zod.z.object({
2215
2215
  transferCountIs: zod.z.number().min(1).max(100).optional()
2216
2216
  }).optional(),
2217
- agentPrompt: zod.z.string().max(5e3).optional(),
2217
+ prompt: zod.z.string().max(5e3).optional(),
2218
2218
  statusUpdates: zod.z.object({
2219
2219
  enabled: zod.z.boolean().optional(),
2220
2220
  numEvents: zod.z.number().min(1).max(100).optional(),
@@ -238,7 +238,7 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
238
238
  stopWhen: z.ZodOptional<z.ZodObject<{
239
239
  transferCountIs: z.ZodOptional<z.ZodNumber>;
240
240
  }, z.core.$strip>>;
241
- agentPrompt: z.ZodOptional<z.ZodString>;
241
+ prompt: z.ZodOptional<z.ZodString>;
242
242
  statusUpdates: z.ZodOptional<z.ZodObject<{
243
243
  enabled: z.ZodOptional<z.ZodBoolean>;
244
244
  numEvents: z.ZodOptional<z.ZodNumber>;
@@ -238,7 +238,7 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
238
238
  stopWhen: z.ZodOptional<z.ZodObject<{
239
239
  transferCountIs: z.ZodOptional<z.ZodNumber>;
240
240
  }, z.core.$strip>>;
241
- agentPrompt: z.ZodOptional<z.ZodString>;
241
+ prompt: z.ZodOptional<z.ZodString>;
242
242
  statusUpdates: z.ZodOptional<z.ZodObject<{
243
243
  enabled: z.ZodOptional<z.ZodBoolean>;
244
244
  numEvents: z.ZodOptional<z.ZodNumber>;
@@ -144,7 +144,7 @@ var FullAgentDefinitionSchema = AgentAgentApiInsertSchema.extend({
144
144
  stopWhen: z.object({
145
145
  transferCountIs: z.number().min(1).max(100).optional()
146
146
  }).optional(),
147
- agentPrompt: z.string().max(5e3).optional(),
147
+ prompt: z.string().max(5e3).optional(),
148
148
  statusUpdates: z.object({
149
149
  enabled: z.boolean().optional(),
150
150
  numEvents: z.number().min(1).max(100).optional(),
package/dist/index.js CHANGED
@@ -1,8 +1,8 @@
1
1
  export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, DATA_SOURCES, DATA_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, UNKNOWN_VALUE } from './chunk-QFIITHNT.js';
2
2
  export { ANTHROPIC_MODELS, GOOGLE_MODELS, OPENAI_MODELS } from './chunk-LZJWVTQ2.js';
3
- export { TaskState } from './chunk-H2F72PDA.js';
4
3
  import { getLogger, convertZodToJsonSchema } from './chunk-YECQCT5N.js';
5
4
  export { PinoLogger, convertZodToJsonSchema, convertZodToJsonSchemaWithPreview, extractPreviewFields, getLogger, isZodSchema, loggerFactory, preview } from './chunk-YECQCT5N.js';
5
+ export { TaskState } from './chunk-H2F72PDA.js';
6
6
  import { validateAndTypeAgentData, validateAgentStructure, isInternalAgent, isExternalAgent } from './chunk-4FMDWUE4.js';
7
7
  export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAgentStructure, validateAndTypeAgentData, validateArtifactComponentReferences, validateDataComponentReferences, validateToolReferences } from './chunk-4FMDWUE4.js';
8
8
  import { ContextConfigApiUpdateSchema, validatePropsAsJsonSchema } from './chunk-VICWT3WO.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-core",
3
- "version": "0.19.9",
3
+ "version": "0.20.0",
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",