loopshouse 0.2.1 → 0.2.2
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/loops.js +3 -3
- package/package.json +1 -1
package/dist/loops.js
CHANGED
|
@@ -50976,10 +50976,10 @@ if (shouldShowDeprecationWarning())
|
|
|
50976
50976
|
import os4 from "node:os";
|
|
50977
50977
|
import path4 from "node:path";
|
|
50978
50978
|
import fs4 from "node:fs";
|
|
50979
|
-
var SUPABASE_URL = process.env.LOOPS_SUPABASE_URL ?? "https://
|
|
50979
|
+
var SUPABASE_URL = process.env.LOOPS_SUPABASE_URL ?? "https://api.loops.house";
|
|
50980
50980
|
var SUPABASE_ANON_KEY = process.env.LOOPS_SUPABASE_ANON_KEY ?? "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImVubmx2cmp4cHFleHZnZmhmaWF3Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NzgwOTY3NTEsImV4cCI6MjA5MzY3Mjc1MX0.chKog_0lD39fqQi7R8pwhvTLWxEdwNidS-_BFtlknXE";
|
|
50981
|
-
var VERSION = "0.2.
|
|
50982
|
-
var PLATFORM_URL = (process.env.LOOPS_PLATFORM_URL ?? "https://
|
|
50981
|
+
var VERSION = "0.2.2";
|
|
50982
|
+
var PLATFORM_URL = (process.env.LOOPS_PLATFORM_URL ?? "https://loops.house").replace(/\/+$/, "");
|
|
50983
50983
|
var CONFIG_DIR = path4.join(os4.homedir(), ".loops");
|
|
50984
50984
|
var CREDENTIALS_PATH = path4.join(CONFIG_DIR, "credentials.json");
|
|
50985
50985
|
function loadCredentials() {
|
package/package.json
CHANGED