bot types

This commit is contained in:
Evgeny Poberezkin
2026-06-30 14:21:02 +01:00
parent 809e086416
commit 657f050305
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -3614,7 +3614,7 @@ A_QUEUE:
## SimplexNameClaim
**Record type**:
- name: [SimplexNameInfo](#simplexnameinfo)
- name: string
- proof: [NameClaimProof](#nameclaimproof)?
@@ -3984,7 +3984,7 @@ export enum SimplexLinkType {
}
export interface SimplexNameClaim {
name: SimplexNameInfo
name: string
proof?: NameClaimProof
}
@@ -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):