@burdenoff/website-sdk 2026.829.2 → 2026.829.4

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.
@@ -246,6 +246,11 @@ interface UseExploreChatResult {
246
246
  * awaited, never throws, and must never delay the navigation it is reporting on.
247
247
  */
248
248
  recordClick: (messageId: string, kind: "CTA" | "REFERENCE", url: string) => void;
249
+ /**
250
+ * Mint a read-only link to this conversation, or null when there is nothing to share yet.
251
+ * The secret returned is not the conversation token and cannot continue the thread.
252
+ */
253
+ createShareLink: () => Promise<string | null>;
249
254
  canSend: boolean;
250
255
  }
251
256
  /** Fallback limits, mirroring the server defaults in CONTRACT.md §3. */
@@ -246,6 +246,11 @@ interface UseExploreChatResult {
246
246
  * awaited, never throws, and must never delay the navigation it is reporting on.
247
247
  */
248
248
  recordClick: (messageId: string, kind: "CTA" | "REFERENCE", url: string) => void;
249
+ /**
250
+ * Mint a read-only link to this conversation, or null when there is nothing to share yet.
251
+ * The secret returned is not the conversation token and cannot continue the thread.
252
+ */
253
+ createShareLink: () => Promise<string | null>;
249
254
  canSend: boolean;
250
255
  }
251
256
  /** Fallback limits, mirroring the server defaults in CONTRACT.md §3. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burdenoff/website-sdk",
3
- "version": "2026.829.2",
3
+ "version": "2026.829.4",
4
4
  "description": "Shared SDK for Burdenoff product websites - reusable React components, utilities, and configurations",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",