@carsayo/types 1.1.89081 → 1.1.89083

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.
@@ -117,6 +117,7 @@ export interface ModifyCarModelDTO {
117
117
  id: number;
118
118
  modelName: string;
119
119
  isHidden: boolean;
120
+ isPreorder: boolean;
120
121
  }
121
122
  export interface ModifyCarTrimDTO {
122
123
  id: number;
@@ -25,6 +25,8 @@ export interface CarModel {
25
25
  car_category: CarCategory | null;
26
26
  /** 숨김처리 여부 */
27
27
  isHidden: boolean;
28
+ /** 사전예약 여부 */
29
+ isPreorder: boolean;
28
30
  /** 가격 정보가 없을 경우 min, max 둘 다 0이 찍혀 나옵니다 */
29
31
  price: {
30
32
  max: number;
@@ -367,8 +369,12 @@ export interface Admin_CarOption extends CarOption {
367
369
  price_changed: number | null;
368
370
  /** 관리자에서 가격 에디트한 시점 */
369
371
  price_changedAt: Date | null;
372
+ /** 관리자가 임의로 옵션-상세등급간 연결했는지 여부
373
+ * @notice true: 관리자 페이지에서 임의로 연결한 옵션, false: Nice데이터 기반
374
+ */
375
+ isConnectedManually: boolean;
370
376
  /** 관리자가 임의로 생성했는지 여부
371
- * @notice true: 관리자 페이지에서 생성, false: Nice데이터 기반
377
+ * @notice true: 관리자 페이지에서 생성한 옵션, false: Nice데이터 기반
372
378
  */
373
379
  isInsertedManually: boolean;
374
380
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89081",
3
+ "version": "1.1.89083",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",