@carsayo/types 1.1.892036 → 1.1.892038
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.
|
@@ -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;
|
|
@@ -873,6 +875,10 @@ export interface SellMyCarOrder_Dealer extends SellMyCarOrder {
|
|
|
873
875
|
/** 관리자용 */
|
|
874
876
|
export interface SellMyCarOrder_Admin extends SellMyCarOrder {
|
|
875
877
|
/** 검토완료 여부 */
|
|
878
|
+
admin_check: {
|
|
879
|
+
checked_at: Date;
|
|
880
|
+
checked_name: string;
|
|
881
|
+
} | null;
|
|
876
882
|
is_reviewed: boolean;
|
|
877
883
|
/** 딜러 입찰 목록 */
|
|
878
884
|
bid: SellMyCarOrderBid[];
|