Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,35 @@ $sender->agents();
// many more…
```

The following convenience methods return a `Collection` of entry events plus a trailing completion event:

- `coreShowChannels()`
- `sipPeers()`
- `agents()`
- `status()`
- `queueStatus(?string $queue = null, ?string $member = null)`
- `queueSummary(?string $queue = null)`
- `parkedCalls()`
- `parkinglots()`
- `bridgeList()`
- `bridgeTechnologyList()`
- `confbridgeList(string $conference)`
- `confbridgeListRooms()`
- `deviceStateList()`
- `extensionStateList()`
- `sipShowRegistry()`
- `iaxPeerlist()`
- `pjsipShowEndpoints()`
- `pjsipShowAors()`
- `pjsipShowContacts()`
- `pjsipShowRegistrationsInbound()`
- `pjsipShowRegistrationsOutbound()`
- `pjsipShowResourceLists()`
- `pjsipShowSubscriptionsInbound()`
- `pjsipShowSubscriptionsOutbound()`
- `showDialPlan(?string $context = null, ?string $extension = null, ?int $priority = null)`
- `voicemailUsersList()`

Listing all available actions is out of scope here, please refer to the [class outline](src/ActionSender.php).

Note that using the `ActionSender` is not strictly necessary, but is the recommended way to execute common actions.
Expand Down
Loading