@carsayo/types 1.1.89082 → 1.1.89083

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.
@@ -117,6 +117,7 @@ export interface ModifyCarModelDTO {
117
117
  id: number;
118
118
  modelName: string;
119
119
  isHidden: boolean;
120
+ isPreorder: boolean;
120
121
  }
121
122
  export interface ModifyCarTrimDTO {
122
123
  id: number;
@@ -25,6 +25,8 @@ export interface CarModel {
25
25
  car_category: CarCategory | null;
26
26
  /** 숨김처리 여부 */
27
27
  isHidden: boolean;
28
+ /** 사전예약 여부 */
29
+ isPreorder: boolean;
28
30
  /** 가격 정보가 없을 경우 min, max 둘 다 0이 찍혀 나옵니다 */
29
31
  price: {
30
32
  max: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89082",
3
+ "version": "1.1.89083",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",