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