faces-cli 1.6.13 → 1.6.14
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 +1 -1
- package/dist/config.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,7 +70,7 @@ Login stores a JWT at `~/.faces/config.json`. You can also authenticate via envi
|
|
|
70
70
|
```bash
|
|
71
71
|
export FACES_API_KEY=sk-faces-...
|
|
72
72
|
export FACES_TOKEN=your_jwt
|
|
73
|
-
export FACES_BASE_URL=https://api.faces.sh # optional override
|
|
73
|
+
export FACES_BASE_URL=https://api-alpha.faces.sh # optional override
|
|
74
74
|
```
|
|
75
75
|
|
|
76
76
|
## Plans
|
package/dist/config.js
CHANGED
|
@@ -47,7 +47,7 @@ export function resolveBaseUrl(override) {
|
|
|
47
47
|
const cfg = loadConfig();
|
|
48
48
|
if (cfg.base_url)
|
|
49
49
|
return cfg.base_url;
|
|
50
|
-
return 'https://api.faces.sh';
|
|
50
|
+
return 'https://api-alpha.faces.sh';
|
|
51
51
|
}
|
|
52
52
|
export function resolveToken(override) {
|
|
53
53
|
// Empty string override means "no token" — don't fall back to config/env
|
package/oclif.manifest.json
CHANGED