Samuel Fortier-Galarneau
Samuel Fortier-Galarneau
From the example above it doesn't look like that playback object was used to play a sound on a channel. What was done was create an object with a placeholder...
You may want to move ```ari.start('my-app');``` under where you register for events. There could technically be an event that fires while you are registering for it. I don't see where...
Bridges can be reused so it's possible an existing bridge (unused) bridge was used. Without knowing how your application is interacting with bridges/channels it's hard to tell what might be...
I think it would be great to support the ARI proxy as an additional connection option. My main concern is to ensure that we do not break the library for...
Ah yes. The multi-file definition. I suppose it would be possible to serve each file locally along with the root definition but it does add complexity.
The documentation (and available methods at runtime) are generated from the API spec for ARI in Asterisk. I suspect there are 2 different API endpoints for snoop channels in ARI...
I'm not sure what you mean. Events only originate from Asterisk and can be listened to in this library. The library itself cannot emit an event. All interactions from this...
The ```bridge``` instance above would be a snapshot of the bridge at a particular time. The count associated with it would depend on where that instance came from. For example,...
All instances are snapshots. Events are typically needed to get the latest state of an instance. This may be an upstream bug in Asterisk, although I'm not sure what the...
Do you mean if Client.prototype.start is called without an application name, or if Client.prototype.start is called with an application name that does not exist on the Asterisk instance the client...