@carsayo/types 1.1.78 → 1.1.79
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.
|
@@ -58,23 +58,6 @@ export interface CarCategoryOption {
|
|
|
58
58
|
*/
|
|
59
59
|
allow_new: boolean;
|
|
60
60
|
}
|
|
61
|
-
/**
|
|
62
|
-
* @description 차량 모델 리스트를 카테고리별로 정렬
|
|
63
|
-
*/
|
|
64
|
-
export interface CarModelOrderByCategory {
|
|
65
|
-
[key: number]: {
|
|
66
|
-
categoryName: string;
|
|
67
|
-
categoryOption: CarCategoryOption;
|
|
68
|
-
carModelList: {
|
|
69
|
-
id: number;
|
|
70
|
-
name: string;
|
|
71
|
-
name_brand: string;
|
|
72
|
-
name_short: string;
|
|
73
|
-
name_generation: string;
|
|
74
|
-
released_day: string;
|
|
75
|
-
}[];
|
|
76
|
-
};
|
|
77
|
-
}
|
|
78
61
|
/**
|
|
79
62
|
* @description 차량 상세모델
|
|
80
63
|
*/
|
|
@@ -317,3 +300,18 @@ export interface CarDataPreorderInfo {
|
|
|
317
300
|
/** 생성 일자 */
|
|
318
301
|
created_at: Date;
|
|
319
302
|
}
|
|
303
|
+
/** 브랜드별 판매 차량 데이터 */
|
|
304
|
+
export type WholeSellingCar = {
|
|
305
|
+
id: CarMakerId;
|
|
306
|
+
name: string;
|
|
307
|
+
country: string;
|
|
308
|
+
image_url: string;
|
|
309
|
+
type: CarMakerType;
|
|
310
|
+
/** 슈퍼카 브랜드 여부 */
|
|
311
|
+
isSuperCar: boolean;
|
|
312
|
+
car_model: (CarModel & {
|
|
313
|
+
car_trim: (CarTrim & {
|
|
314
|
+
car_grade: CarGrade[];
|
|
315
|
+
})[];
|
|
316
|
+
})[];
|
|
317
|
+
};
|
|
@@ -629,7 +629,7 @@ export interface SignoutMemberInfo {
|
|
|
629
629
|
phoneNumber: string | null;
|
|
630
630
|
description: string | null;
|
|
631
631
|
birth: string | null;
|
|
632
|
-
gender: MemberGender;
|
|
632
|
+
gender: MemberGender | null;
|
|
633
633
|
email: string | null;
|
|
634
634
|
isForeigner: boolean | null;
|
|
635
635
|
device: string | null;
|
|
@@ -638,6 +638,8 @@ export interface SignoutMemberInfo {
|
|
|
638
638
|
ip: string;
|
|
639
639
|
/** 회원탈퇴시점 */
|
|
640
640
|
signout_at: Date;
|
|
641
|
+
/** 재가입 가능 시점 */
|
|
642
|
+
rejoin_blocked_date: Date;
|
|
641
643
|
}
|
|
642
644
|
export interface MemberMemo {
|
|
643
645
|
memberId: string;
|
|
@@ -45,6 +45,7 @@ export type SearchMemberListInterval = keyof typeof SearchMemberListInterval;
|
|
|
45
45
|
export declare const SearchMemberSort: {
|
|
46
46
|
readonly created_at: "created_at";
|
|
47
47
|
readonly banned_at: "banned_at";
|
|
48
|
+
readonly deleted_at: "deleted_at";
|
|
48
49
|
};
|
|
49
50
|
export type SearchMemberSort = keyof typeof SearchMemberSort;
|
|
50
51
|
export declare const SearchMemberMode: {
|