chore: auto-generate protobuf files [skip ci]

This commit is contained in:
github-actions[bot]
2026-04-17 15:41:09 +00:00
parent 6a361c5841
commit c8b1bb4f91
2 changed files with 52 additions and 7 deletions

View File

@@ -14,6 +14,10 @@ export const protobufPackage = "auth.v1";
export interface LoginRequest {
username: string;
password: string;
/** Уникальный идентификатор устройства клиента */
deviceId: string;
/** Публичный ключ устройства для шифрования сообщений */
publicKey: string;
}
export interface LoginResponse {
@@ -58,6 +62,7 @@ export interface VerifyTokenResponse {
permissions: string[];
sessionId?: string | undefined;
requiresPin?: boolean | undefined;
deviceId?: string | undefined;
}
export interface GetAccountRoleLevelRequest {
@@ -83,6 +88,7 @@ export interface SessionItem {
lastActivity: number;
/** Флаг текущей сессии */
isCurrent: boolean;
deviceId: string;
}
export interface GetSessionsResponse {