@carsayo/types 1.1.892043 → 1.1.892045

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) */
@@ -961,12 +961,12 @@ export interface SellMyCarOrder_Inspect_Transport_ChangeRequest {
961
961
  }
962
962
  /** 진단사 변경 로그 */
963
963
  export interface SellMyCarOrder_Inspect_Change_History {
964
- inspector_name: String;
965
- inspector_phone: String;
966
- inspector_profile_url: String;
964
+ inspector_name: string;
965
+ inspector_phone: string;
966
+ inspector_profile_url: string;
967
967
  expected_visited_at: Date;
968
- expected_visited_address: String;
969
- expected_visited_detail_address: String;
968
+ expected_visited_address: string;
969
+ expected_visited_detail_address: string;
970
970
  created_at: Date;
971
971
  }
972
972
  export interface SellMyCarOrderDealerSearchCount {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892043",
3
+ "version": "1.1.892045",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",