@carsayo/types 1.1.892115 → 1.1.892117

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.
@@ -85,6 +85,8 @@ export interface ModifyCarModelDTO {
85
85
  isPreorder: boolean;
86
86
  /** 전기차 모델 여부 */
87
87
  isElectric: boolean;
88
+ /** 즉시출고 가능여부 */
89
+ isFastDelivery?: boolean;
88
90
  /** 카테고리 */
89
91
  car_category?: CarCategoryId;
90
92
  /** 신규 모델 기간 */
@@ -413,6 +413,10 @@ export interface DealerOrderListData extends OrderListData {
413
413
  export interface AdminOrderListData extends OrderListData {
414
414
  /** 주문자 */
415
415
  member: MemberShort | null;
416
+ /** 주문자명 */
417
+ name: string;
418
+ /** 주문자 연락처 */
419
+ phoneNumber: string;
416
420
  /** 담당 카매니저 */
417
421
  manager: DealerShort | null;
418
422
  /** 담당 카매니저가 작성한 메모 존재 여부 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892115",
3
+ "version": "1.1.892117",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",