@localizeaso/cli 0.1.0-preview.4 → 0.1.0-preview.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@localizeaso/cli",
3
- "version": "0.1.0-preview.4",
3
+ "version": "0.1.0-preview.5",
4
4
  "description": "LocalizeASO command-line tools for agent-assisted App Store review workflows.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -1104,7 +1104,7 @@ function configuredToken(env = process.env) {
1104
1104
 
1105
1105
  function stagingUrls() {
1106
1106
  return {
1107
- backend: 'https://api.staging.localizeaso.com:8787',
1107
+ backend: 'https://api.staging.localizeaso.com',
1108
1108
  dashboard: 'https://dash.staging.localizeaso.com',
1109
1109
  };
1110
1110
  }
@@ -27,7 +27,7 @@ import {
27
27
 
28
28
  const LOCAL_BACKEND_URL = 'http://localhost:8787';
29
29
  const LOCAL_DASHBOARD_URL = 'http://localhost:5174';
30
- const STAGING_BACKEND_URL = 'https://api.staging.localizeaso.com:8787';
30
+ const STAGING_BACKEND_URL = 'https://api.staging.localizeaso.com';
31
31
  const STAGING_DASHBOARD_URL = 'https://dash.staging.localizeaso.com';
32
32
  const DEFAULT_CLI_CONFIG_PATH = path.join(homedir(), '.localizeaso', 'config.json');
33
33
  const SAFE_SHELL_TOKEN_RE = /^[A-Za-z0-9_./:@%+=,-]+$/;