@carsayo/types 1.1.89150 → 1.1.89152

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.
@@ -69,10 +69,17 @@ export interface GetCarOptionColorListDTO {
69
69
  export interface ModifyCarModelDTO {
70
70
  id: number;
71
71
  modelName: string;
72
+ /** 모델 브랜드 이름 */
73
+ name_brand: string;
72
74
  isHidden: boolean;
75
+ /** 모델 이미지 URL */
76
+ image_url?: string;
77
+ /** 사전예약 차량 여부 */
73
78
  isPreorder: boolean;
74
- /** 전기차 모델 여부 (기본값 false) */
79
+ /** 전기차 모델 여부 */
75
80
  isElectric: boolean;
81
+ /** 카테고리 */
82
+ car_category?: CarCategoryId;
76
83
  }
77
84
  export interface ModifyCarTrimDTO {
78
85
  id: number;
@@ -238,8 +245,14 @@ export interface CreateCarModelDTO {
238
245
  release_day?: string;
239
246
  /** 카테고리 */
240
247
  car_category: CarCategoryId;
241
- /** 전기차 모델 여부 (기본값 false) */
248
+ /** 전기차 모델 여부
249
+ * @default false
250
+ */
242
251
  isElectric?: boolean;
252
+ /** 사전예약 차량 여부
253
+ * @default false
254
+ */
255
+ isPreorder?: boolean;
243
256
  }
244
257
  export interface CreateCarTrimDTO {
245
258
  /** 모델 ID */
@@ -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.89150",
3
+ "version": "1.1.89152",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",