Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion components/clickup/actions/get-team-views/get-team-views.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-get-team-views",
name: "Get Team Views",
description: "Get all views of a team. [See the documentation](https://clickup.com/api) in **Views / Get Team Views** section.",
version: "0.0.11",
version: "0.0.12",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
async run({ $ }) {
const { workspaceId } = this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-get-view-comments",
name: "Get View Comments",
description: "Get a view comments. [See the documentation](https://clickup.com/api) in **Comments / Get Chat View Comments** section.",
version: "0.0.11",
version: "0.0.12",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
...common.props,
Expand Down
7 changes: 6 additions & 1 deletion components/clickup/actions/get-view-tasks/get-view-tasks.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-get-view-tasks",
name: "Get View Tasks",
description: "Get all tasks of a view. [See the documentation](https://clickup.com/api) in **Views / Get View Tasks** section.",
version: "0.0.11",
version: "0.0.12",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
...common.props,
Expand Down
7 changes: 6 additions & 1 deletion components/clickup/actions/get-view/get-view.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-get-view",
name: "Get View",
description: "Get a view. [See the documentation](https://clickup.com/api) in **Views / Get View** section.",
version: "0.0.11",
version: "0.0.12",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-remove-task-custom-field",
name: "Remove Task Custom Field",
description: "Remove custom field from a task. [See the documentation](https://clickup.com/api) in **Custom Fields / Remove Custom Field Value** section.",
version: "0.0.11",
version: "0.0.12",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-start-time-entry",
name: "Start Time Entry",
description: "Start time entry. [See the documentation](https://clickup.com/api/clickupreference/operation/StartatimeEntry)",
version: "0.0.5",
version: "0.0.6",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-stop-time-entry",
name: "Stop Time Entry",
description: "Stop time entry. [See the documentation](https://clickup.com/api/clickupreference/operation/StopatimeEntry)",
version: "0.0.6",
version: "0.0.7",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
async run({ $ }) {
const response = await this.clickup.stopTimeEntry({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-update-checklist-item",
name: "Update Checklist Item",
description: "Updates item in a checklist. [See the documentation](https://clickup.com/api) in **Checklists / Edit Checklist Item** section.",
version: "0.0.11",
version: "0.0.12",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-update-checklist",
name: "Update Checklist",
description: "Updates a checklist in a task. [See the documentation](https://clickup.com/api) in **Checklists / Edit Checklist** section.",
version: "0.0.11",
version: "0.0.12",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
...common.props,
Expand Down
7 changes: 6 additions & 1 deletion components/clickup/actions/update-comment/update-comment.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-update-comment",
name: "Update Comment",
description: "Updates a comment. [See the documentation](https://clickup.com/api) in **Comments / Update Comment** section.",
version: "0.0.13",
version: "0.0.14",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
...common.props,
Expand Down
7 changes: 6 additions & 1 deletion components/clickup/actions/update-folder/update-folder.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-update-folder",
name: "Update Folder",
description: "Update a folder. [See the documentation](https://clickup.com/api) in **Folders / Update Folder** section.",
version: "0.0.11",
version: "0.0.12",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
...common.props,
Expand Down
7 changes: 6 additions & 1 deletion components/clickup/actions/update-list/update-list.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
key: "clickup-update-list",
name: "Update List",
description: "Update a list. [See the documentation](https://clickup.com/api) in **Lists / Update List** section.",
version: "0.0.11",
version: "0.0.12",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
...common.props,
Expand Down
7 changes: 6 additions & 1 deletion components/clickup/actions/update-space/update-space.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-update-space",
name: "Update Space",
description: "Update a space. [See the documentation](https://clickup.com/api) in **Spaces / Update Space** section.",
version: "0.0.11",
version: "0.0.12",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clickup-update-task-custom-field",
name: "Update Task Custom Field",
description: "Update custom field value of a task. [See the documentation](https://clickup.com/api) in **Custom Fields / Set Custom Field Value** section.",
version: "0.0.11",
version: "0.0.12",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
...common.props,
Expand Down
7 changes: 6 additions & 1 deletion components/clickup/actions/update-task/update-task.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
key: "clickup-update-task",
name: "Update Task",
description: "Update a task. [See the documentation](https://clickup.com/api) in **Tasks / Update Task** section.",
version: "0.0.13",
version: "0.0.14",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import clientify from "../../clientify.app.mjs";
export default {
key: "clientify-create-contact",
name: "Create Contact",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
description: "Create a new contact. [See the documentation](https://developer.clientify.com/#8c678e88-4315-4470-a072-d6b659ace6e8)",
type: "action",
props: {
Expand Down
7 changes: 6 additions & 1 deletion components/clientify/actions/create-task/create-task.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import clientify from "../../clientify.app.mjs";
export default {
key: "clientify-create-task",
name: "Create Task",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
description: "Add a new task. [See the documentation](https://developer.clientify.com/#1ee10d02-b3d8-4373-afa4-08d7b678bb26)",
type: "action",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ import { prepareData } from "../../common/utils.mjs";
export default {
key: "clientify-update-contact",
name: "Update Contact",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
description: "Update a specific contact. [See the documentation](https://developer.clientify.com/#3107ca4f-0bb5-43a7-9be8-3c2e2f8fe399)",
type: "action",
props: {
Expand Down
7 changes: 6 additions & 1 deletion components/cliento/actions/get-ref-data/get-ref-data.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "cliento-get-ref-data",
name: "Get Reference Data",
description: "Fetch services, resources and mappings for the booking widget. [See the documentation](https://developers.cliento.com/docs/rest-api#fetch-ref-data)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
cliento,
Expand Down
7 changes: 6 additions & 1 deletion components/cliento/actions/get-settings/get-settings.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "cliento-get-settings",
name: "Fetch Settings",
description: "Fetch settings and features for the booking widget. [See the documentation](https://developers.cliento.com/docs/rest-api#fetch-settings)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
cliento,
Expand Down
7 changes: 6 additions & 1 deletion components/cliento/actions/get-slots/get-slots.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "cliento-get-slots",
name: "Get Slots",
description: "Fetch available slots for the given service, resource and dates. [See the documentation](https://developers.cliento.com/docs/rest-api#fetch-slots)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
cliento,
Expand Down
7 changes: 6 additions & 1 deletion components/clinchpad/actions/create-lead/create-lead.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import clinchpad from "../../clinchpad.app.mjs";

export default {
name: "Create Lead",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "clinchpad-create-lead",
description: "Creates a lead. [See docs here (Go to `Create a lead`)](https://clinchpad.com/api/docs/leads)",
type: "action",
Expand Down
7 changes: 6 additions & 1 deletion components/cliniko/actions/get-patient/get-patient.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
name: "Get Patient",
key: "cliniko-get-patient",
description: "Get the details of a patient by patient ID.",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/clio/actions/create-matter/create-matter.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "clio-create-matter",
name: "Create New Matter",
description: "Creates a new matter in Clio. [See the documentation](https://docs.developers.clio.com/api-reference/#tag/Matters/operation/Matter#index)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/clio/actions/create-task/create-task.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "clio-create-task",
name: "Create New Task",
description: "Creates a new task in Clio. [See the documentation](https://docs.developers.clio.com/api-reference/#tag/Tasks/operation/Task#index)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/clio/actions/update-matter/update-matter.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "clio-update-matter",
name: "Update Matter",
description: "Updates an existing matter in Clio. [See the documentation](https://docs.developers.clio.com/api-reference/#tag/Matters/operation/Matter#update)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "clockify-add-members-to-project",
name: "Add Members To Project",
description: "Adds member(s) to a project in Clockify. [See the documentation](https://docs.clockify.me/#tag/Project/operation/updateMemberships)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
clockify,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "clockify-add-task-to-project",
name: "Add Task To Project",
description: "Adds a task to a project in Clockify. [See the documentation](https://docs.clockify.me/#tag/Task/operation/create_7)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
clockify,
Expand Down
Loading
Loading