@carsayo/types 1.1.891940 → 1.1.891942

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.
@@ -30,10 +30,8 @@ export interface ReqSellMyCarId {
30
30
  }
31
31
  export interface ReqSellMyCarUpdateRegistry extends ReqSellMyCarId {
32
32
  /** 원부조회 정보 */
33
- data: Exclude<SellMyCarRegistry, "created_at" | "sell_car_order_id" | "liens"> & {
34
- liens?: (Omit<SellMyCarRegistryLien, "id"> & {
35
- id: number | null;
36
- })[];
33
+ data: Omit<SellMyCarRegistry, "created_at" | "sell_car_order_id" | "liens"> & {
34
+ liens: Omit<SellMyCarRegistryLien, "id">[] | null;
37
35
  };
38
36
  }
39
37
  /** 딜러용 주문 검색 요청 DTO */
@@ -117,3 +115,27 @@ export interface ReqSellMyCarUpsertCustomerReview extends ReqSellMyCarId {
117
115
  /** 블랙리스트 등록 요청 여부 */
118
116
  is_blacklist_requested: boolean;
119
117
  }
118
+ /** 관리자 > 진단사 배정 요청 DTO */
119
+ export interface ReqSetMyCarInspector extends ReqSellMyCarId {
120
+ /** 진단사 이름 */
121
+ inspectorName: string;
122
+ /** 진단사 전화번호 */
123
+ inspectorPhone: string;
124
+ /** 관리자가 입력한 진단사 방문 일시 - mm월 dd일 금요일
125
+ * @example "7월 1일 금요일"
126
+ */
127
+ inspectVisitedAt: string;
128
+ /** 관리자가 입력한 진단사 방문 일시 (ISO 8601 형식) */
129
+ /** @example "2025-07-01T10:00:00Z" */
130
+ inspectIsoVisitedAt: Date;
131
+ /** 방문 시간
132
+ * @example 15 (15분)
133
+ */
134
+ inspectVisitedTime: number;
135
+ /** 관리자가 입력한 진단사 방문 신주소 */
136
+ inspectVisitedNewAddress: string;
137
+ /** 관리자가 입력한 진단사 방문 구주소 */
138
+ inspectVisitedOldAddress: string;
139
+ /** 관리자가 입력한 진단사 방문 상세 주소 */
140
+ inspectVisitedDetailAddress: string;
141
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891940",
3
+ "version": "1.1.891942",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",