@carsayo/types 1.1.891946 → 1.1.891948
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
|
/** 진행방법 */
|
|
@@ -140,3 +140,22 @@ 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
|
+
/** 관리자 페이지에서만 사용하는 상태 정보 */
|
|
144
|
+
export declare const SellMyCarOrderStatus_Admin: {
|
|
145
|
+
readonly 판매검토_진단요청: "진단요청";
|
|
146
|
+
readonly 판매검토_진단대기: "진단대기";
|
|
147
|
+
readonly 판매검토_원부요청: "원부요청";
|
|
148
|
+
readonly 판매검토_검토대기: "검토대기";
|
|
149
|
+
readonly 판매검토_검토완료: "검토완료";
|
|
150
|
+
readonly 경매_경매중: "경매중";
|
|
151
|
+
readonly 경매_경매종료: "경매종료";
|
|
152
|
+
readonly 판매요청_선택중: "선택중";
|
|
153
|
+
readonly 판매요청_검토중: "검토중";
|
|
154
|
+
readonly 판매요청_판매요청승인: "판매요청승인";
|
|
155
|
+
readonly 진행중주문_방문일정등록중: "방문일정등록중";
|
|
156
|
+
readonly 진행중주문_방문일정등록: "방문일정등록";
|
|
157
|
+
readonly 진행중주문_구매완료: "구매완료";
|
|
158
|
+
readonly 거래종결_검토중: "검토중";
|
|
159
|
+
readonly 거래종결_거래종결: "거래종결";
|
|
160
|
+
};
|
|
161
|
+
export type SellMyCarOrderStatus_Admin = keyof typeof SellMyCarOrderStatus_Admin;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SellMyCarOrderKey = exports.SellMyCarFilterCategory = exports.SellMyCarOrderBidCancelType = exports.SellMyCarOrderCancelType = exports.SellMyCarOrderBidSubject = exports.SellMyCarOrderRegistrationType = exports.SellMyCarOrderPurchaseMethod = exports.SellMyCarOrderType = exports.SellMyCarOrderBidStatus = exports.SellMyCarOrderStatus = exports.SellMyCarOrderMethod = exports.SellMyCarOrderBidType = exports.CurrentDealerPenaltyReason = exports.CurrentDealerPenaltyType = exports.SellMyCarType = exports.SellMyCarRegistryLienType = exports.SellMyCarCommissionStatus = void 0;
|
|
3
|
+
exports.SellMyCarOrderStatus_Admin = exports.SellMyCarOrderKey = exports.SellMyCarFilterCategory = exports.SellMyCarOrderBidCancelType = exports.SellMyCarOrderCancelType = exports.SellMyCarOrderBidSubject = exports.SellMyCarOrderRegistrationType = exports.SellMyCarOrderPurchaseMethod = exports.SellMyCarOrderType = exports.SellMyCarOrderBidStatus = exports.SellMyCarOrderStatus = exports.SellMyCarOrderMethod = exports.SellMyCarOrderBidType = exports.CurrentDealerPenaltyReason = exports.CurrentDealerPenaltyType = exports.SellMyCarType = exports.SellMyCarRegistryLienType = exports.SellMyCarCommissionStatus = void 0;
|
|
4
4
|
exports.SellMyCarCommissionStatus = {
|
|
5
5
|
pending: "입금 대기",
|
|
6
6
|
completed: "입금 완료",
|
|
@@ -141,3 +141,21 @@ exports.SellMyCarOrderKey = [
|
|
|
141
141
|
*/
|
|
142
142
|
"accept_at",
|
|
143
143
|
];
|
|
144
|
+
/** 관리자 페이지에서만 사용하는 상태 정보 */
|
|
145
|
+
exports.SellMyCarOrderStatus_Admin = {
|
|
146
|
+
판매검토_진단요청: "진단요청",
|
|
147
|
+
판매검토_진단대기: "진단대기",
|
|
148
|
+
판매검토_원부요청: "원부요청",
|
|
149
|
+
판매검토_검토대기: "검토대기",
|
|
150
|
+
판매검토_검토완료: "검토완료",
|
|
151
|
+
경매_경매중: "경매중",
|
|
152
|
+
경매_경매종료: "경매종료",
|
|
153
|
+
판매요청_선택중: "선택중",
|
|
154
|
+
판매요청_검토중: "검토중",
|
|
155
|
+
판매요청_판매요청승인: "판매요청승인",
|
|
156
|
+
진행중주문_방문일정등록중: "방문일정등록중",
|
|
157
|
+
진행중주문_방문일정등록: "방문일정등록",
|
|
158
|
+
진행중주문_구매완료: "구매완료",
|
|
159
|
+
거래종결_검토중: "검토중",
|
|
160
|
+
거래종결_거래종결: "거래종결",
|
|
161
|
+
};
|