@carsayo/types 1.1.891942 → 1.1.891943

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.
@@ -139,3 +139,11 @@ export interface ReqSetMyCarInspector extends ReqSellMyCarId {
139
139
  /** 관리자가 입력한 진단사 방문 상세 주소 */
140
140
  inspectVisitedDetailAddress: string;
141
141
  }
142
+ /** 딜러 > 좋아요 처리 DTO */
143
+ export declare class ReqSetMyCarToggleLike {
144
+ /** 대상 주문 Id
145
+ * @note string | string[] */
146
+ sell_car_order_id: string | string[];
147
+ /** 좋아요 / 싫어요 처리 */
148
+ isLike: boolean;
149
+ }
@@ -1,2 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ReqSetMyCarToggleLike = void 0;
4
+ /** 딜러 > 좋아요 처리 DTO */
5
+ class ReqSetMyCarToggleLike {
6
+ }
7
+ exports.ReqSetMyCarToggleLike = ReqSetMyCarToggleLike;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891942",
3
+ "version": "1.1.891943",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",