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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
name: "Find Text in Clusters",
description: "Find clusters with a similar meaning of a given text. [See the documentation](https://docs.oneai.com/docs/find-text).",
key: "one_ai-find-text-in-clusters",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/one_ai/actions/summarize-text/summarize-text.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
name: "Summarize Text",
description: "Summarize a given text. [See the documentation](https://docs.oneai.com/docs/synchronous-pipelines).",
key: "one_ai-summarize-text",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/onedesk/actions/create-item/create-item.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "onedesk-create-item",
name: "Create Item",
description: "Creates a new item. [See the documentation](https://www.onedesk.com/dev/).",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/onedesk/actions/create-message/create-message.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "onedesk-create-message",
name: "Create Message",
description: "Creates a message or comment. [See the documentation](https://www.onedesk.com/dev/).",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/onedesk/actions/create-project/create-project.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "onedesk-create-project",
name: "Create Project",
description: "Creates a project/space. [See the documentation](https://www.onedesk.com/dev/).",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/onedesk/actions/create-user/create-user.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "onedesk-create-user",
name: "Create User",
description: "Creates a user or a customer. [See the documentation](https://www.onedesk.com/dev/).",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/onedesk/actions/find-item/find-item.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "onedesk-find-item",
name: "Find Item",
description: "Search for an existing item. [See the documentation](https://www.onedesk.com/dev/).",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/onedesk/actions/find-project/find-project.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "onedesk-find-project",
name: "Find Project",
description: "Search for a project/space by name or ID. [See the documentation](https://www.onedesk.com/dev/).",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/onedesk/actions/update-item/update-item.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "onedesk-update-item",
name: "Update Item",
description: "Updates an existing item. [See the documentation](https://www.onedesk.com/dev/).",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/onelogin/actions/create-user/create-user.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "onelogin-create-user",
name: "Create User",
description: "Create a new user in OneLogin with details. [See the documentation](https://developers.onelogin.com/api-docs/2/users/create-user)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
onelogin,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "onelogin-revoke-user-sessions",
name: "Revoke User Sessions",
description: "Revoke all active sessions for a specified user in OneLogin. [See the documentation](https://developers.onelogin.com/api-docs/2/users/update-user)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
onelogin,
Expand Down
7 changes: 6 additions & 1 deletion components/onelogin/actions/update-user/update-user.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "onelogin-update-user",
name: "Update User",
description: "Update an existing user's details in OneLogin. [See the documentation](https://developers.onelogin.com/api-docs/2/users/update-user)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
onelogin,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import app from "../../onenote.app.mjs";

export default {
name: "Create Notebook",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "onenote-create-notebook",
description: "Creates a notebook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/onenote-post-notebooks?view=graph-rest-1.0&tabs=http)",
type: "action",
Expand Down
7 changes: 6 additions & 1 deletion components/onenote/actions/create-page/create-page.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import app from "../../onenote.app.mjs";

export default {
name: "Create Page",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "onenote-create-page",
description: "Creates a page. [See the documentation](https://learn.microsoft.com/en-us/graph/api/section-post-pages?view=graph-rest-1.0&tabs=http)",
type: "action",
Expand Down
7 changes: 6 additions & 1 deletion components/onenote/actions/create-section/create-section.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import app from "../../onenote.app.mjs";

export default {
name: "Create Section",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "onenote-create-section",
description: "Creates a section. [See the documentation](https://learn.microsoft.com/en-us/graph/api/notebook-post-sections?view=graph-rest-1.0&tabs=http)",
type: "action",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "onepagecrm-create-contact",
name: "Create Contact",
description: "Creates a new contact in OnePageCRM. [See the documentation](https://developer.onepagecrm.com/api/#/Contacts/post_contacts)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
onepagecrm,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "onepagecrm-delete-contact",
name: "Delete Contact",
description: "Deletes an existing contact from OnePageCRM. [See the documentation](https://developer.onepagecrm.com/api/#/Contacts/delete_contacts__contact_id_)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
onepagecrm,
Expand Down
7 changes: 6 additions & 1 deletion components/onepagecrm/actions/update-deal/update-deal.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "onepagecrm-update-deal",
name: "Update Deal",
description: "Updates an existing deal's details in OnePageCRM. [See the documentation](https://developer.onepagecrm.com/api/)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
onepagecrm,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "onesignal_rest_api-add-device",
name: "Add Device",
description: "Register a new device to your app. [See docs here](https://documentation.onesignal.com/reference/add-a-device)",
version: "0.0.1652718586",
version: "0.0.1652718587",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
onesignalRestApi,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "onesignal_rest_api-create-notification",
name: "Create Notification",
description: "Create a notification. [See docs here](https://documentation.onesignal.com/reference/create-notification)",
version: "0.1.1652718586",
version: "0.1.1652718587",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
onesignalRestApi,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "onesignal_rest_api-get-device",
name: "Get Device",
description: "Get a specific device. [See docs here](https://documentation.onesignal.com/reference/view-device)",
version: "0.0.1652718586",
version: "0.0.1652718587",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
onesignalRestApi,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "onesignal_rest_api-get-devices",
name: "Get Devices",
description: "Get all devices. [See docs here](https://documentation.onesignal.com/reference/view-devices)",
version: "0.0.1652718586",
version: "0.0.1652718587",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
onesignalRestApi,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "onlinecheckwriter-create-check",
name: "Create Check",
description: "Creates a new check. [See the documentation](https://apiv3.onlinecheckwriter.com/#211cb6e4-bda7-46de-9e84-a5e8b2709206)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
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: "onlinecheckwriter-create-email-check",
name: "Create Email Check",
description: "Create an email check for a payee. [See the documentation](https://apiv3.onlinecheckwriter.com/#211cb6e4-bda7-46de-9e84-a5e8b2709206).",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
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: "onlinecheckwriter-create-mail-check",
name: "Create Mail Check",
description: "Creates a mail check. [See the documentation](https://apiv3.onlinecheckwriter.com/#f4562b65-70e8-4c4d-8444-8898e61ab7f0).",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
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: "onlinecheckwriter-create-payee",
name: "Create Payee",
description: "Registers a new payee within the system.[See the documentation](https://apiv3.onlinecheckwriter.com/#38a31300-bf13-4da1-ac97-dd81525b57b3)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "onlinecheckwriter-mail-pdf-document",
name: "Mail PDF Document",
description: "Mails a PDF document to a destination. [See the documentation](https://apiv3.onlinecheckwriter.com/#878daf05-e36e-44a2-bce8-15f24d72f82e).",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
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: "onlyoffice_docspace-create-room",
name: "Create Room",
description: "Creates a new room. [See the documentation](https://api.onlyoffice.com/docspace/method/files/post/api/2.0/files/rooms)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
Loading
Loading