@carsayo/types 1.1.892096 → 1.1.892097
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.
|
@@ -27,37 +27,7 @@ export interface SellMyCarCommission {
|
|
|
27
27
|
*/
|
|
28
28
|
transport_amount: number | null;
|
|
29
29
|
/** 지출증빙정보 */
|
|
30
|
-
expense_proof:
|
|
31
|
-
/** 지출증빙 요청 시 정보 */
|
|
32
|
-
request: {
|
|
33
|
-
tax_invoice: {
|
|
34
|
-
/** 상호명 */
|
|
35
|
-
company_name: string;
|
|
36
|
-
/** 사업자등록번호 */
|
|
37
|
-
business_number: string;
|
|
38
|
-
/** 이메일 */
|
|
39
|
-
email: string;
|
|
40
|
-
} | null;
|
|
41
|
-
receipt: {
|
|
42
|
-
/** 성명 */
|
|
43
|
-
name: string;
|
|
44
|
-
/** 연락처 */
|
|
45
|
-
phone: string;
|
|
46
|
-
} | null;
|
|
47
|
-
};
|
|
48
|
-
/** 지출증빙 타입 */
|
|
49
|
-
type: SellMyCarCommissionExpenseProofType;
|
|
50
|
-
/** 지출증빙 상태 */
|
|
51
|
-
status: SellMyCarCommissionExpenseProofStatus;
|
|
52
|
-
/** 제출 날짜 */
|
|
53
|
-
submitted_at: Date;
|
|
54
|
-
/** 발행 날짜 */
|
|
55
|
-
completed_at: Date | null;
|
|
56
|
-
/** 수정 요청 날짜 */
|
|
57
|
-
request_edit_at: Date | null;
|
|
58
|
-
/** 수정 완료 날짜 */
|
|
59
|
-
edit_completed_at: Date | null;
|
|
60
|
-
} | null;
|
|
30
|
+
expense_proof: SellMyCarOrderExpenseProof | null;
|
|
61
31
|
/** 수수료 이력 정보 */
|
|
62
32
|
history: SellMyCarCommissionHistory[];
|
|
63
33
|
/** 생성일 */
|
|
@@ -496,8 +466,8 @@ export interface SellMyCarOrderPurchaseInfo {
|
|
|
496
466
|
* @agency 진단대행은 입찰가 그대로 등록
|
|
497
467
|
* */
|
|
498
468
|
price_real: number;
|
|
499
|
-
/**
|
|
500
|
-
* @direct 직접등록에서 검차결과 후
|
|
469
|
+
/** 감가 정보
|
|
470
|
+
* @direct 직접등록에서 검차결과 후 감가가 있을 경우 값 존재
|
|
501
471
|
* @agency 진단대행은 무조건 Null
|
|
502
472
|
*/
|
|
503
473
|
depreciation: {
|
|
@@ -1080,3 +1050,35 @@ export interface SellMyCarOrderCommissionDealerInformation {
|
|
|
1080
1050
|
};
|
|
1081
1051
|
};
|
|
1082
1052
|
}
|
|
1053
|
+
/** 지출증빙 요청정보 */
|
|
1054
|
+
export interface SellMyCarOrderExpenseProof {
|
|
1055
|
+
/** 지출증빙 요청 시 정보 */
|
|
1056
|
+
request: {
|
|
1057
|
+
tax_invoice: {
|
|
1058
|
+
/** 상호명 */
|
|
1059
|
+
company_name: string;
|
|
1060
|
+
/** 사업자등록번호 */
|
|
1061
|
+
business_number: string;
|
|
1062
|
+
/** 이메일 */
|
|
1063
|
+
email: string;
|
|
1064
|
+
} | null;
|
|
1065
|
+
receipt: {
|
|
1066
|
+
/** 성명 */
|
|
1067
|
+
name: string;
|
|
1068
|
+
/** 연락처 */
|
|
1069
|
+
phone: string;
|
|
1070
|
+
} | null;
|
|
1071
|
+
};
|
|
1072
|
+
/** 지출증빙 타입 */
|
|
1073
|
+
type: SellMyCarCommissionExpenseProofType;
|
|
1074
|
+
/** 지출증빙 상태 */
|
|
1075
|
+
status: SellMyCarCommissionExpenseProofStatus;
|
|
1076
|
+
/** 제출 날짜 */
|
|
1077
|
+
submitted_at: Date;
|
|
1078
|
+
/** 발행 날짜 */
|
|
1079
|
+
completed_at: Date | null;
|
|
1080
|
+
/** 수정 요청 날짜 */
|
|
1081
|
+
request_edit_at: Date | null;
|
|
1082
|
+
/** 수정 완료 날짜 */
|
|
1083
|
+
edit_completed_at: Date | null;
|
|
1084
|
+
}
|