@carsayo/types 1.1.891960 → 1.1.891961

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 {
@@ -368,7 +368,7 @@ export interface SellMyCarOrderPurchaseProcess {
368
368
  transportBankOwner: string;
369
369
  /** 은행 계좌번호 */
370
370
  transportBankAccount: string;
371
- };
371
+ } | null;
372
372
  /** 매수자 정보 (방문 일정 등록 후 딜러가 등록) */
373
373
  buyer: SellMyCarOrderBuyer | null;
374
374
  /** 압류/저당 해지 동의 (null일 경우 미동의)
@@ -481,7 +481,18 @@ export interface SellMyCarOrderAgencyTransport {
481
481
  */
482
482
  customerTransportInfo: SellMyCarOrderVisitFormInfo;
483
483
  /** 딜러가 입력한 탁송 정보 (딜러가 탁송기사를 통해 차량을 배송받을 위치) */
484
- dealerTransportInfo: SellMyCarOrderVisitFormInfo | null;
484
+ dealerTransportInfo: {
485
+ /** 틱송 신주소 */
486
+ visitedNewAddress: string;
487
+ /** 틱송 구주소 */
488
+ visitedOldAddress: string;
489
+ /** 틱송 상세 주소 */
490
+ visitedDetailAddress: string;
491
+ /** 틱송 일정을 등록한 날짜 */
492
+ visited_setted_at: Date;
493
+ /** 서류 받을 곳 주소 */
494
+ get_paper_address: string;
495
+ } | null;
485
496
  /** 탁송기사 정보
486
497
  * @note 관리자 페이지에서 등록
487
498
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891960",
3
+ "version": "1.1.891961",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",