@carsayo/types 1.1.891913 → 1.1.891915
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.
|
@@ -8,16 +8,27 @@ export declare const SellMyCarRegistryLienType: {
|
|
|
8
8
|
readonly mortgage: "저당";
|
|
9
9
|
};
|
|
10
10
|
export type SellMyCarRegistryLienType = keyof typeof SellMyCarRegistryLienType;
|
|
11
|
-
/** 내차팔기 -
|
|
11
|
+
/** 내차팔기 - 딜러가 입찰 후 어떻게 차량을 판매할지 분류하는 타입 - 국내/해외/폐차 */
|
|
12
12
|
export declare const SellMyCarType: {
|
|
13
13
|
readonly domestic: "국내";
|
|
14
14
|
readonly export: "해외";
|
|
15
15
|
readonly scrap: "폐차";
|
|
16
16
|
};
|
|
17
17
|
export type SellMyCarType = keyof typeof SellMyCarType;
|
|
18
|
+
export declare const CurrentDealerPenaltyType: {
|
|
19
|
+
/** 입찰 불가(5일) */
|
|
20
|
+
bid_not_allowed: string;
|
|
21
|
+
/** 계정 정지(1년) */
|
|
22
|
+
account_suspended: string;
|
|
23
|
+
};
|
|
24
|
+
export type CurrentDealerPenaltyType = keyof typeof CurrentDealerPenaltyType;
|
|
18
25
|
export declare const CurrentDealerPenaltyReason: {
|
|
19
|
-
|
|
20
|
-
|
|
26
|
+
/** 견적 취소 (견적 취소 시 딜러에게 패널티 부여) */
|
|
27
|
+
estimate_cancel: string;
|
|
28
|
+
/** 판매요청 거절 */
|
|
29
|
+
sell_request_rejected: string;
|
|
30
|
+
/** 관리자가 임의로 생성한 패널티 */
|
|
31
|
+
admin_created: string;
|
|
21
32
|
};
|
|
22
33
|
export type CurrentDealerPenaltyReason = keyof typeof CurrentDealerPenaltyReason;
|
|
23
34
|
/** 딜러가 선택한 판매 방법
|
|
@@ -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.SellMyCarType = exports.SellMyCarRegistryLienType = exports.SellMyCarCommissionStatus = void 0;
|
|
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;
|
|
4
4
|
exports.SellMyCarCommissionStatus = {
|
|
5
5
|
pending: "입금 대기",
|
|
6
6
|
completed: "입금 완료",
|
|
@@ -9,15 +9,25 @@ exports.SellMyCarRegistryLienType = {
|
|
|
9
9
|
lien: "압류",
|
|
10
10
|
mortgage: "저당",
|
|
11
11
|
};
|
|
12
|
-
/** 내차팔기 -
|
|
12
|
+
/** 내차팔기 - 딜러가 입찰 후 어떻게 차량을 판매할지 분류하는 타입 - 국내/해외/폐차 */
|
|
13
13
|
exports.SellMyCarType = {
|
|
14
14
|
domestic: "국내",
|
|
15
15
|
export: "해외",
|
|
16
16
|
scrap: "폐차",
|
|
17
17
|
};
|
|
18
|
+
exports.CurrentDealerPenaltyType = {
|
|
19
|
+
/** 입찰 불가(5일) */
|
|
20
|
+
bid_not_allowed: "입찰 불가",
|
|
21
|
+
/** 계정 정지(1년) */
|
|
22
|
+
account_suspended: "계정 정지",
|
|
23
|
+
};
|
|
18
24
|
exports.CurrentDealerPenaltyReason = {
|
|
19
|
-
|
|
20
|
-
|
|
25
|
+
/** 견적 취소 (견적 취소 시 딜러에게 패널티 부여) */
|
|
26
|
+
estimate_cancel: "견적 취소",
|
|
27
|
+
/** 판매요청 거절 */
|
|
28
|
+
sell_request_rejected: "판매요청 거절",
|
|
29
|
+
/** 관리자가 임의로 생성한 패널티 */
|
|
30
|
+
admin_created: "관리자 생성",
|
|
21
31
|
};
|
|
22
32
|
/** 딜러가 선택한 판매 방법
|
|
23
33
|
* @note sell_car_bid.sell_type
|