core: add optional profile description (#7256)

* core: add optional profile description

* bot types

* kotlin ui

* query plans

* postgres schema

* fix ui

* fix UI

* refactor

* description in business chats

* share address

* sign address card when shared by owner

* from owner string

* remove unused string

* refactor

* fix

* ProfileDescriptionText

* refactor modals

* ios ui

* nix config

* correction

Co-authored-by: simplex-chat-agent[bot] <287173099+simplex-chat-agent[bot]@users.noreply.github.com>

---------

Co-authored-by: Evgeny @ SimpleX Chat <259188159+evgeny-simplex@users.noreply.github.com>
Co-authored-by: simplex-chat-agent[bot] <287173099+simplex-chat-agent[bot]@users.noreply.github.com>
This commit is contained in:
Evgeny
2026-07-15 17:54:21 +01:00
committed by GitHub
co-authored by Evgeny @ SimpleX Chat <259188159+evgeny-simplex@users.noreply.github.com> simplex-chat-agent[bot] <287173099+simplex-chat-agent[bot]@users.noreply.github.com>
parent 0fef34914d
commit 6375457685
66 changed files with 1407 additions and 285 deletions
@@ -2107,6 +2107,7 @@ class LocalProfile(TypedDict):
displayName: str
fullName: str
shortDescr: NotRequired[str]
description: NotRequired[str]
image: NotRequired[str]
contactLink: NotRequired[str]
preferences: NotRequired["Preferences"]
@@ -2388,6 +2389,7 @@ class Profile(TypedDict):
displayName: str
fullName: str
shortDescr: NotRequired[str]
description: NotRequired[str]
image: NotRequired[str]
contactLink: NotRequired[str]
preferences: NotRequired["Preferences"]