chore: auto-generate protobuf files [skip ci]

This commit is contained in:
github-actions[bot]
2026-04-03 16:21:55 +00:00
parent ceb5e914b2
commit 17dac7aad6
4 changed files with 45 additions and 25 deletions

View File

@@ -38,6 +38,7 @@ export interface GetAccountResponse {
export interface ChangePasswordRequest {
userId: string;
accessToken: string;
oldPassword: string;
newPassword: string;
code?: string | undefined;
@@ -50,6 +51,7 @@ export interface ChangePasswordResponse {
export interface SetPinRequest {
userId: string;
accessToken: string;
pin: string;
}
@@ -81,6 +83,7 @@ export interface GetPinStatusResponse {
export interface RemovePinRequest {
pin: string;
userId: string;
accessToken: string;
}
export interface RemovePinResponse {