@atomoz/workflows-nodes 0.1.8 → 0.1.9

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/dist/index.cjs CHANGED
@@ -725,7 +725,6 @@ var IaAgentNode = {
725
725
  },
726
726
  {
727
727
  id: "agent",
728
- // O output agora é o próprio agente
729
728
  label: "Agent",
730
729
  type: "agent",
731
730
  required: true,
@@ -738,7 +737,7 @@ var IaAgentNode = {
738
737
  }
739
738
  },
740
739
  {
741
- id: "output",
740
+ id: "response",
742
741
  label: "Response",
743
742
  type: "string",
744
743
  required: true,
@@ -746,7 +745,7 @@ var IaAgentNode = {
746
745
  handle: {
747
746
  type: "output",
748
747
  label: "response",
749
- name: "output",
748
+ name: "response",
750
749
  fieldType: "string"
751
750
  }
752
751
  }
@@ -1256,7 +1255,8 @@ var AiToolNode = {
1256
1255
  label: "Tool",
1257
1256
  name: "tool",
1258
1257
  fieldType: "tool",
1259
- required: true
1258
+ required: true,
1259
+ acceptTypes: ["tool"]
1260
1260
  }
1261
1261
  }
1262
1262
  ]
package/dist/index.js CHANGED
@@ -635,7 +635,6 @@ var IaAgentNode = {
635
635
  },
636
636
  {
637
637
  id: "agent",
638
- // O output agora é o próprio agente
639
638
  label: "Agent",
640
639
  type: "agent",
641
640
  required: true,
@@ -648,7 +647,7 @@ var IaAgentNode = {
648
647
  }
649
648
  },
650
649
  {
651
- id: "output",
650
+ id: "response",
652
651
  label: "Response",
653
652
  type: "string",
654
653
  required: true,
@@ -656,7 +655,7 @@ var IaAgentNode = {
656
655
  handle: {
657
656
  type: "output",
658
657
  label: "response",
659
- name: "output",
658
+ name: "response",
660
659
  fieldType: "string"
661
660
  }
662
661
  }
@@ -1166,7 +1165,8 @@ var AiToolNode = {
1166
1165
  label: "Tool",
1167
1166
  name: "tool",
1168
1167
  fieldType: "tool",
1169
- required: true
1168
+ required: true,
1169
+ acceptTypes: ["tool"]
1170
1170
  }
1171
1171
  }
1172
1172
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atomoz/workflows-nodes",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Atomoz Workflows - Node Library",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",