@carsayo/types 1.1.89133 → 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.
|
@@ -444,8 +444,19 @@ export type Admin_WholeSellingCar = Omit<WholeSellingCar, "car_model"> & {
|
|
|
444
444
|
};
|
|
445
445
|
/** 특정 모델 내 모든 옵션과 색상 데이터 */
|
|
446
446
|
export interface CarModelOptionColor {
|
|
447
|
-
option:
|
|
448
|
-
|
|
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
|
+
}[];
|
|
449
460
|
}
|
|
450
461
|
export interface Admin_CarOption extends CarOption {
|
|
451
462
|
/** 관리자에서 에디트한 제목 */
|