@carsayo/types 1.1.892035 → 1.1.892037

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.
@@ -27,6 +27,32 @@ export interface ReqSetMyCarInspector extends ReqSellMyCarId {
27
27
  /** 관리자가 입력한 진단사 방문 상세 주소 */
28
28
  inspectVisitedDetailAddress: string;
29
29
  }
30
+ /** 관리자 > 진단 정보 변경 요청 DTO */
31
+ export interface ReqUpdateMyCarInspector extends ReqSellMyCarId {
32
+ /** 진단사 이름 */
33
+ inspectorName?: string;
34
+ /** 진단사 전화번호 */
35
+ inspectorPhone?: string;
36
+ /** 진단사 프로필 이미지 */
37
+ inspectorProfileImage?: string | null;
38
+ /** 관리자가 입력한 진단사 방문 일시 - mm월 dd일 금요일
39
+ * @example "7월 1일 금요일"
40
+ */
41
+ inspectVisitedAt?: string;
42
+ /** 관리자가 입력한 진단사 방문 일시 (ISO 8601 형식) */
43
+ /** @example "2025-07-01T10:00:00Z" */
44
+ inspectIsoVisitedAt?: Date;
45
+ /** 방문 시간
46
+ * @example 15 (15분)
47
+ */
48
+ inspectVisitedTime?: number;
49
+ /** 관리자가 입력한 진단사 방문 신주소 */
50
+ inspectVisitedNewAddress?: string;
51
+ /** 관리자가 입력한 진단사 방문 구주소 */
52
+ inspectVisitedOldAddress?: string;
53
+ /** 관리자가 입력한 진단사 방문 상세 주소 */
54
+ inspectVisitedDetailAddress?: string;
55
+ }
30
56
  /** 관리자 > 탁송기사 배정 */
31
57
  export interface ReqSetMyCarTransport extends ReqSellMyCarId {
32
58
  /** 탁송기사 이름 */
@@ -49,6 +75,28 @@ export interface ReqSetMyCarTransport extends ReqSellMyCarId {
49
75
  */
50
76
  transportPrice: number;
51
77
  }
78
+ /** 관리자 > 탁송기사 정보 변경 요청 DTO */
79
+ export interface ReqUpdateMyCarTransport extends ReqSellMyCarId {
80
+ /** 탁송기사 이름 */
81
+ name?: string;
82
+ /** 탁송기사 전화번호 */
83
+ phone?: string;
84
+ /** 탁송기사 프로필 이미지 */
85
+ profileUrl?: string | null;
86
+ /** 관리자가 입력한 탁송기사 방문 일시 (ISO 8601 형식) */
87
+ transportVisitedAt?: Date;
88
+ /** 관리자가 입력한 진단사 방문 신주소 */
89
+ transportVisitedNewAddress?: string;
90
+ /** 관리자가 입력한 진단사 방문 구주소 */
91
+ transportVisitedOldAddress?: string;
92
+ /** 관리자가 입력한 진단사 방문 상세 주소 */
93
+ transportVisitedDetailAddress?: string;
94
+ /** 탁송기사 가격
95
+ * @note 거래 종료 후 딜러에게 자동으로 청구될 수수료에 합산됩니다.
96
+ * @note 탁송 지역에 따라 가격이 달라집니다.
97
+ */
98
+ transportPrice?: number;
99
+ }
52
100
  /** 관리자 > 경매 승인 DTO */
53
101
  export interface ReqSetMyCarConfirmAuction extends ReqSellMyCarId {
54
102
  /** 내일 경매 여부
@@ -579,6 +579,8 @@ export interface SellMyCarOrderAgencyTransport {
579
579
  * @note 관리자 페이지에서 등록
580
580
  */
581
581
  transportRider: SellMyCarOrderTransportRider | null;
582
+ /** 탁송 비용 */
583
+ transportPrice: number | null;
582
584
  /** 탁송 과정에서 오가는 현금흐름 */
583
585
  cashflow: {
584
586
  amount: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892035",
3
+ "version": "1.1.892037",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",