@carsayo/types 1.1.8901 → 1.1.8903

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.
@@ -221,4 +221,8 @@ export interface CreateCarGradeDTO {
221
221
  /** YYYYMM 형식의 출시년월 */
222
222
  released_month: string;
223
223
  }
224
+ export interface DeleteCarDataDTO {
225
+ id: number;
226
+ key: "model" | "trim" | "grade";
227
+ }
224
228
  export {};
@@ -320,11 +320,19 @@ export type Admin_WholeSellingCar = Omit<WholeSellingCar, "car_model"> & {
320
320
  name_changed: string | null;
321
321
  /** 관리자에서 에디트한 순서 */
322
322
  sort_order: number;
323
+ /** 관리자가 임의로 생성했는지 여부
324
+ * @notice true: 관리자 페이지에서 생성, false: Nice데이터 기반
325
+ */
326
+ isInsertedManually: boolean;
323
327
  car_trim: (CarTrim & {
324
328
  /** 관리자에서 에디트한 제목 */
325
329
  name_changed: string | null;
326
330
  /** 관리자에서 에디트한 순서 */
327
331
  sort_order: number;
332
+ /** 관리자가 임의로 생성했는지 여부
333
+ * @notice true: 관리자 페이지에서 생성, false: Nice데이터 기반
334
+ */
335
+ isInsertedManually: boolean;
328
336
  car_grade: (CarGrade & {
329
337
  /** 관리자에서 에디트한 제목 */
330
338
  name_changed: string | null;
@@ -334,6 +342,10 @@ export type Admin_WholeSellingCar = Omit<WholeSellingCar, "car_model"> & {
334
342
  price_changed: number | null;
335
343
  /** 관리자에서 가격 에디트한 시점 */
336
344
  price_changedAt: Date | null;
345
+ /** 관리자가 임의로 생성했는지 여부
346
+ * @notice true: 관리자 페이지에서 생성, false: Nice데이터 기반
347
+ */
348
+ isInsertedManually: boolean;
337
349
  })[];
338
350
  })[];
339
351
  })[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.8901",
3
+ "version": "1.1.8903",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",