@sinch/cli 0.1.29-beta.0 → 0.1.31-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -0
- package/dist/index.js +102 -101
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -92,6 +92,10 @@ sinch functions status <function-id>
|
|
|
92
92
|
| `sinch functions list` | List all deployed functions |
|
|
93
93
|
| `sinch functions logs` | Stream function logs |
|
|
94
94
|
| `sinch functions delete` | Delete a deployed function |
|
|
95
|
+
| `sinch sip trunks list` | List SIP trunks |
|
|
96
|
+
| `sinch sip trunks create` | Create a new SIP trunk |
|
|
97
|
+
| `sinch sip endpoints list <trunkId>` | List endpoints for a trunk |
|
|
98
|
+
| `sinch sip endpoints create <trunkId>` | Create a SIP endpoint |
|
|
95
99
|
| `sinch secrets add` | Store secrets securely |
|
|
96
100
|
| `sinch templates list` | Browse available templates |
|
|
97
101
|
| `sinch help` | Show help for any command |
|
|
@@ -146,6 +150,23 @@ sinch functions dev
|
|
|
146
150
|
# Tunnel runs inside your function runtime
|
|
147
151
|
```
|
|
148
152
|
|
|
153
|
+
### 📞 Elastic SIP Trunking
|
|
154
|
+
Manage SIP trunks and endpoints for voice connectivity:
|
|
155
|
+
|
|
156
|
+
```bash
|
|
157
|
+
# List your SIP trunks
|
|
158
|
+
sinch sip trunks list
|
|
159
|
+
|
|
160
|
+
# Create a new trunk (interactive)
|
|
161
|
+
sinch sip trunks create
|
|
162
|
+
|
|
163
|
+
# Add an endpoint to a trunk
|
|
164
|
+
sinch sip endpoints create <trunk-id>
|
|
165
|
+
|
|
166
|
+
# Get JSON output for scripting
|
|
167
|
+
sinch sip trunks list --json
|
|
168
|
+
```
|
|
169
|
+
|
|
149
170
|
## Documentation
|
|
150
171
|
|
|
151
172
|
- **Full Documentation**: [/docs/README.md](./docs/README.md)
|