@carsayo/types 1.1.89083 → 1.1.89085

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.
@@ -32,10 +32,6 @@ export interface CarModel {
32
32
  max: number;
33
33
  min: number;
34
34
  };
35
- attribute: {
36
- /** 사전예약 차량 데이터 여부 */
37
- isPreorder: boolean;
38
- };
39
35
  }
40
36
  /**
41
37
  * @description 차량 카테고리
@@ -385,8 +381,12 @@ export interface Admin_CarColor extends CarColor {
385
381
  price_changed: number | null;
386
382
  /** 관리자에서 가격 에디트한 시점 */
387
383
  price_changedAt: Date | null;
384
+ /** 관리자가 임의로 옵션-상세등급간 연결했는지 여부
385
+ * @notice true: 관리자 페이지에서 임의로 연결한 옵션, false: Nice데이터 기반
386
+ */
387
+ isConnectedManually: boolean;
388
388
  /** 관리자가 임의로 생성했는지 여부
389
- * @notice true: 관리자 페이지에서 생성, false: Nice데이터 기반
389
+ * @notice true: 관리자 페이지에서 생성한 옵션, false: Nice데이터 기반
390
390
  */
391
391
  isInsertedManually: boolean;
392
392
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89083",
3
+ "version": "1.1.89085",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",