@fork-api/chat-sdk 0.1.161 → 0.1.164

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.d.cts CHANGED
@@ -480,6 +480,15 @@ interface ManifestModuleEntry {
480
480
  cssUrls: string[];
481
481
  integrity?: string;
482
482
  metadata?: Record<string, unknown>;
483
+ /** Server-generated hint for the one-shot post-build highlight. Falsy
484
+ * when Haiku couldn't identify a change; the SDK falls back to the
485
+ * legacy DOM-rect tracer in that case. */
486
+ highlightHint?: {
487
+ label: string;
488
+ selector: string;
489
+ textHint?: string;
490
+ position?: "top" | "bottom" | "left" | "right";
491
+ };
483
492
  buildId: string | null;
484
493
  updatedAt: string;
485
494
  }
package/dist/index.d.ts CHANGED
@@ -480,6 +480,15 @@ interface ManifestModuleEntry {
480
480
  cssUrls: string[];
481
481
  integrity?: string;
482
482
  metadata?: Record<string, unknown>;
483
+ /** Server-generated hint for the one-shot post-build highlight. Falsy
484
+ * when Haiku couldn't identify a change; the SDK falls back to the
485
+ * legacy DOM-rect tracer in that case. */
486
+ highlightHint?: {
487
+ label: string;
488
+ selector: string;
489
+ textHint?: string;
490
+ position?: "top" | "bottom" | "left" | "right";
491
+ };
483
492
  buildId: string | null;
484
493
  updatedAt: string;
485
494
  }