@carsayo/types 1.1.791 → 1.1.792

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.
@@ -23,6 +23,8 @@ export interface CarModel {
23
23
  released_day: string;
24
24
  image_url: string;
25
25
  car_category: CarCategory | null;
26
+ /** 숨김처리 여부 */
27
+ isHidden: boolean;
26
28
  /** 가격 정보가 없을 경우 min, max 둘 다 0이 찍혀 나옵니다 */
27
29
  price: {
28
30
  max: number;
@@ -65,15 +67,13 @@ export interface CarTrim {
65
67
  id: number;
66
68
  name: string;
67
69
  image_url: string;
70
+ /** 숨김처리 여부 */
71
+ isHidden: boolean;
68
72
  car_shape: {
69
73
  id: number;
70
74
  name: string;
71
75
  } | null;
72
76
  }
73
- /** 차량 상세모델 (트림 내 등급 포함) */
74
- export interface CarTrimIncludeGrade extends CarTrim {
75
- grade: CarGrade[];
76
- }
77
77
  /**
78
78
  * @description 차량 등급
79
79
  */
@@ -83,6 +83,8 @@ export interface CarGrade {
83
83
  price: number;
84
84
  updated_day: string;
85
85
  released_month: string;
86
+ /** 숨김처리 여부 */
87
+ isHidden: boolean;
86
88
  car_purpose: {
87
89
  id: number;
88
90
  name: string;
@@ -101,6 +103,8 @@ export interface CarColor {
101
103
  name_short: string;
102
104
  price: number;
103
105
  image_url: string;
106
+ /** 숨김처리 여부 */
107
+ isHidden: boolean;
104
108
  }
105
109
  /** 차량 옵션 */
106
110
  export interface CarOption {
@@ -109,6 +113,8 @@ export interface CarOption {
109
113
  price: number;
110
114
  position: number;
111
115
  updated_day: string;
116
+ /** 숨김처리 여부 */
117
+ isHidden: boolean;
112
118
  /** 옵션 설명 존재 시 옵션 설명 Id값 */
113
119
  descriptionId: number | null;
114
120
  relation: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.791",
3
+ "version": "1.1.792",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",