@carsayo/types 1.1.891976 → 1.1.891978
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ReqSellMyCarId } from "./dto";
|
|
2
|
+
import { SellMyCarOrderAgencyTransport } from "./interface";
|
|
2
3
|
/** 관리자 > 진단사 배정 요청 DTO */
|
|
3
4
|
export interface ReqSetMyCarInspector extends ReqSellMyCarId {
|
|
4
5
|
/** 진단사 이름 */
|
|
@@ -54,3 +55,7 @@ export interface ReqSetMyCarConfirmAuction extends ReqSellMyCarId {
|
|
|
54
55
|
*/
|
|
55
56
|
isTomorrowStart: boolean;
|
|
56
57
|
}
|
|
58
|
+
/** 관리자 > 탁송 > 현금흐름 업데이트 */
|
|
59
|
+
export interface ReqSetMyCarCashflow extends ReqSellMyCarId {
|
|
60
|
+
data: Exclude<SellMyCarOrderAgencyTransport["cashflow"], null>;
|
|
61
|
+
}
|
|
@@ -549,8 +549,6 @@ export interface SellMyCarOrderAgencyTransport {
|
|
|
549
549
|
* @note null일 경우 아직 입금 요청을 발송하지 않았습니다.
|
|
550
550
|
*/
|
|
551
551
|
dealer_request_at: Date | null;
|
|
552
|
-
/** 현금흐름 생성 날짜 */
|
|
553
|
-
created_at: Date;
|
|
554
552
|
/** 딜러가 입금을 완료한 날짜 */
|
|
555
553
|
dealer_completed_at: Date | null;
|
|
556
554
|
/** 고객에게 입금을 완료한 날짜 */
|