chore: auto-generate protobuf files [skip ci]

This commit is contained in:
github-actions[bot]
2026-04-03 18:28:49 +00:00
parent 7c7c165f97
commit 9e8b59c82a
2 changed files with 12 additions and 42 deletions

View File

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