@carsayo/types 1.1.892022 → 1.1.892024
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.
|
@@ -70,3 +70,48 @@ exports.SELLMYCAR_SERVICE_DATA = {
|
|
|
70
70
|
},
|
|
71
71
|
],
|
|
72
72
|
};
|
|
73
|
+
const SELLMYCAR_COMMISSION_DATA = {
|
|
74
|
+
direct: [
|
|
75
|
+
{ minAmount: 0, maxAmount: 1000000, basic: 65000, trust: 65000 },
|
|
76
|
+
{ minAmount: 1000000, maxAmount: 5000000, basic: 175000, trust: 175000 },
|
|
77
|
+
{
|
|
78
|
+
minAmount: 5000000,
|
|
79
|
+
maxAmount: 10000000,
|
|
80
|
+
isCompact: true,
|
|
81
|
+
basic: 180000,
|
|
82
|
+
trust: 180000,
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
minAmount: 5000000,
|
|
86
|
+
maxAmount: 10000000,
|
|
87
|
+
isCompact: false,
|
|
88
|
+
basic: 235000,
|
|
89
|
+
trust: 210000,
|
|
90
|
+
},
|
|
91
|
+
{ minAmount: 10000000, maxAmount: 20000000, basic: 240000, trust: 215000 },
|
|
92
|
+
{ minAmount: 20000000, maxAmount: 30000000, basic: 240000, trust: 215000 },
|
|
93
|
+
{ minAmount: 30000000, maxAmount: null, basic: 350000, trust: 314000 },
|
|
94
|
+
],
|
|
95
|
+
agency: [
|
|
96
|
+
{ minAmount: 0, maxAmount: 1000000, basic: 130000, trust: 130000 },
|
|
97
|
+
{ minAmount: 1000000, maxAmount: 5000000, basic: 290000, trust: 260000 },
|
|
98
|
+
{
|
|
99
|
+
minAmount: 5000000,
|
|
100
|
+
maxAmount: 10000000,
|
|
101
|
+
isCompact: true,
|
|
102
|
+
basic: 295000,
|
|
103
|
+
trust: 264000,
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
minAmount: 5000000,
|
|
107
|
+
maxAmount: 10000000,
|
|
108
|
+
isCompact: false,
|
|
109
|
+
basic: 355000,
|
|
110
|
+
trust: 318000,
|
|
111
|
+
},
|
|
112
|
+
{ minAmount: 10000000, maxAmount: 15000000, basic: 355000, trust: 318000 },
|
|
113
|
+
{ minAmount: 15000000, maxAmount: 30000000, basic: 385000, trust: 345000 },
|
|
114
|
+
{ minAmount: 30000000, maxAmount: 40000000, basic: 465000, trust: 417000 },
|
|
115
|
+
{ minAmount: 40000000, maxAmount: null, basic: 495000, trust: 444000 },
|
|
116
|
+
],
|
|
117
|
+
};
|
|
@@ -110,8 +110,14 @@ export interface ReqUpdateSellMyCarDealerGrade {
|
|
|
110
110
|
export interface ReqUpdateSellMyCarDealerProfile {
|
|
111
111
|
/** 딜러 Id */
|
|
112
112
|
memberId: string;
|
|
113
|
-
/** 딜러 프로필 이미지 파일Id
|
|
113
|
+
/** 딜러 프로필 이미지 파일Id
|
|
114
|
+
* @note null일 경우 기존 이미지 제거
|
|
115
|
+
* @note undefined일 경우 미변경
|
|
116
|
+
*/
|
|
114
117
|
profileImageFileId: string | null | undefined;
|
|
115
|
-
/** 딜러 프로필 배경 이미지 파일Id
|
|
118
|
+
/** 딜러 프로필 배경 이미지 파일Id
|
|
119
|
+
* @note null일 경우 기존 이미지 제거
|
|
120
|
+
* @note undefined일 경우 미변경
|
|
121
|
+
*/
|
|
116
122
|
bgImageFileId: string | null | undefined;
|
|
117
123
|
}
|
|
@@ -98,6 +98,12 @@ export interface UsedCarDealerInfo {
|
|
|
98
98
|
export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
|
|
99
99
|
/** 로그인 아이디 */
|
|
100
100
|
login_id: string | null;
|
|
101
|
+
/** 생년월일
|
|
102
|
+
* @note YYYYMMDD 양식 numberString
|
|
103
|
+
*/
|
|
104
|
+
birth: string | null;
|
|
105
|
+
/** 이메일 주소 */
|
|
106
|
+
email: string | null;
|
|
101
107
|
/** 경력 연수 */
|
|
102
108
|
experienceYears: number | null;
|
|
103
109
|
/** 사업자 등록번호 */
|