@carsayo/types 1.1.891968 → 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
- } | null;
148
+ };
149
149
  /** 서류 받을 곳 */
150
- sell_car_get_paper_address: string | null;
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
- } | null;
163
+ };
164
164
  };
165
165
  }
166
166
  /** 딜러 패널티 리스트 (견적실수, 경고 등) */
@@ -493,6 +493,8 @@ export interface SellMyCarOrderTransportRider {
493
493
  name: string;
494
494
  /** 탁송기사 전화번호 */
495
495
  phone: string;
496
+ /** 탁송기사 프로필 이미지 */
497
+ profileUrl: string | null;
496
498
  }
497
499
  /** 탁송 정보
498
500
  * @note 고객이 탁송 정보를 등록한 이후 값이 존재합니다
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891968",
3
+ "version": "1.1.891969",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",