@atomoz/workflows-nodes 0.1.9 → 0.1.10

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
@@ -95,6 +95,7 @@ var HttpGetInputNode = {
95
95
  category: "input",
96
96
  icon: "\u{1F310}",
97
97
  description: "Node que representa uma rota GET HTTP e recebe query/path parameters",
98
+ group: "HTTP",
98
99
  tags: {
99
100
  execution: "sync",
100
101
  group: "HTTP"
@@ -533,6 +534,7 @@ var OutputNode = {
533
534
  category: "output",
534
535
  icon: "\u{1F4E4}",
535
536
  description: "Node de sa\xEDda do workflow que aceita qualquer entrada e retorna ela diretamente",
537
+ group: "HTTP",
536
538
  tags: {
537
539
  execution: "sync",
538
540
  group: "HTTP"
@@ -656,6 +658,7 @@ var IaAgentNode = {
656
658
  description: "Creates a configurable AI agent for supervision",
657
659
  icon: "\u{1F916}",
658
660
  toolable: true,
661
+ group: "IA",
659
662
  tags: {
660
663
  execution: "async",
661
664
  group: "IA"
@@ -940,6 +943,7 @@ var AiSupervisorNode = {
940
943
  description: "Coordinates multiple agents to perform tasks manually",
941
944
  icon: "\u{1F440}",
942
945
  toolable: false,
946
+ group: "IA",
943
947
  tags: {
944
948
  execution: "async",
945
949
  group: "IA"
@@ -995,12 +999,17 @@ var AiSupervisorNode = {
995
999
  }
996
1000
  },
997
1001
  {
998
- id: "output",
999
- label: "Output",
1002
+ id: "response",
1003
+ label: "Response",
1000
1004
  type: "string",
1001
1005
  required: true,
1002
1006
  typeable: false,
1003
- handle: { type: "output", label: "Output", name: "output", fieldType: "string" }
1007
+ handle: {
1008
+ type: "output",
1009
+ label: "response",
1010
+ name: "response",
1011
+ fieldType: "string"
1012
+ }
1004
1013
  }
1005
1014
  ]
1006
1015
  };
@@ -1212,6 +1221,7 @@ var AiToolNode = {
1212
1221
  category: "step",
1213
1222
  description: "Wraps another node to be used as a tool by an AI agent",
1214
1223
  icon: "\u{1F6E0}\uFE0F",
1224
+ group: "IA",
1215
1225
  tags: {
1216
1226
  execution: "async",
1217
1227
  group: "IA"
@@ -1359,6 +1369,7 @@ var IaMessageNode = {
1359
1369
  category: "step",
1360
1370
  description: "Send message to AI model and return response",
1361
1371
  icon: "\u{1F4AC}",
1372
+ group: "IA",
1362
1373
  tags: {
1363
1374
  execution: "async",
1364
1375
  group: "IA"
@@ -1407,17 +1418,16 @@ var IaMessageNode = {
1407
1418
  }
1408
1419
  },
1409
1420
  {
1410
- id: "output",
1411
- label: "Output",
1421
+ id: "response",
1422
+ label: "Response",
1412
1423
  type: "string",
1413
1424
  required: true,
1414
1425
  typeable: false,
1415
1426
  handle: {
1416
1427
  type: "output",
1417
- label: "Output",
1418
- name: "output",
1419
- fieldType: "string",
1420
- required: true
1428
+ label: "response",
1429
+ name: "response",
1430
+ fieldType: "string"
1421
1431
  }
1422
1432
  }
1423
1433
  ]
@@ -1436,6 +1446,7 @@ var WhatsappSendTemplateNode = {
1436
1446
  description: "Send a template message to a WhatsApp number",
1437
1447
  icon: "\u{1F4F1}",
1438
1448
  toolable: true,
1449
+ group: "Social",
1439
1450
  tags: {
1440
1451
  execution: "async",
1441
1452
  group: "Social"
@@ -1479,6 +1490,7 @@ var WhatsappSendMessageNode = {
1479
1490
  description: "Send an open text message to a WhatsApp number",
1480
1491
  icon: "\u{1F4AC}",
1481
1492
  toolable: true,
1493
+ group: "Social",
1482
1494
  tags: {
1483
1495
  execution: "async",
1484
1496
  group: "Social"
@@ -1521,6 +1533,7 @@ var WhatsappMessageTriggerNode = {
1521
1533
  description: "Trigger when a message is received from a WhatsApp number",
1522
1534
  icon: "\u{1F4F1}",
1523
1535
  toolable: false,
1536
+ group: "Social",
1524
1537
  tags: {
1525
1538
  execution: "async",
1526
1539
  group: "Social"
package/dist/index.d.cts CHANGED
@@ -158,6 +158,7 @@ type NodeData = {
158
158
  value?: any;
159
159
  friendlyId?: string;
160
160
  data?: any;
161
+ group?: string;
161
162
  };
162
163
 
163
164
  declare const nodes: NodeData[];
package/dist/index.d.ts CHANGED
@@ -158,6 +158,7 @@ type NodeData = {
158
158
  value?: any;
159
159
  friendlyId?: string;
160
160
  data?: any;
161
+ group?: string;
161
162
  };
162
163
 
163
164
  declare const nodes: NodeData[];
package/dist/index.js CHANGED
@@ -5,6 +5,7 @@ var HttpGetInputNode = {
5
5
  category: "input",
6
6
  icon: "\u{1F310}",
7
7
  description: "Node que representa uma rota GET HTTP e recebe query/path parameters",
8
+ group: "HTTP",
8
9
  tags: {
9
10
  execution: "sync",
10
11
  group: "HTTP"
@@ -443,6 +444,7 @@ var OutputNode = {
443
444
  category: "output",
444
445
  icon: "\u{1F4E4}",
445
446
  description: "Node de sa\xEDda do workflow que aceita qualquer entrada e retorna ela diretamente",
447
+ group: "HTTP",
446
448
  tags: {
447
449
  execution: "sync",
448
450
  group: "HTTP"
@@ -566,6 +568,7 @@ var IaAgentNode = {
566
568
  description: "Creates a configurable AI agent for supervision",
567
569
  icon: "\u{1F916}",
568
570
  toolable: true,
571
+ group: "IA",
569
572
  tags: {
570
573
  execution: "async",
571
574
  group: "IA"
@@ -850,6 +853,7 @@ var AiSupervisorNode = {
850
853
  description: "Coordinates multiple agents to perform tasks manually",
851
854
  icon: "\u{1F440}",
852
855
  toolable: false,
856
+ group: "IA",
853
857
  tags: {
854
858
  execution: "async",
855
859
  group: "IA"
@@ -905,12 +909,17 @@ var AiSupervisorNode = {
905
909
  }
906
910
  },
907
911
  {
908
- id: "output",
909
- label: "Output",
912
+ id: "response",
913
+ label: "Response",
910
914
  type: "string",
911
915
  required: true,
912
916
  typeable: false,
913
- handle: { type: "output", label: "Output", name: "output", fieldType: "string" }
917
+ handle: {
918
+ type: "output",
919
+ label: "response",
920
+ name: "response",
921
+ fieldType: "string"
922
+ }
914
923
  }
915
924
  ]
916
925
  };
@@ -1122,6 +1131,7 @@ var AiToolNode = {
1122
1131
  category: "step",
1123
1132
  description: "Wraps another node to be used as a tool by an AI agent",
1124
1133
  icon: "\u{1F6E0}\uFE0F",
1134
+ group: "IA",
1125
1135
  tags: {
1126
1136
  execution: "async",
1127
1137
  group: "IA"
@@ -1269,6 +1279,7 @@ var IaMessageNode = {
1269
1279
  category: "step",
1270
1280
  description: "Send message to AI model and return response",
1271
1281
  icon: "\u{1F4AC}",
1282
+ group: "IA",
1272
1283
  tags: {
1273
1284
  execution: "async",
1274
1285
  group: "IA"
@@ -1317,17 +1328,16 @@ var IaMessageNode = {
1317
1328
  }
1318
1329
  },
1319
1330
  {
1320
- id: "output",
1321
- label: "Output",
1331
+ id: "response",
1332
+ label: "Response",
1322
1333
  type: "string",
1323
1334
  required: true,
1324
1335
  typeable: false,
1325
1336
  handle: {
1326
1337
  type: "output",
1327
- label: "Output",
1328
- name: "output",
1329
- fieldType: "string",
1330
- required: true
1338
+ label: "response",
1339
+ name: "response",
1340
+ fieldType: "string"
1331
1341
  }
1332
1342
  }
1333
1343
  ]
@@ -1346,6 +1356,7 @@ var WhatsappSendTemplateNode = {
1346
1356
  description: "Send a template message to a WhatsApp number",
1347
1357
  icon: "\u{1F4F1}",
1348
1358
  toolable: true,
1359
+ group: "Social",
1349
1360
  tags: {
1350
1361
  execution: "async",
1351
1362
  group: "Social"
@@ -1389,6 +1400,7 @@ var WhatsappSendMessageNode = {
1389
1400
  description: "Send an open text message to a WhatsApp number",
1390
1401
  icon: "\u{1F4AC}",
1391
1402
  toolable: true,
1403
+ group: "Social",
1392
1404
  tags: {
1393
1405
  execution: "async",
1394
1406
  group: "Social"
@@ -1431,6 +1443,7 @@ var WhatsappMessageTriggerNode = {
1431
1443
  description: "Trigger when a message is received from a WhatsApp number",
1432
1444
  icon: "\u{1F4F1}",
1433
1445
  toolable: false,
1446
+ group: "Social",
1434
1447
  tags: {
1435
1448
  execution: "async",
1436
1449
  group: "Social"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atomoz/workflows-nodes",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Atomoz Workflows - Node Library",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",