🚀 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.7.0
to
0.7.1
+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.7.0",
"version": "0.7.1",
"homepage": "https://github.com/marcelog/Nami",

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

@@ -790,7 +790,7 @@ /*!

this.set('interface', asteriskInterface);
if (undefined !== queue) {
this.set('queue', queue);
}
if (undefined !== reason) {

@@ -815,7 +815,7 @@ this.set('reason', reason);

this.set('interface', asteriskInterface);
if (undefined !== queue) {
this.set('queue', queue);
}
if (undefined !== reason) {

@@ -964,3 +964,3 @@ this.set('reason', reason);

/**
/**
* MeetmeList Action.

@@ -977,3 +977,3 @@ * @constructor

}
/**

@@ -990,3 +990,3 @@ * MeetmeMute Action.

}
/**

@@ -1031,3 +1031,3 @@ * MeetmeUnmute Action.

* @param {String} conference room. The value of the "conference" key.
* @param {String} Channel. The value of the "Channel" key.
* @param {String} Channel. The value of the "Channel" key.
* @augments Action

@@ -1070,3 +1070,3 @@ */

* @param {String} conference room. The value of the "conference" key.
* @param {String} Channel. The value of the "Channel" key.
* @param {String} Channel. The value of the "Channel" key.
* @augments Action

@@ -1085,3 +1085,3 @@ */

* @param {String} conference room. The value of the "conference" key.
* @param {String} Channel. The value of the "Channel" key.
* @param {String} Channel. The value of the "Channel" key.
* @augments Action

@@ -1101,3 +1101,3 @@ */

* @param {String} Channel that is currently in Async AGI.
* @param {String} Application to execute.
* @param {String} Application to execute.
* @param {String} This will be sent back in CommandID header of AsyncAGI exec event notification.

@@ -1146,2 +1146,15 @@ * @augments Action

/**
* UserEvent Action.
* @constructor
* @param {String} UserEvent. The name of the event.
* @see Action(String)
* @see See <a href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+11+ManagerAction_UserEvent">https://wiki.asterisk.org/wiki/display/AST/Asterisk+11+ManagerAction_UserEvent</a>.
* @augments Action
*/
function UserEvent(event) {
UserEvent.super_.call(this, 'UserEvent');
this.set('UserEvent', event);
}
/**
*

@@ -1242,3 +1255,4 @@ * @param mask

Filter,
Events
Events,
UserEvent
];

@@ -1245,0 +1259,0 @@ for (i in actions) {