@carsayo/types 1.1.89149 → 1.1.89151
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.
|
@@ -69,10 +69,17 @@ export interface GetCarOptionColorListDTO {
|
|
|
69
69
|
export interface ModifyCarModelDTO {
|
|
70
70
|
id: number;
|
|
71
71
|
modelName: string;
|
|
72
|
+
/** 모델 브랜드 이름 */
|
|
73
|
+
name_brand: string;
|
|
72
74
|
isHidden: boolean;
|
|
75
|
+
/** 모델 이미지 URL */
|
|
76
|
+
image_url?: string;
|
|
77
|
+
/** 사전예약 차량 여부 */
|
|
73
78
|
isPreorder: boolean;
|
|
74
|
-
/** 전기차 모델 여부
|
|
79
|
+
/** 전기차 모델 여부 */
|
|
75
80
|
isElectric: boolean;
|
|
81
|
+
/** 카테고리 */
|
|
82
|
+
car_category?: CarCategoryId;
|
|
76
83
|
}
|
|
77
84
|
export interface ModifyCarTrimDTO {
|
|
78
85
|
id: number;
|
|
@@ -238,8 +245,14 @@ export interface CreateCarModelDTO {
|
|
|
238
245
|
release_day?: string;
|
|
239
246
|
/** 카테고리 */
|
|
240
247
|
car_category: CarCategoryId;
|
|
241
|
-
/** 전기차 모델 여부
|
|
248
|
+
/** 전기차 모델 여부
|
|
249
|
+
* @default false
|
|
250
|
+
*/
|
|
242
251
|
isElectric?: boolean;
|
|
252
|
+
/** 사전예약 차량 여부
|
|
253
|
+
* @default false
|
|
254
|
+
*/
|
|
255
|
+
isPreorder?: boolean;
|
|
243
256
|
}
|
|
244
257
|
export interface CreateCarTrimDTO {
|
|
245
258
|
/** 모델 ID */
|