@carsayo/types 1.1.891993 → 1.1.891995
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.
|
@@ -4,7 +4,7 @@ export interface SellMyCar_Admin_SaveFaq {
|
|
|
4
4
|
/** 내용 */
|
|
5
5
|
content: string;
|
|
6
6
|
/** FAQ 대상 */
|
|
7
|
-
target:
|
|
7
|
+
target: SellMyCarFaqTarget;
|
|
8
8
|
/** 타입 */
|
|
9
9
|
type: SellMyCarFaqType_Dealer | SellMyCarFaqType_Customer;
|
|
10
10
|
}
|
|
@@ -28,6 +28,13 @@ export interface SellMyCar_Admin_UpdateFaqIsImportant {
|
|
|
28
28
|
/** 중요여부 */
|
|
29
29
|
isImportant: boolean;
|
|
30
30
|
}
|
|
31
|
+
/** FAQ 대상 */
|
|
32
|
+
export declare const SellMyCarFaqTarget: {
|
|
33
|
+
dealer: string;
|
|
34
|
+
customer: string;
|
|
35
|
+
};
|
|
36
|
+
export type SellMyCarFaqTarget = keyof typeof SellMyCarFaqTarget;
|
|
37
|
+
/** FAQ 타입 - 딜러 */
|
|
31
38
|
export declare const SellMyCarFaqType_Dealer: {
|
|
32
39
|
transaction: string;
|
|
33
40
|
settlement: string;
|
|
@@ -36,6 +43,7 @@ export declare const SellMyCarFaqType_Dealer: {
|
|
|
36
43
|
etc: string;
|
|
37
44
|
};
|
|
38
45
|
export type SellMyCarFaqType_Dealer = keyof typeof SellMyCarFaqType_Dealer;
|
|
46
|
+
/** FAQ 타입 - 고객 */
|
|
39
47
|
export declare const SellMyCarFaqType_Customer: {
|
|
40
48
|
direct: string;
|
|
41
49
|
agency: string;
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SellMyCarFaqType_Customer = exports.SellMyCarFaqType_Dealer = void 0;
|
|
3
|
+
exports.SellMyCarFaqType_Customer = exports.SellMyCarFaqType_Dealer = exports.SellMyCarFaqTarget = void 0;
|
|
4
|
+
/** FAQ 대상 */
|
|
5
|
+
exports.SellMyCarFaqTarget = {
|
|
6
|
+
dealer: "딜러",
|
|
7
|
+
customer: "고객",
|
|
8
|
+
};
|
|
9
|
+
/** FAQ 타입 - 딜러 */
|
|
4
10
|
exports.SellMyCarFaqType_Dealer = {
|
|
5
11
|
transaction: "거래/입찰",
|
|
6
12
|
settlement: "정산/수수료",
|
|
@@ -8,6 +14,7 @@ exports.SellMyCarFaqType_Dealer = {
|
|
|
8
14
|
visit: "방문/응대",
|
|
9
15
|
etc: "기타",
|
|
10
16
|
};
|
|
17
|
+
/** FAQ 타입 - 고객 */
|
|
11
18
|
exports.SellMyCarFaqType_Customer = {
|
|
12
19
|
direct: "직접등록",
|
|
13
20
|
agency: "카사요 퍼펙트",
|