@carsayo/types 1.1.89085 → 1.1.89086
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.
|
@@ -142,6 +142,12 @@ export interface ModifyCarOptionDTO {
|
|
|
142
142
|
isHidden: boolean;
|
|
143
143
|
isEssential: boolean;
|
|
144
144
|
}
|
|
145
|
+
export declare class ModifyCarColorDTO {
|
|
146
|
+
id: number;
|
|
147
|
+
colorName: string;
|
|
148
|
+
colorPrice: number;
|
|
149
|
+
isHidden: boolean;
|
|
150
|
+
}
|
|
145
151
|
export interface ModifyCarOptionRelationDTO {
|
|
146
152
|
/** 대상 옵션 Id */
|
|
147
153
|
id: number;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteCarColorDataDTO = exports.DeleteCarOptionDataDTO = void 0;
|
|
3
|
+
exports.DeleteCarColorDataDTO = exports.DeleteCarOptionDataDTO = exports.ModifyCarColorDTO = void 0;
|
|
4
|
+
class ModifyCarColorDTO {
|
|
5
|
+
}
|
|
6
|
+
exports.ModifyCarColorDTO = ModifyCarColorDTO;
|
|
4
7
|
class DeleteCarOptionDataDTO {
|
|
5
8
|
}
|
|
6
9
|
exports.DeleteCarOptionDataDTO = DeleteCarOptionDataDTO;
|