@syntrologie/runtime-sdk 2.8.0-canary.205 → 2.8.0-canary.207

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.
@@ -16728,7 +16728,7 @@ Please report this to https://github.com/markedjs/marked.`, e10) {
16728
16728
  }
16729
16729
 
16730
16730
  // src/version.ts
16731
- var SDK_VERSION = "2.8.0-canary.205";
16731
+ var SDK_VERSION = "2.8.0-canary.207";
16732
16732
 
16733
16733
  // src/types.ts
16734
16734
  var SDK_SCHEMA_VERSION = "2.0";
@@ -18154,7 +18154,8 @@ ${cssRules}
18154
18154
  `;
18155
18155
  }
18156
18156
  const configHasTiles = (__privateGet(this, _rawConfig)?.tiles?.length ?? 0) > 0;
18157
- if (!showSurface && !configHasTiles) return A;
18157
+ const launcherEnabled = this._launcher?.enabled === true;
18158
+ if (!showSurface && !configHasTiles && !launcherEnabled) return A;
18158
18159
  return b2`
18159
18160
  <syntro-canvas-overlay
18160
18161
  .isOpen=${this._isOpen}
@@ -20894,7 +20895,9 @@ ${cssRules}
20894
20895
  fetchedAt: external_exports.string().datetime(),
20895
20896
  configVersion: external_exports.string().optional(),
20896
20897
  canvasTitle: external_exports.string().optional(),
20897
- displayMode: external_exports.enum(["standard", "focused", "inline"]).optional(),
20898
+ displayMode: external_exports.enum(["standard", "focused", "inline"]).describe(
20899
+ "DO NOT SET \u2014 determined automatically by the runtime based on the surface type (web \u2192 standard, agent/MCP \u2192 inline). Setting this field will be stripped by the config fixer."
20900
+ ).optional(),
20898
20901
  tiles: external_exports.array(TileZ),
20899
20902
  actions: external_exports.array(external_exports.any()),
20900
20903
  theme: CanvasThemeConfigZ.optional(),
@@ -34800,7 +34803,7 @@ ${cssRules}
34800
34803
  }
34801
34804
 
34802
34805
  // src/index.ts
34803
- var RUNTIME_SDK_BUILD = true ? `${"2026-05-06T22:47:34.325Z"} (${"db7d24b72d8"})` : "dev";
34806
+ var RUNTIME_SDK_BUILD = true ? `${"2026-05-07T22:01:24.367Z"} (${"38910bd5fad"})` : "dev";
34804
34807
  if (typeof window !== "undefined") {
34805
34808
  console.log(`[Syntro Runtime] Build: ${RUNTIME_SDK_BUILD} (Lit)`);
34806
34809
  const existing = window.SynOS;