@carsayo/types 1.1.891949 → 1.1.891950

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.
@@ -539,6 +539,15 @@ export interface SellMyCarOrderAuction {
539
539
  expired_at: Date;
540
540
  /** 경매 종료일 (48시간 경과 혹은 고객이 판매요청한 시점) */
541
541
  finished_at: Date | null;
542
+ /** 딜러 선택 정보
543
+ * @note 경매 기간이 지나 딜러 선택 상태로 변경되었을 때 값이 존재합니다.
544
+ */
545
+ selecting: {
546
+ /** 딜러 선택 시작 일시 */
547
+ selected_at: Date;
548
+ /** 딜러 선택 마감 일시 */
549
+ expired_at: Date;
550
+ } | null;
542
551
  }
543
552
  export interface SellMyCarOrderPrice {
544
553
  /** 입찰 가격 (선택된 견적의 입찰가) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891949",
3
+ "version": "1.1.891950",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",