@jealous-robot-dev/shared-types-responses 1.56.0 → 1.56.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,9 +14,11 @@ export interface LiveStudioMessage {
14
14
  text?: string;
15
15
  author: string;
16
16
  receiver: string;
17
+ isUnread?: boolean;
17
18
  file?: MessengerMedia;
18
19
  }
19
20
  export interface LiveStudioConversation {
21
+ unreads: number;
20
22
  receiver: string;
21
23
  index: number;
22
24
  messages: LiveStudioMessage[];
@@ -58,6 +60,7 @@ export interface LiveStudioClientData {
58
60
  role: LiveStudioParticipRole;
59
61
  };
60
62
  messenger: {
63
+ unreads: number;
61
64
  conversations: LiveStudioConversation[];
62
65
  };
63
66
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.56.0",
3
+ "version": "1.56.2",
4
4
  "description": "Meetle common types of API responses",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -27,4 +27,4 @@
27
27
  "@jealous-robot-dev/drophr-common": "^1.16.1",
28
28
  "@jealous-robot-dev/shared-phrases": "^1.15.4"
29
29
  }
30
- }
30
+ }