@carsayo/types 1.1.892014 → 1.1.892016
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.
|
@@ -96,6 +96,8 @@ export interface UsedCarDealerInfo {
|
|
|
96
96
|
* @note 딜러 스스로 조회했거나, 어드민이 조회했을 경우
|
|
97
97
|
*/
|
|
98
98
|
export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
|
|
99
|
+
/** 로그인 아이디 */
|
|
100
|
+
login_id: string;
|
|
99
101
|
/** 경력 연수 */
|
|
100
102
|
experienceYears: number | null;
|
|
101
103
|
/** 사업자 등록번호 */
|
|
@@ -104,6 +106,8 @@ export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
|
|
|
104
106
|
* @note 현재 경고 개수는 penalties.filter((penalty) => penalty.is_warning).length로 확인 가능합니다.
|
|
105
107
|
*/
|
|
106
108
|
penalties: CurrentDealerPenalty[];
|
|
109
|
+
/** 받은 경고 횟수 */
|
|
110
|
+
penalty_warning_count: number;
|
|
107
111
|
/** 사업자 등록증 파일 */
|
|
108
112
|
file_member_dealer_sell_car_business_certificate_idTofile: FileInfo | null;
|
|
109
113
|
/** 사원증 파일 */
|
|
@@ -134,6 +138,13 @@ export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
|
|
|
134
138
|
workingSidoId: SidoId | null;
|
|
135
139
|
/** 알림설정 정보 */
|
|
136
140
|
setting: Member["setting"];
|
|
141
|
+
/** 수수료 정보 */
|
|
142
|
+
commission: {
|
|
143
|
+
/** 납부 수수료 총액 */
|
|
144
|
+
total: number;
|
|
145
|
+
/** 미입금 수수료 총액 */
|
|
146
|
+
nonPaid: number;
|
|
147
|
+
};
|
|
137
148
|
/** 추가 정보 (값 자유롭게 들어갈 수 있음)
|
|
138
149
|
* member_dealer.additionalInfo에서 꺼내옵니다.
|
|
139
150
|
*/
|