@carsayo/types 1.1.892117 → 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;
@@ -528,6 +528,10 @@ export interface DealerOrderDetail extends OrderDetail {
528
528
  export interface AdminOrderDetail extends OrderDetail {
529
529
  /** 주문자 */
530
530
  member: MemberShort | null;
531
+ /** 주문자명 */
532
+ name: string;
533
+ /** 주문자 연락처 */
534
+ phoneNumber: string;
531
535
  /** 낙찰되었을 경우 담당 카매니저 */
532
536
  manager: DealerShort | null;
533
537
  /** 해당 주문에 입찰한 카매니저 수 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892117",
3
+ "version": "1.1.892119",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",