@carsayo/types 1.1.891997 → 1.1.891999
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,33 @@ 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
|
+
}
|
|
164
|
+
export interface ReqSellMyCarSettlementRequestExpenseProof {
|
|
165
|
+
/** 지출증빙 요청 시 정보 */
|
|
166
|
+
request: {
|
|
167
|
+
tax_invoice: {
|
|
168
|
+
/** 상호명 */
|
|
169
|
+
company_name: string;
|
|
170
|
+
/** 사업자등록번호 */
|
|
171
|
+
business_number: string;
|
|
172
|
+
/** 이메일 */
|
|
173
|
+
email: string;
|
|
174
|
+
} | null;
|
|
175
|
+
receipt: {
|
|
176
|
+
/** 성명 */
|
|
177
|
+
name: string;
|
|
178
|
+
/** 연락처 */
|
|
179
|
+
phone: string;
|
|
180
|
+
} | null;
|
|
181
|
+
};
|
|
182
|
+
}
|