@carsayo/types 1.1.89131 → 1.1.89132
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.
|
@@ -292,6 +292,10 @@ export interface CopyCarColorDTO {
|
|
|
292
292
|
colorId: number;
|
|
293
293
|
gradeId: number;
|
|
294
294
|
}
|
|
295
|
+
export interface CopyCarOptionDTO {
|
|
296
|
+
optionId: number;
|
|
297
|
+
gradeId: number;
|
|
298
|
+
}
|
|
295
299
|
export interface CreateCarOptionDTO {
|
|
296
300
|
/** 옵션을 생성 후 연결할 상세등급 id 목록 */
|
|
297
301
|
gradeIdList: number[];
|
|
@@ -330,6 +334,10 @@ export interface ConnectCarOptionDTO {
|
|
|
330
334
|
gradeId: number;
|
|
331
335
|
optionId: number;
|
|
332
336
|
}
|
|
337
|
+
export interface ConnectCarColorDTO {
|
|
338
|
+
gradeId: number;
|
|
339
|
+
colorId: number;
|
|
340
|
+
}
|
|
333
341
|
/** 특정 모델 내 유효한 모든 옵션을 조회합니다. */
|
|
334
342
|
export interface GetCarModelOptionDTO {
|
|
335
343
|
modelId: number;
|