Feat/messaging ui foundation #8

Merged
maaz519 merged 2 commits from feat/messaging-ui-foundation into dev 2026-07-22 21:42:57 +00:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit 973b6a77eb - Show all commits
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@insignia/iios-messaging-ui",
"version": "0.1.3",
"version": "0.1.4",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
+4
View File
@@ -48,9 +48,13 @@ export interface Reaction {
}
export interface Attachment {
/** A resolved URL for display/download. May be empty until resolved by the host. */
url: string;
mime: string;
name: string;
/** Storage reference — carried so send() can persist the message part (upload returns it). */
contentRef?: string;
sizeBytes?: number;
}
export interface Message {