@jealous-robot-dev/shared-types-responses 1.44.4 → 1.44.6

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.
@@ -1,4 +1,5 @@
1
1
  import { LiveRoomClientCloseReason, LiveRoomSessionTypes, LiveRoomServerMessages, LiveRoomMediaType } from "@jealous-robot-dev/drophr-common";
2
+ import { MessengerMedia } from "../messenger";
2
3
  export interface LiveRoomStandartParticipant {
3
4
  UID: string;
4
5
  ppu: string;
@@ -31,11 +32,7 @@ export interface LiveRoomChatMessage {
31
32
  text?: string;
32
33
  author: string;
33
34
  unseen?: boolean;
34
- attahment?: {
35
- id: string;
36
- extension: string;
37
- displayName: string;
38
- };
35
+ attachment?: MessengerMedia;
39
36
  }
40
37
  export interface LiveRoomConversationThread {
41
38
  id: string;
@@ -120,11 +117,7 @@ export interface LiveRoomServerChatMessageNew extends LiveRoomServerMinimumPaylo
120
117
  thread_id: string;
121
118
  msg_id: number;
122
119
  text?: string;
123
- attacment?: {
124
- id: string;
125
- extension: string;
126
- displayName: string;
127
- };
120
+ attachment?: MessengerMedia;
128
121
  }
129
122
  export interface LiveRoomServerChatMessageEdited extends LiveRoomServerMinimumPayload {
130
123
  audience: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.44.4",
3
+ "version": "1.44.6",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",