@carsayo/types 1.1.891969 → 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
|
/** 내일 경매 여부
|
|
@@ -142,6 +142,8 @@ export declare const SellMyCarOrderCancelType: {
|
|
|
142
142
|
readonly inspect_customer_canceled: "inspect_customer_canceled";
|
|
143
143
|
/** [Agency] 진단사가 진단을 취소했을 경우 */
|
|
144
144
|
readonly inspect_inspector_canceled: "inspect_inspector_canceled";
|
|
145
|
+
/** [Agency] 고객이 탁송정보를 마감일까지 등록하지 않은 경우 */
|
|
146
|
+
readonly transport_customer_expired: "transport_customer_expired";
|
|
145
147
|
};
|
|
146
148
|
export type SellMyCarOrderCancelType = keyof typeof SellMyCarOrderCancelType;
|
|
147
149
|
export declare const SellMyCarOrderBidCancelType: {
|
|
@@ -130,6 +130,8 @@ exports.SellMyCarOrderCancelType = {
|
|
|
130
130
|
inspect_customer_canceled: "inspect_customer_canceled",
|
|
131
131
|
/** [Agency] 진단사가 진단을 취소했을 경우 */
|
|
132
132
|
inspect_inspector_canceled: "inspect_inspector_canceled",
|
|
133
|
+
/** [Agency] 고객이 탁송정보를 마감일까지 등록하지 않은 경우 */
|
|
134
|
+
transport_customer_expired: "transport_customer_expired",
|
|
133
135
|
};
|
|
134
136
|
exports.SellMyCarOrderBidCancelType = {
|
|
135
137
|
/** 고객이 확인하기 전, 발송한 견적을 취소하는 경우 (이 경우 딜러에게 벌점이 부여됩니다) */
|