feat(api): Add Time Period Configuration

This commit is contained in:
web@ppanel
2024-12-29 22:10:43 +07:00
parent fec80f592d
commit 837157cc42
30 changed files with 466 additions and 80 deletions
+6
View File
@@ -373,6 +373,12 @@ declare namespace API {
updated_at: number;
};
type TimePeriod = {
start_time: string;
end_time: string;
multiplier: number;
};
type TosConfig = {
tos_content: string;
};
+6
View File
@@ -521,6 +521,12 @@ declare namespace API {
updated_at: number;
};
type TimePeriod = {
start_time: string;
end_time: string;
multiplier: number;
};
type TosConfig = {
tos_content: string;
};