@carsayo/types 1.1.892044 → 1.1.892046

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.
@@ -57,6 +57,15 @@ export interface ReqSellMyCarSetOrderTag {
57
57
  /** 등록 / 제거 선택 (true: 등록, false: 제거) */
58
58
  is_add: boolean;
59
59
  }
60
+ /** 관리자 > 주문 태그 여러건 설정 */
61
+ export interface ReqSellMyCarUpdateOrderTags {
62
+ /** 주문 ID (sell_car_order.id) */
63
+ sell_car_order_id: string;
64
+ tags: {
65
+ tagId: SellCarTagId;
66
+ additionalText?: string;
67
+ }[];
68
+ }
60
69
  /** 관리자 > 카사요 코멘트 업데이트 */
61
70
  export interface ReqSellMyCarSetCarsayoComment {
62
71
  /** 주문 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.892044",
3
+ "version": "1.1.892046",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",