@vini-wine/admin-core-models 1.1.67 → 1.1.69
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 +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -487,6 +487,7 @@ interface ChatMessageModel extends UUID {
|
|
|
487
487
|
chatConversation?: ChatConversationModel;
|
|
488
488
|
content?: string;
|
|
489
489
|
createdByUserOrganisation?: UserOrganisationModel;
|
|
490
|
+
parent?: ChatMessageModel | null;
|
|
490
491
|
}
|
|
491
492
|
|
|
492
493
|
interface ChatConversationModel extends UUID {
|
|
@@ -496,6 +497,7 @@ interface ChatConversationModel extends UUID {
|
|
|
496
497
|
createdByUserOrganisation?: UserOrganisationModel | null;
|
|
497
498
|
organisationParticipants?: OrganisationModel[] | null;
|
|
498
499
|
userOrganisationParticipants?: UserOrganisationModel[];
|
|
500
|
+
contactPointParticipants?: ContactPointModel[];
|
|
499
501
|
lastChatMessage?: ChatMessageModel | null;
|
|
500
502
|
}
|
|
501
503
|
|
package/dist/index.d.ts
CHANGED
|
@@ -487,6 +487,7 @@ interface ChatMessageModel extends UUID {
|
|
|
487
487
|
chatConversation?: ChatConversationModel;
|
|
488
488
|
content?: string;
|
|
489
489
|
createdByUserOrganisation?: UserOrganisationModel;
|
|
490
|
+
parent?: ChatMessageModel | null;
|
|
490
491
|
}
|
|
491
492
|
|
|
492
493
|
interface ChatConversationModel extends UUID {
|
|
@@ -496,6 +497,7 @@ interface ChatConversationModel extends UUID {
|
|
|
496
497
|
createdByUserOrganisation?: UserOrganisationModel | null;
|
|
497
498
|
organisationParticipants?: OrganisationModel[] | null;
|
|
498
499
|
userOrganisationParticipants?: UserOrganisationModel[];
|
|
500
|
+
contactPointParticipants?: ContactPointModel[];
|
|
499
501
|
lastChatMessage?: ChatMessageModel | null;
|
|
500
502
|
}
|
|
501
503
|
|