From 657f05030570fd54549b1bd261f392a11a6ebc0c Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin Date: Tue, 30 Jun 2026 14:21:02 +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, 3 insertions(+), 3 deletions(-) diff --git a/bots/api/TYPES.md b/bots/api/TYPES.md index 7a24344809..c37fceb50d 100644 --- a/bots/api/TYPES.md +++ b/bots/api/TYPES.md @@ -3614,7 +3614,7 @@ A_QUEUE: ## SimplexNameClaim **Record type**: -- name: [SimplexNameInfo](#simplexnameinfo) +- name: string - proof: [NameClaimProof](#nameclaimproof)? diff --git a/packages/simplex-chat-client/types/typescript/src/types.ts b/packages/simplex-chat-client/types/typescript/src/types.ts index 7198cb4488..b61562ea22 100644 --- a/packages/simplex-chat-client/types/typescript/src/types.ts +++ b/packages/simplex-chat-client/types/typescript/src/types.ts @@ -3984,7 +3984,7 @@ export enum SimplexLinkType { } export interface SimplexNameClaim { - name: SimplexNameInfo + name: string proof?: NameClaimProof } 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 3d9e1e7448..c11659a18c 100644 --- a/packages/simplex-chat-python/src/simplex_chat/types/_types.py +++ b/packages/simplex-chat-python/src/simplex_chat/types/_types.py @@ -2781,7 +2781,7 @@ class SimplePreference(TypedDict): SimplexLinkType = Literal["contact", "invitation", "group", "channel", "relay"] class SimplexNameClaim(TypedDict): - name: "SimplexNameInfo" + name: str proof: NotRequired["NameClaimProof"] class SimplexNameDomain(TypedDict):