@carsayo/types 1.1.892064 → 1.1.892066

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,8 +98,10 @@ export type TargetApp = keyof typeof TargetApp;
98
98
  export interface SendChatPushDTO {
99
99
  /** 푸시 수신 대상 멤버 id */
100
100
  memberId: string;
101
- /** 푸시 수신 대상 앱 */
102
- targetApp: TargetApp;
101
+ /** 푸시 수신 대상 앱
102
+ * @deprecated
103
+ */
104
+ targetApp?: TargetApp;
103
105
  /** 푸시 제목 */
104
106
  title: string;
105
107
  /** 푸시 내용 */
@@ -1,10 +1,6 @@
1
1
  import { RepairEstimate } from "../repair";
2
2
  import { SellMyCarOrderMethod } from "../sellMyCar";
3
- export type ChatRoomAdditionalInfo = ({
4
- type: "repair";
5
- } & ChatRoomAdditionalInfo_Repair) | ({
6
- type: "sellcar_inquiry";
7
- } & ChatRoomAdditionalInfo_SellcarInquiry);
3
+ export type ChatRoomAdditionalInfo = ChatRoomAdditionalInfo_Repair | ChatRoomAdditionalInfo_SellcarInquiry;
8
4
  export type ChatRoomAdditionalInfo_Repair = {
9
5
  /** 견적 요청 ID */
10
6
  repairId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892064",
3
+ "version": "1.1.892066",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",