@carsayo/types 1.1.89153 → 1.1.89155

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.
@@ -322,6 +322,10 @@ export interface CreateCarOptionDTO {
322
322
  /** 옵션 이름 */
323
323
  name: string;
324
324
  price: number;
325
+ /** 카테고리 */
326
+ category: string | null;
327
+ /** 옵션 짧은 설명 (한줄내외) */
328
+ info: string | null;
325
329
  }
326
330
  export interface CreateCarColorDTO {
327
331
  /** 색상을 생성 후 연결할 상세등급 id 목록 */
@@ -330,6 +334,10 @@ export interface CreateCarColorDTO {
330
334
  name: string;
331
335
  /** 색상 가격 */
332
336
  price: number;
337
+ /** 색상 설명 */
338
+ description: string | null;
339
+ /** 색상 카테고리 */
340
+ category: string | null;
333
341
  /** 색상 코드 (주색)
334
342
  * @example "#222"
335
343
  */
@@ -60,6 +60,8 @@ export interface OrderInfo extends OrderInfoTime {
60
60
  price: number | null;
61
61
  /** 제조사명 */
62
62
  brand: string | null;
63
+ /** 슈퍼카 여부 */
64
+ isSuperCar: boolean;
63
65
  bidderNumber: number;
64
66
  /** 입찰 딜러 리스트
65
67
  * @notice 마스킹처리가 가능합니다
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89153",
3
+ "version": "1.1.89155",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",