@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.
@@ -134,6 +134,8 @@ export declare class ModifyCarColorDTO {
134
134
  colorName: string;
135
135
  /** 색상 가격 */
136
136
  colorPrice: number;
137
+ /** 카테고리 */
138
+ category: string | null;
137
139
  /** 색상 코드 (주색)
138
140
  * @example "#222"
139
141
  * @note null일 경우 제거
@@ -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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89127",
3
+ "version": "1.1.89129",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",