@vini-wine/admin-core-models 1.1.63 → 1.1.65
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.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -482,8 +482,12 @@ interface ChatMessageModel extends UUID {
|
|
|
482
482
|
};
|
|
483
483
|
messagePreview: string;
|
|
484
484
|
sendAt: Date;
|
|
485
|
+
totalOfSubChatMessages: number;
|
|
486
|
+
mimeType?: {
|
|
487
|
+
id: MimeTypeEnum;
|
|
488
|
+
};
|
|
485
489
|
chatConversation?: ChatConversationModel;
|
|
486
|
-
|
|
490
|
+
content?: string;
|
|
487
491
|
createdByUserOrganisation?: UserOrganisationModel;
|
|
488
492
|
}
|
|
489
493
|
|
package/dist/index.d.ts
CHANGED
|
@@ -482,8 +482,12 @@ interface ChatMessageModel extends UUID {
|
|
|
482
482
|
};
|
|
483
483
|
messagePreview: string;
|
|
484
484
|
sendAt: Date;
|
|
485
|
+
totalOfSubChatMessages: number;
|
|
486
|
+
mimeType?: {
|
|
487
|
+
id: MimeTypeEnum;
|
|
488
|
+
};
|
|
485
489
|
chatConversation?: ChatConversationModel;
|
|
486
|
-
|
|
490
|
+
content?: string;
|
|
487
491
|
createdByUserOrganisation?: UserOrganisationModel;
|
|
488
492
|
}
|
|
489
493
|
|