@carsayo/types 1.1.892013 → 1.1.892014
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.
|
@@ -124,6 +124,8 @@ export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
|
|
|
124
124
|
accepted_at: Date | null;
|
|
125
125
|
/** 가입거절일자 */
|
|
126
126
|
rejected_at: Date | null;
|
|
127
|
+
/** 회원가입 이력 */
|
|
128
|
+
signupHistory: MemberSellCarDealerSignupHistory[];
|
|
127
129
|
/** 매매업종 사업증 유효기간 - 시작 (YYYYMMDD) */
|
|
128
130
|
tradingCertificate_term_start: string | null;
|
|
129
131
|
/** 매매업종 사업증 유효기간 - 종료 (YYYYMMDD) */
|
|
@@ -164,6 +166,14 @@ export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
|
|
|
164
166
|
};
|
|
165
167
|
};
|
|
166
168
|
}
|
|
169
|
+
/** 딜러 회원가입 처리 이력 */
|
|
170
|
+
export interface MemberSellCarDealerSignupHistory {
|
|
171
|
+
type: "submitted" | "accepted" | "rejected" | "re-submitted";
|
|
172
|
+
/** 거절시 사유 */
|
|
173
|
+
reject_msg: string | null;
|
|
174
|
+
/** 이력 발생 일시 */
|
|
175
|
+
created_at: Date;
|
|
176
|
+
}
|
|
167
177
|
/** 딜러 패널티 리스트 (견적실수, 경고 등) */
|
|
168
178
|
export interface CurrentDealerPenalty {
|
|
169
179
|
/** 패널티 사유 */
|