@carsayo/types 1.1.892026 → 1.1.892027
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.
|
@@ -121,3 +121,18 @@ export interface ReqUpdateSellMyCarDealerProfile {
|
|
|
121
121
|
*/
|
|
122
122
|
bgImageFileId: string | null | undefined;
|
|
123
123
|
}
|
|
124
|
+
/** 관리자 > 딜러 파일 업데이트 DTO */
|
|
125
|
+
export interface ReqUpdateSellMyCarDealerFile {
|
|
126
|
+
/** 딜러 Id */
|
|
127
|
+
memberId: string;
|
|
128
|
+
/** 사업자 등록증 파일 Id */
|
|
129
|
+
sell_car_business_certificate_id: string | null;
|
|
130
|
+
/** 사원증 파일 Id */
|
|
131
|
+
sell_car_employee_card_id: string | null;
|
|
132
|
+
/** 내차팔기 신분증 Id */
|
|
133
|
+
sell_car_id_card_id: string | null;
|
|
134
|
+
/** 내차팔기 명함 파일 Id */
|
|
135
|
+
sell_car_name_card_id: string | null;
|
|
136
|
+
/** 무역업 고유번호 파일 Id */
|
|
137
|
+
sell_car_trade_business_reg_file_id: string | null;
|
|
138
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FileInfo } from "../file";
|
|
1
2
|
import { CurrentDealerPenaltyType } from "./type";
|
|
2
3
|
/** 관리자 > 경고 조회 데이터 */
|
|
3
4
|
export interface SellMyCar_Admin_DealerPenalty {
|
|
@@ -34,3 +35,30 @@ export interface SellMyCar_Admin_DealerPenalty {
|
|
|
34
35
|
/** 수정일시 */
|
|
35
36
|
updated_at: Date;
|
|
36
37
|
}
|
|
38
|
+
export interface SellMyCar_Admin_DealerSignupHistory {
|
|
39
|
+
/** 딜러 정보 */
|
|
40
|
+
dealerInfo: {
|
|
41
|
+
id: string;
|
|
42
|
+
/** 사업자 등록번호 */
|
|
43
|
+
business_reg_no: string | null;
|
|
44
|
+
/** 무역업 고유번호 */
|
|
45
|
+
sell_car_trade_business_reg_no: string | null;
|
|
46
|
+
/** 사업자 등록증 파일 */
|
|
47
|
+
file_member_dealer_sell_car_business_certificate_idTofile: FileInfo | null;
|
|
48
|
+
/** 사원증 파일 */
|
|
49
|
+
file_member_dealer_sell_car_employee_card_idTofile: FileInfo | null;
|
|
50
|
+
/** 내차팔기 신분증 */
|
|
51
|
+
file_member_dealer_sell_car_id_card_idTofile: FileInfo | null;
|
|
52
|
+
/** 내차팔기 명함 파일 */
|
|
53
|
+
file_member_dealer_sell_car_name_card_idTofile: FileInfo | null;
|
|
54
|
+
/** 무역업 고유번호 파일 */
|
|
55
|
+
file_member_dealer_sell_car_trade_business_reg_file_idTofile: FileInfo | null;
|
|
56
|
+
};
|
|
57
|
+
/** 알림 발송 이력 */
|
|
58
|
+
history: {
|
|
59
|
+
type: "submitted" | "accepted" | "rejected" | "re-submitted";
|
|
60
|
+
created_at: Date;
|
|
61
|
+
admin_name: string | null;
|
|
62
|
+
message: string | null;
|
|
63
|
+
}[];
|
|
64
|
+
}
|