@carsayo/types 1.1.89124 → 1.1.89126
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.
|
@@ -120,6 +120,8 @@ export interface ModifyCarOptionDTO {
|
|
|
120
120
|
gradeId: number;
|
|
121
121
|
optionName: string;
|
|
122
122
|
optionPrice: number;
|
|
123
|
+
/** 카테고리 */
|
|
124
|
+
category: string | null;
|
|
123
125
|
/** 옵션 짧은 설명 (한줄내외) */
|
|
124
126
|
optionInfo: string | null;
|
|
125
127
|
isHidden: boolean;
|
|
@@ -132,6 +134,8 @@ export declare class ModifyCarColorDTO {
|
|
|
132
134
|
colorName: string;
|
|
133
135
|
/** 색상 가격 */
|
|
134
136
|
colorPrice: number;
|
|
137
|
+
/** 카테고리 */
|
|
138
|
+
category: string | null;
|
|
135
139
|
/** 색상 코드 (주색)
|
|
136
140
|
* @example "#222"
|
|
137
141
|
* @note null일 경우 제거
|
|
@@ -116,6 +116,8 @@ export interface CarColor {
|
|
|
116
116
|
name: string;
|
|
117
117
|
name_short: string;
|
|
118
118
|
price: number;
|
|
119
|
+
/** 관리자단에서 직접 입력한 카테고리 */
|
|
120
|
+
category: string | null;
|
|
119
121
|
/** NiceDNR에서 제공하는 색상 이미지
|
|
120
122
|
* @note color_code가 우선적으로 사용되고, 해당 값이 없을 경우 이 이미지를 사용합니다.
|
|
121
123
|
*/
|
|
@@ -206,6 +208,8 @@ export interface CarOption {
|
|
|
206
208
|
isEssential: boolean;
|
|
207
209
|
/** 숨김처리 여부 */
|
|
208
210
|
isHidden: boolean;
|
|
211
|
+
/** 관리자단에서 직접 입력한 카테고리 */
|
|
212
|
+
category: string | null;
|
|
209
213
|
/** 옵션 설명 존재 시 옵션 설명 Id값 */
|
|
210
214
|
descriptionId: number | null;
|
|
211
215
|
relation: {
|