@carsayo/types 1.1.89152 → 1.1.89154
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.
|
@@ -146,6 +146,8 @@ export declare class ModifyCarColorDTO {
|
|
|
146
146
|
colorName: string;
|
|
147
147
|
/** 색상 가격 */
|
|
148
148
|
colorPrice: number;
|
|
149
|
+
/** 색상 설명 */
|
|
150
|
+
description: string | null;
|
|
149
151
|
/** 카테고리 */
|
|
150
152
|
category: string | null;
|
|
151
153
|
/** 색상 코드 (주색)
|
|
@@ -320,6 +322,10 @@ export interface CreateCarOptionDTO {
|
|
|
320
322
|
/** 옵션 이름 */
|
|
321
323
|
name: string;
|
|
322
324
|
price: number;
|
|
325
|
+
/** 카테고리 */
|
|
326
|
+
category: string | null;
|
|
327
|
+
/** 옵션 짧은 설명 (한줄내외) */
|
|
328
|
+
info: string | null;
|
|
323
329
|
}
|
|
324
330
|
export interface CreateCarColorDTO {
|
|
325
331
|
/** 색상을 생성 후 연결할 상세등급 id 목록 */
|
|
@@ -328,6 +334,10 @@ export interface CreateCarColorDTO {
|
|
|
328
334
|
name: string;
|
|
329
335
|
/** 색상 가격 */
|
|
330
336
|
price: number;
|
|
337
|
+
/** 색상 설명 */
|
|
338
|
+
description: string | null;
|
|
339
|
+
/** 색상 카테고리 */
|
|
340
|
+
category: string | null;
|
|
331
341
|
/** 색상 코드 (주색)
|
|
332
342
|
* @example "#222"
|
|
333
343
|
*/
|