🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

nami

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nami - npm Package Compare versions

Comparing version
0.6.4
to
0.6.5
+1
-1
package.json

@@ -5,3 +5,3 @@ {

"description": "An asterisk manager interface client, uses EventEmitter to communicate events, will allow you to send actions, and receive responses (and associated events), and also receive async events from server",
"version": "0.6.4",
"version": "0.6.5",
"homepage": "https://github.com/marcelog/Nami",

@@ -8,0 +8,0 @@ "keywords": [

@@ -191,2 +191,3 @@ Introduction

- Redirect
- Bridge
- UnpauseMonitor

@@ -205,2 +206,3 @@ - StopMonitor

- QueueLog
- AGI

@@ -207,0 +209,0 @@ Thanks to

@@ -1047,2 +1047,18 @@ /*!

/**
* AGI Action.
* @constructor
* @see Action(String)
* @see https://wiki.asterisk.org/wiki/display/AST/ManagerAction_AGI
* @param {String} Channel that is currently in Async AGI.
* @param {String} Application to execute.
* @param {String} This will be sent back in CommandID header of AsyncAGI exec event notification.
* @augments Action
*/
function AGI(channel, command, commandId) {
AGI.super_.call(this, 'AGI');
this.set('Conference', conference);
this.set('Channel', channel);
this.set('ChannelID', channelId);
}

@@ -1130,3 +1146,4 @@ // Inheritance for this module

ConfbridgeMute,
ConfbridgeUnmute
ConfbridgeUnmute,
AGI
];

@@ -1133,0 +1150,0 @@ for (i in actions) {

@@ -48,3 +48,3 @@ /*!

this.EOM = this.EOL + this.EOL;
this.welcomeMessage = "Asterisk Call Manager/1.[123]" + this.EOL;
this.welcomeMessage = "Asterisk Call Manager/.*" + this.EOL;
this.received = false;

@@ -51,0 +51,0 @@ this.responses = { };