fizko-cli 0.2.0 → 0.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.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -173,7 +173,7 @@ function output(data) {
|
|
|
173
173
|
|
|
174
174
|
// src/commands/auth.ts
|
|
175
175
|
var DEFAULT_BASE_URL2 = "https://api.fizko.ai";
|
|
176
|
-
var DEFAULT_WEB_URL = "https://
|
|
176
|
+
var DEFAULT_WEB_URL = "https://app.fizko.ai";
|
|
177
177
|
function registerAuth(program2) {
|
|
178
178
|
program2.command("login").description("Iniciar sesi\xF3n con tu cuenta Fizko.").option("--api-url <url>", "URL de la API", process.env.FIZKO_API_URL ?? DEFAULT_BASE_URL2).option("--web-url <url>", "URL del dashboard", process.env.FIZKO_WEB_URL ?? DEFAULT_WEB_URL).option("--no-browser", "No abrir el navegador autom\xE1ticamente").action(async (opts) => {
|
|
179
179
|
const baseUrl = opts.apiUrl.replace(/\/$/, "");
|