@carsayo/types 1.1.891945 → 1.1.891947

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.
@@ -1,6 +1,6 @@
1
1
  import { CarMakerId, SidoId, SellCarTagId } from "../../../data";
2
2
  import { SellMyCarOrderInspection, SellMyCarRegistry, SellMyCarRegistryLien } from "./interface";
3
- import { SellMyCarOrderStatus, SellMyCarOrderBidStatus, SellMyCarOrderMethod, SellMyCarFilterCategory, SellMyCarOrderKey, SellMyCarOrderPurchaseMethod, SellMyCarOrderRegistrationType } from "./type";
3
+ import { SellMyCarOrderStatus, SellMyCarOrderBidStatus, SellMyCarOrderMethod, SellMyCarFilterCategory, SellMyCarOrderKey, SellMyCarOrderPurchaseMethod, SellMyCarOrderRegistrationType, SellMyCarOrderStatus_Admin } from "./type";
4
4
  export interface ReqSellMyCarInspectorAuth {
5
5
  /** 인증 토큰
6
6
  * @note 쿼리스트링으로 전달받은 바로 그 값
@@ -72,6 +72,10 @@ export interface SellMyCarAuctionSearchFilter {
72
72
  * @note 관리자만 사용 가능한 필터 조건입니다
73
73
  */
74
74
  customerName?: string;
75
+ /** 관리자 페이지용 상태 조회
76
+ * @note 관리자만 사용 가능한 필터 조건입니다
77
+ */
78
+ adminStatus?: SellMyCarOrderStatus_Admin;
75
79
  /** 차량번호 검색 */
76
80
  carNumber?: string;
77
81
  /** 진행방법 */
@@ -584,6 +584,10 @@ export interface SellMyCarOrderReauction {
584
584
  export interface SellMyCarOrder {
585
585
  /** sell_car_order.id */
586
586
  id: string;
587
+ /** 주문코드
588
+ * @example "250711_S0001"
589
+ */
590
+ orderCode: string;
587
591
  /** 주문 상태 */
588
592
  status: SellMyCarOrderStatus;
589
593
  /** 고객 정보 */
@@ -140,3 +140,9 @@ export declare const SellMyCarFilterCategory: readonly ["국산차", "수입차"
140
140
  export type SellMyCarFilterCategory = (typeof SellMyCarFilterCategory)[number];
141
141
  export declare const SellMyCarOrderKey: readonly ["auction_start_at", "totalBidCount", "accept_at"];
142
142
  export type SellMyCarOrderKey = (typeof SellMyCarOrderKey)[number];
143
+ export interface SellMyCarOrderStatus_Admin {
144
+ 판매검토상태?: "진단요청" | "진단대기" | "원부요청" | "검토대기" | "검토완료";
145
+ 경매상태?: "경매중" | "경매종료";
146
+ 판매요청상태?: "선택중" | "검토중" | "판매요청승인";
147
+ 진행중주문?: "방문일정등록중" | "방문일정등록" | "구매완료";
148
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891945",
3
+ "version": "1.1.891947",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",