Skip to content

Commit

Permalink
Main build (Jenkins)
Browse files Browse the repository at this point in the history
  • Loading branch information
VitalyTheAlpaca committed Dec 25, 2024
1 parent bc0ec0a commit 96cf5b6
Show file tree
Hide file tree
Showing 302 changed files with 7,026 additions and 7,026 deletions.
12 changes: 6 additions & 6 deletions docs/en/md/Airtable/Comment-management/Create-comment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ import TabItem from '@theme/TabItem';
```bash
oint airtable CreateComment \
--token "***" \
--base "appeY9wmT8gwFhnc8" \
--table "tbluGIDpz3uigdYJA" \
--record "rec3n8Lkt8cQAP0Ci" \
--base "appTOiWfyXYHsiTf0" \
--table "tblX1A36oAy2fnPS8" \
--record "recRdTMLK4jKqDLYA" \
--text "TestComment"
```
</TabItem>
Expand All @@ -56,9 +56,9 @@ import TabItem from '@theme/TabItem';
```batch
oint airtable CreateComment ^
--token "***" ^
--base "appeY9wmT8gwFhnc8" ^
--table "tbluGIDpz3uigdYJA" ^
--record "rec3n8Lkt8cQAP0Ci" ^
--base "appTOiWfyXYHsiTf0" ^
--table "tblX1A36oAy2fnPS8" ^
--record "recRdTMLK4jKqDLYA" ^
--text "TestComment"
```
</TabItem>
Expand Down
16 changes: 8 additions & 8 deletions docs/en/md/Airtable/Comment-management/Delete-comment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,21 @@ import TabItem from '@theme/TabItem';
```bash
oint airtable DeleteComment \
--token "***" \
--base "appeY9wmT8gwFhnc8" \
--table "tbluGIDpz3uigdYJA" \
--record "rec3n8Lkt8cQAP0Ci" \
--comment "comaPDgK2RzmsGbnt"
--base "appTOiWfyXYHsiTf0" \
--table "tblX1A36oAy2fnPS8" \
--record "recRdTMLK4jKqDLYA" \
--comment "compYLm60IHF4hpyK"
```
</TabItem>

<TabItem value="bat" label="CMD/Bat" default>
```batch
oint airtable DeleteComment ^
--token "***" ^
--base "appeY9wmT8gwFhnc8" ^
--table "tbluGIDpz3uigdYJA" ^
--record "rec3n8Lkt8cQAP0Ci" ^
--comment "comaPDgK2RzmsGbnt"
--base "appTOiWfyXYHsiTf0" ^
--table "tblX1A36oAy2fnPS8" ^
--record "recRdTMLK4jKqDLYA" ^
--comment "compYLm60IHF4hpyK"
```
</TabItem>
</Tabs>
Expand Down
16 changes: 8 additions & 8 deletions docs/en/md/Airtable/Comment-management/Edit-comment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ import TabItem from '@theme/TabItem';
```bash
oint airtable EditComment \
--token "***" \
--base "appeY9wmT8gwFhnc8" \
--table "tbluGIDpz3uigdYJA" \
--record "rec3n8Lkt8cQAP0Ci" \
--comment "comaPDgK2RzmsGbnt" \
--base "appTOiWfyXYHsiTf0" \
--table "tblX1A36oAy2fnPS8" \
--record "recRdTMLK4jKqDLYA" \
--comment "compYLm60IHF4hpyK" \
--text "Test comment (change.)"
```
</TabItem>
Expand All @@ -61,10 +61,10 @@ import TabItem from '@theme/TabItem';
```batch
oint airtable EditComment ^
--token "***" ^
--base "appeY9wmT8gwFhnc8" ^
--table "tbluGIDpz3uigdYJA" ^
--record "rec3n8Lkt8cQAP0Ci" ^
--comment "comaPDgK2RzmsGbnt" ^
--base "appTOiWfyXYHsiTf0" ^
--table "tblX1A36oAy2fnPS8" ^
--record "recRdTMLK4jKqDLYA" ^
--comment "compYLm60IHF4hpyK" ^
--text "Test comment (change.)"
```
</TabItem>
Expand Down
12 changes: 6 additions & 6 deletions docs/en/md/Airtable/Comment-management/Get-comments.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ import TabItem from '@theme/TabItem';
```bash
oint airtable GetComments \
--token "***" \
--base "appeY9wmT8gwFhnc8" \
--table "tbluGIDpz3uigdYJA" \
--record "rec3n8Lkt8cQAP0Ci"
--base "appTOiWfyXYHsiTf0" \
--table "tblX1A36oAy2fnPS8" \
--record "recRdTMLK4jKqDLYA"
```
</TabItem>

