@linktr.ee/messaging-react 1.12.7 → 1.12.8-rc-1765974383

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
@@ -311,6 +311,26 @@ declare module 'stream-chat' {
311
311
  * Used by CustomSystemMessage component.
312
312
  */
313
313
  hide_date?: boolean;
314
+ /**
315
+ * Type of system message for special styling.
316
+ * Used by CustomSystemMessage component.
317
+ */
318
+ system_type?: 'priority';
319
+ /**
320
+ * Type of tag to display on the message.
321
+ * Used by MessageTag component.
322
+ */
323
+ tag_type?: 'paid-priority' | 'tip';
324
+ /**
325
+ * Monetary amount for tip messages.
326
+ * Used by MessageTag component.
327
+ */
328
+ amount?: number;
329
+ /**
330
+ * Currency code (e.g. 'USD', 'EUR') for tip messages.
331
+ * Used by MessageTag component.
332
+ */
333
+ currency?: string;
314
334
  }
315
335
  }
316
336