Skip to content

Commit

Permalink
Main build (Jenkins)
Browse files Browse the repository at this point in the history
  • Loading branch information
VitalyTheAlpaca committed Jan 11, 2025
1 parent 857e1ae commit 7140d17
Show file tree
Hide file tree
Showing 1,490 changed files with 10,515 additions and 10,517 deletions.
6 changes: 3 additions & 3 deletions docs/en/examples/Airtable/CreateComment.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Table = "tblbTHahnMgiyaEIm";
Record = "recFHATHi2Otg27I9";
Base = "appcKJWExq22nSSCZ";
Table = "tblfJOUYCIlw7QvTw";
Record = "recn1OzIdcpiUFq4h";
Text = "TestComment";

Result = OPI_Airtable.CreateComment(Token, Base, Table, Record, Text);
4 changes: 2 additions & 2 deletions docs/en/examples/Airtable/CreateField.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Table = "tblbTHahnMgiyaEIm";
Base = "appcKJWExq22nSSCZ";
Table = "tblfJOUYCIlw7QvTw";
Name = String(New UUID);

Field = OPI_Airtable.GetNumberField(Name);
Expand Down
4 changes: 2 additions & 2 deletions docs/en/examples/Airtable/CreatePosts.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Table = "tblbTHahnMgiyaEIm";
Base = "appcKJWExq22nSSCZ";
Table = "tblfJOUYCIlw7QvTw";

Number = 10;
String = "Hello";
Expand Down
2 changes: 1 addition & 1 deletion docs/en/examples/Airtable/CreateTable.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Base = "appcKJWExq22nSSCZ";

FieldArray = New Array;
FieldArray.Add(OPI_Airtable.GetNumberField("Number"));
Expand Down
8 changes: 4 additions & 4 deletions docs/en/examples/Airtable/DeleteComment.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Table = "tblbTHahnMgiyaEIm";
Record = "recFHATHi2Otg27I9";
Comment = "comKMJf5UuBToGYhY";
Base = "appcKJWExq22nSSCZ";
Table = "tblfJOUYCIlw7QvTw";
Record = "recn1OzIdcpiUFq4h";
Comment = "com1tlZyzh9ZrCadI";

Result = OPI_Airtable.DeleteComment(Token, Base, Table, Record, Comment);
6 changes: 3 additions & 3 deletions docs/en/examples/Airtable/DeletePosts.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Table = "tblbTHahnMgiyaEIm";
Record = "recFHATHi2Otg27I9";
Base = "appcKJWExq22nSSCZ";
Table = "tblfJOUYCIlw7QvTw";
Record = "recn1OzIdcpiUFq4h";

Result = OPI_Airtable.DeletePosts(Token, Base, Table, Record);
8 changes: 4 additions & 4 deletions docs/en/examples/Airtable/EditComment.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Table = "tblbTHahnMgiyaEIm";
Record = "recFHATHi2Otg27I9";
Comment = "comKMJf5UuBToGYhY";
Base = "appcKJWExq22nSSCZ";
Table = "tblfJOUYCIlw7QvTw";
Record = "recn1OzIdcpiUFq4h";
Comment = "com1tlZyzh9ZrCadI";

Text = "Test comment (change.)";
Result = OPI_Airtable.EditComment(Token, Base, Table, Record, Comment, Text);
Expand Down
6 changes: 3 additions & 3 deletions docs/en/examples/Airtable/GetComments.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Table = "tblbTHahnMgiyaEIm";
Record = "recFHATHi2Otg27I9";
Base = "appcKJWExq22nSSCZ";
Table = "tblfJOUYCIlw7QvTw";
Record = "recn1OzIdcpiUFq4h";

Result = OPI_Airtable.GetComments(Token, Base, Table, Record);
2 changes: 1 addition & 1 deletion docs/en/examples/Airtable/GetDatabaseTables.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Base = "appcKJWExq22nSSCZ";

Result = OPI_Airtable.GetDatabaseTables(Token, Base);
4 changes: 2 additions & 2 deletions docs/en/examples/Airtable/GetListOfRecords.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Table = "tblbTHahnMgiyaEIm";
Base = "appcKJWExq22nSSCZ";
Table = "tblfJOUYCIlw7QvTw";

Result = OPI_Airtable.GetListOfRecords(Token, Base, Table);
6 changes: 3 additions & 3 deletions docs/en/examples/Airtable/GetRecord.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Table = "tblbTHahnMgiyaEIm";
Record = "recFHATHi2Otg27I9";
Base = "appcKJWExq22nSSCZ";
Table = "tblfJOUYCIlw7QvTw";
Record = "recn1OzIdcpiUFq4h";