<TabItem value="bat" label="CMD/Bat" default>
```batch
oint airtable GetComments ^
--token "***" ^
--base "appeY9wmT8gwFhnc8" ^
--table "tbluGIDpz3uigdYJA" ^
--record "rec3n8Lkt8cQAP0Ci"
--base "appTOiWfyXYHsiTf0" ^
--table "tblX1A36oAy2fnPS8" ^
--record "recRdTMLK4jKqDLYA"
```
</TabItem>
</Tabs>
Expand Down
8 changes: 4 additions & 4 deletions docs/en/md/Airtable/Record-management/Create-posts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ import TabItem from '@theme/TabItem';

oint airtable CreatePosts \
--token "***" \
--base "appeY9wmT8gwFhnc8" \
--table "tbluGIDpz3uigdYJA" \
--base "appTOiWfyXYHsiTf0" \
--table "tblX1A36oAy2fnPS8" \
--data "{'Number':10,'String':'Hello'}"
```
</TabItem>
Expand All @@ -66,8 +66,8 @@ import TabItem from '@theme/TabItem';
oint airtable CreatePosts ^
--token "***" ^
--base "appeY9wmT8gwFhnc8" ^
--table "tbluGIDpz3uigdYJA" ^
--base "appTOiWfyXYHsiTf0" ^
--table "tblX1A36oAy2fnPS8" ^
--data "{'Number':10,'String':'Hello'}"
```
</TabItem>
Expand Down
12 changes: 6 additions & 6 deletions docs/en/md/Airtable/Record-management/Delete-posts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@ import TabItem from '@theme/TabItem';
```bash
oint airtable DeletePosts \
--token "***" \
--base "appeY9wmT8gwFhnc8" \
--table "tbluGIDpz3uigdYJA" \
--records "rec3n8Lkt8cQAP0Ci"
--base "appTOiWfyXYHsiTf0" \
--table "tblX1A36oAy2fnPS8" \
--records "recRdTMLK4jKqDLYA"
```
</TabItem>

<TabItem value="bat" label="CMD/Bat" default>
```batch
oint airtable DeletePosts ^
--token "***" ^
--base "appeY9wmT8gwFhnc8" ^
--table "tbluGIDpz3uigdYJA" ^
--records "rec3n8Lkt8cQAP0Ci"
--base "appTOiWfyXYHsiTf0" ^
--table "tblX1A36oAy2fnPS8" ^
--records "recRdTMLK4jKqDLYA"
```
</TabItem>
</Tabs>
Expand Down
8 changes: 4 additions & 4 deletions docs/en/md/Airtable/Record-management/Get-list-of-records.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ import TabItem from '@theme/TabItem';
```bash
oint airtable GetListOfRecords \
--token "***" \
--base "appeY9wmT8gwFhnc8" \
--table "tbluGIDpz3uigdYJA"
--base "appTOiWfyXYHsiTf0" \
--table "tblX1A36oAy2fnPS8"
```
</TabItem>

<TabItem value="bat" label="CMD/Bat" default>
```batch
oint airtable GetListOfRecords ^
--token "***" ^
--base "appeY9wmT8gwFhnc8" ^
--table "tbluGIDpz3uigdYJA"
--base "appTOiWfyXYHsiTf0" ^
--table "tblX1A36oAy2fnPS8"
```
</TabItem>
</Tabs>
Expand Down
12 changes: 6 additions & 6 deletions docs/en/md/Airtable/Record-management/Get-record.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@ import TabItem from '@theme/TabItem';
```bash
oint airtable GetRecord \
--token "***" \
--base "appeY9wmT8gwFhnc8" \
--table "tbluGIDpz3uigdYJA" \
--record "rec3n8Lkt8cQAP0Ci"
--base "appTOiWfyXYHsiTf0" \
--table "tblX1A36oAy2fnPS8" \
--record "recRdTMLK4jKqDLYA"
```
</TabItem>

