1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-08-13 20:05:19 +02:00
This commit is contained in:
Anton
2024-07-15 19:41:17 +03:00
9 changed files with 810 additions and 809 deletions

View File

@@ -3390,7 +3390,7 @@ jobs:
./oint bitrix24 GetTasksList --debug --test \ ./oint bitrix24 GetTasksList --debug --test \
--url "" \ --url "" \
--Structure of task filter (see GetTaskFieldsStructure) "" \ --filter "" \
--offset "" \ --offset "" \
--token "" \ --token "" \
@@ -3402,7 +3402,7 @@ jobs:
./oint bitrix24 CreateTask --debug --test \ ./oint bitrix24 CreateTask --debug --test \
--url "" \ --url "" \
--Task fields structure (see GetTaskFieldsStructure) "" \ --fields "" \
--token "" \ --token "" \
@@ -3414,7 +3414,7 @@ jobs:
./oint bitrix24 UpdateTask --debug --test \ ./oint bitrix24 UpdateTask --debug --test \
--url "" \ --url "" \
--task "" \ --task "" \
--Task fields structure "" \ --fields "" \
--token "" \ --token "" \
@@ -4137,7 +4137,7 @@ jobs:
./oint bitrix24 GetFolderItems --debug --test \ ./oint bitrix24 GetFolderItems --debug --test \
--url "" \ --url "" \
--folderid "" \ --folderid "" \
--Items filter (see GetFolderFilterStructure) "" \ --filter "" \
--token "" \ --token "" \
@@ -4311,7 +4311,7 @@ jobs:
./oint bitrix24 CreateChat --debug --test \ ./oint bitrix24 CreateChat --debug --test \
--url "" \ --url "" \
--Chat fields structure. See GetChatStructure "" \ --fields "" \
--token "" \ --token "" \

File diff suppressed because it is too large Load Diff

View File

@@ -202,7 +202,7 @@ EndFunction
// Token - String - Token - token // Token - String - Token - token
// Base - String - Base identifier - base // Base - String - Base identifier - base
// Table - String - Table identifier - table // Table - String - Table identifier - table
// FieldStructure - Structure of Key-Value - Description of the new field - fielddata // FieldStructure - Structure of KeyAndValue - Description of the new field - fielddata
// //
// Returns: // Returns:
// Map Of KeyAndValue - serialized JSON response from Airtable // Map Of KeyAndValue - serialized JSON response from Airtable

View File

