feat(clickup/actions): add create task and find task by id (#1615)

* feat(clickup): add create task action

* feat(clickup): add find task by id action

* fix(clickup): send optional parameters only when provided

---------

Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
This commit is contained in:
Rıdvan Akca
2024-08-15 15:59:58 +02:00
committed by GitHub
parent da2884d53c
commit 98e4b843ea
12 changed files with 524 additions and 12 deletions

View File

@@ -59,6 +59,16 @@ export default defineConfig({
{ text: 'Connection', link: '/apps/carbone/connection' },
],
},
{
text: 'ClickUp',
collapsible: true,
collapsed: true,
items: [
{ text: 'Actions', link: '/apps/clickup/actions' },
{ text: 'Triggers', link: '/apps/clickup/triggers' },
{ text: 'Connection', link: '/apps/clickup/connection' },
],
},
{
text: 'Cryptography',
collapsible: true,
@@ -77,16 +87,6 @@ export default defineConfig({
{ text: 'Connection', link: '/apps/datastore/connection' },
],
},
{
text: 'ClickUp',
collapsible: true,
collapsed: true,
items: [
{ text: 'Actions', link: '/apps/clickup/actions' },
{ text: 'Triggers', link: '/apps/clickup/triggers' },
{ text: 'Connection', link: '/apps/clickup/connection' },
],
},
{
text: 'DeepL',
collapsible: true,

View File

@@ -5,6 +5,10 @@ items:
desc: Creates a new folder.
- name: Create list
desc: Creates a new list.
- name: Create task
desc: Creates a new task.
- name: Find task by id
desc: Finds a task using id.
---
<script setup>