@atomoz/workflows-nodes 0.1.12 → 0.1.13

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": "@atomoz/workflows-nodes",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Atomoz Workflows - Node Library",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
@@ -14,6 +14,7 @@ declare const nodeFunctions: {
14
14
  AiSupervisorNode: (fieldValues: any) => Promise<any>;
15
15
  WhatsappNode: (fieldValues: any) => Promise<any>;
16
16
  WhatsappSendMessageNode: (fieldValues: any) => Promise<any>;
17
+ CustomCodeNode: (params: any) => any;
17
18
  };
18
19
  export default nodeFunctions;
19
20
  //# sourceMappingURL=node-functions.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"node-functions.d.ts","sourceRoot":"","sources":["../../../../../../libs/nodes/src/nodes/consts/node-functions.ts"],"names":[],"mappings":"AAiBA,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;CAclB,CAAC;AAEF,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"node-functions.d.ts","sourceRoot":"","sources":["../../../../../../libs/nodes/src/nodes/consts/node-functions.ts"],"names":[],"mappings":"AAkBA,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;CAelB,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -9,6 +9,7 @@ import { WhatsappStartChatFunction } from "../social/whatsapp/send-template/func
9
9
  import { WhatsappSendMessageFunction } from "../social/whatsapp/send-message/functions";
10
10
  // import { WhatsappMessageTriggerFunction } from "../social/whatsapp/message-trigger/functions";
11
11
  import { ManualTriggerNodeFunction } from "../inputs/manual/trigger";
12
+ import { NodeFunction as CustomCodeNodeFunction } from "../processors/custom-code";
12
13
  const nodeFunctions = {
13
14
  ChatInput: ChatInputNodeFunction,
14
15
  ChatOutput: ChatOutputNodeFunction,
@@ -23,5 +24,6 @@ const nodeFunctions = {
23
24
  AiSupervisorNode: AiSupervisorNodeFunction,
24
25
  WhatsappNode: WhatsappStartChatFunction,
25
26
  WhatsappSendMessageNode: WhatsappSendMessageFunction,
27
+ CustomCodeNode: CustomCodeNodeFunction,
26
28
  };
27
29
  export default nodeFunctions;
@@ -1 +1 @@
1
- {"version":3,"file":"nodes.d.ts","sourceRoot":"","sources":["../../../../../../libs/nodes/src/nodes/consts/nodes.ts"],"names":[],"mappings":"AAgBA,QAAA,MAAM,KAAK,yBAgBV,CAAA;AAED,eAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"nodes.d.ts","sourceRoot":"","sources":["../../../../../../libs/nodes/src/nodes/consts/nodes.ts"],"names":[],"mappings":"AAiBA,QAAA,MAAM,KAAK,yBAiBV,CAAA;AAED,eAAe,KAAK,CAAC"}
@@ -8,6 +8,7 @@ import { IaMessageNode, IaAgentNode, AiToolNode, AiSupervisorNode } from "../ia"
8
8
  import { WhatsappSendTemplateNode } from "../social/whatsapp/send-template/data";
9
9
  import { WhatsappSendMessageNode } from "../social/whatsapp/send-message/data";
10
10
  import { WhatsappMessageTriggerNode } from "../social/whatsapp/message-trigger/data";
11
+ import { CustomCodeNode } from "../processors/custom-code";
11
12
  const nodes = [
12
13
  ChatInputNode,
13
14
  ManualTriggerNode,
@@ -24,5 +25,6 @@ const nodes = [
24
25
  WhatsappSendTemplateNode,
25
26
  WhatsappSendMessageNode,
26
27
  WhatsappMessageTriggerNode,
28
+ CustomCodeNode,
27
29
  ];
28
30
  export default nodes;