@carsayo/types 1.1.89151 → 1.1.89153

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
  /** 색상 코드 (주색)
@@ -119,6 +119,7 @@ export interface CarColor {
119
119
  id: number;
120
120
  name: string;
121
121
  name_short: string;
122
+ description: string | null;
122
123
  price: number;
123
124
  /** 관리자단에서 직접 입력한 카테고리 */
124
125
  category: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89151",
3
+ "version": "1.1.89153",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",