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 {
key: "kenjo-create-leave-request",
name: "Create Leave Request",
description: "Creates a new leave request in Kenjo. [See the documentation](https://kenjo.readme.io/reference/post_time-off-requests).",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
kenjo,
Expand Down
7 changes: 6 additions & 1 deletion components/keycloak/actions/create-user/create-user.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "keycloak-create-user",
name: "Create User",
description: "Create a new user in Keycloak. The username must be unique. [See the documentation](https://www.keycloak.org/docs-api/latest/rest-api/index.html#_users)",
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/keycloak/actions/delete-user/delete-user.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "keycloak-delete-user",
name: "Delete User",
description: "Delete a user from Keycloak. [See the documentation](https://www.keycloak.org/docs-api/latest/rest-api/index.html#_users)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/keycloak/actions/get-user/get-user.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "keycloak-get-user",
name: "Get User",
description: "Retrieve the representation of the user. [See the documentation](https://www.keycloak.org/docs-api/latest/rest-api/index.html#_users)",
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/keycloak/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: "keycloak-update-user",
name: "Update User",
description: "Updates a user in Keycloak. [See the documentation](https://www.keycloak.org/docs-api/latest/rest-api/index.html#_users)",
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 @@ -6,7 +6,12 @@ export default {
key: "keysender-create-transaction",
name: "Create Transaction",
description: "Creates a new transaction within Keysender. [See the documentation](https://panel.keysender.co.uk/api#tag/Transaction/paths/~1transaction~1addcustom/post)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
keysender,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import app from "../../kickbox.app.mjs";

export default {
name: "Verify Email Batch",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
key: "kickbox-verify-email-batch",
description: "Verify an email batch. [See the documentation](https://docs.kickbox.com/docs/batch-verification-api)",
type: "action",
Expand Down
7 changes: 6 additions & 1 deletion components/kickbox/actions/verify-email/verify-email.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import app from "../../kickbox.app.mjs";

export default {
name: "Verify Email",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
key: "kickbox-verify-email",
description: "Verify an email. [See the documentation](https://docs.kickbox.com/docs/single-verification-api)",
type: "action",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
name: "Create or Update Lead",
description: "Adds a new lead or modifies an existing lead on your campaign. [See the documentation](https://dev.kickofflabs.com/create/).",
key: "kickofflabs-create-or-update-lead",
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 {
name: "Get Campaign Status",
description: "Fetches campaign overview stats. [See the documentation](https://dev.kickofflabs.com/stats/).",
key: "kickofflabs-get-campaign-status",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
name: "Remove Lead from Campaign",
description: "Remove a lead from your campaign. [See the documentation](https://dev.kickofflabs.com/delete/).",
key: "kickofflabs-remove-lead-from-campaign",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/kindo/actions/chat/chat.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "kindo-chat",
name: "Chat",
description: "Creates a model response for the given chat conversation using Kindo's API. [See the documentation](https://app.kindo.ai/settings/api) for more information.",
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/kingsumo/actions/get-giveaway/get-giveaway.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import kingsumo from "../../kingsumo.app.mjs";
export default {
key: "kingsumo-get-giveaway",
name: "Get Giveaway",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
description: "Gets specified giveaway. [See the documentation](https://kingsumo.com/account/oauth)",
type: "action",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import kingsumo from "../../kingsumo.app.mjs";
export default {
key: "kingsumo-list-contestants",
name: "List Contestants",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
description: "List contestants for specified giveaway. [See the documentation](https://kingsumo.com/account/oauth)",
type: "action",
props: {
Expand Down
7 changes: 6 additions & 1 deletion components/kite_suite/actions/create-task/create-task.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "kite_suite-create-task",
name: "Create Task",
description: "Create a new task in a project in Kite Suite. [See the documentation](https://api.kitesuite.com/swagger/#/Task/post_api_v1_task)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
kiteSuite,
Expand Down
7 changes: 6 additions & 1 deletion components/kite_suite/actions/send-message/send-message.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "kite_suite-send-message",
name: "Send Message",
description: "Sends a message to a user or project group using Kite Suite. [See the documentation](https://api.kitesuite.com/swagger/#/Chat/post_api_v1_chat_message)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
kiteSuite,
Expand Down
7 changes: 6 additions & 1 deletion components/kite_suite/actions/update-task/update-task.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "kite_suite-update-task",
name: "Update Task",
description: "Update an existing task in a project. [See the documentation](https://api.kitesuite.com/swagger/#/Task/patch_api_v1_task__id_).",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
kiteSuite,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "kiwihr-create-employee",
name: "Create Employee",
description: "Add a new employee to kiwiHR. [See the documentation](https://api.kiwihr.com/api/docs/mutation.doc.html)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
kiwihr,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "kiwihr-update-employee-record",
name: "Update Employee Record",
description: "Update an existing employee's record in kiwiHR. [See the documentation](https://api.kiwihr.it/api/docs/mutation.doc.html)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
kiwihr,
Expand Down
7 changes: 6 additions & 1 deletion components/kizeo_forms/actions/create-user/create-user.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "kizeo_forms-create-user",
name: "Create User",
description: "Creates a new user in the Kizeo Forms platform. [See the documentation](https://kizeo.github.io/kizeo-forms-documentations/docs/en/users#2---add-a-user)",
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: "kizeo_forms-export-form-data-to-csv-or-excel",
name: "Export Form Data to CSV or Excel",
description: "Exports data from a form to CSV or Excel format. [See the documentation](https://kizeo.github.io/kizeo-forms-documentations/docs/en/exports)",
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: "kizeo_forms-export-to-pdf",
name: "Export to PDF",
description: "Exports data from a chosen export (Word or Excel) to PDF format. [See the documentation](https://kizeo.github.io/kizeo-forms-documentations/docs/en/restv3)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
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: "kizeo_forms-list-unread-form-data",
name: "List Unread Form Data",
description: "Retrieves a list of unread form entries/data from Kizeo Forms. [See the documentation](https://kizeo.github.io/kizeo-forms-documentations/docs/en/restv3)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "klaviyo-add-member-to-list",
name: "Add Member To List",
description: "Add member to a specific list. [See the documentation](https://developers.klaviyo.com/en/reference/add_profiles_to_list)",
version: "1.0.2",
version: "1.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
klaviyo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "klaviyo-create-new-list",
name: "Create New List",
description: "Creates a new list in an account. [See the documentation](https://developers.klaviyo.com/en/reference/create_list)",
version: "0.0.4",
version: "0.0.5",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
klaviyo,
Expand Down
7 changes: 6 additions & 1 deletion components/klaviyo/actions/get-lists/get-lists.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "klaviyo-get-lists",
name: "Get Lists",
description: "Get a listing of all of the lists in an account. [See the documentation](https://developers.klaviyo.com/en/reference/get_lists)",
version: "0.0.5",
version: "0.0.6",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
klaviyo,
Expand Down
7 changes: 6 additions & 1 deletion components/klaxoon/actions/create-board/create-board.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import app from "../../klaxoon.app.mjs";

export default {
name: "Create Board",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "klaxoon-create-board",
description: "Creates a board. [See the documentation](https://developers.klaxoon.com/reference/v1boardpost)",
type: "action",
Expand Down
7 changes: 6 additions & 1 deletion components/klaxoon/actions/create-idea/create-idea.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import app from "../../klaxoon.app.mjs";

export default {
name: "Create Idea",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "klaxoon-create-idea",
description: "Creates an idea. [See the documentation](https://developers.klaxoon.com/reference/v1boardideapost)",
type: "action",
Expand Down
Loading
Loading