@inkeep/agents-core 0.0.0-dev-20260122014548 → 0.0.0-dev-20260122022943

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.
@@ -188,7 +188,7 @@ const TriggerUpdateSchema = z.object({
188
188
  enabled: z.boolean().describe("Whether the trigger is enabled").optional(),
189
189
  inputSchema: z.record(z.string(), z.unknown()).optional().describe("JSON Schema for input validation"),
190
190
  outputTransform: TriggerOutputTransformSchema.optional(),
191
- messageTemplate: z.string().trim().nonempty().describe("Message template with {{placeholder}} syntax").optional(),
191
+ messageTemplate: z.string().trim().nonempty().describe("Message template with {{placeholder}} syntax").optional().nullable(),
192
192
  authentication: TriggerAuthenticationUpdateSchema.optional(),
193
193
  signingSecret: z.string().optional().describe("New HMAC-SHA256 signing secret"),
194
194
  keepExistingSigningSecret: z.boolean().optional().describe("If true, keep existing signing secret")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-core",
3
- "version": "0.0.0-dev-20260122014548",
3
+ "version": "0.0.0-dev-20260122022943",
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",