@carsayo/types 1.1.892027 → 1.1.892028
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.
|
@@ -56,9 +56,30 @@ export interface SellMyCar_Admin_DealerSignupHistory {
|
|
|
56
56
|
};
|
|
57
57
|
/** 알림 발송 이력 */
|
|
58
58
|
history: {
|
|
59
|
-
type:
|
|
59
|
+
type: SellMyCar_Admin_DealerSignupHistoryType;
|
|
60
60
|
created_at: Date;
|
|
61
61
|
admin_name: string | null;
|
|
62
62
|
message: string | null;
|
|
63
63
|
}[];
|
|
64
64
|
}
|
|
65
|
+
export declare const SellMyCar_Admin_DealerSignupHistoryType: {
|
|
66
|
+
/** 승인 요청 */
|
|
67
|
+
readonly "signup-requested": "signup-requested";
|
|
68
|
+
/** 승인 완료 */
|
|
69
|
+
readonly "signup-approved": "signup-approved";
|
|
70
|
+
/** 승인 거절 */
|
|
71
|
+
readonly "signup-rejected": "signup-rejected";
|
|
72
|
+
/** 승인 재요청 */
|
|
73
|
+
readonly "re-signup-requested": "re-signup-requested";
|
|
74
|
+
/** 계정 정지 */
|
|
75
|
+
readonly banned: "banned";
|
|
76
|
+
/** 계정 정지 해제 */
|
|
77
|
+
readonly unbanned: "unbanned";
|
|
78
|
+
/** 탈퇴 신청 */
|
|
79
|
+
readonly signout_submitted: "signout-submitted";
|
|
80
|
+
/** 탈퇴 승인 */
|
|
81
|
+
readonly signout_accepted: "signout-accepted";
|
|
82
|
+
/** 탈퇴 거절 */
|
|
83
|
+
readonly signout_rejected: "signout-rejected";
|
|
84
|
+
};
|
|
85
|
+
export type SellMyCar_Admin_DealerSignupHistoryType = (typeof SellMyCar_Admin_DealerSignupHistoryType)[keyof typeof SellMyCar_Admin_DealerSignupHistoryType];
|
|
@@ -1,2 +1,23 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SellMyCar_Admin_DealerSignupHistoryType = void 0;
|
|
4
|
+
exports.SellMyCar_Admin_DealerSignupHistoryType = {
|
|
5
|
+
/** 승인 요청 */
|
|
6
|
+
"signup-requested": "signup-requested",
|
|
7
|
+
/** 승인 완료 */
|
|
8
|
+
"signup-approved": "signup-approved",
|
|
9
|
+
/** 승인 거절 */
|
|
10
|
+
"signup-rejected": "signup-rejected",
|
|
11
|
+
/** 승인 재요청 */
|
|
12
|
+
"re-signup-requested": "re-signup-requested",
|
|
13
|
+
/** 계정 정지 */
|
|
14
|
+
banned: "banned",
|
|
15
|
+
/** 계정 정지 해제 */
|
|
16
|
+
unbanned: "unbanned",
|
|
17
|
+
/** 탈퇴 신청 */
|
|
18
|
+
signout_submitted: "signout-submitted",
|
|
19
|
+
/** 탈퇴 승인 */
|
|
20
|
+
signout_accepted: "signout-accepted",
|
|
21
|
+
/** 탈퇴 거절 */
|
|
22
|
+
signout_rejected: "signout-rejected",
|
|
23
|
+
};
|