@syntrologie/runtime-sdk 2.8.0-canary.86 → 2.8.0-canary.87

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.
@@ -20723,7 +20723,7 @@ Please report this to https://github.com/markedjs/marked.`, e2) {
20723
20723
  }
20724
20724
 
20725
20725
  // src/version.ts
20726
- var SDK_VERSION = "2.8.0-canary.86";
20726
+ var SDK_VERSION = "2.8.0-canary.87";
20727
20727
 
20728
20728
  // src/types.ts
20729
20729
  var SDK_SCHEMA_VERSION = "2.0";
@@ -37089,11 +37089,10 @@ ${cssRules}
37089
37089
  if (!options.apiKey) return;
37090
37090
  const enableFeatureFlags = options.enableFeatureFlags ?? true;
37091
37091
  const instanceName = `syntro_${options.apiKey.slice(-6) || "sdk"}`;
37092
+ const baseHost = options.apiHost ?? "https://telemetry.syntrologie.com";
37093
+ const apiHost = `${baseHost.replace(/\/$/, "")}/t/${options.apiKey}`;
37092
37094
  const initOptions = {
37093
- api_host: options.apiHost ?? "https://telemetry.syntrologie.com",
37094
- // Send API key as custom header so the telemetry proxy can partition
37095
- // S3 recordings by workspace without decompressing the request body.
37096
- request_headers: { "X-Syntro-Token": options.apiKey },
37095
+ api_host: apiHost,
37097
37096
  // Feature flags for segment membership (in_segment_* flags)
37098
37097
  // When enabled, /decide is called to get segment flags
37099
37098
  advanced_disable_feature_flags: !enableFeatureFlags,
@@ -42243,7 +42242,7 @@ ${cssRules}
42243
42242
  }
42244
42243
 
42245
42244
  // src/index.ts
42246
- var RUNTIME_SDK_BUILD = true ? `${"2026-04-17T00:58:39.387Z"} (${"8c68d3d8da1"})` : "dev";
42245
+ var RUNTIME_SDK_BUILD = true ? `${"2026-04-17T03:23:25.680Z"} (${"31eb0fe619d"})` : "dev";
42247
42246
  if (typeof window !== "undefined") {
42248
42247
  console.log(`[Syntro Runtime] Build: ${RUNTIME_SDK_BUILD}`);
42249
42248
  const existing = window.SynOS;