@carsayo/types 1.1.89080 → 1.1.89082
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.
|
@@ -130,10 +130,16 @@ export interface ModifyCarGradeDTO {
|
|
|
130
130
|
isHidden: boolean;
|
|
131
131
|
}
|
|
132
132
|
export interface ModifyCarOptionDTO {
|
|
133
|
+
/** 옵션Id */
|
|
133
134
|
id: number;
|
|
135
|
+
/** 해당 등급Id
|
|
136
|
+
* @Note 필수 옵션 처리에 사용합니다.
|
|
137
|
+
*/
|
|
138
|
+
gradeId: number;
|
|
134
139
|
optionName: string;
|
|
135
140
|
optionPrice: number;
|
|
136
141
|
isHidden: boolean;
|
|
142
|
+
isEssential: boolean;
|
|
137
143
|
}
|
|
138
144
|
export interface ModifyCarOptionRelationDTO {
|
|
139
145
|
/** 대상 옵션 Id */
|
|
@@ -367,8 +367,12 @@ export interface Admin_CarOption extends CarOption {
|
|
|
367
367
|
price_changed: number | null;
|
|
368
368
|
/** 관리자에서 가격 에디트한 시점 */
|
|
369
369
|
price_changedAt: Date | null;
|
|
370
|
+
/** 관리자가 임의로 옵션-상세등급간 연결했는지 여부
|
|
371
|
+
* @notice true: 관리자 페이지에서 임의로 연결한 옵션, false: Nice데이터 기반
|
|
372
|
+
*/
|
|
373
|
+
isConnectedManually: boolean;
|
|
370
374
|
/** 관리자가 임의로 생성했는지 여부
|
|
371
|
-
* @notice true: 관리자 페이지에서
|
|
375
|
+
* @notice true: 관리자 페이지에서 생성한 옵션, false: Nice데이터 기반
|
|
372
376
|
*/
|
|
373
377
|
isInsertedManually: boolean;
|
|
374
378
|
}
|