node-red-contrib-wazo-platform
Advanced tools
Comparing version 1.0.12 to 1.0.13
@@ -18,7 +18,7 @@ module.exports = function (RED) { | ||
try { | ||
const { ...node} = await node.client.removeNode(application_uuid, node_uuid); | ||
const { ...deleteNode} = await node.client.removeNode(application_uuid, node_uuid); | ||
node.log(`Remove node ${node_uuid}`); | ||
msg.payload.application_uuid = application_uuid; | ||
msg.payload.node_uuid = node_uuid; | ||
msg.payload.data = node; | ||
msg.payload.data = deleteNode; | ||
node.send(msg); | ||
@@ -25,0 +25,0 @@ } |
@@ -62,4 +62,4 @@ module.exports = function (RED) { | ||
RED.nodes.registerType("wazo new call", new_call); | ||
RED.nodes.registerType("wazo new_call", new_call); | ||
} |
{ | ||
"name": "node-red-contrib-wazo-platform", | ||
"version": "1.0.12", | ||
"version": "1.0.13", | ||
"description": "Node Red module for the Wazo Platform API", | ||
@@ -45,4 +45,8 @@ "main": "index.js", | ||
"new_call": "nodes/new_call.js", | ||
"node": "nodes/node.js", | ||
"remove_call": "nodes/remove_call.js", | ||
"create_node": "nodes/create_node.js", | ||
"delete_node": "nodes/delete_node.js", | ||
"list_calls_node": "nodes/list_calls_node.js", | ||
"add_to_node": "nodes/add_to_node.js", | ||
"new_call_node": "nodes/new_call_node.js", | ||
"playback": "nodes/playback.js", | ||
@@ -49,0 +53,0 @@ "stop_playback": "nodes/stop_playback.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
869086
67
1653