mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-08-28 00:44:27 +00:00
bot types
This commit is contained in:
@@ -2773,6 +2773,7 @@ Unknown:
|
|||||||
- displayName: string
|
- displayName: string
|
||||||
- fullName: string
|
- fullName: string
|
||||||
- shortDescr: string?
|
- shortDescr: string?
|
||||||
|
- description: string?
|
||||||
- image: string?
|
- image: string?
|
||||||
- contactLink: string?
|
- contactLink: string?
|
||||||
- preferences: [Preferences](#preferences)?
|
- preferences: [Preferences](#preferences)?
|
||||||
@@ -3162,6 +3163,7 @@ count=<count>
|
|||||||
- displayName: string
|
- displayName: string
|
||||||
- fullName: string
|
- fullName: string
|
||||||
- shortDescr: string?
|
- shortDescr: string?
|
||||||
|
- description: string?
|
||||||
- image: string?
|
- image: string?
|
||||||
- contactLink: string?
|
- contactLink: string?
|
||||||
- preferences: [Preferences](#preferences)?
|
- preferences: [Preferences](#preferences)?
|
||||||
|
|||||||
@@ -3010,6 +3010,7 @@ export interface LocalProfile {
|
|||||||
displayName: string
|
displayName: string
|
||||||
fullName: string
|
fullName: string
|
||||||
shortDescr?: string
|
shortDescr?: string
|
||||||
|
description?: string
|
||||||
image?: string
|
image?: string
|
||||||
contactLink?: string
|
contactLink?: string
|
||||||
preferences?: Preferences
|
preferences?: Preferences
|
||||||
@@ -3412,6 +3413,7 @@ export interface Profile {
|
|||||||
displayName: string
|
displayName: string
|
||||||
fullName: string
|
fullName: string
|
||||||
shortDescr?: string
|
shortDescr?: string
|
||||||
|
description?: string
|
||||||
image?: string
|
image?: string
|
||||||
contactLink?: string
|
contactLink?: string
|
||||||
preferences?: Preferences
|
preferences?: Preferences
|
||||||
|
|||||||
@@ -2106,6 +2106,7 @@ class LocalProfile(TypedDict):
|
|||||||
displayName: str
|
displayName: str
|
||||||
fullName: str
|
fullName: str
|
||||||
shortDescr: NotRequired[str]
|
shortDescr: NotRequired[str]
|
||||||
|
description: NotRequired[str]
|
||||||
image: NotRequired[str]
|
image: NotRequired[str]
|
||||||
contactLink: NotRequired[str]
|
contactLink: NotRequired[str]
|
||||||
preferences: NotRequired["Preferences"]
|
preferences: NotRequired["Preferences"]
|
||||||
@@ -2387,6 +2388,7 @@ class Profile(TypedDict):
|
|||||||
displayName: str
|
displayName: str
|
||||||
fullName: str
|
fullName: str
|
||||||
shortDescr: NotRequired[str]
|
shortDescr: NotRequired[str]
|
||||||
|
description: NotRequired[str]
|
||||||
image: NotRequired[str]
|
image: NotRequired[str]
|
||||||
contactLink: NotRequired[str]
|
contactLink: NotRequired[str]
|
||||||
preferences: NotRequired["Preferences"]
|
preferences: NotRequired["Preferences"]
|
||||||
|
|||||||
Reference in New Issue
Block a user