@carsayo/types 1.1.892066 → 1.1.892068

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,8 +1,10 @@
1
+ import { MemberType } from "../member";
1
2
  import { ChatOpponentAdditionalInfo } from "./type.opponent.additionalInfo";
2
3
  import { ChatRoomAdditionalInfo } from "./type.room.additionalInfo";
3
4
  export type ChatOpponent = {
4
5
  id: string;
5
6
  name: string;
7
+ type: MemberType;
6
8
  profileImage: string | null;
7
9
  /** 입맛대로 저장하는 추가 정보 */
8
10
  additionalInfo?: ChatOpponentAdditionalInfo;
@@ -102,8 +104,10 @@ export interface SendChatPushDTO {
102
104
  * @deprecated
103
105
  */
104
106
  targetApp?: TargetApp;
105
- /** 푸시 제목 */
106
- title: string;
107
+ /** 푸시 제목
108
+ * @deprecated
109
+ */
110
+ title?: string;
107
111
  /** 푸시 내용 */
108
112
  content: string;
109
113
  /** 푸시 클릭 시 이동할 페이지 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892066",
3
+ "version": "1.1.892068",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",