From eebd00a5dde32beee8b9778d84307c9a4e6b7ef8 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin Date: Tue, 14 Jul 2026 17:14:26 +0100 Subject: [PATCH] bot types --- bots/api/TYPES.md | 2 ++ packages/simplex-chat-client/types/typescript/src/types.ts | 2 ++ packages/simplex-chat-python/src/simplex_chat/types/_types.py | 2 ++ 3 files changed, 6 insertions(+) diff --git a/bots/api/TYPES.md b/bots/api/TYPES.md index 8fdc60145a..1113fe7393 100644 --- a/bots/api/TYPES.md +++ b/bots/api/TYPES.md @@ -2773,6 +2773,7 @@ Unknown: - displayName: string - fullName: string - shortDescr: string? +- description: string? - image: string? - contactLink: string? - preferences: [Preferences](#preferences)? @@ -3162,6 +3163,7 @@ count= - displayName: string - fullName: string - shortDescr: string? +- description: string? - image: string? - contactLink: string? - preferences: [Preferences](#preferences)? diff --git a/packages/simplex-chat-client/types/typescript/src/types.ts b/packages/simplex-chat-client/types/typescript/src/types.ts index 51392900ef..681698c7cd 100644 --- a/packages/simplex-chat-client/types/typescript/src/types.ts +++ b/packages/simplex-chat-client/types/typescript/src/types.ts @@ -3010,6 +3010,7 @@ export interface LocalProfile { displayName: string fullName: string shortDescr?: string + description?: string image?: string contactLink?: string preferences?: Preferences @@ -3412,6 +3413,7 @@ export interface Profile { displayName: string fullName: string shortDescr?: string + description?: string image?: string contactLink?: string preferences?: Preferences diff --git a/packages/simplex-chat-python/src/simplex_chat/types/_types.py b/packages/simplex-chat-python/src/simplex_chat/types/_types.py index 3783420928..22527927fe 100644 --- a/packages/simplex-chat-python/src/simplex_chat/types/_types.py +++ b/packages/simplex-chat-python/src/simplex_chat/types/_types.py @@ -2106,6 +2106,7 @@ class LocalProfile(TypedDict): displayName: str fullName: str shortDescr: NotRequired[str] + description: NotRequired[str] image: NotRequired[str] contactLink: NotRequired[str] preferences: NotRequired["Preferences"] @@ -2387,6 +2388,7 @@ class Profile(TypedDict): displayName: str fullName: str shortDescr: NotRequired[str] + description: NotRequired[str] image: NotRequired[str] contactLink: NotRequired[str] preferences: NotRequired["Preferences"]