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