@uniformdev/cli 18.1.2-alpha.7 → 18.2.1

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.
@@ -90,7 +90,6 @@ declare function createSyncEngineConsoleLogger(options?: {
90
90
  type ApiArgs = {
91
91
  apiKey: string;
92
92
  apiHost: string;
93
- edgeApiHost: string;
94
93
  proxy?: string;
95
94
  };
96
95
  declare function withApiOptions<T>(yargs: Argv<T>): Argv<T>;
@@ -1653,15 +1653,10 @@ function withApiOptions(yargs) {
1653
1653
  demandOption: true,
1654
1654
  type: "string"
1655
1655
  }).option("apiHost", {
1656
- describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env var or https://uniform.app. Supports dotenv.",
1656
+ describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env or https://uniform.app. Supports dotenv.",
1657
1657
  default: process.env.UNIFORM_CLI_BASE_URL || "https://uniform.app",
1658
1658
  demandOption: true,
1659
1659
  type: "string"
1660
- }).option("edgeApiHost", {
1661
- describe: "Uniform edge host. Defaults to UNIFORM_CLI_BASE_EDGE_URL env var or https://uniform.global. Supports dotenv.",
1662
- default: process.env.UNIFORM_CLI_BASE_EDGE_URL || "https://uniform.global",
1663
- demandOption: true,
1664
- type: "string"
1665
1660
  }).option("proxy", {
1666
1661
  describe: "HTTPS proxy to use for Uniform API calls. Defaults to HTTPS_PROXY, https_proxy, ALL_PROXY, or all_proxy env vars (in that order). Supports dotenv.",
1667
1662
  default: process.env.HTTPS_PROXY || process.env.https_proxy || process.env.ALL_PROXY || process.env.all_proxy,
@@ -66,15 +66,10 @@ function withApiOptions(yargs) {
66
66
  demandOption: true,
67
67
  type: "string"
68
68
  }).option("apiHost", {
69
- describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env var or https://uniform.app. Supports dotenv.",
69
+ describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env or https://uniform.app. Supports dotenv.",
70
70
  default: process.env.UNIFORM_CLI_BASE_URL || "https://uniform.app",
71
71
  demandOption: true,
72
72
  type: "string"
73
- }).option("edgeApiHost", {
74
- describe: "Uniform edge host. Defaults to UNIFORM_CLI_BASE_EDGE_URL env var or https://uniform.global. Supports dotenv.",
75
- default: process.env.UNIFORM_CLI_BASE_EDGE_URL || "https://uniform.global",
76
- demandOption: true,
77
- type: "string"
78
73
  }).option("proxy", {
79
74
  describe: "HTTPS proxy to use for Uniform API calls. Defaults to HTTPS_PROXY, https_proxy, ALL_PROXY, or all_proxy env vars (in that order). Supports dotenv.",
80
75
  default: process.env.HTTPS_PROXY || process.env.https_proxy || process.env.ALL_PROXY || process.env.all_proxy,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/cli",
3
- "version": "18.1.2-alpha.7+682b9aac6",
3
+ "version": "18.2.1",
4
4
  "description": "Uniform command line interface tool",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./cli.js",
@@ -34,7 +34,7 @@
34
34
  "format": "prettier --write \"src/**/*.{js,ts,tsx}\""
35
35
  },
36
36
  "dependencies": {
37
- "@uniformdev/uniform-new": "18.1.2-alpha.7+682b9aac6",
37
+ "@uniformdev/uniform-new": "18.2.1",
38
38
  "diff": "^5.0.0",
39
39
  "dotenv": "^16.0.3",
40
40
  "https-proxy-agent": "^5.0.1",
@@ -58,5 +58,5 @@
58
58
  "publishConfig": {
59
59
  "access": "public"
60
60
  },
61
- "gitHead": "682b9aac6143d5f462a7126f4ceab55a7c7d0c09"
61
+ "gitHead": "c519c1d6b73c928ba0b795702d56fbb63fdd3c90"
62
62
  }