1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-07-17 01:42:25 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2025-01-29 23:01:38 +03:00
parent 8de3153cb8
commit ecbb7f4cf5
23 changed files with 6873 additions and 6389 deletions

View File

@ -10,17 +10,16 @@ import TabItem from '@theme/TabItem';
`Function AddRequestsHandler(Val Project, Val Name, Val SecretKey, Val Method = "GET") Export`
`Function AddRequestsHandler(Val Project, Val OintFunction, Val Method = "GET") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Project | --proj | String | ✔ | Project filepath |
| Name | --name | String | ✔ | Name of the new handler |
| SecretKey | --secret | String | ✔ | Secret key for URL handler |
| OintFunction | --func | String | ✔ | OpenIntegrations function name |
| Method | --method | String | ✖ | HTTP method that will process the handler: GET, POST, MULTIPART |
Returns: Structure Of KeyAndValue - result of adding a handler
Returns: Structure Of KeyAndValue - Result of handler creation
<br/>

View File

@ -17,7 +17,7 @@ import TabItem from '@theme/TabItem';
| Path | --path | String | &#x2714; | Project filepath |
Returns: Structure Of KeyAndValue - creation result
Returns: Structure Of KeyAndValue - Creation result
<br/>

View File

@ -0,0 +1,35 @@
---
sidebar_position: 4
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Delete request handler
Removes the request handler from the project
`Function DeleteRequestHandler(Val Project, Val HandlerKey) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Project | --proj | String | &#x2714; | Project filepath |
| HandlerKey | --handler | String | &#x2714; | Handler key |
Returns: Structure Of KeyAndValue - Deletion result
<br/>
```bsl title="1C:Enterprise/OneScript code example"
```

View File

@ -0,0 +1,34 @@
---
sidebar_position: 3
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get the list of request handlers
Gets the list of handlers in the project
`Function GetRequestHandlersList(Val Project) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Project | --proj | String | &#x2714; | Project filepath |
Returns: Structure Of KeyAndValue - Handlers list
<br/>
```bsl title="1C:Enterprise/OneScript code example"
```

View File

@ -1,5 +1,5 @@
---
sidebar_position: 3
sidebar_position: 5
---
import Tabs from '@theme/Tabs';
@ -18,7 +18,7 @@ import TabItem from '@theme/TabItem';
| Project | --proj | String | &#x2714; | Project filepath |
Returns: Structure Of KeyAndValue - server shutdown result
Returns: Structure Of KeyAndValue - Result of server shutdown
<br/>