@carsayo/types 1.1.891961 → 1.1.891963

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.
@@ -138,6 +138,8 @@ export interface SellMyCarOrderBidAvaliableAction_Customer {
138
138
  }
139
139
  /** 주문에 대하여 딜러가 할 수 있는 동작 */
140
140
  export interface SellMyCarOrderAvaliableAction_Dealer {
141
+ /** 카사요 퍼펙트 > 탁송 일정 변경 가능 여부 */
142
+ is_agency_transport_changeable: boolean;
141
143
  }
142
144
  /** 입찰에 대하여 딜러가 할 수 있는 동작 */
143
145
  export interface SellMyCarOrderBidAvaliableAction_Dealer {
@@ -357,6 +359,9 @@ export interface SellMyCarOrderPurchaseProcess {
357
359
  * @note 고객이 탁송 정보를 입력할 때 값이 존재합니다.
358
360
  */
359
361
  agency: SellMyCarOrderAgencyTransport | null;
362
+ /** [Agency] 탁송 만기 시점
363
+ * @note 카사요 퍼펙트 주문은 고객의 판매요청으로부터 5일 이내에 탁송 프로세스가 완료되어야 합니다. */
364
+ agency_process_expired_at: Date | null;
360
365
  /** 고객이 입력한 계좌정보
361
366
  * @note Direct: 판매요청시 입력
362
367
  * @note Agency: 탁송 정보 입력 시 입력
@@ -490,8 +495,8 @@ export interface SellMyCarOrderAgencyTransport {
490
495
  visitedDetailAddress: string;
491
496
  /** 틱송 일정을 등록한 날짜 */
492
497
  visited_setted_at: Date;
493
- /** 서류 받을 곳 주소 */
494
- get_paper_address: string;
498
+ /** 서류 받을 곳 주소 (nullable) */
499
+ get_paper_address: string | null;
495
500
  } | null;
496
501
  /** 탁송기사 정보
497
502
  * @note 관리자 페이지에서 등록
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891961",
3
+ "version": "1.1.891963",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",