@carsayo/types 1.1.8903 → 1.1.8905
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.
|
@@ -225,4 +225,21 @@ export interface DeleteCarDataDTO {
|
|
|
225
225
|
id: number;
|
|
226
226
|
key: "model" | "trim" | "grade";
|
|
227
227
|
}
|
|
228
|
+
export interface CopyCarGradeDTO {
|
|
229
|
+
id: number;
|
|
230
|
+
}
|
|
231
|
+
export interface CreateCarOptionDTO {
|
|
232
|
+
gradeId: number;
|
|
233
|
+
/** 옵션 이름 */
|
|
234
|
+
name: string;
|
|
235
|
+
price: number;
|
|
236
|
+
}
|
|
237
|
+
export interface ConnectCarOptionDTO {
|
|
238
|
+
gradeId: number;
|
|
239
|
+
optionId: number;
|
|
240
|
+
}
|
|
241
|
+
/** 특정 모델 내 유효한 모든 옵션을 조회합니다. */
|
|
242
|
+
export interface GetCarModelOptionDTO {
|
|
243
|
+
modelId: number;
|
|
244
|
+
}
|
|
228
245
|
export {};
|