@carsayo/types 1.1.8906 → 1.1.8907
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.
|
@@ -356,3 +356,27 @@ export interface CarModelOption {
|
|
|
356
356
|
price: number;
|
|
357
357
|
isDescription: boolean;
|
|
358
358
|
}
|
|
359
|
+
export interface Admin_CarOption extends CarOption {
|
|
360
|
+
/** 관리자에서 에디트한 제목 */
|
|
361
|
+
name_changed: string | null;
|
|
362
|
+
/** 관리자에서 에디트한 가격 */
|
|
363
|
+
price_changed: number | null;
|
|
364
|
+
/** 관리자에서 가격 에디트한 시점 */
|
|
365
|
+
price_changedAt: Date | null;
|
|
366
|
+
/** 관리자가 임의로 생성했는지 여부
|
|
367
|
+
* @notice true: 관리자 페이지에서 생성, false: Nice데이터 기반
|
|
368
|
+
*/
|
|
369
|
+
isInsertedManually: boolean;
|
|
370
|
+
}
|
|
371
|
+
export interface Admin_CarColor extends CarColor {
|
|
372
|
+
/** 관리자에서 에디트한 제목 */
|
|
373
|
+
name_changed: string | null;
|
|
374
|
+
/** 관리자에서 에디트한 가격 */
|
|
375
|
+
price_changed: number | null;
|
|
376
|
+
/** 관리자에서 가격 에디트한 시점 */
|
|
377
|
+
price_changedAt: Date | null;
|
|
378
|
+
/** 관리자가 임의로 생성했는지 여부
|
|
379
|
+
* @notice true: 관리자 페이지에서 생성, false: Nice데이터 기반
|
|
380
|
+
*/
|
|
381
|
+
isInsertedManually: boolean;
|
|
382
|
+
}
|