@carsayo/types 1.1.891967 → 1.1.891969
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.
|
@@ -136,7 +136,7 @@ export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
|
|
|
136
136
|
*/
|
|
137
137
|
additional_info: {
|
|
138
138
|
/** 탁송 주소 */
|
|
139
|
-
sell_car_transport_address
|
|
139
|
+
sell_car_transport_address?: {
|
|
140
140
|
main: {
|
|
141
141
|
/** 신주소 */
|
|
142
142
|
new: string;
|
|
@@ -145,11 +145,11 @@ export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
|
|
|
145
145
|
};
|
|
146
146
|
/** 상세 주소 */
|
|
147
147
|
detail: string | null;
|
|
148
|
-
}
|
|
148
|
+
};
|
|
149
149
|
/** 서류 받을 곳 */
|
|
150
|
-
sell_car_get_paper_address
|
|
150
|
+
sell_car_get_paper_address?: string;
|
|
151
151
|
/** 입력한 구매자 정보 */
|
|
152
|
-
sell_car_buyer_info
|
|
152
|
+
sell_car_buyer_info?: {
|
|
153
153
|
/** 딜러 주민(사업자)번호 */
|
|
154
154
|
dealerIdentificationNo: string;
|
|
155
155
|
/** 딜러 이름(법인명) */
|
|
@@ -160,7 +160,7 @@ export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
|
|
|
160
160
|
dealerOldAddress: string;
|
|
161
161
|
/** 딜러 상세 주소 */
|
|
162
162
|
dealerDetailAddress?: string;
|
|
163
|
-
}
|
|
163
|
+
};
|
|
164
164
|
};
|
|
165
165
|
}
|
|
166
166
|
/** 딜러 패널티 리스트 (견적실수, 경고 등) */
|