feat(profile): sign-in methods matrix — email add/change, provider link/unlink

Profile shows the account's sign-in methods for guests and durable accounts alike:
add or change email, link Telegram on the web (login widget), and unlink a linked
provider. Email is never unlinked (it is changed); unlink is offered only when
another identity remains, and a change to an address owned by another account shows
the non-disclosing 'check the address or contact support'. Add-VK-on-web stays
deferred (no VK OAuth).

Wires linkUnlink / changeEmailRequest / changeEmailConfirm through the client,
transport, mock and codec (encodeLinkUnlink + LinkResult 'unlinked'/'changed'
statuses); codec wire tests; ru/en i18n.
This commit is contained in:
Ilia Denisov
2026-07-03 09:57:05 +02:00
parent b918217497
commit e4fc7f033d
9 changed files with 269 additions and 24 deletions
+8
View File
@@ -731,6 +731,14 @@ export function encodeLinkTelegram(data: string): Uint8Array {
return finish(b, fb.LinkTelegramRequest.endLinkTelegramRequest(b));
}
export function encodeLinkUnlink(kind: string): Uint8Array {
const b = new Builder(64);
const k = b.createString(kind);
fb.LinkUnlinkRequest.startLinkUnlinkRequest(b);
fb.LinkUnlinkRequest.addKind(b, k);
return finish(b, fb.LinkUnlinkRequest.endLinkUnlinkRequest(b));
}
export function decodeLinkResult(buf: Uint8Array): LinkResult {
const r = fb.LinkResult.getRootAsLinkResult(new ByteBuffer(buf));
const sess = r.session();