@carsayo/types 1.1.891768 → 1.1.891770

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.
@@ -38,6 +38,7 @@ export type ChatRoom = {
38
38
  type: ChatRoomType;
39
39
  opponent: ChatOpponent;
40
40
  tag: string[];
41
+ additionalInfo?: ChatRoomAdditionalInfo;
41
42
  lastChat: {
42
43
  content: string;
43
44
  createdAt: Date;
@@ -73,7 +74,7 @@ export type ChatBlockMember = {
73
74
  /** 서버(MainService)에서 조회한 상대방 정보
74
75
  * @note 차단 여부 제외 (차단여부는 채팅서버에 있음)
75
76
  */
76
- export type ChatMemberInfo = Exclude<ChatOpponent, "isBlocked">;
77
+ export type ChatMemberInfo = Omit<ChatOpponent, "isBlocked">;
77
78
  export type ChatFile = {
78
79
  id: string;
79
80
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891768",
3
+ "version": "1.1.891770",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",