infernoflow 0.35.6 → 0.35.7
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/lib/telemetry.mjs +2 -4
- package/package.json +1 -1
package/dist/lib/telemetry.mjs
CHANGED
|
@@ -30,10 +30,8 @@ const CONFIG_DIR = path.join(os.homedir(), ".infernoflow");
|
|
|
30
30
|
const TELEMETRY_FILE = path.join(CONFIG_DIR, "telemetry.json");
|
|
31
31
|
const EVENTS_FILE = path.join(CONFIG_DIR, "events.jsonl");
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
const POSTHOG_HOST = "https://app.posthog.com";
|
|
36
|
-
const POSTHOG_KEY = "phc_infernoflow_placeholder"; // replace with real key from PostHog dashboard
|
|
33
|
+
const POSTHOG_HOST = "https://eu.i.posthog.com";
|
|
34
|
+
const POSTHOG_KEY = "phc_z6YX7x4zjkuFZigdXTBoFcPTWeGLFAN9NNKVZ5WHQrqk";
|
|
37
35
|
|
|
38
36
|
// ── Config helpers ────────────────────────────────────────────────────────────
|
|
39
37
|
|
package/package.json
CHANGED