@carsayo/types 1.1.891965 → 1.1.891966
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.
|
@@ -131,8 +131,37 @@ export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
|
|
|
131
131
|
workingSidoId: SidoId | null;
|
|
132
132
|
/** 알림설정 정보 */
|
|
133
133
|
setting: Member["setting"];
|
|
134
|
-
/** 추가 정보 (값
|
|
135
|
-
|
|
134
|
+
/** 추가 정보 (값 자유롭게 들어갈 수 있음)
|
|
135
|
+
* member_dealer.additionalInfo에서 꺼내옵니다.
|
|
136
|
+
*/
|
|
137
|
+
additional_info: {
|
|
138
|
+
/** 탁송 주소 */
|
|
139
|
+
sell_car_transport_address: {
|
|
140
|
+
main: {
|
|
141
|
+
/** 신주소 */
|
|
142
|
+
new: string;
|
|
143
|
+
/** 오래된 주소 */
|
|
144
|
+
old: string;
|
|
145
|
+
};
|
|
146
|
+
/** 상세 주소 */
|
|
147
|
+
detail: string | null;
|
|
148
|
+
} | null;
|
|
149
|
+
/** 서류 받을 곳 */
|
|
150
|
+
sell_car_get_paper_address: string | null;
|
|
151
|
+
/** 입력한 구매자 정보 */
|
|
152
|
+
sell_car_buyer_info: {
|
|
153
|
+
/** 딜러 주민(사업자)번호 */
|
|
154
|
+
dealerIdentificationNo: string;
|
|
155
|
+
/** 딜러 이름(법인명) */
|
|
156
|
+
dealerName: string;
|
|
157
|
+
/** 딜러 신주소 */
|
|
158
|
+
dealerNewAddress: string;
|
|
159
|
+
/** 딜러 구주소 */
|
|
160
|
+
dealerOldAddress: string;
|
|
161
|
+
/** 딜러 상세 주소 */
|
|
162
|
+
dealerDetailAddress?: string;
|
|
163
|
+
} | null;
|
|
164
|
+
};
|
|
136
165
|
}
|
|
137
166
|
/** 딜러 패널티 리스트 (견적실수, 경고 등) */
|
|
138
167
|
export interface CurrentDealerPenalty {
|