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/summit/actions/list-models/list-models.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "summit-list-models",
name: "List Models",
description: "Returns a list of models from Summit. [See the documentation](https://summit.readme.io/reference/apps)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
summit,
Expand Down
7 changes: 6 additions & 1 deletion components/summit/actions/run-model/run-model.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "summit-run-model",
name: "Run Model",
description: "Executes a model within Summit and captures the response fields. [See the documentation](https://summit.readme.io/reference/model-api)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
summit,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "sumup-get-merchant-profile",
name: "Get Merchant Profile",
description: "Retrieves merchant profile data. [See the documenation](https://developer.sumup.com/api/merchant/get-merchant-profile)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
sumup,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "sumup-list-transactions",
name: "List Transactions",
description: "Lists detailed history of all transactions associated with the merchant profile. [See the documenation](https://developer.sumup.com/api/transactions/list-detailed)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
sumup,
Expand Down
7 changes: 6 additions & 1 deletion components/sumup/actions/retrieve-dba/retrieve-dba.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "sumup-retrieve-dba",
name: "Retrieve DBA",
description: "Retrieves Doing Business As profile. [See the documenation](https://developer.sumup.com/api/merchant/get-doing-business-as)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
sumup,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "supabase-batch-insert-rows",
name: "Batch Insert Rows",
description: "Inserts new rows into a database. [See the documentation](https://supabase.com/docs/reference/javascript/insert)",
version: "0.0.4",
version: "0.0.5",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
supabase,
Expand Down
7 changes: 6 additions & 1 deletion components/supabase/actions/delete-row/delete-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "supabase-delete-row",
name: "Delete Row",
type: "action",
version: "0.1.3",
version: "0.1.4",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
description: "Deletes row(s) in a database. [See the docs here](https://supabase.com/docs/reference/javascript/delete)",
props: {
supabase,
Expand Down
7 changes: 6 additions & 1 deletion components/supabase/actions/insert-row/insert-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "supabase-insert-row",
name: "Insert Row",
type: "action",
version: "0.1.3",
version: "0.1.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
description: "Inserts a new row into a database. [See the docs here](https://supabase.com/docs/reference/javascript/insert)",
props: {
supabase,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "supabase-remote-procedure-call",
name: "Remote Procedure Call",
type: "action",
version: "0.1.3",
version: "0.1.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
description: "Call a Postgres function in a database. [See the docs here](https://supabase.com/docs/reference/javascript/rpc)",
props: {
supabase,
Expand Down
7 changes: 6 additions & 1 deletion components/supabase/actions/select-row/select-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "supabase-select-row",
name: "Select Row",
type: "action",
version: "0.1.3",
version: "0.1.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
description: "Selects row(s) in a database. [See the docs here](https://supabase.com/docs/reference/javascript/select)",
props: {
supabase,
Expand Down
7 changes: 6 additions & 1 deletion components/supabase/actions/update-row/update-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "supabase-update-row",
name: "Update Row",
type: "action",
version: "0.1.3",
version: "0.1.4",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
description: "Updates row(s) in a database. [See the docs here](https://supabase.com/docs/reference/javascript/update)",
props: {
supabase,
Expand Down
7 changes: 6 additions & 1 deletion components/supabase/actions/upsert-row/upsert-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "supabase-upsert-row",
name: "Upsert Row",
type: "action",
version: "0.1.3",
version: "0.1.4",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
description: "Updates a row in a database or inserts new row if not found. [See the docs here](https://supabase.com/docs/reference/javascript/upsert)",
props: {
supabase,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "supabase_management_api-create-project",
name: "Create Project",
description: "Creates a new Supabase project within a specified organization. [See the documentation](https://supabase.com/docs/reference/api/v1-create-a-project)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
supabaseManagementApi,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "supabase_management_api-generate-typescript-types",
name: "Generate TypeScript Types",
description: "Generates TypeScript types based on the current database schema for a specified Supabase project. [See the documentation](https://supabase.com/docs/reference/api/v1-generate-typescript-types)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
supabaseManagementApi,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "supercast-create-creator",
name: "Create a Channel Creator",
description: "Creates a new channel creator on Supercast. [See the documentation](https://supercast.readme.io/reference/postcreators)",
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: "supercast-create-episode",
name: "Create an Episode",
description: "Creates a new episode on Supercast. [See the documentation](https://supercast.readme.io/reference/postepisodes)",
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: "supernotes-create-simple-card",
name: "Create a simple card",
description: "Create a single card with the minimum amount of data required. [See docs here](https://api.supernotes.app/docs/swagger#/cards/_simple_create_card_v1_cards_simple_post).",
version: "0.0.2",
version: "0.0.3",
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 {
name: "Create New Contact",
description: "Create a new contact. [See the documentation](https://api.superphone.io/docs/mutation.doc.html)",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
app,
firstName: {
Expand Down
7 changes: 6 additions & 1 deletion components/superphone/actions/send-message/send-message.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
name: "Send Message",
description: "Send a message to a contact. [See the documentation](https://api.superphone.io/docs/mutation.doc.html)",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
app,
conversationId: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
name: "Update Contact",
description: "Update an existing contact. [See the documentation](https://api.superphone.io/docs/mutation.doc.html)",
type: "action",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
props: {
app,
contactId: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import supportbee from "../../supportbee.app.mjs";

export default {
name: "Create Ticket",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "supportbee-create-ticket",
description: "Creates a client. [See docs here](https://supportbee.com/api#create_ticket)",
type: "action",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "supportivekoala-create-image",
name: "Create an Image",
description: "Creates an image based on a template. [See the docs here](https://developers.supportivekoala.com/#create_image)",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
7 changes: 6 additions & 1 deletion components/survey_monkey/actions/find-survey/find-survey.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "survey_monkey-find-survey",
name: "Get Survey Details",
description: "Get details for a Survey. [See the docs here](https://developer.surveymonkey.com/api/v3/#api-endpoints-get-surveys-id-details)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
async run({ $ }) {
const response = await this.surveyMonkey.getSurveyDetails({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
name: "Get Collector Details",
description:
"Get details for a Collector. [See the docs here](https://api.surveymonkey.net/v3/docs?javascript#api-endpoints-get-collectors-id-)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
...base.props,
Expand Down
7 changes: 6 additions & 1 deletion components/survey_monkey/actions/get-my-info/get-my-info.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
name: "Get My Info",
description:
"Retrieve your account details. [See the docs here](https://api.surveymonkey.net/v3/docs?javascript#api-endpoints-get-users-me)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
surveyMonkey,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
name: "Get Response Details",
description:
"Get details for a Response. [See the docs here](https://api.surveymonkey.net/v3/docs?javascript#api-endpoints-get-collectors-collector_id-responses-response_id-)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
...base.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ export default {
name: "List Survey Collectors",
description:
"Retrieve a survey's Collectors. [See the docs here](https://api.surveymonkey.net/v3/docs?javascript#api-endpoints-get-surveys-id-collectors)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
methods: {
...baseListAction.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ export default {
name: "List Survey Responses",
description:
"Retrieve a survey's Responses. [See the docs here](https://developer.surveymonkey.com/api/v3/#api-endpoints-get-surveys-id-responses)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
methods: {
...baseListAction.methods,
Expand Down
Loading
Loading