@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.
@@ -5,6 +5,8 @@ export interface ReqSetMyCarInspector extends ReqSellMyCarId {
5
5
  inspectorName: string;
6
6
  /** 진단사 전화번호 */
7
7
  inspectorPhone: string;
8
+ /** 진단사 프로필 이미지 */
9
+ inspectorProfileImage: string | null;
8
10
  /** 관리자가 입력한 진단사 방문 일시 - mm월 dd일 금요일
9
11
  * @example "7월 1일 금요일"
10
12
  */
@@ -131,8 +131,37 @@ export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
131
131
  workingSidoId: SidoId | null;
132
132
  /** 알림설정 정보 */
133
133
  setting: Member["setting"];
134
- /** 추가 정보 (값 뭐들어갈지모름) */
135
- additional_info: Record<string, string>;
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891965",
3
+ "version": "1.1.891966",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",