chore: auto-generate protobuf files [skip ci]

This commit is contained in:
github-actions[bot]
2026-04-03 20:15:06 +00:00
parent 089e8e305d
commit b67faaeb7e
2 changed files with 67 additions and 12 deletions

View File

@@ -41,6 +41,7 @@ export interface ChangePasswordRequest {
oldPassword: string;
newPassword: string;
code?: string | undefined;
sessionId: string;
}
export interface ChangePasswordResponse {
@@ -50,6 +51,7 @@ export interface ChangePasswordResponse {
export interface SetPinRequest {
userId: string;
sessionId: string;
pin: string;
}
@@ -60,6 +62,7 @@ export interface SetPinResponse {
export interface UnlockPinRequest {
userId: string;
sessionId: string;
pin: string;
}
@@ -70,6 +73,7 @@ export interface UnlockPinResponse {
export interface GetPinStatusRequest {
userId: string;
sessionId: string;
}
export interface GetPinStatusResponse {
@@ -81,6 +85,7 @@ export interface GetPinStatusResponse {
export interface RemovePinRequest {
pin: string;
userId: string;
sessionId: string;
}
export interface RemovePinResponse {