@carsayo/types 1.1.892045 → 1.1.892047

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.
@@ -73,6 +73,13 @@ export interface ReqSellMyCarSetCarsayoComment {
73
73
  /** 카사요 코멘트 */
74
74
  content: string;
75
75
  }
76
+ /** 관리자 > 카사요 차량 이미지 리스트 업데이트 */
77
+ export interface ReqSellMyCarSetCarsayoCarImage {
78
+ /** 주문 ID (sell_car_order.id) */
79
+ sell_car_order_id: string;
80
+ /** 카사요 차량 이미지 리스트 */
81
+ image_url: string[];
82
+ }
76
83
  /** 관리자 > 카사요 코멘트 업데이트 */
77
84
  export interface ReqSellMyCarSetThumbnail {
78
85
  /** 주문 ID (sell_car_order.id) */
@@ -73,6 +73,10 @@ export interface SellMyCarOrderTag {
73
73
  sell_car_tag_item_id: SellCarTagId;
74
74
  /** 태그 이름 */
75
75
  content: string;
76
+ /** 태그 원래 이름 */
77
+ original_content: string;
78
+ /** 태그 추가 텍스트 존재 시 입력 */
79
+ additional_text?: string;
76
80
  /** 태그 색상 */
77
81
  color: {
78
82
  text: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892045",
3
+ "version": "1.1.892047",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",