@carsayo/types 1.1.89164 → 1.1.89166

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.
@@ -122,6 +122,8 @@ export interface ModifyCarGradeOptionDTO {
122
122
  gradeId: number;
123
123
  /** 필수 옵션 카테고리 */
124
124
  essential_category: string[];
125
+ /** 선택 옵션 카테고리 */
126
+ radio_category: string[];
125
127
  }
126
128
  export interface ModifyCarOptionDTO {
127
129
  /** 옵션Id */
@@ -111,6 +111,10 @@ export interface CarGrade {
111
111
  * 필수 카테고리 내 하나의 옵션이 무조건 선택되게 합니다.
112
112
  */
113
113
  essential_category: string[];
114
+ /** 선택 옵션 카테고리
115
+ * 선택 카테고리 내에서 최대 하나의 옵션만 선택할 수 있게 합니다.
116
+ */
117
+ radio_category: string[];
114
118
  }
115
119
  /**
116
120
  * @description 차량 색상
@@ -865,9 +865,9 @@ export interface SellingAdditionalInfo {
865
865
  optprice: number;
866
866
  }[];
867
867
  /** 옵션 없음 */
868
- 옵션없음: boolean;
868
+ 옵션없음?: boolean;
869
869
  /** 직접 입력 */
870
- 직접입력: {
870
+ 직접입력?: {
871
871
  selected: boolean;
872
872
  content?: string;
873
873
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89164",
3
+ "version": "1.1.89166",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",