@carsayo/types 1.1.89129 → 1.1.89131

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.
@@ -293,7 +293,8 @@ export interface CopyCarColorDTO {
293
293
  gradeId: number;
294
294
  }
295
295
  export interface CreateCarOptionDTO {
296
- gradeId: number;
296
+ /** 옵션을 생성 후 연결할 상세등급 id 목록 */
297
+ gradeIdList: number[];
297
298
  /** 옵션 이름 */
298
299
  name: string;
299
300
  price: number;
@@ -210,7 +210,7 @@ export interface InteriorCarColor {
210
210
  * @note 현재 내장색상에서만 정상동작합니다.
211
211
  * @note 제네시스 내장재 선택에서 주로 사용합니다.
212
212
  */
213
- internalSelection?: CarColorInternalSelection;
213
+ internalSelection?: CarColorInternalSelection | null;
214
214
  }
215
215
  /** 차량 옵션 */
216
216
  export interface CarOption {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89129",
3
+ "version": "1.1.89131",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",