@linktr.ee/messaging-react 3.13.4 → 3.14.0

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.ts CHANGED
@@ -1312,6 +1312,15 @@ export declare interface MessageMetadata {
1312
1312
  attachment_mime_type?: string;
1313
1313
  attachment_thumbnail?: string;
1314
1314
  attachment_detail?: string;
1315
+ /**
1316
+ * The client surface a linker send was composed from, when it needs to be
1317
+ * distinguished server-side. A plain reply carries no `sent_from`; a single
1318
+ * reply composed inside stack-detail channel mode sets `'stack_detail'` so the
1319
+ * backend can leave stack removal confirm-gated (client-owned) instead of
1320
+ * silently removing the conversation from its stack. Composes with
1321
+ * `custom_type` — it identifies the send context, not the message kind. (MES-1266)
1322
+ */
1323
+ sent_from?: 'stack_detail';
1315
1324
  }
1316
1325
 
1317
1326
  export declare const MessageVoteButtons: default_2.FC<MessageVoteButtonsProps>;
package/dist/testing.d.ts CHANGED
@@ -53,6 +53,15 @@ export declare interface MessageMetadata {
53
53
  attachment_mime_type?: string;
54
54
  attachment_thumbnail?: string;
55
55
  attachment_detail?: string;
56
+ /**
57
+ * The client surface a linker send was composed from, when it needs to be
58
+ * distinguished server-side. A plain reply carries no `sent_from`; a single
59
+ * reply composed inside stack-detail channel mode sets `'stack_detail'` so the
60
+ * backend can leave stack removal confirm-gated (client-owned) instead of
61
+ * silently removing the conversation from its stack. Composes with
62
+ * `custom_type` — it identifies the send context, not the message kind. (MES-1266)
63
+ */
64
+ sent_from?: 'stack_detail';
56
65
  }
57
66
 
58
67
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linktr.ee/messaging-react",
3
- "version": "3.13.4",
3
+ "version": "3.14.0",
4
4
  "description": "React messaging components built on messaging-core for web applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -48,6 +48,15 @@ export interface MessageMetadata {
48
48
  attachment_mime_type?: string
49
49
  attachment_thumbnail?: string
50
50
  attachment_detail?: string
51
+ /**
52
+ * The client surface a linker send was composed from, when it needs to be
53
+ * distinguished server-side. A plain reply carries no `sent_from`; a single
54
+ * reply composed inside stack-detail channel mode sets `'stack_detail'` so the
55
+ * backend can leave stack removal confirm-gated (client-owned) instead of
56
+ * silently removing the conversation from its stack. Composes with
57
+ * `custom_type` — it identifies the send context, not the message kind. (MES-1266)
58
+ */
59
+ sent_from?: 'stack_detail'
51
60
  }
52
61
 
53
62
  /**