chore: auto-generate protobuf files [skip ci]

This commit is contained in:
github-actions[bot]
2026-04-02 10:34:18 +00:00
parent 76ded73e40
commit ae192553a0
2 changed files with 45 additions and 28 deletions

View File

@@ -49,12 +49,13 @@ export interface VerifyTokenRequest {
export interface VerifyTokenResponse {
isValid: boolean;
errorMessage: string;
id: string;
username: string;
roleLevel: number;
errorMessage?: string | undefined;
id?: string | undefined;
username?: string | undefined;
roleLevel?: number | undefined;
permissions: string[];
sessionId: string;
sessionId?: string | undefined;
requiresPin?: boolean | undefined;
}
export interface GetAccountRoleLevelRequest {