@carsayo/types 1.1.7 → 1.1.72

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.
@@ -28,6 +28,10 @@ export interface CarModel {
28
28
  max: number;
29
29
  min: number;
30
30
  };
31
+ attribute: {
32
+ /** 사전예약 차량 데이터 여부 */
33
+ isPreorder: boolean;
34
+ };
31
35
  }
32
36
  /**
33
37
  * @description 차량 카테고리
@@ -33,6 +33,10 @@ export interface TermInfo {
33
33
  version: number;
34
34
  created_at: Date;
35
35
  }
36
+ export interface TermDetail extends TermInfo {
37
+ content_html: string | null;
38
+ term_categoryId: TermCategoryId;
39
+ }
36
40
  export interface TermCategoryDetailInfo {
37
41
  id: TermCategoryId;
38
42
  title: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.7",
3
+ "version": "1.1.72",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",