@carsayo/types 1.1.891963 → 1.1.891964
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.
|
@@ -485,6 +485,8 @@ export interface SellMyCarOrderAgencyTransport {
|
|
|
485
485
|
* @note 고객이 탁송 정보를 등록한 이후 값이 존재합니다
|
|
486
486
|
*/
|
|
487
487
|
customerTransportInfo: SellMyCarOrderVisitFormInfo;
|
|
488
|
+
/** 고객이 탁송 정보 변경 신청한 내용 */
|
|
489
|
+
customerChangeRequest: SellMyCarOrderTransportChangeRequest | null;
|
|
488
490
|
/** 딜러가 입력한 탁송 정보 (딜러가 탁송기사를 통해 차량을 배송받을 위치) */
|
|
489
491
|
dealerTransportInfo: {
|
|
490
492
|
/** 틱송 신주소 */
|
|
@@ -835,3 +837,17 @@ export interface SellMyCarServiceAvailableRegion {
|
|
|
835
837
|
*/
|
|
836
838
|
sigungu?: string[];
|
|
837
839
|
}
|
|
840
|
+
export interface SellMyCarOrderTransportChangeRequest {
|
|
841
|
+
/** 탁송 정보 변경 요청 데이터 */
|
|
842
|
+
data: SellMyCarOrderVisitFormInfo;
|
|
843
|
+
/** 관리자 처리 결과 */
|
|
844
|
+
result: "pending" | "approved" | "rejected";
|
|
845
|
+
/** 요청 날짜 */
|
|
846
|
+
requested_at: Date;
|
|
847
|
+
/** 처리 날짜
|
|
848
|
+
* @note 관리자가 처리한 날짜 (approved, rejected 시 값이 존재합니다)
|
|
849
|
+
*/
|
|
850
|
+
processed_at: Date | null;
|
|
851
|
+
/** 처리 사유 */
|
|
852
|
+
reason: string | null;
|
|
853
|
+
}
|