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):