@carsayo/types 1.1.795 → 1.1.797
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.
|
@@ -152,8 +152,9 @@ export interface ModifyCarOptionRelationDTO {
|
|
|
152
152
|
}
|
|
153
153
|
/** 옵션에 대한 상세 설명 */
|
|
154
154
|
export interface ModifyCarOptionDescriptionDTO {
|
|
155
|
-
/**
|
|
155
|
+
/** descriptionId */
|
|
156
156
|
id: number;
|
|
157
|
+
car_optionId: number;
|
|
157
158
|
car_makerId: number;
|
|
158
159
|
car_modelId: number;
|
|
159
160
|
/** 옵션 설명 제목 */
|
|
@@ -146,8 +146,8 @@ export interface CarOptionDescription {
|
|
|
146
146
|
id: number;
|
|
147
147
|
/** 대상 차량 제조사 아이디 */
|
|
148
148
|
car_makerId: number | null;
|
|
149
|
-
/** 대상 차량 모델 아이디 */
|
|
150
|
-
|
|
149
|
+
/** 대상 차량 모델 아이디 리스트 */
|
|
150
|
+
car_modelIdList: number[];
|
|
151
151
|
/** 옵션 설명 제목 */
|
|
152
152
|
name: string;
|
|
153
153
|
/** 상세 설명 내용,
|
|
@@ -162,8 +162,8 @@ export interface CarOptionDescription {
|
|
|
162
162
|
id: number;
|
|
163
163
|
/** 대상 차량 제조사 아이디 */
|
|
164
164
|
car_makerId: number | null;
|
|
165
|
-
/** 대상 차량 모델 아이디 */
|
|
166
|
-
|
|
165
|
+
/** 대상 차량 모델 아이디 리스트 */
|
|
166
|
+
car_modelIdList: number[];
|
|
167
167
|
/** 옵션 하위 내용 제목 */
|
|
168
168
|
name: string;
|
|
169
169
|
/** 옵션 하위 내용 상세 설명
|