@carsayo/types 1.1.892039 → 1.1.892040

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.
@@ -1,4 +1,5 @@
1
1
  import { ReqSellMyCarId } from "./dto";
2
+ import { SellMyCarOrderInspection } from "./interface";
2
3
  import { DealerGrade } from "./interface-member";
3
4
  import { SellMyCarCommissionExpenseProofStatus, SellMyCarOrderAgencyCashflowStatus } from "./type";
4
5
  /** 관리자 > 진단사 배정 요청 DTO */
@@ -189,3 +190,22 @@ export interface ReqSellMyCarToggleAdminChecked {
189
190
  /** 주문 ID (sell_car_order.id) */
190
191
  sell_car_order_id: string;
191
192
  }
193
+ export interface ReqAdminSumbitInspection {
194
+ /** 관리자 API에서 진단 완료 시 사용하는 주문 ID */
195
+ order_id: string;
196
+ /** 진단 완료 시 첨부 url 정보 */
197
+ urls: Exclude<SellMyCarOrderInspection["urls"], null>;
198
+ /** 진단 완료 시 작성 의견 */
199
+ inspectorComment: string;
200
+ }
201
+ /** 취소 관련 내용
202
+ * @note 입력한 내용은 SellMyCarOrder.inspection.cancelInfo에서 확인 가능
203
+ */
204
+ export interface ReqAdminCancelInspection {
205
+ /** 관리자 API에서 진단 완료 시 사용하는 주문 ID */
206
+ order_id: string;
207
+ /** 취소 사유 제목 */
208
+ title: string;
209
+ /** 취소 사유 내용 */
210
+ content: string;
211
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892039",
3
+ "version": "1.1.892040",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",