@carsayo/types 1.1.89127 → 1.1.89129
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.
|
@@ -187,6 +187,8 @@ export interface InteriorCarColor {
|
|
|
187
187
|
* @default 0
|
|
188
188
|
*/
|
|
189
189
|
price: number;
|
|
190
|
+
/** 카테고리 */
|
|
191
|
+
category: string | null;
|
|
190
192
|
/** 이미지 URL
|
|
191
193
|
* @note NiceDNR에서 정의할 경우 존재
|
|
192
194
|
*/
|
|
@@ -204,6 +206,11 @@ export interface InteriorCarColor {
|
|
|
204
206
|
* @note 카사요 관리자에서 정의했을 경우 값 존재
|
|
205
207
|
*/
|
|
206
208
|
warning_text: string | null;
|
|
209
|
+
/** 하위 선택 항목
|
|
210
|
+
* @note 현재 내장색상에서만 정상동작합니다.
|
|
211
|
+
* @note 제네시스 내장재 선택에서 주로 사용합니다.
|
|
212
|
+
*/
|
|
213
|
+
internalSelection?: CarColorInternalSelection;
|
|
207
214
|
}
|
|
208
215
|
/** 차량 옵션 */
|
|
209
216
|
export interface CarOption {
|