gst-common 1.7.19 → 1.7.20
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.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -382,7 +382,9 @@ type TConversationEntity = {
|
|
|
382
382
|
type: CONVERSATION_TYPE;
|
|
383
383
|
participants: TConversationParticipantsEntity[];
|
|
384
384
|
} & BaseEntity;
|
|
385
|
-
type TConversationParticipantsEntity = {
|
|
385
|
+
type TConversationParticipantsEntity = {
|
|
386
|
+
account: TAccountEntity;
|
|
387
|
+
} & BaseEntity;
|
|
386
388
|
type TConversationMessageEntity = {
|
|
387
389
|
content: string;
|
|
388
390
|
type: MESSAGE_TYPE;
|
package/dist/index.d.ts
CHANGED
|
@@ -382,7 +382,9 @@ type TConversationEntity = {
|
|
|
382
382
|
type: CONVERSATION_TYPE;
|
|
383
383
|
participants: TConversationParticipantsEntity[];
|
|
384
384
|
} & BaseEntity;
|
|
385
|
-
type TConversationParticipantsEntity = {
|
|
385
|
+
type TConversationParticipantsEntity = {
|
|
386
|
+
account: TAccountEntity;
|
|
387
|
+
} & BaseEntity;
|
|
386
388
|
type TConversationMessageEntity = {
|
|
387
389
|
content: string;
|
|
388
390
|
type: MESSAGE_TYPE;
|