1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-04 20:54:02 +02:00

Merge remote-tracking branch 'origin/main'

This commit is contained in:
Anton Titovets
2025-09-10 19:18:34 +03:00
1723 changed files with 106059 additions and 101127 deletions
BIN
View File
Binary file not shown.
+1
View File
@@ -0,0 +1 @@
{"Host":"172.33.0.10","Port":21,"Login":"bayselonarrend","Password":"12we...","ProxyType":"http","ProxyAddress":"127.0.0.1","ProxyPort":8071,"ProxyLogin":"proxyuser","ProxyPassword":"12we..."}
+1
View File
@@ -0,0 +1 @@
{"Host":"172.33.0.10","Port":21,"Login":"bayselonarrend","Password":"12we...","ProxyType":"http","ProxyAddress":"127.0.0.1","ProxyPort":8071,"ProxyLogin":"proxyuser","ProxyPassword":"12we..."}
+1
View File
@@ -0,0 +1 @@
{"Host":"172.33.0.10","Port":21,"Login":"bayselonarrend","Password":"12we...","ProxyType":"http","ProxyAddress":"127.0.0.1","ProxyPort":8071,"ProxyLogin":"proxyuser","ProxyPassword":"12we..."}
+1
View File
@@ -0,0 +1 @@
{"Host":"172.33.0.10","Port":21,"Login":"bayselonarrend","Password":"12we...","ProxyType":"http","ProxyAddress":"127.0.0.1","ProxyPort":8071,"ProxyLogin":"proxyuser","ProxyPassword":"12we..."}
+1
View File
@@ -0,0 +1 @@
{"Host":"172.33.0.10","Port":21,"Login":"bayselonarrend","Password":"12we...","ProxyType":"http","ProxyAddress":"127.0.0.1","ProxyPort":8071,"ProxyLogin":"proxyuser","ProxyPassword":"12we..."}
+1
View File
@@ -0,0 +1 @@
{"Host":"172.33.0.10","Port":21,"Login":"bayselonarrend","Password":"12we...","ProxyType":"http","ProxyAddress":"127.0.0.1","ProxyPort":8071,"ProxyLogin":"proxyuser","ProxyPassword":"12we..."}
+38
View File
@@ -0,0 +1,38 @@
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
Path = "new_dir";
Result = OPI_FTP.ChangeCurrentDirectory(Connection, Path);
Else
Result = Connection; // Error of connection
EndIf;
+40
View File
@@ -0,0 +1,40 @@
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
CommandText = "PWD";
Result = OPI_FTP.ExecuteArbitraryCommand(Connection, CommandText);
Else
Result = Connection; // Error of connection
EndIf;
+40
View File
@@ -0,0 +1,40 @@
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
CommandText = "UMASK";
Result = OPI_FTP.ExecuteCustomCommand(Connection, CommandText);
Else
Result = Connection; // Error of connection
EndIf;
+37
View File
@@ -0,0 +1,37 @@
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
Result = OPI_FTP.GetCurrentDirectory(Connection);
Else
Result = Connection; // Error of connection
EndIf;
+37
View File
@@ -0,0 +1,37 @@
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
Result = OPI_FTP.GetProtocolFeatureList(Connection);
Else
Result = Connection; // Error of connection
EndIf;
+37
View File
@@ -0,0 +1,37 @@
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
Result = OPI_FTP.Ping(Connection);
Else
Result = Connection; // Error of connection
EndIf;
@@ -0,0 +1,76 @@
---
sidebar_position: 8
description: Execute arbitrary command and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Execute arbitrary command
Sends an arbitrary text request to the server for processing
`Function ExecuteArbitraryCommand(Val Connection, Val CommandText) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Connection | --conn | Arbitrary | ✔ | Existing connection or connection configuration |
| CommandText | --cmd | String | ✔ | Text of the executed command |
Returns: Map Of KeyAndValue - Processing result
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
CommandText = "PWD";
Result = OPI_FTP.ExecuteArbitraryCommand(Connection, CommandText);
Else
Result = Connection; // Error of connection
EndIf;
```
@@ -0,0 +1,82 @@
---
sidebar_position: 7
description: Execute custom command and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Execute custom command
Executes a specific (SITE) server command and returns the response
`Function ExecuteCustomCommand(Val Connection, Val CommandText) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Connection | --conn | Arbitrary | &#x2714; | Existing connection or connection configuration |
| CommandText | --cmd | String | &#x2714; | Text of the executed command |
Returns: Map Of KeyAndValue - Processing result
<br/>
:::tip
The result can be returned as text or Base64 binary data in the structure `{"BYTES": &lt;B64 string&gt;}`
FTP Command: `SITE`
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
CommandText = "UMASK";
Result = OPI_FTP.ExecuteCustomCommand(Connection, CommandText);
Else
Result = Connection; // Error of connection
EndIf;
```
+1 -1
View File
@@ -1,5 +1,5 @@
---
sidebar_position: 8
sidebar_position: 12
description: Get connection settings and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
+5 -1
View File
@@ -1,5 +1,5 @@
---
sidebar_position: 5
sidebar_position: 9
description: Get object size and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
@@ -24,6 +24,10 @@ import TabItem from '@theme/TabItem';
<br/>
:::tip
FTP Command: `SIZE`
:::
<br/>
@@ -0,0 +1,76 @@
---
sidebar_position: 5
description: Get protocol feature list and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get protocol feature list
Gets a list of FTP protocol features supported by the server
`Function GetProtocolFeatureList(Val Connection) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Connection | --conn | Arbitrary | &#x2714; | Existing connection or connection configuration |
Returns: Map Of KeyAndValue - Processing result
<br/>
:::tip
FTP Command: `FEAT`
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
Result = OPI_FTP.GetProtocolFeatureList(Connection);
Else
Result = Connection; // Error of connection
EndIf;
```
+1 -1
View File
@@ -1,5 +1,5 @@
---
sidebar_position: 9
sidebar_position: 13
description: Get proxy settings and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
+1 -1
View File
@@ -1,5 +1,5 @@
---
sidebar_position: 10
sidebar_position: 14
description: Get TLS Settings and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
+1 -1
View File
@@ -1,5 +1,5 @@
---
sidebar_position: 7
sidebar_position: 11
description: Is connector and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
+76
View File
@@ -0,0 +1,76 @@
---
sidebar_position: 6
description: Ping and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Ping
Checks the connection activity and resets the timeout until its automatic closure
`Function Ping(Val Connection) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Connection | --conn | Arbitrary | &#x2714; | Existing connection or connection configuration |
Returns: Boolean - Success of server access
<br/>
:::tip
FTP Command: `NOOP`
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
Result = OPI_FTP.Ping(Connection);
Else
Result = Connection; // Error of connection
EndIf;
```
+4 -2
View File
@@ -1,5 +1,5 @@
---
sidebar_position: 6
sidebar_position: 10
description: Update path and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
@@ -26,7 +26,9 @@ import TabItem from '@theme/TabItem';
<br/>
:::tip
The ability to move an object from one directory to another using renaming depends on the server settings
The ability to move an object from one directory to another by changing the path depends on the server settings
FTP Command: `RNFR + RNTO`
:::
<br/>
@@ -0,0 +1,82 @@
---
sidebar_position: 6
description: Change current directory and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Change current directory
Changes the current directory from which relative paths are calculated
`Function ChangeCurrentDirectory(Val Connection, Val Path) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Connection | - | Arbitrary | &#x2714; | Existing connection or connection configuration |
| Path | - | String | &#x2714; | Path to new directory |
Returns: Map Of KeyAndValue - Processing result
<br/>
:::tip
FTP Command: `CWD`
:::
:::caution
**NOCLI:** this method is not available in CLI version
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
Path = "new_dir";
Result = OPI_FTP.ChangeCurrentDirectory(Connection, Path);
Else
Result = Connection; // Error of connection
EndIf;
```
@@ -24,6 +24,10 @@ import TabItem from '@theme/TabItem';
<br/>
:::tip
FTP Command: `MKD`
:::
<br/>
@@ -24,6 +24,10 @@ import TabItem from '@theme/TabItem';
<br/>
:::tip
FTP Command: `RMD`
:::
<br/>
@@ -0,0 +1,76 @@
---
sidebar_position: 5
description: Get current directory and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get current directory
Gets the current directory from which relative paths are calculated
`Function GetCurrentDirectory(Val Connection) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Connection | --conn | Arbitrary | &#x2714; | Existing connection or connection configuration |
Returns: Map Of KeyAndValue - Processing result
<br/>
:::tip
FTP Command: `PWD`
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
Result = OPI_FTP.GetCurrentDirectory(Connection);
Else
Result = Connection; // Error of connection
EndIf;
```
+4
View File
@@ -25,6 +25,10 @@ import TabItem from '@theme/TabItem';
<br/>
:::tip
FTP Command: `LIST`
:::
<br/>
+4
View File
@@ -24,6 +24,10 @@ import TabItem from '@theme/TabItem';
<br/>
:::tip
FTP Command: `DELE`
:::
<br/>
+3
View File
@@ -24,6 +24,9 @@ import TabItem from '@theme/TabItem';
<br/>
:::tip
FTP Command: `RETR`
:::
:::caution
**NOCLI:** this method is not available in CLI version
+4
View File
@@ -25,6 +25,10 @@ import TabItem from '@theme/TabItem';
<br/>
:::tip
FTP Command: `RETR`
:::
<br/>
+2
View File
@@ -26,6 +26,8 @@ import TabItem from '@theme/TabItem';
<br/>
:::tip
FTP Command: `STOR`
Parameters with Binary data type can also accept file paths on disk and URLs
:::
<br/>
@@ -1,7 +1,7 @@
oint airtable ИзменитьКомментарий \
--token *** \
--base "applbIaIibrNCfgWV" \
--table "tblsEk570hwylHgZI" \
--record "recGX8JT5HR9B8AgY" \
--comment "comNgN8BSXsVZ9Qq2" \
--token "***" \
--base "appyeZWJjF11nuKOK" \
--table "tbltHfweAPCa9LYCD" \
--record "recsgokD63dbUKGvY" \
--comment "comIlm1e1X5F7yfUR" \
--text "Тестовый комментарий (изм.)"
@@ -1,7 +1,7 @@
oint airtable ИзменитьКомментарий ^
--token *** ^
--base "applbIaIibrNCfgWV" ^
--table "tblsEk570hwylHgZI" ^
--record "recGX8JT5HR9B8AgY" ^
--comment "comNgN8BSXsVZ9Qq2" ^
--token "***" ^
--base "appyeZWJjF11nuKOK" ^
--table "tbltHfweAPCa9LYCD" ^
--record "recsgokD63dbUKGvY" ^
--comment "comIlm1e1X5F7yfUR" ^
--text "Тестовый комментарий (изм.)"
+5 -5
View File
@@ -1,7 +1,7 @@
oint airtable ИзменитьПоле \
--token *** \
--base "applbIaIibrNCfgWV" \
--table "tblsEk570hwylHgZI" \
--field "fldXVm5VdlxQJHugq" \
--title "d8412d5f-2b48-4f52-a10c-589ef9659975(изм.)" \
--token "***" \
--base "appyeZWJjF11nuKOK" \
--table "tbltHfweAPCa9LYCD" \
--field "fldxLOBWSnogU67ff" \
--title "011a50cc-cf19-4b4e-9102-9e1a23018a4d(изм.)" \
--description "Новое описание"
+5 -5
View File
@@ -1,7 +1,7 @@
oint airtable ИзменитьПоле ^
--token *** ^
--base "applbIaIibrNCfgWV" ^
--table "tblsEk570hwylHgZI" ^
--field "fldXVm5VdlxQJHugq" ^
--title "d8412d5f-2b48-4f52-a10c-589ef9659975(изм.)" ^
--token "***" ^
--base "appyeZWJjF11nuKOK" ^
--table "tbltHfweAPCa9LYCD" ^
--field "fldxLOBWSnogU67ff" ^
--title "011a50cc-cf19-4b4e-9102-9e1a23018a4d(изм.)" ^
--description "Новое описание"
@@ -1,6 +1,6 @@
oint airtable ИзменитьТаблицу \
--token *** \
--base "applbIaIibrNCfgWV" \
--table "tblsEk570hwylHgZI" \
--token "***" \
--base "appyeZWJjF11nuKOK" \
--table "tbltHfweAPCa9LYCD" \
--title "Тестовая таблица 2 (изм.)" \
--description "Новая таблица (изм.)"
@@ -1,6 +1,6 @@
oint airtable ИзменитьТаблицу ^
--token *** ^
--base "applbIaIibrNCfgWV" ^
--table "tblsEk570hwylHgZI" ^
--token "***" ^
--base "appyeZWJjF11nuKOK" ^
--table "tbltHfweAPCa9LYCD" ^
--title "Тестовая таблица 2 (изм.)" ^
--description "Новая таблица (изм.)"
+4 -4
View File
@@ -1,5 +1,5 @@
oint airtable ПолучитьЗапись \
--token *** \
--base "applbIaIibrNCfgWV" \
--table "tblsEk570hwylHgZI" \
--record "recGX8JT5HR9B8AgY"
--token "***" \
--base "appyeZWJjF11nuKOK" \
--table "tbltHfweAPCa9LYCD" \
--record "recsgokD63dbUKGvY"
+4 -4
View File
@@ -1,5 +1,5 @@
oint airtable ПолучитьЗапись ^
--token *** ^
--base "applbIaIibrNCfgWV" ^
--table "tblsEk570hwylHgZI" ^
--record "recGX8JT5HR9B8AgY"
--token "***" ^
--base "appyeZWJjF11nuKOK" ^
--table "tbltHfweAPCa9LYCD" ^
--record "recsgokD63dbUKGvY"
@@ -1,5 +1,5 @@
oint airtable ПолучитьКомментарии \
--token *** \
--base "applbIaIibrNCfgWV" \
--table "tblsEk570hwylHgZI" \
--record "recGX8JT5HR9B8AgY"
--token "***" \
--base "appyeZWJjF11nuKOK" \
--table "tbltHfweAPCa9LYCD" \
--record "recsgokD63dbUKGvY"
@@ -1,5 +1,5 @@
oint airtable ПолучитьКомментарии ^
--token *** ^
--base "applbIaIibrNCfgWV" ^
--table "tblsEk570hwylHgZI" ^
--record "recGX8JT5HR9B8AgY"
--token "***" ^
--base "appyeZWJjF11nuKOK" ^
--table "tbltHfweAPCa9LYCD" ^
--record "recsgokD63dbUKGvY"
@@ -1,2 +1,2 @@
oint airtable ПолучитьПолеНомера \
--title "81eb25ac-6e5f-4558-9e9d-a5c352167d5c"
--title "444eba3f-0a49-4114-82d1-fbaed36b2064"
@@ -1,2 +1,2 @@
oint airtable ПолучитьПолеНомера ^
--title "81eb25ac-6e5f-4558-9e9d-a5c352167d5c"
--title "444eba3f-0a49-4114-82d1-fbaed36b2064"
@@ -1,2 +1,2 @@
oint airtable ПолучитьСписокБаз \
--token ***
--token "***"
@@ -1,2 +1,2 @@
oint airtable ПолучитьСписокБаз ^
--token ***
--token "***"
@@ -1,4 +1,4 @@
oint airtable ПолучитьСписокЗаписей \
--token *** \
--base "applbIaIibrNCfgWV" \
--table "tblsEk570hwylHgZI"
--token "***" \
--base "appyeZWJjF11nuKOK" \
--table "tbltHfweAPCa9LYCD"
@@ -1,4 +1,4 @@
oint airtable ПолучитьСписокЗаписей ^
--token *** ^
--base "applbIaIibrNCfgWV" ^
--table "tblsEk570hwylHgZI"
--token "***" ^
--base "appyeZWJjF11nuKOK" ^
--table "tbltHfweAPCa9LYCD"
@@ -1,3 +1,3 @@
oint airtable ПолучитьТаблицыБазы \
--token *** \
--base "applbIaIibrNCfgWV"
--token "***" \
--base "appyeZWJjF11nuKOK"
@@ -1,3 +1,3 @@
oint airtable ПолучитьТаблицыБазы ^
--token *** ^
--base "applbIaIibrNCfgWV"
--token "***" ^
--base "appyeZWJjF11nuKOK"
+1 -1
View File
@@ -1,5 +1,5 @@
oint airtable СоздатьБазу \
--token *** \
--token "***" \
--ws "wspdf8yl1yZz3PmWZ" \
--title "Тестовая база" \
--tablesdata "{'Тестовая таблица':[{'name':'Номер','type':'number','options':{'precision':'0'}},{'name':'Строковое','type':'richText'}]}"
+1 -1
View File
@@ -1,5 +1,5 @@
oint airtable СоздатьБазу ^
--token *** ^
--token "***" ^
--ws "wspdf8yl1yZz3PmWZ" ^
--title "Тестовая база" ^
--tablesdata "{'Тестовая таблица':[{'name':'Номер','type':'number','options':{'precision':'0'}},{'name':'Строковое','type':'richText'}]}"
+3 -3
View File
@@ -1,5 +1,5 @@
oint airtable СоздатьЗаписи \
--token *** \
--base "applbIaIibrNCfgWV" \
--table "tblsEk570hwylHgZI" \
--token "***" \
--base "appyeZWJjF11nuKOK" \
--table "tbltHfweAPCa9LYCD" \
--data "{'Номер':'10','Строковое':'Привет'}"
+3 -3
View File
@@ -1,5 +1,5 @@
oint airtable СоздатьЗаписи ^
--token *** ^
--base "applbIaIibrNCfgWV" ^
--table "tblsEk570hwylHgZI" ^
--token "***" ^
--base "appyeZWJjF11nuKOK" ^
--table "tbltHfweAPCa9LYCD" ^
--data "{'Номер':'10','Строковое':'Привет'}"
@@ -1,6 +1,6 @@
oint airtable СоздатьКомментарий \
--token *** \
--base "applbIaIibrNCfgWV" \
--table "tblsEk570hwylHgZI" \
--record "recGX8JT5HR9B8AgY" \
--token "***" \
--base "appyeZWJjF11nuKOK" \
--table "tbltHfweAPCa9LYCD" \
--record "recsgokD63dbUKGvY" \
--text "Тестовый комментарий"
@@ -1,6 +1,6 @@
oint airtable СоздатьКомментарий ^
--token *** ^
--base "applbIaIibrNCfgWV" ^
--table "tblsEk570hwylHgZI" ^
--record "recGX8JT5HR9B8AgY" ^
--token "***" ^
--base "appyeZWJjF11nuKOK" ^
--table "tbltHfweAPCa9LYCD" ^
--record "recsgokD63dbUKGvY" ^
--text "Тестовый комментарий"
+4 -4
View File
@@ -1,5 +1,5 @@
oint airtable СоздатьПоле \
--token *** \
--base "applbIaIibrNCfgWV" \
--table "tblsEk570hwylHgZI" \
--fielddata "{'name':'81eb25ac-6e5f-4558-9e9d-a5c352167d5c','type':'number','options':{'precision':'0'}}"
--token "***" \
--base "appyeZWJjF11nuKOK" \
--table "tbltHfweAPCa9LYCD" \
--fielddata "{'name':'444eba3f-0a49-4114-82d1-fbaed36b2064','type':'number','options':{'precision':'0'}}"
+4 -4
View File
@@ -1,5 +1,5 @@
oint airtable СоздатьПоле ^
--token *** ^
--base "applbIaIibrNCfgWV" ^
--table "tblsEk570hwylHgZI" ^
--fielddata "{'name':'81eb25ac-6e5f-4558-9e9d-a5c352167d5c','type':'number','options':{'precision':'0'}}"
--token "***" ^
--base "appyeZWJjF11nuKOK" ^
--table "tbltHfweAPCa9LYCD" ^
--fielddata "{'name':'444eba3f-0a49-4114-82d1-fbaed36b2064','type':'number','options':{'precision':'0'}}"
+2 -2
View File
@@ -1,6 +1,6 @@
oint airtable СоздатьТаблицу \
--token *** \
--base "applbIaIibrNCfgWV" \
--token "***" \
--base "appyeZWJjF11nuKOK" \
--title "Тестовая таблица 2" \
--fieldsdata "[{'name':'Номер','type':'number','options':{'precision':'0'}},{'name':'Строковое','type':'richText'},{'name':'Вложение','type':'multipleAttachments'},{'name':'Флажок','type':'checkbox','options':{'icon':'check','color':'yellowBright'}},{'name':'Дата','type':'date','options':{'dateFormat':{'format':'YYYY-MM-DD','name':'iso'}}},{'name':'Телефон','type':'phoneNumber'},{'name':'Почта','type':'email'},{'name':'Ссылка','type':'url'}]" \
--description "Новая таблица"
+2 -2
View File
@@ -1,6 +1,6 @@
oint airtable СоздатьТаблицу ^
--token *** ^
--base "applbIaIibrNCfgWV" ^
--token "***" ^
--base "appyeZWJjF11nuKOK" ^
--title "Тестовая таблица 2" ^
--fieldsdata "[{'name':'Номер','type':'number','options':{'precision':'0'}},{'name':'Строковое','type':'richText'},{'name':'Вложение','type':'multipleAttachments'},{'name':'Флажок','type':'checkbox','options':{'icon':'check','color':'yellowBright'}},{'name':'Дата','type':'date','options':{'dateFormat':{'format':'YYYY-MM-DD','name':'iso'}}},{'name':'Телефон','type':'phoneNumber'},{'name':'Почта','type':'email'},{'name':'Ссылка','type':'url'}]" ^
--description "Новая таблица"
+4 -4
View File
@@ -1,5 +1,5 @@
oint airtable УдалитьЗаписи \
--token *** \
--base "applbIaIibrNCfgWV" \
--table "tblsEk570hwylHgZI" \
--records "recGX8JT5HR9B8AgY"
--token "***" \
--base "appyeZWJjF11nuKOK" \
--table "tbltHfweAPCa9LYCD" \
--records "recsgokD63dbUKGvY"
+4 -4
View File
@@ -1,5 +1,5 @@
oint airtable УдалитьЗаписи ^
--token *** ^
--base "applbIaIibrNCfgWV" ^
--table "tblsEk570hwylHgZI" ^
--records "recGX8JT5HR9B8AgY"
--token "***" ^
--base "appyeZWJjF11nuKOK" ^
--table "tbltHfweAPCa9LYCD" ^
--records "recsgokD63dbUKGvY"
@@ -1,6 +1,6 @@
oint airtable УдалитьКомментарий \
--token *** \
--base "applbIaIibrNCfgWV" \
--table "tblsEk570hwylHgZI" \
--record "recGX8JT5HR9B8AgY" \
--comment "comNgN8BSXsVZ9Qq2"
--token "***" \
--base "appyeZWJjF11nuKOK" \
--table "tbltHfweAPCa9LYCD" \
--record "recsgokD63dbUKGvY" \
--comment "comIlm1e1X5F7yfUR"
@@ -1,6 +1,6 @@
oint airtable УдалитьКомментарий ^
--token *** ^
--base "applbIaIibrNCfgWV" ^
--table "tblsEk570hwylHgZI" ^
--record "recGX8JT5HR9B8AgY" ^
--comment "comNgN8BSXsVZ9Qq2"
--token "***" ^
--base "appyeZWJjF11nuKOK" ^
--table "tbltHfweAPCa9LYCD" ^
--record "recsgokD63dbUKGvY" ^
--comment "comIlm1e1X5F7yfUR"
@@ -1,4 +1,4 @@
oint bitrix24 ВключитьЗвукЗадачи \
--url "b24-ar17wx.bitrix24.by" \
--task "7786" \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--task ""7796"" \
--token "***"
@@ -1,4 +1,4 @@
oint bitrix24 ВключитьЗвукЗадачи ^
--url "b24-ar17wx.bitrix24.by" ^
--task "7786" ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--task ""7796"" ^
--token "***"
@@ -1,4 +1,4 @@
oint bitrix24 ВключитьУведомленияЧата \
--url "b24-ar17wx.bitrix24.by" \
--chat 3022 \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--chat "3026" \
--token "***"
@@ -1,4 +1,4 @@
oint bitrix24 ВключитьУведомленияЧата ^
--url "b24-ar17wx.bitrix24.by" ^
--chat 3022 ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--chat "3026" ^
--token "***"
@@ -1,4 +1,4 @@
oint bitrix24 ВозобновитьЗадачу \
--url "b24-ar17wx.bitrix24.by" \
--task "7786" \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--task ""7796"" \
--token "***"
@@ -1,4 +1,4 @@
oint bitrix24 ВозобновитьЗадачу ^
--url "b24-ar17wx.bitrix24.by" ^
--task "7786" ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--task ""7796"" ^
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ВозобновитьЭлементЧеклистаЗадачи \
--url "b24-ar17wx.bitrix24.by" \
--task "7786" \
--element 5422 \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--task ""7796"" \
--element "5430" \
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ВозобновитьЭлементЧеклистаЗадачи ^
--url "b24-ar17wx.bitrix24.by" ^
--task "7786" ^
--element 5422 ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--task ""7796"" ^
--element "5430" ^
--token "***"
@@ -1,4 +1,4 @@
oint bitrix24 ВосстановитьКаталог \
--url "b24-ar17wx.bitrix24.by" \
--folderid 41662 \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--folderid "41716" \
--token "***"
@@ -1,4 +1,4 @@
oint bitrix24 ВосстановитьКаталог ^
--url "b24-ar17wx.bitrix24.by" ^
--folderid 41662 ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--folderid "41716" ^
--token "***"
@@ -1,4 +1,4 @@
oint bitrix24 ВосстановитьФайл \
--url "b24-ar17wx.bitrix24.by" \
--fileid 41656 \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--fileid "41710" \
--token "***"
@@ -1,4 +1,4 @@
oint bitrix24 ВосстановитьФайл ^
--url "b24-ar17wx.bitrix24.by" ^
--fileid 41656 ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--fileid "41710" ^
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ВыполнитьЭлементЧеклистаЗадачи \
--url "b24-ar17wx.bitrix24.by" \
--task "7786" \
--element 5422 \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--task ""7796"" \
--element "5430" \
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ВыполнитьЭлементЧеклистаЗадачи ^
--url "b24-ar17wx.bitrix24.by" ^
--task "7786" ^
--element 5422 ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--task ""7796"" ^
--element "5430" ^
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ДелегироватьЗадачу \
--url "b24-ar17wx.bitrix24.by" \
--task "7786" \
--user 2584 \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--task ""7796"" \
--user "2588" \
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ДелегироватьЗадачу ^
--url "b24-ar17wx.bitrix24.by" ^
--task "7786" ^
--user 2584 ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--task ""7796"" ^
--user "2588" ^
--token "***"
@@ -1,4 +1,4 @@
oint bitrix24 ДобавитьЗадачуВИзбранное \
--url "b24-ar17wx.bitrix24.by" \
--task "7786" \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--task ""7796"" \
--token "***"
@@ -1,4 +1,4 @@
oint bitrix24 ДобавитьЗадачуВИзбранное ^
--url "b24-ar17wx.bitrix24.by" ^
--task "7786" ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--task ""7796"" ^
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ДобавитьКомментарийЗадачи \
--url "b24-ar17wx.bitrix24.by" \
--task "7788" \
--text "Задача выполнима, не расходимся" \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--task ""7798"" \
--text ""Задача выполнима, не расходимся"" \
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ДобавитьКомментарийЗадачи ^
--url "b24-ar17wx.bitrix24.by" ^
--task "7788" ^
--text "Задача выполнима, не расходимся" ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--task ""7798"" ^
--text ""Задача выполнима, не расходимся"" ^
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ДобавитьКомментарийНовости \
--url "b24-ar17wx.bitrix24.by" \
--postid 2948 \
--text "Другой комментарий к новости" \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--postid "2952" \
--text ""Другой комментарий к новости"" \
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ДобавитьКомментарийНовости ^
--url "b24-ar17wx.bitrix24.by" ^
--postid 2948 ^
--text "Другой комментарий к новости" ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--postid "2952" ^
--text ""Другой комментарий к новости"" ^
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ДобавитьПолучателейКНовости \
--url "b24-ar17wx.bitrix24.by" \
--postid 2948 \
--vision "UA" \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--postid "2952" \
--vision ""UA"" \
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ДобавитьПолучателейКНовости ^
--url "b24-ar17wx.bitrix24.by" ^
--postid 2948 ^
--vision "UA" ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--postid "2952" ^
--vision ""UA"" ^
--token "***"
@@ -1,6 +1,6 @@
oint bitrix24 ДобавитьПользователейВЧат \
--url "b24-ar17wx.bitrix24.by" \
--chat 3022 \
--users 10 \
--hide true \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--chat "3026" \
--users "10" \
--hide "true" \
--token "***"
@@ -1,6 +1,6 @@
oint bitrix24 ДобавитьПользователейВЧат ^
--url "b24-ar17wx.bitrix24.by" ^
--chat 3022 ^
--users 10 ^
--hide true ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--chat "3026" ^
--users "10" ^
--hide "true" ^
--token "***"
@@ -1,8 +1,8 @@
oint bitrix24 ДобавитьПользовательскоеПолеЗадачи \
--url "b24-ar17wx.bitrix24.by" \
--type "string" \
--fieldname "TEXT_FIELD" \
--externalid "BITRIX_TEXT_FIELD" \
--title "Поле для текста" \
--label "{'en':'Some field','ru':'Некоторое поле'}" \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--type ""string"" \
--fieldname ""TEXT_FIELD"" \
--externalid ""BITRIX_TEXT_FIELD"" \
--title ""Поле для текста"" \
--label ""/tmp/ofhpef4h.0oo.json"" \
--token "***"
@@ -1,8 +1,8 @@
oint bitrix24 ДобавитьПользовательскоеПолеЗадачи ^
--url "b24-ar17wx.bitrix24.by" ^
--type "string" ^
--fieldname "TEXT_FIELD" ^
--externalid "BITRIX_TEXT_FIELD" ^
--title "Поле для текста" ^
--label "{'en':'Some field','ru':'Некоторое поле'}" ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--type ""string"" ^
--fieldname ""TEXT_FIELD"" ^
--externalid ""BITRIX_TEXT_FIELD"" ^
--title ""Поле для текста"" ^
--label ""/tmp/ofhpef4h.0oo.json"" ^
--token "***"
@@ -1,7 +1,7 @@
oint bitrix24 ДобавитьСтадиюКанбана \
--url "b24-ar17wx.bitrix24.by" \
--title "Новая стадия 2" \
--color "0026FF" \
--prevstage 2846 \
--admin true \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--title ""Новая стадия 2"" \
--color ""0026FF"" \
--prevstage "2850" \
--admin "true" \
--token "***"
@@ -1,7 +1,7 @@
oint bitrix24 ДобавитьСтадиюКанбана ^
--url "b24-ar17wx.bitrix24.by" ^
--title "Новая стадия 2" ^
--color "0026FF" ^
--prevstage 2846 ^
--admin true ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--title ""Новая стадия 2"" ^
--color ""0026FF"" ^
--prevstage "2850" ^
--admin "true" ^
--token "***"
@@ -1,8 +1,8 @@
oint bitrix24 ДобавитьТрудозатратыЗадачи \
--url "b24-ar17wx.bitrix24.by" \
--task "7792" \
--amount 7200 \
--user 10 \
--text "Трудозатраты по обработке" \
--date "2025-08-09T18:38:52.4859024" \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--task ""7802"" \
--amount "7200" \
--user "10" \
--text ""Трудозатраты по обработке"" \
--date ""2025-08-10T13:38:25.7395233"" \
--token "***"
@@ -1,8 +1,8 @@
oint bitrix24 ДобавитьТрудозатратыЗадачи ^
--url "b24-ar17wx.bitrix24.by" ^
--task "7792" ^
--amount 7200 ^
--user 10 ^
--text "Трудозатраты по обработке" ^
--date "2025-08-09T18:38:52.4859024" ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--task ""7802"" ^
--amount "7200" ^
--user "10" ^
--text ""Трудозатраты по обработке"" ^
--date ""2025-08-10T13:38:25.7395233"" ^
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ДобавитьФайлВЗадачу \
--url "b24-ar17wx.bitrix24.by" \
--task "7786" \
--fileid 41652 \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--task ""7796"" \
--fileid "41706" \
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ДобавитьФайлВЗадачу ^
--url "b24-ar17wx.bitrix24.by" ^
--task "7786" ^
--fileid 41652 ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--task ""7796"" ^
--fileid "41706" ^
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ДобавитьЭлементЧеклистаЗадачи \
--url "b24-ar17wx.bitrix24.by" \
--task "7786" \
--text "Пункт чек-листа" \
--token ***
--url ""b24-ar17wx.bitrix24.by"" \
--task ""7796"" \
--text ""Пункт чек-листа"" \
--token "***"
@@ -1,5 +1,5 @@
oint bitrix24 ДобавитьЭлементЧеклистаЗадачи ^
--url "b24-ar17wx.bitrix24.by" ^
--task "7786" ^
--text "Пункт чек-листа" ^
--token ***
--url ""b24-ar17wx.bitrix24.by"" ^
--task ""7796"" ^
--text ""Пункт чек-листа"" ^
--token "***"

Some files were not shown because too many files have changed in this diff Show More