bpmnlint-plugin-camunda-compat 2.56.0 → 2.57.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bpmnlint-plugin-camunda-compat",
3
- "version": "2.56.0",
3
+ "version": "2.57.0",
4
4
  "description": "A bpmnlint plug-in for Camunda compatibility",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -177,7 +177,7 @@ module.exports = skipInNonExecutableProcess(function(config = {}) {
177
177
  if (!isAgenticAdHocSubProcess(ahsp, version)) {
178
178
  const ahspLabel = ahsp.get('name') || ahsp.get('id');
179
179
  reportErrors(task, reporter, invocations.map(() => ({
180
- message: `The "${ahspLabel}" sub-process is not marked as agentic, so fromAi() has no effect. Add an Extension property "io.camunda.agenticai.toolContainer" with value "true" to "${ahspLabel}".`,
180
+ message: `The "${ahspLabel}" sub-process is not marked as agentic, so fromAi() has no effect.`,
181
181
  data: { type: ERROR_TYPES.AGENT_FEEL_WRONG_CONTEXT },
182
182
  propertiesPanel,
183
183
  })));