Result = OPI_Airtable.GetRecord(Token, Base, Table, Record);
6 changes: 3 additions & 3 deletions docs/en/examples/Airtable/ModifyField.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Table = "tblbTHahnMgiyaEIm";
Field = "fldvomKqo6D2iwgrt";
Base = "appcKJWExq22nSSCZ";
Table = "tblfJOUYCIlw7QvTw";
Field = "fldSuScCNx03f1XL7";

Name = String(New UUID) + "(change.)";
Description = "New description";
Expand Down
4 changes: 2 additions & 2 deletions docs/en/examples/Airtable/ModifyTable.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
 Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appn4WwkqNCichIgp";
Table = "tblbTHahnMgiyaEIm";
Base = "appcKJWExq22nSSCZ";
Table = "tblfJOUYCIlw7QvTw";
Name = "Test table 2 (change.)";
Description = "New table (change.)";

Expand Down
2 changes: 1 addition & 1 deletion docs/en/examples/Bitrix24/AddCustomTaskField.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Result = OPI_Bitrix24.AddCustomTaskField(URL, Type, Name);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
Token = "14bb8267006e9f06006b12e400000001000...";

Type = "string";
Name = "TEXT_FIELD";
Expand Down
2 changes: 1 addition & 1 deletion docs/en/examples/Bitrix24/AddKanbanStage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
Color = "0026FF";

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
Token = "14bb8267006e9f06006b12e400000001000...";

Result = OPI_Bitrix24.AddKanbanStage(URL, Name, Color, PrevStageID, , True, Token);
4 changes: 2 additions & 2 deletions docs/en/examples/Bitrix24/AddPostComment.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
 Text = "Comment for post";
PostID = "1756";
PostID = "1808";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";

Result = OPI_Bitrix24.AddPostComment(URL, PostID, Text);

Text = "Another comment";
URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
Token = "14bb8267006e9f06006b12e400000001000...";

Result = OPI_Bitrix24.AddPostComment(URL, PostID, Text, Token);
4 changes: 2 additions & 2 deletions docs/en/examples/Bitrix24/AddPostRecipients.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
 Visibility = "UA";
PostID = "1756";
PostID = "1808";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";

Result = OPI_Bitrix24.AddPostRecipients(URL, PostID, Visibility);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
Token = "14bb8267006e9f06006b12e400000001000...";

Result = OPI_Bitrix24.AddPostRecipients(URL, PostID, Visibility, Token);
4 changes: 2 additions & 2 deletions docs/en/examples/Bitrix24/AddTaskComment.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
TaskID = "4488";
TaskID = "4618";

Text = "Task impossible, let's split up";

Result = OPI_Bitrix24.AddTaskComment(URL, TaskID, Text);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
Token = "14bb8267006e9f06006b12e400000001000...";

Text = "Task uninpossible, don't split up";

Expand Down
4 changes: 2 additions & 2 deletions docs/en/examples/Bitrix24/AddTaskTimeAccounting.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
TaskID = "4492";
TaskID = "4622";

Time = 3600;

Result = OPI_Bitrix24.AddTaskTimeAccounting(URL, TaskID, Time);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
Token = "14bb8267006e9f06006b12e400000001000...";

Text = "Time spent on work";
UserID = 10;
Expand Down
6 changes: 3 additions & 3 deletions docs/en/examples/Bitrix24/AddTaskToFavorites.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
TaskID = "4484";
TaskID = "4614";

Result = OPI_Bitrix24.AddTaskToFavorites(URL, TaskID);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
TaskID = "4486";
Token = "14bb8267006e9f06006b12e400000001000...";
TaskID = "4616";

Result = OPI_Bitrix24.AddTaskToFavorites(URL, TaskID, Token);
6 changes: 3 additions & 3 deletions docs/en/examples/Bitrix24/AddTasksChecklistElement.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
TaskID = "4484";
TaskID = "4614";

Text = "Checklist element";

Result = OPI_Bitrix24.AddTasksChecklistElement(URL, TaskID, Text, True);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
TaskID = "4486";
Token = "14bb8267006e9f06006b12e400000001000...";
TaskID = "4616";

Result = OPI_Bitrix24.AddTasksChecklistElement(URL, TaskID, Text, , Token);
6 changes: 3 additions & 3 deletions docs/en/examples/Bitrix24/AddUsersToChat.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
ChatID = "1794";
ChatID = "1846";

UserIDs = New Array;
UserIDs.Add(10);
Expand All @@ -8,8 +8,8 @@
Result = OPI_Bitrix24.AddUsersToChat(URL, ChatID, UserIDs);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
ChatID = "1796";
Token = "14bb8267006e9f06006b12e400000001000...";
ChatID = "1848";
UserID = 10;

