From c02953a10b5108a2f80a0e7925d6697cab6c6ec6 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin Date: Mon, 29 Jun 2026 17:18:05 +0100 Subject: [PATCH] update bot api 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 3ff684aaec..7a24344809 100644 --- a/bots/api/TYPES.md +++ b/bots/api/TYPES.md @@ -1814,6 +1814,7 @@ Ok: - type: "ok" - contactSLinkData_: [ContactShortLinkData](#contactshortlinkdata)? - ownerVerification: [OwnerVerification](#ownerverification)? +- verifiedName: [SimplexNameInfo](#simplexnameinfo)? OwnLink: - type: "ownLink" @@ -2410,6 +2411,7 @@ Ok: - groupSLinkInfo_: [GroupShortLinkInfo](#groupshortlinkinfo)? - groupSLinkData_: [GroupShortLinkData](#groupshortlinkdata)? - ownerVerification: [OwnerVerification](#ownerverification)? +- verifiedName: [SimplexNameInfo](#simplexnameinfo)? OwnLink: - type: "ownLink" diff --git a/packages/simplex-chat-client/types/typescript/src/types.ts b/packages/simplex-chat-client/types/typescript/src/types.ts index 0cca0d6741..7198cb4488 100644 --- a/packages/simplex-chat-client/types/typescript/src/types.ts +++ b/packages/simplex-chat-client/types/typescript/src/types.ts @@ -2070,6 +2070,7 @@ export namespace ContactAddressPlan { type: "ok" contactSLinkData_?: ContactShortLinkData ownerVerification?: OwnerVerification + verifiedName?: SimplexNameInfo } export interface OwnLink extends Interface { @@ -2701,6 +2702,7 @@ export namespace GroupLinkPlan { groupSLinkInfo_?: GroupShortLinkInfo groupSLinkData_?: GroupShortLinkData ownerVerification?: OwnerVerification + verifiedName?: SimplexNameInfo } export interface OwnLink extends Interface { 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 398a01eade..3d9e1e7448 100644 --- a/packages/simplex-chat-python/src/simplex_chat/types/_types.py +++ b/packages/simplex-chat-python/src/simplex_chat/types/_types.py @@ -1442,6 +1442,7 @@ class ContactAddressPlan_ok(TypedDict): type: Literal["ok"] contactSLinkData_: NotRequired["ContactShortLinkData"] ownerVerification: NotRequired["OwnerVerification"] + verifiedName: NotRequired["SimplexNameInfo"] class ContactAddressPlan_ownLink(TypedDict): type: Literal["ownLink"] @@ -1881,6 +1882,7 @@ class GroupLinkPlan_ok(TypedDict): groupSLinkInfo_: NotRequired["GroupShortLinkInfo"] groupSLinkData_: NotRequired["GroupShortLinkData"] ownerVerification: NotRequired["OwnerVerification"] + verifiedName: NotRequired["SimplexNameInfo"] class GroupLinkPlan_ownLink(TypedDict): type: Literal["ownLink"]