feat(log): Add message log retrieval functionality and update related typings

This commit is contained in:
web@ppanel
2025-02-13 21:25:21 +07:00
parent 13c33378aa
commit 1c0ecaecbd
84 changed files with 928 additions and 534 deletions
+15
View File
@@ -193,6 +193,18 @@ declare namespace API {
token: string;
};
type MessageLog = {
id: number;
type: string;
platform: string;
to: string;
subject: string;
content: string;
status: number;
created_at: number;
updated_at: number;
};
type MobileAuthenticateConfig = {
enable: boolean;
limit: number;
@@ -300,6 +312,9 @@ declare namespace API {
type RegisterConfig = {
stop_register: boolean;
enable_trial: boolean;
trial_subscribe: number;
trial_time: number;
trial_time_unit: string;
enable_ip_register_limit: boolean;
ip_register_limit: number;
ip_register_limit_duration: number;