@kopynator/cli 1.0.13 → 1.0.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/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/commands/sync.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -333,7 +333,7 @@ async function syncCommand() {
|
|
|
333
333
|
return;
|
|
334
334
|
}
|
|
335
335
|
const syncConfig = await getSyncConfig();
|
|
336
|
-
const baseUrl = config.baseUrl || "
|
|
336
|
+
const baseUrl = config.baseUrl || "https://api.kopynator.com/api/tokens";
|
|
337
337
|
const token = config.apiKey;
|
|
338
338
|
const spinner = (0, import_ora.default)("\u{1F4E1} Connecting to Kopynator Cloud...").start();
|
|
339
339
|
try {
|
package/package.json
CHANGED
package/src/commands/sync.ts
CHANGED
|
@@ -193,7 +193,7 @@ export async function syncCommand() {
|
|
|
193
193
|
// Get sync configuration
|
|
194
194
|
const syncConfig = await getSyncConfig();
|
|
195
195
|
|
|
196
|
-
const baseUrl = config.baseUrl || '
|
|
196
|
+
const baseUrl = config.baseUrl || 'https://api.kopynator.com/api/tokens';
|
|
197
197
|
const token = config.apiKey;
|
|
198
198
|
|
|
199
199
|
const spinner = ora('📡 Connecting to Kopynator Cloud...').start();
|