@trii/types 2.10.426 → 2.10.428

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.
@@ -140,9 +140,21 @@ export interface MessageDocument {
140
140
  mediaid?: string;
141
141
  }
142
142
  export interface MessageReference {
143
- messageId: string;
144
143
  channelId: string;
145
144
  externalId?: string;
145
+ messageId?: string;
146
+ messageData?: MessageReferenceData;
147
+ }
148
+ export interface MessageReferenceData {
149
+ messageType: MessageType2;
150
+ isStatus: boolean;
151
+ isReel: boolean;
152
+ isStory: boolean;
153
+ body?: string;
154
+ mimeType?: string;
155
+ url?: string;
156
+ filename?: string;
157
+ caption?: string;
146
158
  }
147
159
  export interface MessageReaction {
148
160
  emoji: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.426",
3
+ "version": "2.10.428",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",