1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-23 22:05:15 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2024-10-07 21:19:07 +03:00
parent 8434b30af3
commit 7e68259ba5
329 changed files with 7140 additions and 7146 deletions

View File

@@ -7,4 +7,4 @@
Token = "37d1fe66006e9f06006b12e400000001000...";
FieldID = "257";
Result = OPI_Bitrix24.DeleteCustomTaskField(URL, FieldID, );
Result = OPI_Bitrix24.DeleteCustomTaskField(URL, FieldID, Token);

View File

@@ -8,4 +8,4 @@
Time = OPI_Tools.GetCurrentDate();
Report = "Time off";
Result = OPI_Bitrix24.StopTimekeeping(URL, UserID, Time, Report, );
Result = OPI_Bitrix24.StopTimekeeping(URL, UserID, Time, Report, Token);

View File

@@ -4,4 +4,8 @@
SecondaryColor = "#ffd800";
Hidden = False;
Result = OPI_GoogleCalendar.EditListCalendar(Token, Calendar, PrimaryColor, SecondaryColor, False);
Result = OPI_GoogleCalendar.EditListCalendar(Token
, Calendar
, PrimaryColor
, SecondaryColor
, Hidden);

View File

@@ -1,3 +1 @@
 Parameters = GetVKParameters();
Result = OPI_VK.GetProductDescription();
 Result = OPI_VK.GetProductDescription();

View File

@@ -36,7 +36,7 @@ Method at API documentation: [task.item.userfield.delete](https://dev.1c-bitrix.
Token = "37d1fe66006e9f06006b12e400000001000...";
FieldID = "257";
Result = OPI_Bitrix24.DeleteCustomTaskField(URL, FieldID, );
Result = OPI_Bitrix24.DeleteCustomTaskField(URL, FieldID, Token);
```

View File

@@ -39,7 +39,7 @@ Method at API documentation: [timeman.close](https://dev.1c-bitrix.ru/rest_help/
Time = OPI_Tools.GetCurrentDate();
Report = "Time off";
Result = OPI_Bitrix24.StopTimekeeping(URL, UserID, Time, Report, );
Result = OPI_Bitrix24.StopTimekeeping(URL, UserID, Time, Report, Token);
```

View File

@@ -32,7 +32,11 @@ sidebar_position: 5
SecondaryColor = "#ffd800";
Hidden = False;
Result = OPI_GoogleCalendar.EditListCalendar(Token, Calendar, PrimaryColor, SecondaryColor, False);
Result = OPI_GoogleCalendar.EditListCalendar(Token
, Calendar
, PrimaryColor
, SecondaryColor
, Hidden);
```

View File

@@ -22,8 +22,6 @@ sidebar_position: 8
```bsl title="Code example"
Parameters = GetVKParameters();
Result = OPI_VK.GetProductDescription();
```