@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 외장색상일 경우 true, 내장색상일 경우 false
181
+ * @note 외장색상일 경우 false, 내장색상일 경우 true
182
+ * @default false
182
183
  */
183
- is_exterior: boolean;
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 외장색상일 경우 true, 내장색상일 경우 false
332
+ * @note 외장색상일 경우 false, 내장색상일 경우 true
333
+ * @default false
332
334
  */
333
- is_exterior: boolean;
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 외장색상일 경우 true, 내장색상일 경우 false
134
+ * @note 외장색상일 경우 false, 내장색상일 경우 true
135
135
  * @default false
136
136
  */
137
- is_exterior: boolean;
137
+ is_interior: boolean;
138
138
  /** 숨김처리 여부 */
139
139
  isHidden: boolean;
140
140
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89102",
3
+ "version": "1.1.89103",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",