+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.7.1", | ||
| "version": "0.7.2", | ||
| "homepage": "https://github.com/marcelog/Nami", | ||
@@ -8,0 +8,0 @@ "keywords": [ |
@@ -598,10 +598,27 @@ /*! | ||
| * @see Action(String) | ||
| * @see See <a href="https://wiki.asterisk.org/wiki/display/AST/ManagerAction_ParkedCalls">https://wiki.asterisk.org/wiki/display/AST/ManagerAction_ParkedCalls</a>. | ||
| * @see See <a href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+ManagerAction_ParkedCalls">https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+ManagerAction_ParkedCalls</a>. | ||
| * @property {String} ParkingLot Optional parking lot to view | ||
| * @augments Action | ||
| */ | ||
| function ParkedCalls() { | ||
| function ParkedCalls(lot) { | ||
| ParkedCalls.super_.call(this, 'ParkedCalls'); | ||
| if (undefined !== lot) { | ||
| this.set('ParkingLot', lot); | ||
| } | ||
| } | ||
| /** | ||
| * Parkinglots Action. | ||
| * @constructor | ||
| * @see Action(String) | ||
| * @see See <a href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+ManagerAction_Parkinglots">https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+ManagerAction_Parkinglots</a>. | ||
| * @augments Action | ||
| */ | ||
| function Parkinglots() { | ||
| Parkinglots.super_.call(this, 'Parkinglots'); | ||
| } | ||
| /** | ||
| * Monitor Action. | ||
@@ -778,2 +795,33 @@ * @constructor | ||
| /** | ||
| * QueueReload Action. | ||
| * @constructor | ||
| * @see Action(String) | ||
| * @see See <a href="https://wiki.asterisk.org/wiki/display/AST/ManagerAction_QueueReload">https://wiki.asterisk.org/wiki/display/AST/ManagerAction_QueueReload</a>. | ||
| * @property {String} Queue Optional, Queue | ||
| * @property {String} Members Optional, yes/no | ||
| * @property {String} Rules Optional, yes/no | ||
| * @property {String} Parameters Optional, yes/no | ||
| * @augments Action | ||
| */ | ||
| function QueueReload(queue, members, rules, parameters) { | ||
| QueueReload.super_.call(this, 'QueueReload'); | ||
| if (undefined !== queue) { | ||
| this.set('queue', queue); | ||
| } | ||
| if (undefined !== members) { | ||
| this.set('members', members); | ||
| } | ||
| if (undefined !== rules) { | ||
| this.set('rules', rules); | ||
| } | ||
| if (undefined !== parameters) { | ||
| this.set('parameters', parameters); | ||
| } | ||
| } | ||
| /** | ||
| * QueueUnpause Action. | ||
@@ -1210,2 +1258,3 @@ * @constructor | ||
| ParkedCalls, | ||
| Parkinglots, | ||
| Monitor, | ||
@@ -1229,2 +1278,3 @@ ModuleCheck, | ||
| QueuePause, | ||
| QueueReset, | ||
| QueueSummary, | ||
@@ -1236,2 +1286,3 @@ QueueStatus, | ||
| QueueLog, | ||
| QueueReload, | ||
| MeetmeList, | ||
@@ -1238,0 +1289,0 @@ MeetmeMute, |
78501
1.82%1795
2.45%