@carsayo/types 1.1.89132 → 1.1.89134
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.
|
@@ -442,12 +442,21 @@ export type Admin_WholeSellingCar = Omit<WholeSellingCar, "car_model"> & {
|
|
|
442
442
|
})[];
|
|
443
443
|
})[];
|
|
444
444
|
};
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
445
|
+
/** 특정 모델 내 모든 옵션과 색상 데이터 */
|
|
446
|
+
export interface CarModelOptionColor {
|
|
447
|
+
option: {
|
|
448
|
+
id: number;
|
|
449
|
+
name: string;
|
|
450
|
+
price: number;
|
|
451
|
+
isDescription: boolean;
|
|
452
|
+
isInsertedManually: boolean;
|
|
453
|
+
}[];
|
|
454
|
+
color: {
|
|
455
|
+
id: number;
|
|
456
|
+
name: string;
|
|
457
|
+
price: number;
|
|
458
|
+
isInsertedManually: boolean;
|
|
459
|
+
}[];
|
|
451
460
|
}
|
|
452
461
|
export interface Admin_CarOption extends CarOption {
|
|
453
462
|
/** 관리자에서 에디트한 제목 */
|