Result = OPI_Bitrix24.AddUsersToChat(URL, ChatID, UserID, True, Token);
6 changes: 3 additions & 3 deletions docs/en/examples/Bitrix24/ApproveTask.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
TaskID = "4484";
TaskID = "4614";

Result = OPI_Bitrix24.ApproveTask(URL, TaskID);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
TaskID = "4486";
Token = "14bb8267006e9f06006b12e400000001000...";
TaskID = "4616";

Result = OPI_Bitrix24.ApproveTask(URL, TaskID, Token);
8 changes: 4 additions & 4 deletions docs/en/examples/Bitrix24/AttachFileToTopic.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
TaskID = "4484";
FileID = "24632";
TaskID = "4614";
FileID = "25412";

Result = OPI_Bitrix24.AttachFileToTopic(URL, TaskID, FileID);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
TaskID = "4486";
Token = "14bb8267006e9f06006b12e400000001000...";
TaskID = "4616";

Result = OPI_Bitrix24.AttachFileToTopic(URL, TaskID, FileID, Token);
4 changes: 2 additions & 2 deletions docs/en/examples/Bitrix24/ChangeChatColor.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
ChatID = "1794";
ChatID = "1846";

Color = "AZURE";

Result = OPI_Bitrix24.ChangeChatColor(URL, ChatID, Color);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
Token = "14bb8267006e9f06006b12e400000001000...";

Color = "PURPLE";

Expand Down
6 changes: 3 additions & 3 deletions docs/en/examples/Bitrix24/ChangeChatOwner.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
ChatID = "1794";
ChatID = "1846";

UserID = 10;

Result = OPI_Bitrix24.ChangeChatOwner(URL, ChatID, UserID);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
ChatID = "1796";
Token = "14bb8267006e9f06006b12e400000001000...";
ChatID = "1848";

Result = OPI_Bitrix24.ChangeChatOwner(URL, ChatID, UserID, Token);
6 changes: 3 additions & 3 deletions docs/en/examples/Bitrix24/ChangeChatPicture.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
ChatID = "1794";
ChatID = "1846";

Image = "https://api.athenaeum.digital/test_data/picture2.jpg";

Result = OPI_Bitrix24.ChangeChatPicture(URL, ChatID, Image);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
ChatID = "1796";
Token = "14bb8267006e9f06006b12e400000001000...";
ChatID = "1848";

Result = OPI_Bitrix24.ChangeChatPicture(URL, ChatID, Image, Token);
6 changes: 3 additions & 3 deletions docs/en/examples/Bitrix24/ChangeChatTitle.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
ChatID = "1794";
ChatID = "1846";

Title = "New chat title";

Result = OPI_Bitrix24.ChangeChatTitle(URL, ChatID, Title);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
ChatID = "1796";
Token = "14bb8267006e9f06006b12e400000001000...";
ChatID = "1848";

Title = "Another title";

Expand Down
6 changes: 3 additions & 3 deletions docs/en/examples/Bitrix24/ChangeUserStatus.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
UserID = "1412";
UserID = "1464";

Result = OPI_Bitrix24.ChangeUserStatus(URL, UserID, True);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
UserID = "1414";
Token = "14bb8267006e9f06006b12e400000001000...";
UserID = "1466";

Result = OPI_Bitrix24.ChangeUserStatus(URL, UserID, True, Token);
6 changes: 3 additions & 3 deletions docs/en/examples/Bitrix24/CheckTaskAccesses.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
ArrayOfUsers.Add("10");

URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
TaskID = "4484";
TaskID = "4614";

Result = OPI_Bitrix24.CheckTaskAccesses(URL, TaskID, ArrayOfUsers);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
TaskID = "4486";
Token = "14bb8267006e9f06006b12e400000001000...";
TaskID = "4616";

Result = OPI_Bitrix24.CheckTaskAccesses(URL, TaskID, ArrayOfUsers, Token);
6 changes: 3 additions & 3 deletions docs/en/examples/Bitrix24/CompleteTask.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
TaskID = "4484";
TaskID = "4614";

Result = OPI_Bitrix24.CompleteTask(URL, TaskID);

URL = "b24-ar17wx.bitrix24.by";
Token = "762f8067006e9f06006b12e400000001000...";
TaskID = "4486";
Token = "14bb8267006e9f06006b12e400000001000...";
TaskID = "4616";

Result = OPI_Bitrix24.CompleteTask(URL, TaskID, Token);
Loading

0 comments on commit 7140d17

Please sign in to comment.