@n8n/ai-workflow-builder 1.25.0 → 1.26.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.
Files changed (50) hide show
  1. package/dist/agents/responder.agent.d.ts +4 -4
  2. package/dist/build.tsbuildinfo +1 -1
  3. package/dist/code-builder/constants.d.ts +1 -0
  4. package/dist/code-builder/constants.js +5 -1
  5. package/dist/code-builder/constants.js.map +1 -1
  6. package/dist/code-builder/handlers/chat-setup-handler.js.map +1 -1
  7. package/dist/code-builder/handlers/text-editor-handler.d.ts +1 -3
  8. package/dist/code-builder/handlers/text-editor-handler.js +1 -3
  9. package/dist/code-builder/handlers/text-editor-handler.js.map +1 -1
  10. package/dist/code-builder/handlers/tool-dispatch-handler.d.ts +1 -1
  11. package/dist/code-builder/handlers/tool-dispatch-handler.js.map +1 -1
  12. package/dist/code-builder/index.d.ts +1 -1
  13. package/dist/code-builder/index.js +2 -1
  14. package/dist/code-builder/index.js.map +1 -1
  15. package/dist/code-builder/prompts/index.js +2 -2
  16. package/dist/code-builder/prompts/index.js.map +1 -1
  17. package/dist/code-builder/tools/code-builder-get.tool.d.ts +6 -6
  18. package/dist/index.d.ts +1 -1
  19. package/dist/index.js +2 -1
  20. package/dist/index.js.map +1 -1
  21. package/dist/multi-agent-workflow-subgraphs.d.ts +1 -1
  22. package/dist/multi-agent-workflow-subgraphs.js +2 -9
  23. package/dist/multi-agent-workflow-subgraphs.js.map +1 -1
  24. package/dist/prompts/agents/discovery.prompt.d.ts +1 -5
  25. package/dist/prompts/agents/discovery.prompt.js +11 -41
  26. package/dist/prompts/agents/discovery.prompt.js.map +1 -1
  27. package/dist/prompts/agents/index.d.ts +0 -1
  28. package/dist/prompts/agents/index.js.map +1 -1
  29. package/dist/prompts/index.d.ts +1 -1
  30. package/dist/prompts/index.js.map +1 -1
  31. package/dist/subgraphs/discovery.subgraph.d.ts +0 -1
  32. package/dist/subgraphs/discovery.subgraph.js +8 -29
  33. package/dist/subgraphs/discovery.subgraph.js.map +1 -1
  34. package/dist/tools/builder-tools.js +0 -4
  35. package/dist/tools/builder-tools.js.map +1 -1
  36. package/dist/tools/get-documentation.tool.d.ts +6 -6
  37. package/dist/tools/introspect.tool.d.ts +4 -4
  38. package/dist/tools/node-search.tool.d.ts +6 -6
  39. package/dist/tools/submit-questions.tool.d.ts +8 -8
  40. package/dist/types/tools.d.ts +0 -8
  41. package/dist/workflow-builder-agent.d.ts +0 -2
  42. package/dist/workflow-builder-agent.js +1 -2
  43. package/dist/workflow-builder-agent.js.map +1 -1
  44. package/package.json +12 -11
  45. package/dist/code-builder/handlers/text-editor.types.d.ts +0 -2
  46. package/dist/code-builder/handlers/text-editor.types.js +0 -13
  47. package/dist/code-builder/handlers/text-editor.types.js.map +0 -1
  48. package/dist/tools/get-workflow-examples.tool.d.ts +0 -34
  49. package/dist/tools/get-workflow-examples.tool.js +0 -138
  50. package/dist/tools/get-workflow-examples.tool.js.map +0 -1
@@ -72,20 +72,20 @@ export declare function createResponderAgent(config: ResponderAgentConfig): impo
72
72
  category: z.ZodEnum<["conflicting_instructions", "missing_guidance", "unclear_node_description", "incomplete_example", "other"]>;
73
73
  source: z.ZodOptional<z.ZodString>;
74
74
  }, "strip", z.ZodTypeAny, {
75
- category: "other" | "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example";
76
75
  issue: string;
76
+ category: "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example" | "other";
77
77
  source?: string | undefined;
78
78
  }, {
79
- category: "other" | "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example";
80
79
  issue: string;
80
+ category: "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example" | "other";
81
81
  source?: string | undefined;
82
82
  }>, {
83
- category: "other" | "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example";
84
83
  issue: string;
84
+ category: "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example" | "other";
85
85
  source?: string | undefined;
86
86
  }, {
87
- category: "other" | "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example";
88
87
  issue: string;
88
+ category: "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example" | "other";
89
89
  source?: string | undefined;
90
90
  }, import("@langchain/langgraph").Command<unknown, Record<string, unknown>, string>, unknown, string>)[]>>;
91
91
  export type ResponderAgentType = ReturnType<typeof createResponderAgent>;