@wave-av/cli 1.0.3 → 1.0.5
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 +14 -0
- package/README.md +4 -4
- package/package.json +12 -5
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.0.3 (2026-04-02)
|
|
4
|
+
|
|
5
|
+
- Fixed repository URL (was pointing to org, not repo)
|
|
6
|
+
- Fixed bugs URL (was pointing to private repo)
|
|
7
|
+
- Added LICENSE, SECURITY.md, CONTRIBUTING.md
|
|
8
|
+
|
|
9
|
+
## 1.0.0 (2026-04-01)
|
|
10
|
+
|
|
11
|
+
- Initial public release
|
|
12
|
+
- 34 command groups covering all WAVE APIs
|
|
13
|
+
- Shell completions (bash, zsh, fish)
|
|
14
|
+
- OAuth device flow and API key authentication
|
package/README.md
CHANGED
|
@@ -33,14 +33,14 @@ wave stream start <stream-id>
|
|
|
33
33
|
|
|
34
34
|
## Authentication
|
|
35
35
|
|
|
36
|
-
### OAuth
|
|
36
|
+
### OAuth device flow (recommended)
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
39
|
wave login
|
|
40
40
|
# Opens browser for authentication
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
### Direct API
|
|
43
|
+
### Direct API key
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
46
|
wave login --api-key wave_live_your_key_here
|
|
@@ -60,7 +60,7 @@ wave config set currentProject staging
|
|
|
60
60
|
wave stream list --project production
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
-
### CI/CD
|
|
63
|
+
### CI/CD environment variables
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
66
|
export WAVE_API_KEY=wave_live_your_key_here
|
|
@@ -157,7 +157,7 @@ wave completion zsh > ~/.zsh/completions/_wave
|
|
|
157
157
|
wave completion fish > ~/.config/fish/completions/wave.fish
|
|
158
158
|
```
|
|
159
159
|
|
|
160
|
-
## CI/CD
|
|
160
|
+
## CI/CD example
|
|
161
161
|
|
|
162
162
|
```yaml
|
|
163
163
|
# .github/workflows/deploy-stream.yml
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wave-av/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "WAVE CLI - Command-line interface for the WAVE streaming platform",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
12
|
"templates",
|
|
13
|
-
"README.md"
|
|
13
|
+
"README.md",
|
|
14
|
+
"CHANGELOG.md"
|
|
14
15
|
],
|
|
15
16
|
"scripts": {
|
|
16
17
|
"build": "tsup",
|
|
@@ -27,7 +28,12 @@
|
|
|
27
28
|
"streaming",
|
|
28
29
|
"video",
|
|
29
30
|
"broadcast",
|
|
30
|
-
"production"
|
|
31
|
+
"production",
|
|
32
|
+
"live",
|
|
33
|
+
"webrtc",
|
|
34
|
+
"srt",
|
|
35
|
+
"rtmp",
|
|
36
|
+
"terminal"
|
|
31
37
|
],
|
|
32
38
|
"author": "WAVE Inc. <cli@wave.online>",
|
|
33
39
|
"license": "MIT",
|
|
@@ -45,10 +51,11 @@
|
|
|
45
51
|
},
|
|
46
52
|
"publishConfig": {
|
|
47
53
|
"access": "public",
|
|
54
|
+
"provenance": false,
|
|
48
55
|
"registry": "https://registry.npmjs.org/"
|
|
49
56
|
},
|
|
50
57
|
"dependencies": {
|
|
51
|
-
"@wave-av/sdk": "
|
|
58
|
+
"@wave-av/sdk": "^2.0.11",
|
|
52
59
|
"chalk": "^5.4.1",
|
|
53
60
|
"cli-table3": "^0.6.5",
|
|
54
61
|
"commander": "^13.1.0",
|
|
@@ -59,7 +66,7 @@
|
|
|
59
66
|
"ora": "^8.2.0",
|
|
60
67
|
"ws": "^8.18.0",
|
|
61
68
|
"yaml": "^2.7.0",
|
|
62
|
-
"zod": "3.
|
|
69
|
+
"zod": "^3.22.0"
|
|
63
70
|
},
|
|
64
71
|
"devDependencies": {
|
|
65
72
|
"@sentry/node": "^9.4.0",
|