@@ -417,7 +417,7 @@ EndFunction
// //
// Parameters: // Parameters:
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url // URL - String - URL of webhook or a Bitrix24 domain, when token used - url
// Filter - Structure of Key-Value - Structure of task filter (see GetTaskFieldsStructure) - filter // Filter - Structure of KeyAndValue - Structure of task filter (see GetTaskFieldsStructure) - filter
// Indent - Number, String - Offset of tasks list - offset // Indent - Number, String - Offset of tasks list - offset
// Token - String - Access token, when app auth method used - token // Token - String - Access token, when app auth method used - token
// //
@@ -443,7 +443,7 @@ EndFunction
// //
// Parameters: // Parameters:
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url // URL - String - URL of webhook or a Bitrix24 domain, when token used - url
// FieldsStructure - Structure of Key-Value - Task fields structure (see GetTaskFieldsStructure) - fields // FieldsStructure - Structure of KeyAndValue - Task fields structure (see GetTaskFieldsStructure) - fields
// Token - String - Access token, when app auth method used - token // Token - String - Access token, when app auth method used - token
// //
// Returns: // Returns:
@@ -468,7 +468,7 @@ EndFunction
// Parameters: // Parameters:
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url // URL - String - URL of webhook or a Bitrix24 domain, when token used - url
// TaskID - Number, String - Task ID - task // TaskID - Number, String - Task ID - task
// FieldsStructure - Structure of Key-Value - Task fields structure - fields // FieldsStructure - Structure of KeyAndValue - Task fields structure - fields
// Token - String - Access token, when app auth method used - token // Token - String - Access token, when app auth method used - token
// //
// Returns: // Returns:
@@ -973,7 +973,7 @@ EndFunction
// Clear - Boolean - True > structure with empty valuse, False > field descriptions at values - empty // Clear - Boolean - True > structure with empty valuse, False > field descriptions at values - empty
// //
// Returns: // Returns:
// Structure of Key-Value - Fields structure // Structure of KeyAndValue - Fields structure
Function GetTasksFilterStructure(Val Clear = False) Export Function GetTasksFilterStructure(Val Clear = False) Export
// More // More
@@ -1423,7 +1423,7 @@ EndFunction
// Clear - Boolean - True > structure with empty valuse, False > field descriptions at values - empty // Clear - Boolean - True > structure with empty valuse, False > field descriptions at values - empty
// //
// Returns: // Returns:
// Structure of Key-Value - Fields structure // Structure of KeyAndValue - Fields structure
Function GetCommentStructure(Val Clear = False) Export Function GetCommentStructure(Val Clear = False) Export
// More // More
@@ -2123,7 +2123,7 @@ EndFunction
// Parameters: // Parameters:
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url // URL - String - URL of webhook or a Bitrix24 domain, when token used - url
// FolderID - String, Number - Folder identifier - folderid // FolderID - String, Number - Folder identifier - folderid
// Filter - Structure of Key-Value - Items filter (see GetFolderFilterStructure) - filter // Filter - Structure of KeyAndValue - Items filter (see GetFolderFilterStructure) - filter
// Token - String - Access token, when app auth method used - token // Token - String - Access token, when app auth method used - token
// //
// Returns: // Returns:
@@ -2219,7 +2219,7 @@ EndFunction
// Token - String - Access token, when app auth method used - token // Token - String - Access token, when app auth method used - token
// //
// Returns: // Returns:
// Structure of Key-Value - Fields structure // Structure of KeyAndValue - Fields structure
Function GetFolderFilterStructure(Val URL, Val Clear = False, Val Token = "") Export Function GetFolderFilterStructure(Val URL, Val Clear = False, Val Token = "") Export
Parameters = NormalizeAuth(URL, Token, "disk.folder.getfields"); Parameters = NormalizeAuth(URL, Token, "disk.folder.getfields");
@@ -2542,7 +2542,7 @@ EndFunction
// //
// Parameters: // Parameters:
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url // URL - String - URL of webhook or a Bitrix24 domain, when token used - url
// ChatStructure - Structure of Key-Value - Chat fields structure. See GetChatStructure - fields // ChatStructure - Structure of KeyAndValue - Chat fields structure. See GetChatStructure - fields
// Token - String - Access token, when app auth method used - token // Token - String - Access token, when app auth method used - token
// //
// Returns: // Returns:
@@ -2976,7 +2976,7 @@ EndFunction
// Clear - Boolean - True > structure with empty values, False > field types at values - empty // Clear - Boolean - True > structure with empty values, False > field types at values - empty
// //
// Returns: // Returns:
// Structure of Key-Value - Fields structure // Structure of KeyAndValue - Fields structure
Function GetChatStructure(Val Clear = False) Export Function GetChatStructure(Val Clear = False) Export
OPI_TypeConversion.GetBoolean(Clear); OPI_TypeConversion.GetBoolean(Clear);

View File

@@ -1,4 +1,3 @@
Manifest-Version: 1.0 Manifest-Version: 1.0
Runtime-Version: 8.3.15 Runtime-Version: 8.3.15
Base-Project: OpenIntegrations_Eng Base-Project: OpenIntegrations_ENG
Manifest-Version: 1.0

View File

@@ -202,7 +202,7 @@ EndFunction
// Token - String - Token - token // Token - String - Token - token
// Base - String - Base identifier - base // Base - String - Base identifier - base
// Table - String - Table identifier - table // Table - String - Table identifier - table
// FieldStructure - Structure of Key-Value - Description of the new field - fielddata // FieldStructure - Structure of KeyAndValue - Description of the new field - fielddata
// //
// Returns: // Returns:
// Map Of KeyAndValue - serialized JSON response from Airtable // Map Of KeyAndValue - serialized JSON response from Airtable

View File

