1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-22 10:05:29 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2024-10-22 00:14:15 +03:00
parent 1304209e5c
commit 115f4e7594
1445 changed files with 9563 additions and 9259 deletions
@@ -56,7 +56,7 @@ Parameters with Binary data type can also accept file paths on disk and URLs
oint vkteams ChangeChatPicture \
--token "***" \
--chatid "AoLI0egLWBSLR1Ngn2w" \
--file "C:\Users\Administrator\AppData\Local\Temp\hyvftzc3lyg.png"
--file "C:\Users\Administrator\AppData\Local\Temp\u4dkrsv05sa.png"
```
</TabItem>
@@ -65,7 +65,7 @@ Parameters with Binary data type can also accept file paths on disk and URLs
oint vkteams ChangeChatPicture ^
--token "***" ^
--chatid "AoLI0egLWBSLR1Ngn2w" ^
--file "C:\Users\Administrator\AppData\Local\Temp\hyvftzc3lyg.png"
--file "C:\Users\Administrator\AppData\Local\Temp\u4dkrsv05sa.png"
```
</TabItem>
</Tabs>
@@ -57,7 +57,7 @@ Method at API documentation: [GET /events/get](https://teams.vk.com/botapi/#/eve
```bash
oint vkteams GetEvents \
--token "***" \
--last 166 \
--last 172 \
--timeout 3
```
</TabItem>
@@ -66,7 +66,7 @@ Method at API documentation: [GET /events/get](https://teams.vk.com/botapi/#/eve
```batch
oint vkteams GetEvents ^
--token "***" ^
--last 166 ^
--last 172 ^
--timeout 3
```
</TabItem>
@@ -30,7 +30,7 @@ Method at API documentation: [GET /files/getInfo](https://teams.vk.com/botapi/#/
```bsl title="1C:Enterprise/OneScript code example"
Token = "001.3501506236.091...";
FileID = "wQAVbfKXdwaIzveU7cBLlL6713f7541bd";
FileID = "hGdf9rm9OIWXNADXdUA4by6716b5e41bd";
Result = OPI_VKTeams.GetFileInformation(Token, FileID);
```
@@ -42,7 +42,7 @@ Method at API documentation: [GET /files/getInfo](https://teams.vk.com/botapi/#/
```bash
oint vkteams GetFileInformation \
--token "***" \
--fileid "WCM2vrPYYZJZ0B43V2eKiu67165fb11bd"
--fileid "PZqeWDgllG71xshN3vjClD6716c10e1bd"
```
</TabItem>
@@ -50,7 +50,7 @@ Method at API documentation: [GET /files/getInfo](https://teams.vk.com/botapi/#/
```batch
oint vkteams GetFileInformation ^
--token "***" ^
--fileid "WCM2vrPYYZJZ0B43V2eKiu67165fb11bd"
--fileid "PZqeWDgllG71xshN3vjClD6716c10e1bd"
```
</TabItem>
</Tabs>
@@ -32,7 +32,7 @@ Method at API documentation: [GET /messages/deleteMessages](https://teams.vk.com
```bsl title="1C:Enterprise/OneScript code example"
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
MessageID = "7427552004584508943";
MessageID = "7428324441567793059";
Result = OPI_VKTeams.DeleteMessage(Token, ChatID, MessageID);
```
@@ -45,7 +45,7 @@ Method at API documentation: [GET /messages/deleteMessages](https://teams.vk.com
oint vkteams DeleteMessage \
--token "***" \
--chatid "689203963@chat.agent" \
--messageid "7428229703179177738"
--messageid "7428336750944063426"
```
</TabItem>
@@ -54,7 +54,7 @@ Method at API documentation: [GET /messages/deleteMessages](https://teams.vk.com
oint vkteams DeleteMessage ^
--token "***" ^
--chatid "689203963@chat.agent" ^
--messageid "7428229703179177738"
--messageid "7428336750944063426"
```
</TabItem>
</Tabs>
@@ -36,7 +36,7 @@ You can mention a user by appending their userId to the text in the following fo
```bsl title="1C:Enterprise/OneScript code example"
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
MessageID = "7427552004584508943";
MessageID = "7428324441567793059";
Text = "New message text";
Result = OPI_VKTeams.EditMessageText(Token, ChatID, MessageID, Text);
@@ -55,7 +55,7 @@ You can mention a user by appending their userId to the text in the following fo
oint vkteams EditMessageText \
--token "***" \
--chatid "689203963@chat.agent" \
--messageid "7428229703179177738" \
--messageid "7428336750944063426" \
--text "<b>New bold message text</b>" \
--parsemod "HTML"
```
@@ -66,7 +66,7 @@ You can mention a user by appending their userId to the text in the following fo
oint vkteams EditMessageText ^
--token "***" ^
--chatid "689203963@chat.agent" ^
--messageid "7428229703179177738" ^
--messageid "7428336750944063426" ^
--text "<b>New bold message text</b>" ^
--parsemod "HTML"
```
@@ -37,7 +37,7 @@ Only the chatId from events can be passed to the FromChatID (the code from the c
Token = "001.3501506236.091...";
ChatID = "AoLI0egLWBSLR1Ngn2w";
FromChatID = "689203963@chat.agent";
MessageID = "7427552004584508943";
MessageID = "7428324441567793059";
Result = OPI_VKTeams.ForwardMessage(Token, MessageID, FromChatID, ChatID);
@@ -53,7 +53,7 @@ Only the chatId from events can be passed to the FromChatID (the code from the c
```bash
oint vkteams ForwardMessage \
--token "***" \
--messageid "7428229703179177738" \
--messageid "7428336750944063426" \
--fromid "689203963@chat.agent" \
--chatid "AoLI0egLWBSLR1Ngn2w" \
--text "Additional text"
@@ -64,7 +64,7 @@ Only the chatId from events can be passed to the FromChatID (the code from the c
```batch
oint vkteams ForwardMessage ^
--token "***" ^
--messageid "7428229703179177738" ^
--messageid "7428336750944063426" ^
--fromid "689203963@chat.agent" ^
--chatid "AoLI0egLWBSLR1Ngn2w" ^
--text "Additional text"
@@ -34,7 +34,7 @@ To call this method, the bot must be an administrator in the chat room
```bsl title="1C:Enterprise/OneScript code example"
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
MessageID = "7427552004584508943";
MessageID = "7428324441567793059";
Result = OPI_VKTeams.PinMessage(Token, ChatID, MessageID);
```
@@ -47,7 +47,7 @@ To call this method, the bot must be an administrator in the chat room
oint vkteams PinMessage \
--token "***" \
--chatid "689203963@chat.agent" \
--messageid "7428229703179177738"
--messageid "7428336750944063426"
```
</TabItem>
@@ -56,7 +56,7 @@ To call this method, the bot must be an administrator in the chat room
oint vkteams PinMessage ^
--token "***" ^
--chatid "689203963@chat.agent" ^
--messageid "7428229703179177738"
--messageid "7428336750944063426"
```
</TabItem>
</Tabs>
@@ -34,7 +34,7 @@ Method at API documentation: [GET /messages/sendFile](https://teams.vk.com/botap
```bsl title="1C:Enterprise/OneScript code example"
Token = "001.3501506236.091...";
ChatID = "AoLI0egLWBSLR1Ngn2w";
FileID = "wQAVbfKXdwaIzveU7cBLlL6713f7541bd";
FileID = "hGdf9rm9OIWXNADXdUA4by6716b5e41bd";
Text = "File caption";
Result = OPI_VKTeams.ResendFile(Token, ChatID, FileID, Text);
@@ -48,7 +48,7 @@ Method at API documentation: [GET /messages/sendFile](https://teams.vk.com/botap
oint vkteams ResendFile \
--token "***" \
--chatid "AoLI0egLWBSLR1Ngn2w" \
--fileid "WCM2vrPYYZJZ0B43V2eKiu67165fb11bd" \
--fileid "PZqeWDgllG71xshN3vjClD6716c10e1bd" \
--text "File caption"
```
</TabItem>
@@ -58,7 +58,7 @@ Method at API documentation: [GET /messages/sendFile](https://teams.vk.com/botap
oint vkteams ResendFile ^
--token "***" ^
--chatid "AoLI0egLWBSLR1Ngn2w" ^
--fileid "WCM2vrPYYZJZ0B43V2eKiu67165fb11bd" ^
--fileid "PZqeWDgllG71xshN3vjClD6716c10e1bd" ^
--text "File caption"
```
</TabItem>
@@ -32,7 +32,7 @@ Method at API documentation: [GET /messages/sendVoice](https://teams.vk.com/bota
```bsl title="1C:Enterprise/OneScript code example"
Token = "001.3501506236.091...";
ChatID = "AoLI0egLWBSLR1Ngn2w";
FileID = "I000b4tVA3DQR3aAiuXcGI6713f76e1bd";
FileID = "I000bVVnmK9NpQFMf78r9N6716b5f71bd";
Result = OPI_VKTeams.ResendVoice(Token, ChatID, FileID);
```
@@ -45,7 +45,7 @@ Method at API documentation: [GET /messages/sendVoice](https://teams.vk.com/bota
oint vkteams ResendVoice \
--token "***" \
--chatid "AoLI0egLWBSLR1Ngn2w" \
--fileid "I000bI9gFA8bvo7YLGLkZt67165fce1bd"
--fileid "I000bEjzN2G0RQqXMyyUJB6716c12b1bd"
```
</TabItem>
@@ -54,7 +54,7 @@ Method at API documentation: [GET /messages/sendVoice](https://teams.vk.com/bota
oint vkteams ResendVoice ^
--token "***" ^
--chatid "AoLI0egLWBSLR1Ngn2w" ^
--fileid "I000bI9gFA8bvo7YLGLkZt67165fce1bd"
--fileid "I000bEjzN2G0RQqXMyyUJB6716c12b1bd"
```
</TabItem>
</Tabs>
@@ -60,7 +60,7 @@ Parameters with Binary data type can also accept file paths on disk and URLs
oint vkteams SendFile \
--token "***" \
--chatid "AoLI0egLWBSLR1Ngn2w" \
--file "C:\Users\Administrator\AppData\Local\Temp\raty03vnses.tmp" \
--file "C:\Users\Administrator\AppData\Local\Temp\gzkcky4veub.tmp" \
--text "File caption" \
--filename "ImportantDocument.docx"
```
@@ -71,7 +71,7 @@ Parameters with Binary data type can also accept file paths on disk and URLs
oint vkteams SendFile ^
--token "***" ^
--chatid "AoLI0egLWBSLR1Ngn2w" ^
--file "C:\Users\Administrator\AppData\Local\Temp\raty03vnses.tmp" ^
--file "C:\Users\Administrator\AppData\Local\Temp\gzkcky4veub.tmp" ^
--text "File caption" ^
--filename "ImportantDocument.docx"
```
@@ -42,7 +42,7 @@ You can mention a user by appending their userId to the text in the following fo
Result = OPI_VKTeams.SendTextMessage(Token, ChatID, Text);
ChatID = "689203963@chat.agent";
ReplyID = "7427552004584508943";
ReplyID = "7428324441567793059";
Text = "<b>Bold text</b>";
Markup = "HTML";
@@ -68,7 +68,7 @@ You can mention a user by appending their userId to the text in the following fo
--token "***" \
--chatid "689203963@chat.agent" \
--text "<b>Bold text</b>" \
--reply "7428158488326442742" \
--reply "7428321280471863142" \
--keyboard "[[{'text':'Button1','callbackData':'ButtonEvent1','style':'attention'},{'text':'Button2','url':'https://openintegrations.dev','style':'base'}],[{'text':'Button1','callbackData':'ButtonEvent1','style':'attention'},{'text':'Button2','url':'https://openintegrations.dev','style':'base'}]]" \
--parsemod "HTML"
```
@@ -80,7 +80,7 @@ You can mention a user by appending their userId to the text in the following fo
--token "***" ^
--chatid "689203963@chat.agent" ^
--text "<b>Bold text</b>" ^
--reply "7428158488326442742" ^
--reply "7428321280471863142" ^
--keyboard "[[{'text':'Button1','callbackData':'ButtonEvent1','style':'attention'},{'text':'Button2','url':'https://openintegrations.dev','style':'base'}],[{'text':'Button1','callbackData':'ButtonEvent1','style':'attention'},{'text':'Button2','url':'https://openintegrations.dev','style':'base'}]]" ^
--parsemod "HTML"
```
@@ -38,7 +38,7 @@ Parameters with Binary data type can also accept file paths on disk and URLs
```bsl title="1C:Enterprise/OneScript code example"
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
ReplyID = "7427552004584508943";
ReplyID = "7428324441567793059";
File = "https://api.athenaeum.digital/test_data/song.m4a" ; // URL
FilePath = GetTempFileName("m4a"); // Path
@@ -62,8 +62,8 @@ Parameters with Binary data type can also accept file paths on disk and URLs
oint vkteams SendVoice \
--token "***" \
--chatid "689203963@chat.agent" \
--file "C:\Users\Administrator\AppData\Local\Temp\jeukjhjfyjk.m4a" \
--reply "7428229703179177738"
--file "C:\Users\Administrator\AppData\Local\Temp\ghc0tdnxaev.m4a" \
--reply "7428336750944063426"
```
</TabItem>
@@ -72,8 +72,8 @@ Parameters with Binary data type can also accept file paths on disk and URLs
oint vkteams SendVoice ^
--token "***" ^
--chatid "689203963@chat.agent" ^
--file "C:\Users\Administrator\AppData\Local\Temp\jeukjhjfyjk.m4a" ^
--reply "7428229703179177738"
--file "C:\Users\Administrator\AppData\Local\Temp\ghc0tdnxaev.m4a" ^
--reply "7428336750944063426"
```
</TabItem>
</Tabs>
@@ -34,7 +34,7 @@ To call this method, the bot must be an administrator in the chat room
```bsl title="1C:Enterprise/OneScript code example"
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
MessageID = "7427552004584508943";
MessageID = "7428324441567793059";
Result = OPI_VKTeams.UnpinMessage(Token, ChatID, MessageID);
```
@@ -47,7 +47,7 @@ To call this method, the bot must be an administrator in the chat room
oint vkteams UnpinMessage \
--token "***" \
--chatid "689203963@chat.agent" \
--messageid "7428229703179177738"
--messageid "7428336750944063426"
```
</TabItem>
@@ -56,7 +56,7 @@ To call this method, the bot must be an administrator in the chat room
oint vkteams UnpinMessage ^
--token "***" ^
--chatid "689203963@chat.agent" ^
--messageid "7428229703179177738"
--messageid "7428336750944063426"
```
</TabItem>
</Tabs>