1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

apis for change email and change password

This commit is contained in:
Kyle Spearrin
2018-06-21 14:28:49 -04:00
parent d98aeab0c8
commit 322dcf76ae
5 changed files with 88 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export class EmailRequest {
newEmail: string;
masterPasswordHash: string;
newMasterPasswordHash: string;
token: string;
key: string;
}

View File

@@ -0,0 +1,4 @@
export class EmailTokenRequest {
newEmail: string;
masterPasswordHash: string;
}

View File

@@ -0,0 +1,5 @@
export class PasswordRequest {
masterPasswordHash: string;
newMasterPasswordHash: string;
key: string;
}