@@ -417,7 +417,7 @@ EndFunction
// //
// Parameters: // Parameters:
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url // URL - String - URL of webhook or a Bitrix24 domain, when token used - url
// Filter - Structure of Key-Value - Structure of task filter (see GetTaskFieldsStructure) - filter // Filter - Structure of KeyAndValue - Structure of task filter (see GetTaskFieldsStructure) - filter
// Indent - Number, String - Offset of tasks list - offset // Indent - Number, String - Offset of tasks list - offset
// Token - String - Access token, when app auth method used - token // Token - String - Access token, when app auth method used - token
// //
@@ -443,7 +443,7 @@ EndFunction
// //
// Parameters: // Parameters:
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url // URL - String - URL of webhook or a Bitrix24 domain, when token used - url
// FieldsStructure - Structure of Key-Value - Task fields structure (see GetTaskFieldsStructure) - fields // FieldsStructure - Structure of KeyAndValue - Task fields structure (see GetTaskFieldsStructure) - fields
// Token - String - Access token, when app auth method used - token // Token - String - Access token, when app auth method used - token
// //
// Returns: // Returns:
@@ -468,7 +468,7 @@ EndFunction
// Parameters: // Parameters:
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url // URL - String - URL of webhook or a Bitrix24 domain, when token used - url
// TaskID - Number, String - Task ID - task // TaskID - Number, String - Task ID - task
// FieldsStructure - Structure of Key-Value - Task fields structure - fields // FieldsStructure - Structure of KeyAndValue - Task fields structure - fields
// Token - String - Access token, when app auth method used - token // Token - String - Access token, when app auth method used - token
// //
// Returns: // Returns:
@@ -973,7 +973,7 @@ EndFunction
// Clear - Boolean - True > structure with empty valuse, False > field descriptions at values - empty // Clear - Boolean - True > structure with empty valuse, False > field descriptions at values - empty
// //
// Returns: // Returns:
// Structure of Key-Value - Fields structure // Structure of KeyAndValue - Fields structure
Function GetTasksFilterStructure(Val Clear = False) Export Function GetTasksFilterStructure(Val Clear = False) Export
// More // More
@@ -1423,7 +1423,7 @@ EndFunction
// Clear - Boolean - True > structure with empty valuse, False > field descriptions at values - empty // Clear - Boolean - True > structure with empty valuse, False > field descriptions at values - empty
// //
// Returns: // Returns:
// Structure of Key-Value - Fields structure // Structure of KeyAndValue - Fields structure
Function GetCommentStructure(Val Clear = False) Export Function GetCommentStructure(Val Clear = False) Export
// More // More
@@ -2123,7 +2123,7 @@ EndFunction
// Parameters: // Parameters:
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url // URL - String - URL of webhook or a Bitrix24 domain, when token used - url
// FolderID - String, Number - Folder identifier - folderid // FolderID - String, Number - Folder identifier - folderid
// Filter - Structure of Key-Value - Items filter (see GetFolderFilterStructure) - filter // Filter - Structure of KeyAndValue - Items filter (see GetFolderFilterStructure) - filter
// Token - String - Access token, when app auth method used - token // Token - String - Access token, when app auth method used - token
// //
// Returns: // Returns:
@@ -2219,7 +2219,7 @@ EndFunction
// Token - String - Access token, when app auth method used - token // Token - String - Access token, when app auth method used - token
// //
// Returns: // Returns:
// Structure of Key-Value - Fields structure // Structure of KeyAndValue - Fields structure
Function GetFolderFilterStructure(Val URL, Val Clear = False, Val Token = "") Export Function GetFolderFilterStructure(Val URL, Val Clear = False, Val Token = "") Export
Parameters = NormalizeAuth(URL, Token, "disk.folder.getfields"); Parameters = NormalizeAuth(URL, Token, "disk.folder.getfields");
@@ -2542,7 +2542,7 @@ EndFunction
// //
// Parameters: // Parameters:
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url // URL - String - URL of webhook or a Bitrix24 domain, when token used - url
// ChatStructure - Structure of Key-Value - Chat fields structure. See GetChatStructure - fields // ChatStructure - Structure of KeyAndValue - Chat fields structure. See GetChatStructure - fields
// Token - String - Access token, when app auth method used - token // Token - String - Access token, when app auth method used - token
// //
// Returns: // Returns:
@@ -2976,7 +2976,7 @@ EndFunction
// Clear - Boolean - True > structure with empty values, False > field types at values - empty // Clear - Boolean - True > structure with empty values, False > field types at values - empty
// //
// Returns: // Returns:
// Structure of Key-Value - Fields structure // Structure of KeyAndValue - Fields structure
Function GetChatStructure(Val Clear = False) Export Function GetChatStructure(Val Clear = False) Export
OPI_TypeConversion.GetBoolean(Clear); OPI_TypeConversion.GetBoolean(Clear);

View File

