@carsayo/types 1.1.891948 → 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
  /** 입찰 가격 (선택된 견적의 입찰가) */
@@ -151,7 +151,7 @@ export declare const SellMyCarOrderStatus_Admin: {
151
151
  readonly 경매_경매종료: "경매종료";
152
152
  readonly 판매요청_선택중: "선택중";
153
153
  readonly 판매요청_검토중: "검토중";
154
- readonly 판매요청_판매요청승인: "판매요청승인";
154
+ readonly 판매요청_검토완료: "검토완료";
155
155
  readonly 진행중주문_방문일정등록중: "방문일정등록중";
156
156
  readonly 진행중주문_방문일정등록: "방문일정등록";
157
157
  readonly 진행중주문_구매완료: "구매완료";
@@ -152,7 +152,7 @@ exports.SellMyCarOrderStatus_Admin = {
152
152
  경매_경매종료: "경매종료",
153
153
  판매요청_선택중: "선택중",
154
154
  판매요청_검토중: "검토중",
155
- 판매요청_판매요청승인: "판매요청승인",
155
+ 판매요청_검토완료: "검토완료",
156
156
  진행중주문_방문일정등록중: "방문일정등록중",
157
157
  진행중주문_방문일정등록: "방문일정등록",
158
158
  진행중주문_구매완료: "구매완료",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891948",
3
+ "version": "1.1.891950",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",