@ludeo/cli 1.2.2 → 1.2.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/README.md CHANGED
@@ -16,12 +16,12 @@ ludeo version
16
16
  ## Quick Start
17
17
 
18
18
  ### 1. Authentication
19
- Get your access token from the Ludeo platform and authenticate:
19
+ Get your access token from the Ludeo platform and save it:
20
20
  ```bash
21
- ludeo auth login --access-token YOUR_ACCESS_TOKEN
21
+ ludeo auth set-token --access-token YOUR_ACCESS_TOKEN
22
22
  ```
23
23
 
24
- You can also check your authentication status:
24
+ You can also check if a token is saved:
25
25
  ```bash
26
26
  ludeo auth status
27
27
  ```
@@ -102,13 +102,10 @@ ludeo builds list --game-id YOUR_GAME_ID
102
102
  # Get build details
103
103
  ludeo builds get --game-id YOUR_GAME_ID --build-id BUILD_ID
104
104
 
105
- # Check authentication status
105
+ # Check if token is saved
106
106
  ludeo auth status
107
107
 
108
- # Validate your access token
109
- ludeo auth validate
110
-
111
- # Logout when done
108
+ # Remove saved token when done
112
109
  ludeo auth logout
113
110
  ```
114
111
 
@@ -135,7 +132,7 @@ npm update -g @ludeo/cli
135
132
 
136
133
  - name: Upload Build
137
134
  run: |
138
- ludeo auth login --access-token ${{ secrets.LUDEO_ACCESS_TOKEN }}
135
+ ludeo auth set-token --access-token ${{ secrets.LUDEO_ACCESS_TOKEN }}
139
136
  ludeo builds upload \
140
137
  --game-id ${{ env.GAME_ID }} \
141
138
  --exec-path game.exe \
@@ -168,8 +165,8 @@ sudo npm install -g @ludeo/cli
168
165
 
169
166
  **Authentication errors:**
170
167
  - Verify your access token is valid
171
- - Check token permissions with `ludeo auth status`
172
- - Validate your token with `ludeo auth validate`
168
+ - Check if token is saved with `ludeo auth status`
169
+ - Make sure you've saved your token with `ludeo auth set-token`
173
170
 
174
171
  **Upload failures:**
175
172
  - 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.2",
3
+ "version": "1.2.3",
4
4
  "description": "Ludeo CLI - Upload game builds and manage content on the Ludeo platform",
5
5
  "main": "index.js",
6
6
  "bin": {