feat(api): add update password

This commit is contained in:
2025-06-27 13:31:32 +05:00
parent 1eadd834e3
commit ad0a4837fc
4 changed files with 26 additions and 4 deletions

View File

@@ -280,6 +280,8 @@ export interface components {
login?: string | null;
/** Email */
email?: string | null;
/** Password */
password?: string | null;
/** Bindtenantid */
bindTenantId?: string | null;
role?: components["schemas"]["AccountRole"] | null;
@@ -534,7 +536,7 @@ export interface operations {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["User"];
"application/json": components["schemas"]["UserUpdate"];
};
};
/** @description Validation Error */