From c2c4c76812315d76f59966aea690e06820f2adc1 Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Fri, 3 Jul 2026 16:40:55 +0400 Subject: [PATCH] wip --- bots/api/COMMANDS.md | 1 + packages/simplex-chat-client/types/typescript/src/commands.ts | 1 + packages/simplex-chat-python/src/simplex_chat/types/_commands.py | 1 + 3 files changed, 3 insertions(+) diff --git a/bots/api/COMMANDS.md b/bots/api/COMMANDS.md index 8dc57dbfc7..a8bd7d108e 100644 --- a/bots/api/COMMANDS.md +++ b/bots/api/COMMANDS.md @@ -283,6 +283,7 @@ Send messages. - sendRef: [ChatRef](./TYPES.md#chatref) - liveMessage: bool - ttl: int? +- signMessages: bool - composedMessages: [[ComposedMessage](./TYPES.md#composedmessage)] **Syntax**: diff --git a/packages/simplex-chat-client/types/typescript/src/commands.ts b/packages/simplex-chat-client/types/typescript/src/commands.ts index 606b09845d..05d9f76364 100644 --- a/packages/simplex-chat-client/types/typescript/src/commands.ts +++ b/packages/simplex-chat-client/types/typescript/src/commands.ts @@ -89,6 +89,7 @@ export interface APISendMessages { sendRef: T.ChatRef liveMessage: boolean ttl?: number // int + signMessages: boolean composedMessages: T.ComposedMessage[] // non-empty } diff --git a/packages/simplex-chat-python/src/simplex_chat/types/_commands.py b/packages/simplex-chat-python/src/simplex_chat/types/_commands.py index 90f9801b42..301388ed9f 100644 --- a/packages/simplex-chat-python/src/simplex_chat/types/_commands.py +++ b/packages/simplex-chat-python/src/simplex_chat/types/_commands.py @@ -80,6 +80,7 @@ class APISendMessages(TypedDict): sendRef: "T.ChatRef" liveMessage: bool ttl: NotRequired[int] # int + signMessages: bool composedMessages: list["T.ComposedMessage"] # non-empty