@carsayo/types 1.1.791 → 1.1.793
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.
|
@@ -121,3 +121,32 @@ export interface CarDataPreorderGetListDTO {
|
|
|
121
121
|
export interface CarDataPreorderIdDTO {
|
|
122
122
|
id: number;
|
|
123
123
|
}
|
|
124
|
+
export interface GetCarOptionColorListDTO {
|
|
125
|
+
carGradeId: number;
|
|
126
|
+
}
|
|
127
|
+
export interface ModifyCarModelDTO {
|
|
128
|
+
id: number;
|
|
129
|
+
modelName: string;
|
|
130
|
+
isHidden: boolean;
|
|
131
|
+
}
|
|
132
|
+
export interface ModifyCarTrimDTO {
|
|
133
|
+
id: number;
|
|
134
|
+
trimName: string;
|
|
135
|
+
isHidden: boolean;
|
|
136
|
+
}
|
|
137
|
+
export interface ModifyCarGradeDTO {
|
|
138
|
+
id: number;
|
|
139
|
+
gradeName: string;
|
|
140
|
+
isHidden: boolean;
|
|
141
|
+
}
|
|
142
|
+
export interface ModifyCarOptionDTO {
|
|
143
|
+
id: number;
|
|
144
|
+
optionName: string;
|
|
145
|
+
isHidden: boolean;
|
|
146
|
+
}
|
|
147
|
+
export interface ModifyCarOptionRelationDTO {
|
|
148
|
+
id: number;
|
|
149
|
+
include: number[];
|
|
150
|
+
nessary: number[];
|
|
151
|
+
incompatible: number[];
|
|
152
|
+
}
|
|
@@ -23,6 +23,8 @@ export interface CarModel {
|
|
|
23
23
|
released_day: string;
|
|
24
24
|
image_url: string;
|
|
25
25
|
car_category: CarCategory | null;
|
|
26
|
+
/** 숨김처리 여부 */
|
|
27
|
+
isHidden: boolean;
|
|
26
28
|
/** 가격 정보가 없을 경우 min, max 둘 다 0이 찍혀 나옵니다 */
|
|
27
29
|
price: {
|
|
28
30
|
max: number;
|
|
@@ -65,15 +67,13 @@ export interface CarTrim {
|
|
|
65
67
|
id: number;
|
|
66
68
|
name: string;
|
|
67
69
|
image_url: string;
|
|
70
|
+
/** 숨김처리 여부 */
|
|
71
|
+
isHidden: boolean;
|
|
68
72
|
car_shape: {
|
|
69
73
|
id: number;
|
|
70
74
|
name: string;
|
|
71
75
|
} | null;
|
|
72
76
|
}
|
|
73
|
-
/** 차량 상세모델 (트림 내 등급 포함) */
|
|
74
|
-
export interface CarTrimIncludeGrade extends CarTrim {
|
|
75
|
-
grade: CarGrade[];
|
|
76
|
-
}
|
|
77
77
|
/**
|
|
78
78
|
* @description 차량 등급
|
|
79
79
|
*/
|
|
@@ -83,6 +83,8 @@ export interface CarGrade {
|
|
|
83
83
|
price: number;
|
|
84
84
|
updated_day: string;
|
|
85
85
|
released_month: string;
|
|
86
|
+
/** 숨김처리 여부 */
|
|
87
|
+
isHidden: boolean;
|
|
86
88
|
car_purpose: {
|
|
87
89
|
id: number;
|
|
88
90
|
name: string;
|
|
@@ -101,6 +103,8 @@ export interface CarColor {
|
|
|
101
103
|
name_short: string;
|
|
102
104
|
price: number;
|
|
103
105
|
image_url: string;
|
|
106
|
+
/** 숨김처리 여부 */
|
|
107
|
+
isHidden: boolean;
|
|
104
108
|
}
|
|
105
109
|
/** 차량 옵션 */
|
|
106
110
|
export interface CarOption {
|
|
@@ -109,6 +113,8 @@ export interface CarOption {
|
|
|
109
113
|
price: number;
|
|
110
114
|
position: number;
|
|
111
115
|
updated_day: string;
|
|
116
|
+
/** 숨김처리 여부 */
|
|
117
|
+
isHidden: boolean;
|
|
112
118
|
/** 옵션 설명 존재 시 옵션 설명 Id값 */
|
|
113
119
|
descriptionId: number | null;
|
|
114
120
|
relation: {
|
|
@@ -149,6 +155,7 @@ export interface CarOptionDescription {
|
|
|
149
155
|
*/
|
|
150
156
|
imgSrc: string | null;
|
|
151
157
|
include: {
|
|
158
|
+
id: number;
|
|
152
159
|
/** 옵션 하위 내용 제목 */
|
|
153
160
|
name: string;
|
|
154
161
|
/** 옵션 하위 내용 상세 설명
|