1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-25 22:12:29 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2025-10-21 21:43:05 +03:00
parent 8f5694a5d3
commit cdef2d02ab
1692 changed files with 118757 additions and 12073 deletions

View File

@@ -34,7 +34,7 @@ Method at API documentation: [pinChatMessage](https://core.telegram.org/bots/api
```bsl title="1C:Enterprise/OneScript code example"
Token = "6129457865:AAFyzNYOAFbu...";
ChannelID = "@testsichee";
MessageID = "21812";
MessageID = "21896";
Result = OPI_Telegram.PinMessage(Token, ChannelID, MessageID);
```

View File

@@ -34,7 +34,7 @@ Method at API documentation: [unpinChatMessage](https://core.telegram.org/bots/a
```bsl title="1C:Enterprise/OneScript code example"
Token = "6129457865:AAFyzNYOAFbu...";
ChannelID = "@testsichee";
MessageID = "21812";
MessageID = "21896";
Result = OPI_Telegram.UnpinMessage(Token, ChannelID, MessageID);
```

View File

@@ -31,7 +31,7 @@ Method at API documentation: [getFile](https://core.telegram.org/bots/api#getfil
```bsl title="1C:Enterprise/OneScript code example"
FileID = "CQACAgIAAx0EcNsaZQACVT1o9AABRLFMAaxU1G__kcLOdtv8SOkAAt6JAAKkvqBL2P4-cf_eczk2BA";
FileID = "CQACAgIAAx0EcNsaZQACVZFo982DJhtsw2doEwAB39GHDgQaFCcAAimLAAIhaLhL_WkrfmsiKMI2BA";
Token = "6129457865:AAFyzNYOAFbu...";
Result = OPI_Telegram.DownloadFile(Token, FileID);

View File

@@ -34,7 +34,7 @@ Method at API documentation: [deleteMessage](https://core.telegram.org/bots/api#
```bsl title="1C:Enterprise/OneScript code example"
Token = "6129457865:AAFyzNYOAFbu...";
ChatID = "@testsichee";
MessageID = "21812";
MessageID = "21896";
Result = OPI_Telegram.DeleteMessage(Token, ChatID, MessageID);
```

View File

@@ -36,7 +36,7 @@ Method at API documentation: [forwardMessage](https://core.telegram.org/bots/api
Token = "6129457865:AAFyzNYOAFbu...";
ChatID = "461699897";
ChannelID = "@testsichee";
MessageID = "21812";
MessageID = "21896";
Result = OPI_Telegram.ForwardMessage(Token, MessageID, ChannelID, ChatID);
```

View File

@@ -36,7 +36,7 @@ Method at API documentation: [editMessageCaption](https://core.telegram.org/bots
```bsl title="1C:Enterprise/OneScript code example"
Token = "6129457865:AAFyzNYOAFbu...";
ChatID = "461699897";
MessageID = "17220";
MessageID = "17284";
Description = "New picture description";
Result = OPI_Telegram.ReplaceMessageCaption(Token, ChatID, MessageID, Description);

View File

@@ -35,7 +35,7 @@ Method at API documentation: [editMessageReplyMarkup](https://core.telegram.org/
```bsl title="1C:Enterprise/OneScript code example"
Token = "6129457865:AAFyzNYOAFbu...";
ChatID = "461699897";
MessageID = "17217";
MessageID = "17281";
ButtonArray = New Array;
ButtonArray.Add("New button 3");

View File

@@ -36,7 +36,7 @@ Method at API documentation: [editMessageText](https://core.telegram.org/bots/ap
```bsl title="1C:Enterprise/OneScript code example"
Token = "6129457865:AAFyzNYOAFbu...";
ChatID = "@testsichee";
MessageID = "21812";
MessageID = "21896";
Text = "New message text";
Result = OPI_Telegram.ReplaceMessageText(Token, ChatID, MessageID, Text);

View File

@@ -34,7 +34,7 @@ Method at API documentation: [unpinAllForumTopicMessages](https://core.telegram.
```bsl title="1C:Enterprise/OneScript code example"
Token = "6129457865:AAFyzNYOAFbu...";
Chat = "-1001971186208";
Topic = "12139";
Topic = "12183";
Result = OPI_Telegram.ClearTopicPinnedMessagesList(Token, Chat);
```

View File

@@ -34,7 +34,7 @@ Method at API documentation: [closeForumTopic](https://core.telegram.org/bots/ap
```bsl title="1C:Enterprise/OneScript code example"
Token = "6129457865:AAFyzNYOAFbu...";
Chat = "-1001971186208";
Topic = "12139";
Topic = "12183";
Result = OPI_Telegram.CloseForumTopic(Token, Chat); // Closes main topic

View File

@@ -34,7 +34,7 @@ Method at API documentation: [deleteForumTopic](https://core.telegram.org/bots/a
```bsl title="1C:Enterprise/OneScript code example"
Token = "6129457865:AAFyzNYOAFbu...";
Chat = "-1001971186208";
Topic = "12139";
Topic = "12183";
Result = OPI_Telegram.DeleteForumTopic(Token, Chat, Topic);
```

View File

@@ -36,7 +36,7 @@ Method at API documentation: [editForumTopic](https://core.telegram.org/bots/api
```bsl title="1C:Enterprise/OneScript code example"
Token = "6129457865:AAFyzNYOAFbu...";
Chat = "-1001971186208";
Topic = "12139";
Topic = "12183";
NewName = "NewTestTitle";
NewIcon = "5310132165583840589";

View File

@@ -34,7 +34,7 @@ Method at API documentation: [reopenForumTopic](https://core.telegram.org/bots/a
```bsl title="1C:Enterprise/OneScript code example"
Token = "6129457865:AAFyzNYOAFbu...";
Chat = "-1001971186208";
Topic = "12139";
Topic = "12183";
Result = OPI_Telegram.OpenForumTopic(Token, Chat); // Opens main topic