Add support for statistics routes

This commit is contained in:
2025-05-02 08:56:51 +02:00
parent 7c0d758839
commit 16ef1147fe
9 changed files with 33 additions and 2 deletions

View File

@ -14,6 +14,7 @@ export interface Token {
right_inbox: boolean;
right_file: boolean;
right_auth: boolean;
right_stats: boolean;
}
export interface TokenWithSecret extends Token {
@ -30,6 +31,7 @@ export interface NewToken {
right_inbox: boolean;
right_file: boolean;
right_auth: boolean;
right_stats: boolean;
}
export class TokensApi {