@carsayo/types 1.1.89149 → 1.1.89151

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 */
@@ -269,7 +269,7 @@ export interface OrderReview {
269
269
  writer: {
270
270
  id: string;
271
271
  name: string;
272
- imageUrl: string | null;
272
+ imageUrl: string;
273
273
  };
274
274
  created_at: Date;
275
275
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89149",
3
+ "version": "1.1.89151",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",