You've already forked OpenIntegrations
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:
2
ci/installer_set/share/oint/.versionhash
vendored
2
ci/installer_set/share/oint/.versionhash
vendored
@@ -1 +1 @@
|
||||
7111D442671E3E46AD4F2E62F0687E425828A72C4A81BE134CDFD9782648222D
|
||||
B565B67B5E0CF5DE377C40BE463BB47824C6FF00F0DACEC78C729D175C2EB304
|
||||
@@ -24,7 +24,7 @@ import TabItem from '@theme/TabItem';
|
||||
<br/>
|
||||
|
||||
:::tip
|
||||
Method at API documentation: [GetWaSettings](https://green-api.com/v3/docs/api/account/GetAccountSettings/)
|
||||
Method at API documentation: [GetWaSettings](https://green-api.com/v3/docs/api/account/GetWaSettings/)
|
||||
:::
|
||||
<br/>
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ import TabItem from '@theme/TabItem';
|
||||
<br/>
|
||||
|
||||
:::tip
|
||||
Метод в документации API: [GetWaSettings](https://green-api.com/v3/docs/api/account/GetAccountSettings/)
|
||||
Метод в документации API: [GetWaSettings](https://green-api.com/v3/docs/api/account/GetWaSettings/)
|
||||
:::
|
||||
<br/>
|
||||
|
||||
|
||||
18762
service/dictionaries/en.json
vendored
18762
service/dictionaries/en.json
vendored
File diff suppressed because it is too large
Load Diff
2
service/last_build_hash.txt
vendored
2
service/last_build_hash.txt
vendored
@@ -1 +1 @@
|
||||
7111D442671E3E46AD4F2E62F0687E425828A72C4A81BE134CDFD9782648222D
|
||||
B565B67B5E0CF5DE377C40BE463BB47824C6FF00F0DACEC78C729D175C2EB304
|
||||
2
src/en/OInt/.versionhash
vendored
2
src/en/OInt/.versionhash
vendored
@@ -1 +1 @@
|
||||
7111D442671E3E46AD4F2E62F0687E425828A72C4A81BE134CDFD9782648222D
|
||||
B565B67B5E0CF5DE377C40BE463BB47824C6FF00F0DACEC78C729D175C2EB304
|
||||
2
src/en/OInt/core/Modules/OPI_GreenMax.os
vendored
2
src/en/OInt/core/Modules/OPI_GreenMax.os
vendored
@@ -79,7 +79,7 @@ EndFunction
|
||||
// Gets account information
|
||||
//
|
||||
// Note
|
||||
// Method at API documentation: [GetWaSettings](@green-api.com/v3/docs/api/account/GetAccountSettings/)
|
||||
// Method at API documentation: [GetWaSettings](@green-api.com/v3/docs/api/account/GetWaSettings/)
|
||||
//
|
||||
// Parameters:
|
||||
// AccessParameters - Structure Of KeyAndValue - Access parameters. See FormAccessParameters - access
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
Function GetHashSum() Export
|
||||
|
||||
LastBuildHash = "7111D442671E3E46AD4F2E62F0687E425828A72C4A81BE134CDFD9782648222D";
|
||||
LastBuildHash = "B565B67B5E0CF5DE377C40BE463BB47824C6FF00F0DACEC78C729D175C2EB304";
|
||||
|
||||
Return LastBuildHash;
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
Function GetHashSum() Export
|
||||
|
||||
LastBuildHash = "7111D442671E3E46AD4F2E62F0687E425828A72C4A81BE134CDFD9782648222D";
|
||||
LastBuildHash = "B565B67B5E0CF5DE377C40BE463BB47824C6FF00F0DACEC78C729D175C2EB304";
|
||||
|
||||
Return LastBuildHash;
|
||||
|
||||
|
||||
@@ -79,7 +79,7 @@ EndFunction
|
||||
// Gets account information
|
||||
//
|
||||
// Note
|
||||
// Method at API documentation: [GetWaSettings](@green-api.com/v3/docs/api/account/GetAccountSettings/)
|
||||
// Method at API documentation: [GetWaSettings](@green-api.com/v3/docs/api/account/GetWaSettings/)
|
||||
//
|
||||
// Parameters:
|
||||
// AccessParameters - Structure Of KeyAndValue - Access parameters. See FormAccessParameters - access
|
||||
|
||||
2
src/en/cli/.versionhash
vendored
2
src/en/cli/.versionhash
vendored
@@ -1 +1 @@
|
||||
7111D442671E3E46AD4F2E62F0687E425828A72C4A81BE134CDFD9782648222D
|
||||
B565B67B5E0CF5DE377C40BE463BB47824C6FF00F0DACEC78C729D175C2EB304
|
||||
12
src/en/cli/help/Classes/Help.os
vendored
12
src/en/cli/help/Classes/Help.os
vendored
@@ -206,17 +206,19 @@ EndProcedure
|
||||
Procedure HandleHelpTabulation(ParametersTable)
|
||||
|
||||
Parameter_ = "Parameter";
|
||||
MaximumLength = 15;
|
||||
MaximumLength = 9;
|
||||
|
||||
For Each MethodParameter In ParametersTable Do
|
||||
|
||||
While StrLen(MethodParameter[Parameter_]) < MaximumLength Do
|
||||
MethodParameter[Parameter_] = MethodParameter[Parameter_] + " ";
|
||||
EndDo;
|
||||
|
||||
If ValueIsFilled(MethodParameter["ParameterTrim"]) Then
|
||||
MethodParameter[Parameter_] = MethodParameter[Parameter_] + ", " + MethodParameter["ParameterTrim"];
|
||||
Else
|
||||
MethodParameter[Parameter_] = MethodParameter[Parameter_] + " ";
|
||||
EndIf;
|
||||
|
||||
While Not StrLen(MethodParameter[Parameter_]) = MaximumLength Do
|
||||
MethodParameter[Parameter_] = MethodParameter[Parameter_] + " ";
|
||||
EndDo;
|
||||
|
||||
CurrentDescription = MethodParameter["Description"];
|
||||
DescriptionArray = StrSplit(CurrentDescription, Chars.LF);
|
||||
|
||||
2
src/ru/OInt/.versionhash
vendored
2
src/ru/OInt/.versionhash
vendored
@@ -1 +1 @@
|
||||
7111D442671E3E46AD4F2E62F0687E425828A72C4A81BE134CDFD9782648222D
|
||||
B565B67B5E0CF5DE377C40BE463BB47824C6FF00F0DACEC78C729D175C2EB304
|
||||
2
src/ru/OInt/core/Modules/OPI_GreenMax.os
vendored
2
src/ru/OInt/core/Modules/OPI_GreenMax.os
vendored
@@ -79,7 +79,7 @@
|
||||
// Получает информацию об аккаунте
|
||||
//
|
||||
// Примечание:
|
||||
// Метод в документации API: [GetWaSettings](@green-api.com/v3/docs/api/account/GetAccountSettings/)
|
||||
// Метод в документации API: [GetWaSettings](@green-api.com/v3/docs/api/account/GetWaSettings/)
|
||||
//
|
||||
// Параметры:
|
||||
// ПараметрыДоступа - Структура Из КлючИЗначение - Параметры доступа. См. СформироватьПараметрыДоступа - access
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
Function GetHashSum() Export
|
||||
|
||||
LastBuildHash = "7111D442671E3E46AD4F2E62F0687E425828A72C4A81BE134CDFD9782648222D";
|
||||
LastBuildHash = "B565B67B5E0CF5DE377C40BE463BB47824C6FF00F0DACEC78C729D175C2EB304";
|
||||
|
||||
Return LastBuildHash;
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
Function GetHashSum() Export
|
||||
|
||||
LastBuildHash = "7111D442671E3E46AD4F2E62F0687E425828A72C4A81BE134CDFD9782648222D";
|
||||
LastBuildHash = "B565B67B5E0CF5DE377C40BE463BB47824C6FF00F0DACEC78C729D175C2EB304";
|
||||
|
||||
Return LastBuildHash;
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
7111D442671E3E46AD4F2E62F0687E425828A72C4A81BE134CDFD9782648222D
|
||||
B565B67B5E0CF5DE377C40BE463BB47824C6FF00F0DACEC78C729D175C2EB304
|
||||
Reference in New Issue
Block a user