@carsayo/types 1.1.891921 → 1.1.891923

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.
@@ -344,22 +344,14 @@ export interface SellMyCarOrderInspection {
344
344
  /** 내차팔기 진행 과정
345
345
  * @note 딜러 입찰 승인 이후 - 구매 완료까지의 프로세스입니다 */
346
346
  export interface SellMyCarOrderPurchaseProcess {
347
- direct: {
348
- /** [Direct] 딜러 방문 정보
349
- * @note 입찰받지 못한 딜러에게는 null
350
- * @note 직접등록일 경우에만 사용됩니다.
351
- * @note 딜러가 판매 요청 승인 후 방문 일정을 등록한 내용입니다.
352
- */
353
- visit: SellMyCarOrderDirectVisit | null;
354
- } | null;
355
- agency: {
356
- /** [Agency] 탁송 정보 (ㄴㄴㄴㄴㄴㄴㄴㄴㄴㄴ)
357
- * @note 입찰받지 못한 딜러에게는 null
358
- * @note 탁송일 경우에만 사용됩니다.
359
- * @note 딜러가 판매 요청 승인 후 탁송 일정을 등록한 내용입니다.
360
- */
361
- transport: SellMyCarOrderAgencyTransport | null;
362
- };
347
+ /** [Direct] 딜러 방문 정보
348
+ * @note 직접등록일 경우에만 사용됩니다.
349
+ */
350
+ direct: SellMyCarOrderDirectVisit | null;
351
+ /** [Agency] 탁송 정보
352
+ * @note 카사요 퍼펙트 전용
353
+ */
354
+ agency: SellMyCarOrderAgencyTransport | null;
363
355
  /** 매수자 정보 (방문 일정 등록 후 딜러가 등록) */
364
356
  buyer: SellMyCarOrderBuyer | null;
365
357
  /** 압류/저당 해지 동의 (null일 경우 미동의)
@@ -403,7 +395,7 @@ export interface SellMyCarOrderPurchaseInfo {
403
395
  /** 가격조정근거(검차결과)
404
396
  * @note Stringified JSON
405
397
  */
406
- price_adjustment: string | null;
398
+ price_adjustment: string;
407
399
  } | null;
408
400
  /** 딜러 구매 완료 시점 */
409
401
  purchase_completed_at: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891921",
3
+ "version": "1.1.891923",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",