@carsayo/types 1.1.891930 → 1.1.891932
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.
|
@@ -613,7 +613,10 @@ export interface SellMyCarOrder {
|
|
|
613
613
|
* @note 경매 승인 시 입력할 수 있는 내용입니다.
|
|
614
614
|
* @note nullable
|
|
615
615
|
*/
|
|
616
|
-
carsayoComment:
|
|
616
|
+
carsayoComment: {
|
|
617
|
+
content: string;
|
|
618
|
+
updatedAt: Date;
|
|
619
|
+
} | null;
|
|
617
620
|
/** 견적(고객이 직접 입력한) 정보
|
|
618
621
|
* @note [Direct], [Agency]에 따라 존재하는 정보가 다릅니다.
|
|
619
622
|
*/
|
|
@@ -130,8 +130,10 @@ export declare const SellMyCarOrderCancelType: {
|
|
|
130
130
|
};
|
|
131
131
|
export type SellMyCarOrderCancelType = keyof typeof SellMyCarOrderCancelType;
|
|
132
132
|
export declare const SellMyCarOrderBidCancelType: {
|
|
133
|
-
/**
|
|
133
|
+
/** 딜러가 발송한 견적을 취소하는 경우 (이 경우 딜러에게 벌점이 부여됩니다) */
|
|
134
134
|
readonly cancel_before_customer_confirm: "cancel_before_customer_confirm";
|
|
135
|
+
/** 딜러가 선택받은 후 판매요청을 거절하였을 경우 (이 경우 딜러에게 벌점이 부여됩니다) */
|
|
136
|
+
readonly dealer_rejected: "dealer_rejected";
|
|
135
137
|
/** 딜러가 변경되어 취소되었을 경우 */
|
|
136
138
|
readonly dealer_changed: "dealer_changed";
|
|
137
139
|
};
|
|
@@ -119,8 +119,10 @@ exports.SellMyCarOrderCancelType = {
|
|
|
119
119
|
inspect_inspector_canceled: "inspect_inspector_canceled",
|
|
120
120
|
};
|
|
121
121
|
exports.SellMyCarOrderBidCancelType = {
|
|
122
|
-
/**
|
|
122
|
+
/** 딜러가 발송한 견적을 취소하는 경우 (이 경우 딜러에게 벌점이 부여됩니다) */
|
|
123
123
|
cancel_before_customer_confirm: "cancel_before_customer_confirm",
|
|
124
|
+
/** 딜러가 선택받은 후 판매요청을 거절하였을 경우 (이 경우 딜러에게 벌점이 부여됩니다) */
|
|
125
|
+
dealer_rejected: "dealer_rejected",
|
|
124
126
|
/** 딜러가 변경되어 취소되었을 경우 */
|
|
125
127
|
dealer_changed: "dealer_changed",
|
|
126
128
|
};
|