@carsayo/types 1.1.792 → 1.1.793

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.
@@ -121,3 +121,32 @@ export interface CarDataPreorderGetListDTO {
121
121
  export interface CarDataPreorderIdDTO {
122
122
  id: number;
123
123
  }
124
+ export interface GetCarOptionColorListDTO {
125
+ carGradeId: number;
126
+ }
127
+ export interface ModifyCarModelDTO {
128
+ id: number;
129
+ modelName: string;
130
+ isHidden: boolean;
131
+ }
132
+ export interface ModifyCarTrimDTO {
133
+ id: number;
134
+ trimName: string;
135
+ isHidden: boolean;
136
+ }
137
+ export interface ModifyCarGradeDTO {
138
+ id: number;
139
+ gradeName: string;
140
+ isHidden: boolean;
141
+ }
142
+ export interface ModifyCarOptionDTO {
143
+ id: number;
144
+ optionName: string;
145
+ isHidden: boolean;
146
+ }
147
+ export interface ModifyCarOptionRelationDTO {
148
+ id: number;
149
+ include: number[];
150
+ nessary: number[];
151
+ incompatible: number[];
152
+ }
@@ -155,6 +155,7 @@ export interface CarOptionDescription {
155
155
  */
156
156
  imgSrc: string | null;
157
157
  include: {
158
+ id: number;
158
159
  /** 옵션 하위 내용 제목 */
159
160
  name: string;
160
161
  /** 옵션 하위 내용 상세 설명
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.792",
3
+ "version": "1.1.793",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",