mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-01-02 03:38:55 +02:00
Merge branch 'main' of https://github.com/Bayselonarrend/OpenIntegrations
This commit is contained in:
commit
9815eb7296
10
.github/workflows/cli_test_en.yml
vendored
10
.github/workflows/cli_test_en.yml
vendored
@ -3390,7 +3390,7 @@ jobs:
|
||||
|
||||
./oint bitrix24 GetTasksList --debug --test \
|
||||
--url "" \
|
||||
--Structure of task filter (see GetTaskFieldsStructure) "" \
|
||||
--filter "" \
|
||||
--offset "" \
|
||||
--token "" \
|
||||
|
||||
@ -3402,7 +3402,7 @@ jobs:
|
||||
|
||||
./oint bitrix24 CreateTask --debug --test \
|
||||
--url "" \
|
||||
--Task fields structure (see GetTaskFieldsStructure) "" \
|
||||
--fields "" \
|
||||
--token "" \
|
||||
|
||||
|
||||
@ -3414,7 +3414,7 @@ jobs:
|
||||
./oint bitrix24 UpdateTask --debug --test \
|
||||
--url "" \
|
||||
--task "" \
|
||||
--Task fields structure "" \
|
||||
--fields "" \
|
||||
--token "" \
|
||||
|
||||
|
||||
@ -4137,7 +4137,7 @@ jobs:
|
||||
./oint bitrix24 GetFolderItems --debug --test \
|
||||
--url "" \
|
||||
--folderid "" \
|
||||
--Items filter (see GetFolderFilterStructure) "" \
|
||||
--filter "" \
|
||||
--token "" \
|
||||
|
||||
|
||||
@ -4311,7 +4311,7 @@ jobs:
|
||||
|
||||
./oint bitrix24 CreateChat --debug --test \
|
||||
--url "" \
|
||||
--Chat fields structure. See GetChatStructure "" \
|
||||
--fields "" \
|
||||
--token "" \
|
||||
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -202,7 +202,7 @@ EndFunction
|
||||
// Token - String - Token - token
|
||||
// Base - String - Base identifier - base
|
||||
// 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:
|
||||
// Map Of KeyAndValue - serialized JSON response from Airtable
|
||||
|
@ -417,7 +417,7 @@ EndFunction
|
||||
//
|
||||
// Parameters:
|
||||
// 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
|
||||
// Token - String - Access token, when app auth method used - token
|
||||
//
|
||||
@ -443,7 +443,7 @@ EndFunction
|
||||
//
|
||||
// Parameters:
|
||||
// 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
|
||||
//
|
||||
// Returns:
|
||||
@ -468,7 +468,7 @@ EndFunction
|
||||
// Parameters:
|
||||
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url
|
||||
// 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
|
||||
//
|
||||
// Returns:
|
||||
@ -973,7 +973,7 @@ EndFunction
|
||||
// Clear - Boolean - True > structure with empty valuse, False > field descriptions at values - empty
|
||||
//
|
||||
// Returns:
|
||||
// Structure of Key-Value - Fields structure
|
||||
// Structure of KeyAndValue - Fields structure
|
||||
Function GetTasksFilterStructure(Val Clear = False) Export
|
||||
|
||||
// More
|
||||
@ -1423,7 +1423,7 @@ EndFunction
|
||||
// Clear - Boolean - True > structure with empty valuse, False > field descriptions at values - empty
|
||||
//
|
||||
// Returns:
|
||||
// Structure of Key-Value - Fields structure
|
||||
// Structure of KeyAndValue - Fields structure
|
||||
Function GetCommentStructure(Val Clear = False) Export
|
||||
|
||||
// More
|
||||
@ -2123,7 +2123,7 @@ EndFunction
|
||||
// Parameters:
|
||||
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url
|
||||
// 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
|
||||
//
|
||||
// Returns:
|
||||
@ -2219,7 +2219,7 @@ EndFunction
|
||||
// Token - String - Access token, when app auth method used - token
|
||||
//
|
||||
// Returns:
|
||||
// Structure of Key-Value - Fields structure
|
||||
// Structure of KeyAndValue - Fields structure
|
||||
Function GetFolderFilterStructure(Val URL, Val Clear = False, Val Token = "") Export
|
||||
|
||||
Parameters = NormalizeAuth(URL, Token, "disk.folder.getfields");
|
||||
@ -2542,7 +2542,7 @@ EndFunction
|
||||
//
|
||||
// Parameters:
|
||||
// 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
|
||||
//
|
||||
// Returns:
|
||||
@ -2976,7 +2976,7 @@ EndFunction
|
||||
// Clear - Boolean - True > structure with empty values, False > field types at values - empty
|
||||
//
|
||||
// Returns:
|
||||
// Structure of Key-Value - Fields structure
|
||||
// Structure of KeyAndValue - Fields structure
|
||||
Function GetChatStructure(Val Clear = False) Export
|
||||
|
||||
OPI_TypeConversion.GetBoolean(Clear);
|
||||
|
@ -1,4 +1,3 @@
|
||||
Manifest-Version: 1.0
|
||||
Runtime-Version: 8.3.15
|
||||
Base-Project: OpenIntegrations_Eng
|
||||
Manifest-Version: 1.0
|
||||
Base-Project: OpenIntegrations_ENG
|
||||
|
@ -202,7 +202,7 @@ EndFunction
|
||||
// Token - String - Token - token
|
||||
// Base - String - Base identifier - base
|
||||
// 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:
|
||||
// Map Of KeyAndValue - serialized JSON response from Airtable
|
||||
|
@ -417,7 +417,7 @@ EndFunction
|
||||
//
|
||||
// Parameters:
|
||||
// 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
|
||||
// Token - String - Access token, when app auth method used - token
|
||||
//
|
||||
@ -443,7 +443,7 @@ EndFunction
|
||||
//
|
||||
// Parameters:
|
||||
// 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
|
||||
//
|
||||
// Returns:
|
||||
@ -468,7 +468,7 @@ EndFunction
|
||||
// Parameters:
|
||||
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url
|
||||
// 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
|
||||
//
|
||||
// Returns:
|
||||
@ -973,7 +973,7 @@ EndFunction
|
||||
// Clear - Boolean - True > structure with empty valuse, False > field descriptions at values - empty
|
||||
//
|
||||
// Returns:
|
||||
// Structure of Key-Value - Fields structure
|
||||
// Structure of KeyAndValue - Fields structure
|
||||
Function GetTasksFilterStructure(Val Clear = False) Export
|
||||
|
||||
// More
|
||||
@ -1423,7 +1423,7 @@ EndFunction
|
||||
// Clear - Boolean - True > structure with empty valuse, False > field descriptions at values - empty
|
||||
//
|
||||
// Returns:
|
||||
// Structure of Key-Value - Fields structure
|
||||
// Structure of KeyAndValue - Fields structure
|
||||
Function GetCommentStructure(Val Clear = False) Export
|
||||
|
||||
// More
|
||||
@ -2123,7 +2123,7 @@ EndFunction
|
||||
// Parameters:
|
||||
// URL - String - URL of webhook or a Bitrix24 domain, when token used - url
|
||||
// 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
|
||||
//
|
||||
// Returns:
|
||||
@ -2219,7 +2219,7 @@ EndFunction
|
||||
// Token - String - Access token, when app auth method used - token
|
||||
//
|
||||
// Returns:
|
||||
// Structure of Key-Value - Fields structure
|
||||
// Structure of KeyAndValue - Fields structure
|
||||
Function GetFolderFilterStructure(Val URL, Val Clear = False, Val Token = "") Export
|
||||
|
||||
Parameters = NormalizeAuth(URL, Token, "disk.folder.getfields");
|
||||
@ -2542,7 +2542,7 @@ EndFunction
|
||||
//
|
||||
// Parameters:
|
||||
// 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
|
||||
//
|
||||
// Returns:
|
||||
@ -2976,7 +2976,7 @@ EndFunction
|
||||
// Clear - Boolean - True > structure with empty values, False > field types at values - empty
|
||||
//
|
||||
// Returns:
|
||||
// Structure of Key-Value - Fields structure
|
||||
// Structure of KeyAndValue - Fields structure
|
||||
Function GetChatStructure(Val Clear = False) Export
|
||||
|
||||
OPI_TypeConversion.GetBoolean(Clear);
|
||||
|
@ -232,7 +232,9 @@
|
||||
NewLine.Параметр = "--token";
|
||||
NewLine.Описание = "Token";
|
||||
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();
|
||||
@ -260,8 +262,8 @@
|
||||
NewLine.Модуль = "OPI_Airtable";
|
||||
NewLine.Метод = "CreateField";
|
||||
NewLine.МетодПоиска = "CREATEFIELD";
|
||||
NewLine.Параметр = "--Description of the new field";
|
||||
NewLine.Описание = "fielddata";
|
||||
NewLine.Параметр = "--fielddata";
|
||||
NewLine.Описание = "Description of the new field";
|
||||
NewLine.Область = "Working with fields";
|
||||
|
||||
|
||||
|
@ -488,8 +488,8 @@
|
||||
NewLine.Модуль = "OPI_Bitrix24";
|
||||
NewLine.Метод = "GetTasksList";
|
||||
NewLine.МетодПоиска = "GETTASKSLIST";
|
||||
NewLine.Параметр = "--Structure of task filter (see GetTaskFieldsStructure)";
|
||||
NewLine.Описание = "filter (optional, def. val. - Empty value)";
|
||||
NewLine.Параметр = "--filter";
|
||||
NewLine.Описание = "Structure of task filter (see GetTaskFieldsStructure) (optional, def. val. - Empty value)";
|
||||
NewLine.Область = "Tasks managment";
|
||||
|
||||
|
||||
@ -529,8 +529,8 @@
|
||||
NewLine.Модуль = "OPI_Bitrix24";
|
||||
NewLine.Метод = "CreateTask";
|
||||
NewLine.МетодПоиска = "CREATETASK";
|
||||
NewLine.Параметр = "--Task fields structure (see GetTaskFieldsStructure)";
|
||||
NewLine.Описание = "fields";
|
||||
NewLine.Параметр = "--fields";
|
||||
NewLine.Описание = "Task fields structure (see GetTaskFieldsStructure)";
|
||||
NewLine.Область = "Tasks managment";
|
||||
|
||||
|
||||
@ -570,8 +570,8 @@
|
||||
NewLine.Модуль = "OPI_Bitrix24";
|
||||
NewLine.Метод = "UpdateTask";
|
||||
NewLine.МетодПоиска = "UPDATETASK";
|
||||
NewLine.Параметр = "--Task fields structure";
|
||||
NewLine.Описание = "fields";
|
||||
NewLine.Параметр = "--fields";
|
||||
NewLine.Описание = "Task fields structure";
|
||||
NewLine.Область = "Tasks managment";
|
||||
|
||||
|
||||
@ -2902,8 +2902,8 @@
|
||||
NewLine.Модуль = "OPI_Bitrix24";
|
||||
NewLine.Метод = "GetFolderItems";
|
||||
NewLine.МетодПоиска = "GETFOLDERITEMS";
|
||||
NewLine.Параметр = "--Items filter (see GetFolderFilterStructure)";
|
||||
NewLine.Описание = "filter (optional, def. val. - Empty value)";
|
||||
NewLine.Параметр = "--filter";
|
||||
NewLine.Описание = "Items filter (see GetFolderFilterStructure) (optional, def. val. - Empty value)";
|
||||
NewLine.Область = "Catalogs managment";
|
||||
|
||||
|
||||
@ -3457,8 +3457,8 @@
|
||||
NewLine.Модуль = "OPI_Bitrix24";
|
||||
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";
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user