<TabItem value="bat" label="CMD/Bat" default>
```batch
oint airtable GetRecord ^
--token "***" ^
--base "appeY9wmT8gwFhnc8" ^
--table "tbluGIDpz3uigdYJA" ^
--record "rec3n8Lkt8cQAP0Ci"
--base "appTOiWfyXYHsiTf0" ^
--table "tblX1A36oAy2fnPS8" ^
--record "recRdTMLK4jKqDLYA"
```
</TabItem>
</Tabs>
Expand Down
4 changes: 2 additions & 2 deletions docs/en/md/Airtable/Table-management/Create-table.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ import TabItem from '@theme/TabItem';
```bash
oint airtable CreateTable \
--token "***" \
--base "appeY9wmT8gwFhnc8" \
--base "appTOiWfyXYHsiTf0" \
--title "TestTable2" \
--fieldsdata "[{'name':'Number','type':'number','options':{'precision':0}},{'name':'String','type':'richText'},{'name':'Attachment','type':'multipleAttachments'},{'name':'Checkbox','type':'checkbox','options':{'icon':'check','color':'yellowBright'}},{'name':'Date','type':'date','options':{'dateFormat':{'format':'YYYY-MM-DD','name':'iso'}}},{'name':'Phone','type':'phoneNumber'},{'name':'Email','type':'email'},{'name':'Link','type':'url'}]" \
--description "NewTable"
Expand All @@ -66,7 +66,7 @@ import TabItem from '@theme/TabItem';
```batch
oint airtable CreateTable ^
--token "***" ^
--base "appeY9wmT8gwFhnc8" ^
--base "appTOiWfyXYHsiTf0" ^
--title "TestTable2" ^
--fieldsdata "[{'name':'Number','type':'number','options':{'precision':0}},{'name':'String','type':'richText'},{'name':'Attachment','type':'multipleAttachments'},{'name':'Checkbox','type':'checkbox','options':{'icon':'check','color':'yellowBright'}},{'name':'Date','type':'date','options':{'dateFormat':{'format':'YYYY-MM-DD','name':'iso'}}},{'name':'Phone','type':'phoneNumber'},{'name':'Email','type':'email'},{'name':'Link','type':'url'}]" ^
--description "NewTable"
Expand Down
8 changes: 4 additions & 4 deletions docs/en/md/Airtable/Table-management/Modify-table.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ import TabItem from '@theme/TabItem';
```bash
oint airtable ModifyTable \
--token "***" \
--base "appeY9wmT8gwFhnc8" \
--table "tbluGIDpz3uigdYJA" \
--base "appTOiWfyXYHsiTf0" \
--table "tblX1A36oAy2fnPS8" \
--title "Test table 2 (change.)" \
--description "New table (change.)"
```
Expand All @@ -56,8 +56,8 @@ import TabItem from '@theme/TabItem';
```batch
oint airtable ModifyTable ^
--token "***" ^
--base "appeY9wmT8gwFhnc8" ^
--table "tbluGIDpz3uigdYJA" ^
--base "appTOiWfyXYHsiTf0" ^
--table "tblX1A36oAy2fnPS8" ^
--title "Test table 2 (change.)" ^
--description "New table (change.)"
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ import TabItem from '@theme/TabItem';
```bash
oint airtable GetDatabaseTables \
--token "***" \
--base "appeY9wmT8gwFhnc8"
--base "appTOiWfyXYHsiTf0"
```
</TabItem>

<TabItem value="bat" label="CMD/Bat" default>
```batch
oint airtable GetDatabaseTables ^
--token "***" ^
--base "appeY9wmT8gwFhnc8"
--base "appTOiWfyXYHsiTf0"
```
</TabItem>
</Tabs>
Expand Down
16 changes: 8 additions & 8 deletions docs/en/md/Airtable/Working-with-fields/Create-field.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ import TabItem from '@theme/TabItem';

oint airtable CreateField \
--token "***" \
--base "appeY9wmT8gwFhnc8" \
--table "tbluGIDpz3uigdYJA" \
--title "23c818b1-2a8a-4c12-a7f4-ec0aed29e272" \
--fielddata "{'name':'23c818b1-2a8a-4c12-a7f4-ec0aed29e272','type':'number','options':{'precision':0}}"
--base "appTOiWfyXYHsiTf0" \
--table "tblX1A36oAy2fnPS8" \
--title "00bf566f-7f79-4cba-b950-015319241e99" \
--fielddata "{'name':'00bf566f-7f79-4cba-b950-015319241e99','type':'number','options':{'precision':0}}"
```
</TabItem>

