@carsayo/types 1.1.89155 → 1.1.89156
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.
|
@@ -150,6 +150,8 @@ export declare class ModifyCarColorDTO {
|
|
|
150
150
|
description: string | null;
|
|
151
151
|
/** 카테고리 */
|
|
152
152
|
category: string | null;
|
|
153
|
+
/** 색상 이미지 URL */
|
|
154
|
+
image_url?: string | null;
|
|
153
155
|
/** 색상 코드 (주색)
|
|
154
156
|
* @example "#222"
|
|
155
157
|
* @note null일 경우 제거
|
|
@@ -338,6 +340,8 @@ export interface CreateCarColorDTO {
|
|
|
338
340
|
description: string | null;
|
|
339
341
|
/** 색상 카테고리 */
|
|
340
342
|
category: string | null;
|
|
343
|
+
/** 색상 이미지 URL */
|
|
344
|
+
image_url?: string;
|
|
341
345
|
/** 색상 코드 (주색)
|
|
342
346
|
* @example "#222"
|
|
343
347
|
*/
|