@k-msg/cli 0.6.1 → 0.6.2

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @k-msg/cli
2
2
 
3
+ ## 0.6.2 — 2026-02-19
4
+
5
+ ### Patch changes
6
+
7
+ - [7797dc8](https://github.com/k-otp/k-msg/commit/7797dc8dacc4024a2b825fe46c6f266e271e822d) - Fix provider balance CLI exit code semantics: return exit code 3 only for provider errors and 4 when capability is unsupported.
8
+ - Update CLI/README docs to use the correct `providers list --config ...` usage and clarify capability-not-supported exit code.
9
+ - Add GitHub repository button to docs home pages (KO/EN). — Thanks @imjlk!
10
+
3
11
  ## 0.6.1 — 2026-02-18
4
12
 
5
13
  ### Patch changes
package/README.md CHANGED
@@ -94,9 +94,11 @@ Default config path:
94
94
  Override:
95
95
 
96
96
  ```bash
97
- k-msg --config /path/to/k-msg.config.json providers list
97
+ k-msg providers list --config /path/to/k-msg.config.json
98
98
  ```
99
99
 
100
+ Note: `--config` is a subcommand option in the current CLI (for example: `providers`, `sms`, `alimtalk`).
101
+
100
102
  Example file: `apps/cli/k-msg.config.example.json`
101
103
 
102
104
  Schema URLs:
@@ -323,7 +325,7 @@ k-msg kakao template request --template-id TPL_001 --channel main
323
325
  - `0`: success
324
326
  - `2`: input/config error
325
327
  - `3`: provider/network error
326
- - `4`: capability not supported
328
+ - `4`: unsupported capability (for example, provider does not support `balance`)
327
329
 
328
330
  ## Manual Check Config Example
329
331
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k-msg/cli",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "private": false,
5
5
  "description": "k-msg CLI (prebuilt binaries via GitHub Releases)",
6
6
  "type": "module",
@@ -33,16 +33,16 @@
33
33
  "clean": "rm -rf dist"
34
34
  },
35
35
  "devDependencies": {
36
- "@k-msg/core": "0.17.0",
37
- "@k-msg/messaging": "0.17.0",
38
- "@k-msg/provider": "0.17.0",
36
+ "@k-msg/core": "0.18.2",
37
+ "@k-msg/messaging": "0.18.2",
38
+ "@k-msg/provider": "0.18.2",
39
39
  "@bunli/core": "^0.5.4",
40
40
  "@bunli/plugin-ai-detect": "^0.5.2",
41
41
  "@bunli/test": "^0.3.2",
42
42
  "@types/bun": "^1.3.9",
43
43
  "@types/node": "^22.0.0",
44
44
  "bunli": "^0.5.3",
45
- "k-msg": "0.17.0",
45
+ "k-msg": "0.18.2",
46
46
  "solapi": "^5.5.4",
47
47
  "typescript": "^5.7.2",
48
48
  "zod": "^4.0.14"