@k-msg/cli 0.3.2 → 0.3.3
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/CHANGELOG.md +6 -0
- package/README.md +15 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -130,6 +130,21 @@ k-msg alimtalk send \
|
|
|
130
130
|
--channel main
|
|
131
131
|
```
|
|
132
132
|
|
|
133
|
+
Failover options:
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
k-msg alimtalk send \
|
|
137
|
+
--to 01012345678 \
|
|
138
|
+
--template-code TPL_001 \
|
|
139
|
+
--vars '{"name":"Jane"}' \
|
|
140
|
+
--failover true \
|
|
141
|
+
--fallback-channel sms \
|
|
142
|
+
--fallback-content "Fallback SMS text" \
|
|
143
|
+
--fallback-title "Fallback LMS title"
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
When providers return send warnings (for example failover partial/unsupported), CLI prints `WARNING ...` lines in text mode and includes them in `--json` output.
|
|
147
|
+
|
|
133
148
|
### Advanced JSON send
|
|
134
149
|
|
|
135
150
|
```bash
|