@carsayo/types 1.1.891970 → 1.1.891972

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.
@@ -25,6 +25,23 @@ export interface ReqSetMyCarInspector extends ReqSellMyCarId {
25
25
  /** 관리자가 입력한 진단사 방문 상세 주소 */
26
26
  inspectVisitedDetailAddress: string;
27
27
  }
28
+ /** 관리자 > 탁송기사 배정 */
29
+ export interface ReqSetMyCarTransport extends ReqSellMyCarId {
30
+ /** 탁송기사 이름 */
31
+ name: string;
32
+ /** 탁송기사 전화번호 */
33
+ phone: string;
34
+ /** 탁송기사 프로필 이미지 */
35
+ profileUrl: string | null;
36
+ /** 관리자가 입력한 탁송기사 방문 일시 (ISO 8601 형식) */
37
+ transportVisitedAt: Date;
38
+ /** 관리자가 입력한 진단사 방문 신주소 */
39
+ transportVisitedNewAddress: string;
40
+ /** 관리자가 입력한 진단사 방문 구주소 */
41
+ transportVisitedOldAddress: string;
42
+ /** 관리자가 입력한 진단사 방문 상세 주소 */
43
+ transportVisitedDetailAddress: string;
44
+ }
28
45
  /** 관리자 > 경매 승인 DTO */
29
46
  export interface ReqSetMyCarConfirmAuction extends ReqSellMyCarId {
30
47
  /** 내일 경매 여부
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891970",
3
+ "version": "1.1.891972",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",