@carsayo/types 1.1.891710 → 1.1.891712

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.
@@ -683,7 +683,7 @@ export declare const CarMakerData: readonly [{
683
683
  readonly name: "BYD(비야디)";
684
684
  readonly name_en: "BYD";
685
685
  readonly country: "중국";
686
- readonly type: "etc";
686
+ readonly type: "imported";
687
687
  readonly isSuperCar: false;
688
688
  readonly image_url: "";
689
689
  }, {
package/dist/data/car.js CHANGED
@@ -787,7 +787,7 @@ exports.CarMakerData = [
787
787
  name: "BYD(비야디)",
788
788
  name_en: "BYD",
789
789
  country: "중국",
790
- type: "etc",
790
+ type: "imported",
791
791
  isSuperCar: false,
792
792
  image_url: "",
793
793
  },
@@ -155,6 +155,8 @@ export interface ModifyCarOptionDTO {
155
155
  optionInfo: string | null;
156
156
  isHidden: boolean;
157
157
  isEssential: boolean;
158
+ /** 관리자용 추가정보 */
159
+ admin_additional_info?: CarAdminAdditionalInfo[];
158
160
  }
159
161
  export declare class ModifyCarColorDTO {
160
162
  id: number;
@@ -197,6 +199,8 @@ export declare class ModifyCarColorDTO {
197
199
  * @note 현재 내장색상에서만 정상동작합니다.
198
200
  */
199
201
  internalSelection: CarColorInternalSelection[] | null;
202
+ /** 관리자용 추가정보 */
203
+ admin_additional_info?: CarAdminAdditionalInfo[];
200
204
  }
201
205
  export interface ModifyCarOptionRelationDTO {
202
206
  /** 대상 옵션 Id */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891710",
3
+ "version": "1.1.891712",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",