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:
@@ -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,
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user