@carsayo/types 1.1.89111 → 1.1.89113
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.
|
@@ -133,18 +133,29 @@ export interface ModifyCarGradeDTO {
|
|
|
133
133
|
/**
|
|
134
134
|
* @description 탑승 인원 수
|
|
135
135
|
* @db 0일 경우 빈 문자열 DB에 삽입
|
|
136
|
+
* @note 직접 생성한 데이터에만 업데이트 가능합니다
|
|
137
|
+
* @note 해당 데이터는 NiceDNR CarData 업데이트 앱에서 덮어씌우기 때문임
|
|
136
138
|
*/
|
|
137
139
|
seatingCapacity: number;
|
|
138
140
|
/**
|
|
139
141
|
* @description 연료 타입 string
|
|
140
142
|
* @note 빈 문자열일 경우 빈 문자열 db에 삽입
|
|
143
|
+
* @note 직접 생성한 데이터에만 업데이트 가능합니다
|
|
144
|
+
* @note 해당 데이터는 NiceDNR CarData 업데이트 앱에서 덮어씌우기 때문임
|
|
141
145
|
*/
|
|
142
146
|
fuel: string;
|
|
143
147
|
/**
|
|
144
148
|
* @description 엔진 배기량
|
|
145
149
|
* @db 0일 경우 빈 문자열 DB에 삽입
|
|
150
|
+
* @note 직접 생성한 데이터에만 업데이트 가능합니다
|
|
151
|
+
* @note 해당 데이터는 NiceDNR CarData 업데이트 앱에서 덮어씌우기 때문임
|
|
146
152
|
*/
|
|
147
153
|
displace: number;
|
|
154
|
+
/** 해당 등급을 연결할 트림 id
|
|
155
|
+
* @note 직접 생성한 데이터에만 업데이트 가능합니다
|
|
156
|
+
* @note 해당 데이터는 NiceDNR CarData 업데이트 앱에서 덮어씌우기 때문임
|
|
157
|
+
*/
|
|
158
|
+
car_trimId?: number;
|
|
148
159
|
isHidden: boolean;
|
|
149
160
|
}
|
|
150
161
|
export interface ModifyCarOptionDTO {
|
|
@@ -319,7 +330,8 @@ export interface CreateCarOptionDTO {
|
|
|
319
330
|
price: number;
|
|
320
331
|
}
|
|
321
332
|
export interface CreateCarColorDTO {
|
|
322
|
-
|
|
333
|
+
/** 색상을 생성 후 연결할 상세등급 id 목록 */
|
|
334
|
+
gradeIdList: number[];
|
|
323
335
|
/** 색상 이름 */
|
|
324
336
|
name: string;
|
|
325
337
|
/** 색상 가격 */
|