Expand All @@ -59,10 +59,10 @@ import TabItem from '@theme/TabItem';
oint airtable CreateField ^
--token "***" ^
--base "appeY9wmT8gwFhnc8" ^
--table "tbluGIDpz3uigdYJA" ^
--title "23c818b1-2a8a-4c12-a7f4-ec0aed29e272" ^
--fielddata "{'name':'23c818b1-2a8a-4c12-a7f4-ec0aed29e272','type':'number','options':{'precision':0}}"
--base "appTOiWfyXYHsiTf0" ^
--table "tblX1A36oAy2fnPS8" ^
--title "00bf566f-7f79-4cba-b950-015319241e99" ^
--fielddata "{'name':'00bf566f-7f79-4cba-b950-015319241e99','type':'number','options':{'precision':0}}"
```
</TabItem>
</Tabs>
Expand Down
4 changes: 2 additions & 2 deletions docs/en/md/Airtable/Working-with-fields/Get-number-field.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ import TabItem from '@theme/TabItem';
<TabItem value="bash" label="Bash" default>
```bash
oint airtable GetNumberField \
--title "23c818b1-2a8a-4c12-a7f4-ec0aed29e272"
--title "00bf566f-7f79-4cba-b950-015319241e99"
```
</TabItem>

<TabItem value="bat" label="CMD/Bat" default>
```batch
oint airtable GetNumberField ^
--title "23c818b1-2a8a-4c12-a7f4-ec0aed29e272"
--title "00bf566f-7f79-4cba-b950-015319241e99"
```
</TabItem>
</Tabs>
Expand Down
16 changes: 8 additions & 8 deletions docs/en/md/Airtable/Working-with-fields/Modify-field.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ import TabItem from '@theme/TabItem';
```bash
oint airtable ModifyField \
--token "***" \
--base "appeY9wmT8gwFhnc8" \
--table "tbluGIDpz3uigdYJA" \
--field "fldo9pE1f7Pn78er1" \
--title "16ea98d4-b037-43e8-bb4b-66f9b93ccf09(change.)" \
--base "appTOiWfyXYHsiTf0" \
--table "tblX1A36oAy2fnPS8" \
--field "fldN54kzYVbIEF0JN" \
--title "9e4c1dd5-5e85-4596-adfd-b1bf77a7fc72(change.)" \
--description "New description"
```
</TabItem>
Expand All @@ -60,10 +60,10 @@ import TabItem from '@theme/TabItem';
```batch
oint airtable ModifyField ^
--token "***" ^
--base "appeY9wmT8gwFhnc8" ^
--table "tbluGIDpz3uigdYJA" ^
--field "fldo9pE1f7Pn78er1" ^
--title "16ea98d4-b037-43e8-bb4b-66f9b93ccf09(change.)" ^
--base "appTOiWfyXYHsiTf0" ^
--table "tblX1A36oAy2fnPS8" ^
--field "fldN54kzYVbIEF0JN" ^
--title "9e4c1dd5-5e85-4596-adfd-b1bf77a7fc72(change.)" ^
--description "New description"
```
</TabItem>
Expand Down
4 changes: 2 additions & 2 deletions docs/en/md/Bitrix24/Catalogs-management/Create-subfolder.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Method at API documentation: [disk.folder.addsubfolder](https://dev.1c-bitrix.ru
```bash
oint bitrix24 CreateSubfolder \
--url "b24-ar17wx.bitrix24.by" \
--folderid 23442 \
--folderid 23862 \
--title "New subfolder" \
--token "***"
```
Expand All @@ -63,7 +63,7 @@ Method at API documentation: [disk.folder.addsubfolder](https://dev.1c-bitrix.ru
```batch
oint bitrix24 CreateSubfolder ^
--url "b24-ar17wx.bitrix24.by" ^
--folderid 23442 ^
--folderid 23862 ^
--title "New subfolder" ^
--token "***"
```
Expand Down
4 changes: 2 additions & 2 deletions docs/en/md/Bitrix24/Catalogs-management/Delete-folder.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Method at API documentation: [disk.folder.deletetree](https://dev.1c-bitrix.ru/r
```bash
oint bitrix24 DeleteFolder \
--url "b24-ar17wx.bitrix24.by" \
--folderid 23442 \
--folderid 23862 \
--token "***"
```
</TabItem>
Expand All @@ -59,7 +59,7 @@ Method at API documentation: [disk.folder.deletetree](https://dev.1c-bitrix.ru/r
```batch
oint bitrix24 DeleteFolder ^
--url "b24-ar17wx.bitrix24.by" ^
--folderid 23442 ^
--folderid 23862 ^
--token "***"
```
</TabItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Method at API documentation: [disk.folder.getExternalLink](https://dev.1c-bitrix
```bash
oint bitrix24 GetFolderExternalLink \
--url "b24-ar17wx.bitrix24.by" \
--folderid 23442 \
--folderid 23862 \
--token "***"
```
</TabItem>
Expand All @@ -58,7 +58,7 @@ Method at API documentation: [disk.folder.getExternalLink](https://dev.1c-bitrix
```batch
oint bitrix24 GetFolderExternalLink ^
--url "b24-ar17wx.bitrix24.by" ^
--folderid 23442 ^
--folderid 23862 ^
--token "***"
```
</TabItem>
Expand Down
Loading

0 comments on commit 96cf5b6

Please sign in to comment.