@carsayo/types 1.1.891928 → 1.1.891929

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,6 +1,6 @@
1
1
  import { CarMakerId, SidoId, SellCarTagId } from "../../../data";
2
2
  import { SellMyCarOrderInspection, SellMyCarRegistry } from "./interface";
3
- import { SellMyCarOrderStatus, SellMyCarOrderBidStatus, SellMyCarOrderMethod, SellMyCarFilterCategory, SellMyCarOrderKey, SellMyCarOrderPurchaseMethod } from "./type";
3
+ import { SellMyCarOrderStatus, SellMyCarOrderBidStatus, SellMyCarOrderMethod, SellMyCarFilterCategory, SellMyCarOrderKey, SellMyCarOrderPurchaseMethod, SellMyCarOrderRegistrationType } from "./type";
4
4
  export interface ReqSellMyCarInspectorAuth {
5
5
  /** 인증 토큰
6
6
  * @note 쿼리스트링으로 전달받은 바로 그 값
@@ -87,3 +87,20 @@ export interface SellMyCarAuctionSearchFilter {
87
87
  /** 태그 검색 */
88
88
  tags?: SellCarTagId[];
89
89
  }
90
+ /** 등록증, 계약서, 성능점검지 파일 업로드 요청 DTO */
91
+ export interface ReqSellMyCarUploadAfterPurchaseFiles extends ReqSellMyCarId {
92
+ /** 등록증 파일 업로드 시 */
93
+ registration: {
94
+ type: SellMyCarOrderRegistrationType;
95
+ /** File url string[] */
96
+ files: string[];
97
+ } | undefined;
98
+ /** 계약서 파일 업로드 시
99
+ * @note File url string[]
100
+ */
101
+ contractImageFiles?: string[];
102
+ /** 성능점검지 파일 업로드 시
103
+ * @note File url string[]
104
+ */
105
+ performanceCheckImageFiles?: string[];
106
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891928",
3
+ "version": "1.1.891929",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",