@ludeo/cli 1.2.1 → 1.2.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/README.md CHANGED
@@ -10,7 +10,7 @@ npm install -g @ludeo/cli
10
10
 
11
11
  Verify the installation:
12
12
  ```bash
13
- ludeo --version
13
+ ludeo version
14
14
  ```
15
15
 
16
16
  ## Quick Start
@@ -21,6 +21,11 @@ Get your access token from the Ludeo platform and authenticate:
21
21
  ludeo auth login --access-token YOUR_ACCESS_TOKEN
22
22
  ```
23
23
 
24
+ You can also check your authentication status:
25
+ ```bash
26
+ ludeo auth status
27
+ ```
28
+
24
29
  ### 2. Upload Your Build
25
30
  Upload your game build with a simple command. The CLI supports three build creation types:
26
31
 
@@ -29,7 +34,7 @@ Upload your game build with a simple command. The CLI supports three build creat
29
34
  # With explicit build-creation-type
30
35
  ludeo builds upload \
31
36
  --game-id YOUR_GAME_ID \
32
- --exec-path ./builds/game.exe \
37
+ --exec-path game.exe \
33
38
  --local-directory ./builds \
34
39
  --build-creation-type new \
35
40
  --build-type major \
@@ -40,7 +45,7 @@ ludeo builds upload \
40
45
  # Or simply omit --build-creation-type (defaults to "new")
41
46
  ludeo builds upload \
42
47
  --game-id YOUR_GAME_ID \
43
- --exec-path ./builds/game.exe \
48
+ --exec-path game.exe \
44
49
  --local-directory ./builds \
45
50
  --build-type major \
46
51
  --game-version "1.2.3" \
@@ -51,7 +56,7 @@ ludeo builds upload \
51
56
  ```bash
52
57
  ludeo builds upload \
53
58
  --game-id YOUR_GAME_ID \
54
- --exec-path ./builds/game.exe \
59
+ --exec-path game.exe \
55
60
  --local-directory ./builds \
56
61
  --build-creation-type modification \
57
62
  --build-type minor \
@@ -66,7 +71,7 @@ ludeo builds upload \
66
71
  ```bash
67
72
  ludeo builds upload \
68
73
  --game-id YOUR_GAME_ID \
69
- --exec-path ./builds/game.exe \
74
+ --exec-path game.exe \
70
75
  --local-directory ./builds \
71
76
  --build-creation-type sdkFree \
72
77
  --build-type major \
@@ -96,6 +101,15 @@ ludeo builds list --game-id YOUR_GAME_ID
96
101
 
97
102
  # Get build details
98
103
  ludeo builds get --game-id YOUR_GAME_ID --build-id BUILD_ID
104
+
105
+ # Check authentication status
106
+ ludeo auth status
107
+
108
+ # Validate your access token
109
+ ludeo auth validate
110
+
111
+ # Logout when done
112
+ ludeo auth logout
99
113
  ```
100
114
 
101
115
  ## Features
@@ -124,7 +138,7 @@ npm update -g @ludeo/cli
124
138
  ludeo auth login --access-token ${{ secrets.LUDEO_ACCESS_TOKEN }}
125
139
  ludeo builds upload \
126
140
  --game-id ${{ env.GAME_ID }} \
127
- --exec-path ./builds/game.exe \
141
+ --exec-path game.exe \
128
142
  --local-directory ./builds \
129
143
  --build-creation-type new \
130
144
  --build-type major \
@@ -155,6 +169,7 @@ sudo npm install -g @ludeo/cli
155
169
  **Authentication errors:**
156
170
  - Verify your access token is valid
157
171
  - Check token permissions with `ludeo auth status`
172
+ - Validate your token with `ludeo auth validate`
158
173
 
159
174
  **Upload failures:**
160
175
  - Ensure your build directory exists and is readable
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludeo/cli",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Ludeo CLI - Upload game builds and manage content on the Ludeo platform",
5
5
  "main": "index.js",
6
6
  "bin": {