1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-23 22:05:15 +02:00
This commit is contained in:
Anton Titovets
2025-11-02 23:45:50 +03:00
parent d002dc5869
commit f9debc0e2e
3 changed files with 3 additions and 7 deletions

4
ci/docs_en vendored
View File

@@ -10,9 +10,7 @@ pipeline {
bat encoding: 'UTF-8', script:'chcp 65001 & xcopy "docs/en/md" "docs/docusaurus/docs" /s /e /i /y'
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus & npm install'
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus & npm run build'
withCredentials([string(credentialsId: 'neocities-en', variable: 'TOKEN')]) {
powershell encoding: 'UTF-8', script:'rclone sync C:/ProgramData/Jenkins/.jenkins/workspace/OpiDocs/OpiDocsEn/docs/docusaurus/build/ hoster:public_html_en --progress'
}
bat encoding: 'UTF-8', script:'rclone sync C:/ProgramData/Jenkins/.jenkins/workspace/OpiDocs/OpiDocsEn/docs/docusaurus/build/ hoster:public_html_en --progress'
}
bat encoding: 'UTF-8', script:'chcp 65001 & rmdir /s /q "C:/ProgramData/Jenkins/.jenkins/workspace/OpiDocs/OpiDocsEn/docs/docusaurus/build"'

4
ci/docs_ru vendored
View File

@@ -9,9 +9,7 @@ pipeline {
bat encoding: 'UTF-8', script:'chcp 65001 & xcopy "docs/ru/md" "docs/docusaurus/docs" /s /e /i /y'
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus & npm install'
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus & npm run build'
withCredentials([string(credentialsId: 'neocities-ru', variable: 'TOKEN')]) {
powershell encoding: 'UTF-8', script:'rclone sync C:/ProgramData/Jenkins/.jenkins/workspace/OpiDocs/OpiDocsRu/docs/docusaurus/build/ hoster:public_html --progress'
}
bat encoding: 'UTF-8', script:'rclone sync C:/ProgramData/Jenkins/.jenkins/workspace/OpiDocs/OpiDocsRu/docs/docusaurus/build/ hoster:public_html --progress'
}
bat encoding: 'UTF-8', script:'chcp 65001 & rmdir /s /q "C:/ProgramData/Jenkins/.jenkins/workspace/OpiDocs/OpiDocsRu/docs/docusaurus/build"'

View File

@@ -34,7 +34,7 @@ By default, all SELECT queries return an array of selected data, while other que
The PostgreSQL connector supports the use of positional parameters. All values passed both when executing queries directly through the `ExecuteRequestSQL()` function and in ORM methods with value setting, such as `AddRecords` and `UpdateRecords`, must be a structure of the form `{'Data Type': 'Value'}`. The following data types are supported:
:::TIP
:::tip
🟢 - Implemented, tested; 🟡 - Implemented, not tested
:::