@carsayo/types 1.1.89159 → 1.1.89161

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.
@@ -364,7 +364,8 @@ export interface CreateCarColorDTO {
364
364
  }
365
365
  export interface ConnectCarOptionDTO {
366
366
  gradeId: number;
367
- optionId: number;
367
+ /** @250409 배열 형태로 전달합니다. */
368
+ optionId: number[];
368
369
  }
369
370
  export interface ConnectCarColorDTO {
370
371
  gradeId: number;
@@ -454,6 +454,7 @@ export interface CarModelOptionColor {
454
454
  option: {
455
455
  id: number;
456
456
  name: string;
457
+ category: string | null;
457
458
  price: number;
458
459
  isDescription: boolean;
459
460
  isInsertedManually: boolean;
@@ -461,6 +462,7 @@ export interface CarModelOptionColor {
461
462
  color: {
462
463
  id: number;
463
464
  name: string;
465
+ category: string | null;
464
466
  price: number;
465
467
  isInsertedManually: boolean;
466
468
  /** 외장색상 여부
@@ -139,13 +139,8 @@ export interface CustomerInfo {
139
139
  totalCount: number;
140
140
  };
141
141
  };
142
- /** 등록 차량 정보 */
143
- registerCar: {
144
- /** 대표 차량 */
145
- representative: CustomerCarInfo | null;
146
- /** 등록 차량 리스트 (대표 차량 포함) */
147
- list: CustomerCarInfo[];
148
- };
142
+ /** 등록 차량 리스트 (대표 차량 포함) */
143
+ registerCarList: CustomerCarInfo[];
149
144
  }
150
145
  export interface DealerInfo {
151
146
  /** 딜러 타입 (신차, 중고차, 리스렌트) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89159",
3
+ "version": "1.1.89161",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",