@carsayo/types 1.1.891960 → 1.1.891962

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.
@@ -131,6 +131,8 @@ 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
136
  }
135
137
  /** 딜러 패널티 리스트 (견적실수, 경고 등) */
136
138
  export interface CurrentDealerPenalty {
@@ -143,6 +143,8 @@ export interface SellMyCarOrderAvaliableAction_Dealer {
143
143
  export interface SellMyCarOrderBidAvaliableAction_Dealer {
144
144
  /** 입찰 취소 가능 여부 */
145
145
  is_cancelable: boolean;
146
+ /** 카사요 퍼펙트 > 탁송 일정 변경 가능 여부 */
147
+ is_agency_transport_changeable: boolean;
146
148
  }
147
149
  /** 입찰 정보 */
148
150
  export interface SellMyCarOrderBid {
@@ -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: 탁송 정보 입력 시 입력
@@ -368,7 +373,7 @@ export interface SellMyCarOrderPurchaseProcess {
368
373
  transportBankOwner: string;
369
374
  /** 은행 계좌번호 */
370
375
  transportBankAccount: string;
371
- };
376
+ } | null;
372
377
  /** 매수자 정보 (방문 일정 등록 후 딜러가 등록) */
373
378
  buyer: SellMyCarOrderBuyer | null;
374
379
  /** 압류/저당 해지 동의 (null일 경우 미동의)
@@ -481,7 +486,18 @@ export interface SellMyCarOrderAgencyTransport {
481
486
  */
482
487
  customerTransportInfo: SellMyCarOrderVisitFormInfo;
483
488
  /** 딜러가 입력한 탁송 정보 (딜러가 탁송기사를 통해 차량을 배송받을 위치) */
484
- dealerTransportInfo: SellMyCarOrderVisitFormInfo | null;
489
+ dealerTransportInfo: {
490
+ /** 틱송 신주소 */
491
+ visitedNewAddress: string;
492
+ /** 틱송 구주소 */
493
+ visitedOldAddress: string;
494
+ /** 틱송 상세 주소 */
495
+ visitedDetailAddress: string;
496
+ /** 틱송 일정을 등록한 날짜 */
497
+ visited_setted_at: Date;
498
+ /** 서류 받을 곳 주소 (nullable) */
499
+ get_paper_address: string | null;
500
+ } | null;
485
501
  /** 탁송기사 정보
486
502
  * @note 관리자 페이지에서 등록
487
503
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891960",
3
+ "version": "1.1.891962",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",