@carsayo/types 1.1.89103 → 1.1.89104

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.
@@ -177,6 +177,11 @@ export declare class ModifyCarColorDTO {
177
177
  * @note null일 경우 제거
178
178
  */
179
179
  color_code_sub?: string | null;
180
+ /** 경고 문구
181
+ * @example 프리미엄 셀렉션 2 필수
182
+ * @note null일 경우 제거
183
+ */
184
+ warning_text?: string | null;
180
185
  /** 외장색상 여부
181
186
  * @note 외장색상일 경우 false, 내장색상일 경우 true
182
187
  * @default false
@@ -328,6 +333,11 @@ export interface CreateCarColorDTO {
328
333
  * @note 다중 색상일 경우(2개 색상이 섞이는 경우) 정의
329
334
  */
330
335
  color_code_sub?: string;
336
+ /** 경고 문구
337
+ * @example 프리미엄 셀렉션 2 필수
338
+ * @note null일 경우 제거
339
+ */
340
+ warning_text?: string | null;
331
341
  /** 외장색상 여부
332
342
  * @note 외장색상일 경우 false, 내장색상일 경우 true
333
343
  * @default false
@@ -130,6 +130,10 @@ export interface CarColor {
130
130
  * @note 다중 색상일 경우(2개 색상이 섞이는 경우) 정의
131
131
  */
132
132
  color_code_sub: string | null;
133
+ /** 경고 문구
134
+ * @example 프리미엄 셀렉션 2 필수
135
+ */
136
+ warning_text: string | null;
133
137
  /** 외장색상 여부
134
138
  * @note 외장색상일 경우 false, 내장색상일 경우 true
135
139
  * @default false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89103",
3
+ "version": "1.1.89104",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",