@carsayo/types 1.1.89093 → 1.1.89095

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.
@@ -236,7 +236,7 @@ export declare const CarMakerData: readonly [{
236
236
  readonly name_en: "PORSCHE";
237
237
  readonly country: "독일";
238
238
  readonly type: "imported";
239
- readonly isSuperCar: true;
239
+ readonly isSuperCar: false;
240
240
  readonly image_url: "https://carsayo-public.s3.ap-northeast-2.amazonaws.com/resource/carsayo/maker/PORSCHE.png";
241
241
  }, {
242
242
  readonly id: 81;
package/dist/data/car.js CHANGED
@@ -279,7 +279,7 @@ exports.CarMakerData = [
279
279
  name_en: "PORSCHE",
280
280
  country: "독일",
281
281
  type: "imported",
282
- isSuperCar: true,
282
+ isSuperCar: false,
283
283
  image_url:
284
284
  // "https://zdata.nicednr.co.kr:8181/carLogoFile/20160929/57eca0f5b8fe9.png",
285
285
  "https://carsayo-public.s3.ap-northeast-2.amazonaws.com/resource/carsayo/maker/PORSCHE.png",
@@ -23,6 +23,8 @@ export interface CarModel {
23
23
  released_day: string;
24
24
  image_url: string;
25
25
  car_category: CarCategory | null;
26
+ /** 전기차 여부 */
27
+ isEletric: boolean;
26
28
  /** 숨김처리 여부 */
27
29
  isHidden: boolean;
28
30
  /** 사전예약 여부 */
@@ -56,6 +56,3 @@ export interface InsuranceCompany_Admin extends InsuranceCompany {
56
56
  created_at: Date;
57
57
  updated_at: Date;
58
58
  }
59
- export interface TestType {
60
- id: String;
61
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89093",
3
+ "version": "1.1.89095",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",