@jealous-robot-dev/shared-types-responses 1.55.17 → 1.56.1

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