@carsayo/types 1.1.891923 → 1.1.891925

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.
@@ -139,6 +139,8 @@ export interface SellMyCarOrderAvaliableAction_Dealer {
139
139
  }
140
140
  /** 입찰에 대하여 딜러가 할 수 있는 동작 */
141
141
  export interface SellMyCarOrderBidAvaliableAction_Dealer {
142
+ /** 입찰 취소 가능 여부 */
143
+ is_cancelable: boolean;
142
144
  }
143
145
  /** 입찰 정보 */
144
146
  export interface SellMyCarOrderBid {
@@ -657,7 +659,6 @@ export interface SellMyCarOrder {
657
659
  price: SellMyCarOrderPrice;
658
660
  /** 재경매 주문일 경우 존재하는 정보
659
661
  * @note 값이 있을 경우 재경매 주문입니다.
660
- * @note 기존 is_reauction을 대체합니다. (기존엔 boolean만 있었음)
661
662
  */
662
663
  reauction: SellMyCarOrderReauction | null;
663
664
  /** 생성일 */
@@ -697,6 +698,23 @@ export interface SellMyCarOrder_Dealer extends SellMyCarOrder {
697
698
  /** 내가 해당 내차팔기에 대하여 작성한 최신 메모 내용 */
698
699
  myMemo: SellMyCarOrderMemo | null;
699
700
  }
701
+ /** 관리자용 */
702
+ export interface SellMyCarOrder_Admin extends SellMyCarOrder {
703
+ /** 딜러 입찰 목록 */
704
+ bid: SellMyCarOrderBid[];
705
+ /** 선택된 입찰 */
706
+ selected_bid: SellMyCarOrderBid | null;
707
+ /** 고객의 이력 정보 */
708
+ history: SellMyCarOrderHistory[];
709
+ /** 딜러 수수료 정보
710
+ * @note 주문 완료 후 수수료 정보가 추가됩니다.
711
+ */
712
+ commission: SellMyCarCommission | null;
713
+ /** 해당 내차팔기에 대하여 신고된 오류 정보 */
714
+ errorReport: SellMyCarOrderErrorReport[] | null;
715
+ /** 관리자용 메모 내용 */
716
+ memo: SellMyCarOrderMemo | null;
717
+ }
700
718
  /** 해당 주문에 대하여 신고한 오류 정보 */
701
719
  export interface SellMyCarOrderErrorReport {
702
720
  /** 오류 신고 내용 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891923",
3
+ "version": "1.1.891925",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",