+1
-1
@@ -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": [ |
+2
-0
@@ -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) { |
+1
-1
@@ -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 = { }; |
72424
0.78%1646
1.04%217
0.93%