@carsayo/types 1.1.892118 → 1.1.892119

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.
@@ -87,6 +87,7 @@ export interface ModifyCarModelDTO {
87
87
  isElectric: boolean;
88
88
  /** 즉시출고 가능여부 */
89
89
  isFastDelivery?: boolean;
90
+ fastDeliveryRentMonthlyPayment?: number;
90
91
  /** 카테고리 */
91
92
  car_category?: CarCategoryId;
92
93
  /** 신규 모델 기간 */
@@ -35,6 +35,8 @@ export interface CarModel {
35
35
  newCarPeriod: Date | null;
36
36
  /** 빠른출고 가능여부 */
37
37
  isFastDelivery: boolean;
38
+ /** 빠른출고 월 렌트비용 */
39
+ fastDeliveryRentMonthlyPayment: number;
38
40
  /** 가격 정보가 없을 경우 min, max 둘 다 0이 찍혀 나옵니다 */
39
41
  price: {
40
42
  max: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892118",
3
+ "version": "1.1.892119",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",