@carsayo/types 1.1.89102 → 1.1.89103
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.
|
@@ -178,9 +178,10 @@ export declare class ModifyCarColorDTO {
|
|
|
178
178
|
*/
|
|
179
179
|
color_code_sub?: string | null;
|
|
180
180
|
/** 외장색상 여부
|
|
181
|
-
* @note 외장색상일 경우
|
|
181
|
+
* @note 외장색상일 경우 false, 내장색상일 경우 true
|
|
182
|
+
* @default false
|
|
182
183
|
*/
|
|
183
|
-
|
|
184
|
+
is_interior?: boolean;
|
|
184
185
|
isHidden: boolean;
|
|
185
186
|
}
|
|
186
187
|
export interface ModifyCarOptionRelationDTO {
|
|
@@ -328,9 +329,10 @@ export interface CreateCarColorDTO {
|
|
|
328
329
|
*/
|
|
329
330
|
color_code_sub?: string;
|
|
330
331
|
/** 외장색상 여부
|
|
331
|
-
* @note 외장색상일 경우
|
|
332
|
+
* @note 외장색상일 경우 false, 내장색상일 경우 true
|
|
333
|
+
* @default false
|
|
332
334
|
*/
|
|
333
|
-
|
|
335
|
+
is_interior: boolean;
|
|
334
336
|
}
|
|
335
337
|
export interface ConnectCarOptionDTO {
|
|
336
338
|
gradeId: number;
|
|
@@ -131,10 +131,10 @@ export interface CarColor {
|
|
|
131
131
|
*/
|
|
132
132
|
color_code_sub: string | null;
|
|
133
133
|
/** 외장색상 여부
|
|
134
|
-
* @note 외장색상일 경우
|
|
134
|
+
* @note 외장색상일 경우 false, 내장색상일 경우 true
|
|
135
135
|
* @default false
|
|
136
136
|
*/
|
|
137
|
-
|
|
137
|
+
is_interior: boolean;
|
|
138
138
|
/** 숨김처리 여부 */
|
|
139
139
|
isHidden: boolean;
|
|
140
140
|
}
|