@carsayo/types 1.1.891968 → 1.1.891970

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 고객이 탁송 정보를 등록한 이후 값이 존재합니다
@@ -142,6 +142,8 @@ export declare const SellMyCarOrderCancelType: {
142
142
  readonly inspect_customer_canceled: "inspect_customer_canceled";
143
143
  /** [Agency] 진단사가 진단을 취소했을 경우 */
144
144
  readonly inspect_inspector_canceled: "inspect_inspector_canceled";
145
+ /** [Agency] 고객이 탁송정보를 마감일까지 등록하지 않은 경우 */
146
+ readonly transport_customer_expired: "transport_customer_expired";
145
147
  };
146
148
  export type SellMyCarOrderCancelType = keyof typeof SellMyCarOrderCancelType;
147
149
  export declare const SellMyCarOrderBidCancelType: {
@@ -130,6 +130,8 @@ exports.SellMyCarOrderCancelType = {
130
130
  inspect_customer_canceled: "inspect_customer_canceled",
131
131
  /** [Agency] 진단사가 진단을 취소했을 경우 */
132
132
  inspect_inspector_canceled: "inspect_inspector_canceled",
133
+ /** [Agency] 고객이 탁송정보를 마감일까지 등록하지 않은 경우 */
134
+ transport_customer_expired: "transport_customer_expired",
133
135
  };
134
136
  exports.SellMyCarOrderBidCancelType = {
135
137
  /** 고객이 확인하기 전, 발송한 견적을 취소하는 경우 (이 경우 딜러에게 벌점이 부여됩니다) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891968",
3
+ "version": "1.1.891970",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",