@carsayo/types 1.1.891998 → 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.
@@ -161,3 +161,22 @@ export interface SellMyCarSettlementSearchDTO {
161
161
  /** 정렬 키 목록 */
162
162
  order: "asc" | "desc";
163
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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891998",
3
+ "version": "1.1.891999",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",