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 CHANGED
@@ -382,7 +382,9 @@ type TConversationEntity = {
382
382
  type: CONVERSATION_TYPE;
383
383
  participants: TConversationParticipantsEntity[];
384
384
  } & BaseEntity;
385
- type TConversationParticipantsEntity = {} & BaseEntity;
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 = {} & BaseEntity;
385
+ type TConversationParticipantsEntity = {
386
+ account: TAccountEntity;
387
+ } & BaseEntity;
386
388
  type TConversationMessageEntity = {
387
389
  content: string;
388
390
  type: MESSAGE_TYPE;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.7.19",
3
+ "version": "1.7.20",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",