@carsayo/types 1.1.892065 → 1.1.892067

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.
@@ -98,10 +98,14 @@ export type TargetApp = keyof typeof TargetApp;
98
98
  export interface SendChatPushDTO {
99
99
  /** 푸시 수신 대상 멤버 id */
100
100
  memberId: string;
101
- /** 푸시 수신 대상 앱 */
102
- targetApp: TargetApp;
103
- /** 푸시 제목 */
104
- title: string;
101
+ /** 푸시 수신 대상 앱
102
+ * @deprecated
103
+ */
104
+ targetApp?: TargetApp;
105
+ /** 푸시 제목
106
+ * @deprecated
107
+ */
108
+ title?: string;
105
109
  /** 푸시 내용 */
106
110
  content: string;
107
111
  /** 푸시 클릭 시 이동할 페이지 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892065",
3
+ "version": "1.1.892067",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",