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 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
@@ -5894,5 +5894,5 @@
5894
5894
  ]
5895
5895
  }
5896
5896
  },
5897
- "version": "1.6.13"
5897
+ "version": "1.6.14"
5898
5898
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "faces-cli",
3
- "version": "1.6.13",
3
+ "version": "1.6.14",
4
4
  "description": "CLI for the Faces AI platform",
5
5
  "type": "module",
6
6
  "author": "sybileak <sybileak@proton.me>",