Files
aliasvault/shared/models/src/webapi/VaultPasswordChangeRequest.ts
2025-06-11 21:52:21 +02:00

12 lines
354 B
TypeScript

import { Vault } from "./Vault";
/**
* Represents a request to change the users password including a new vault that is encrypted with the new password.
*/
export type VaultPasswordChangeRequest = Vault & {
currentClientPublicEphemeral: string;
currentClientSessionProof: string;
newPasswordSalt: string;
newPasswordVerifier: string;
}