@carsayo/types 1.1.891996 → 1.1.891998
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.
|
@@ -150,3 +150,14 @@ export declare class ReqSetMyCarToggleLike {
|
|
|
150
150
|
/** 좋아요 / 싫어요 처리 */
|
|
151
151
|
isLike: boolean;
|
|
152
152
|
}
|
|
153
|
+
/** 딜러용 정산 내역 검색 요청 DTO */
|
|
154
|
+
export interface SellMyCarSettlementSearchDTO {
|
|
155
|
+
/** 스킵 개수 */
|
|
156
|
+
skip: number;
|
|
157
|
+
/** 조회 개수 */
|
|
158
|
+
take: number;
|
|
159
|
+
/** 검색 필터 */
|
|
160
|
+
filter: "whole" | "pending" | "completed";
|
|
161
|
+
/** 정렬 키 목록 */
|
|
162
|
+
order: "asc" | "desc";
|
|
163
|
+
}
|
|
@@ -986,3 +986,17 @@ export interface SellMyCarOrderDealerSearchCount {
|
|
|
986
986
|
};
|
|
987
987
|
};
|
|
988
988
|
}
|
|
989
|
+
export interface SellMyCarOrderCommissionDealerInformation {
|
|
990
|
+
completed: {
|
|
991
|
+
count: number;
|
|
992
|
+
};
|
|
993
|
+
pending: {
|
|
994
|
+
count: number;
|
|
995
|
+
nonPaidAmount: number;
|
|
996
|
+
account_info: {
|
|
997
|
+
bank_code: string;
|
|
998
|
+
account_number: string;
|
|
999
|
+
account_holder_name: string;
|
|
1000
|
+
};
|
|
1001
|
+
};
|
|
1002
|
+
}
|