@@ -232,7 +232,9 @@
NewLine.Параметр = "--token"; NewLine.Параметр = "--token";
NewLine.Описание = "Token"; NewLine.Описание = "Token";
NewLine.Область = "Working with fields"; NewLine.Область = "Working with fields";
NewLine.ОписаниеМетода = "Creates a new field in the table"; NewLine.ОписаниеМетода = "Creates a new field in the table
|Functions for generating field descriptions: GetStringField, GetNumberField, GetAttachmentField, GetCheckboxField, GetDateField, GetEmailField, GetPhoneField, GetLinkField
|";
NewLine = CompositionTable.Add(); NewLine = CompositionTable.Add();
@@ -260,8 +262,8 @@
NewLine.Модуль = "OPI_Airtable"; NewLine.Модуль = "OPI_Airtable";
NewLine.Метод = "CreateField"; NewLine.Метод = "CreateField";
NewLine.МетодПоиска = "CREATEFIELD"; NewLine.МетодПоиска = "CREATEFIELD";
NewLine.Параметр = "--Description of the new field"; NewLine.Параметр = "--fielddata";
NewLine.Описание = "fielddata"; NewLine.Описание = "Description of the new field";
NewLine.Область = "Working with fields"; NewLine.Область = "Working with fields";

View File

@@ -488,8 +488,8 @@
NewLine.Модуль = "OPI_Bitrix24"; NewLine.Модуль = "OPI_Bitrix24";
NewLine.Метод = "GetTasksList"; NewLine.Метод = "GetTasksList";
NewLine.МетодПоиска = "GETTASKSLIST"; NewLine.МетодПоиска = "GETTASKSLIST";
NewLine.Параметр = "--Structure of task filter (see GetTaskFieldsStructure)"; NewLine.Параметр = "--filter";
NewLine.Описание = "filter (optional, def. val. - Empty value)"; NewLine.Описание = "Structure of task filter (see GetTaskFieldsStructure) (optional, def. val. - Empty value)";
NewLine.Область = "Tasks managment"; NewLine.Область = "Tasks managment";
@@ -529,8 +529,8 @@
NewLine.Модуль = "OPI_Bitrix24"; NewLine.Модуль = "OPI_Bitrix24";
NewLine.Метод = "CreateTask"; NewLine.Метод = "CreateTask";
NewLine.МетодПоиска = "CREATETASK"; NewLine.МетодПоиска = "CREATETASK";
NewLine.Параметр = "--Task fields structure (see GetTaskFieldsStructure)"; NewLine.Параметр = "--fields";
NewLine.Описание = "fields"; NewLine.Описание = "Task fields structure (see GetTaskFieldsStructure)";
NewLine.Область = "Tasks managment"; NewLine.Область = "Tasks managment";
@@ -570,8 +570,8 @@
NewLine.Модуль = "OPI_Bitrix24"; NewLine.Модуль = "OPI_Bitrix24";
NewLine.Метод = "UpdateTask"; NewLine.Метод = "UpdateTask";
NewLine.МетодПоиска = "UPDATETASK"; NewLine.МетодПоиска = "UPDATETASK";
NewLine.Параметр = "--Task fields structure"; NewLine.Параметр = "--fields";
NewLine.Описание = "fields"; NewLine.Описание = "Task fields structure";
NewLine.Область = "Tasks managment"; NewLine.Область = "Tasks managment";
@@ -2902,8 +2902,8 @@
NewLine.Модуль = "OPI_Bitrix24"; NewLine.Модуль = "OPI_Bitrix24";
NewLine.Метод = "GetFolderItems"; NewLine.Метод = "GetFolderItems";
NewLine.МетодПоиска = "GETFOLDERITEMS"; NewLine.МетодПоиска = "GETFOLDERITEMS";
NewLine.Параметр = "--Items filter (see GetFolderFilterStructure)"; NewLine.Параметр = "--filter";
NewLine.Описание = "filter (optional, def. val. - Empty value)"; NewLine.Описание = "Items filter (see GetFolderFilterStructure) (optional, def. val. - Empty value)";
NewLine.Область = "Catalogs managment"; NewLine.Область = "Catalogs managment";
@@ -3457,8 +3457,8 @@
NewLine.Модуль = "OPI_Bitrix24"; NewLine.Модуль = "OPI_Bitrix24";
NewLine.Метод = "CreateChat"; NewLine.Метод = "CreateChat";
NewLine.МетодПоиска = "CREATECHAT"; NewLine.МетодПоиска = "CREATECHAT";
NewLine.Параметр = "--Chat fields structure. See GetChatStructure"; NewLine.Параметр = "--fields";
NewLine.Описание = "fields"; NewLine.Описание = "Chat fields structure. See GetChatStructure";
NewLine.Область = "Chats and dialogs managment"; NewLine.Область = "Chats and dialogs managment";