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 @@ import spreadsheetCom from "../../spreadsheet_com.app.mjs";
export default {
key: "spreadsheet_com-create-rows",
name: "Create Rows",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
description: "Adds new row(s) after last row that has data. Empty data sets are ignored. Provide data for at least 1 column. [See the documentation](https://developer.spreadsheet.com/#tag/Rows/operation/createRows)",
type: "action",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ import spreadsheetCom from "../../spreadsheet_com.app.mjs";
export default {
key: "spreadsheet_com-update-rows",
name: "Update Rows",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
description: "Update existing row(s). [See the documentation](https://developer.spreadsheet.com/#tag/Rows/operation/updateRows)",
type: "action",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "sproutgigs-get-categories",
name: "Get Categories",
description: "Get a list of categories from Sproutgigs. [See the documentation](https://sproutgigs.com/api/documentation.php#gigs-categories)",
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/sproutgigs/actions/get-zones/get-zones.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "sproutgigs-get-zones",
name: "Get Zones",
description: "Get the available zones. [See the documentation](https://sproutgigs.com/api/documentation.php#jobs-zones)",
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/sproutgigs/actions/post-job/post-job.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "sproutgigs-post-job",
name: "Post Job",
description: "Post a new job to Sproutgigs. [See the documentation](https://sproutgigs.com/api/documentation.php#jobs-post)",
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 {
description: `Creates a new customer for a business. Must provide at least one of the following:
Given Name, Family Name, Company Name, Email Address, or Phone Number. [See the docs](https://developer.squareup.com/reference/square/customers-api/create-customer).`,
type: "action",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
square,
givenName: {
Expand Down
7 changes: 6 additions & 1 deletion components/square/actions/create-invoice/create-invoice.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
name: "Create Invoice",
description: "Creates a draft invoice for an order. You must send (publish) the invoice before Square can process it. [See the documentation](https://developer.squareup.com/reference/square/invoices-api/create-invoice).",
type: "action",
version: "0.0.4",
version: "0.0.5",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
square,
location: {
Expand Down
7 changes: 6 additions & 1 deletion components/square/actions/create-order/create-order.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
name: "Create Order",
description: "Creates a new order that can include information about products for purchase. [See docs here](https://developer.squareup.com/reference/square/orders-api/create-order).",
type: "action",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
square,
location: {
Expand Down
7 changes: 6 additions & 1 deletion components/square/actions/send-invoice/send-invoice.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
name: "Send Invoice",
description: "Publishes the latest version of a specified invoice. [See the docs](https://developer.squareup.com/reference/square/invoices-api/publish-invoice).",
type: "action",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
square,
location: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "squarespace-create-product",
name: "Create Product",
description: "Create a new product. [See docs here](https://developers.squarespace.com/commerce-apis/create-product)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
squarespace,
Expand Down
7 changes: 6 additions & 1 deletion components/squarespace/actions/get-order/get-order.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "squarespace-get-order",
name: "Get Order",
description: "Get a specific order. [See docs here](https://developers.squarespace.com/commerce-apis/retrieve-specific-order)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
squarespace,
Expand Down
7 changes: 6 additions & 1 deletion components/squarespace/actions/get-product/get-product.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "squarespace-get-product",
name: "Get Product",
description: "Get a specific product. [See docs here](https://developers.squarespace.com/commerce-apis/retrieve-specific-products)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
squarespace,
Expand Down
7 changes: 6 additions & 1 deletion components/ssh/actions/execute-command/execute-command.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "ssh-execute-command",
name: "Execute a Command",
description: "Executes a command on a remote device. [See SSH lib docs here](https://www.npmjs.com/package/node-ssh)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
ssh,
command: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "stammer_ai-message-chatbot",
name: "Message Chatbot",
description: "Sends a message to your chatbot. [See the documentation](https://app.stammer.ai/en/api-docs/chatbot/message/)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
stammerAi,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ export default {
key: "stannp-create-campaign",
name: "Create a New Campaign",
description: "Create a new campaign in Stannp. [See the documentation](https://www.stannp.com/us/direct-mail-api/campaigns)",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
stannp,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "stannp-create-recipient",
name: "Create a New Recipient",
description: "Creates a new recipient in a specified group. [See the Stannp documentation](https://www.stannp.com/us/direct-mail-api/recipients)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
stannp,
Expand Down
7 changes: 6 additions & 1 deletion components/stannp/actions/get-campaign/get-campaign.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "stannp-get-campaign",
name: "Get a Single Campaign",
description: "Get a single campaign based on the provided campaign ID. [See the documentation](https://www.stannp.com/us/direct-mail-api/campaigns)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
stannp,
Expand Down
7 changes: 6 additions & 1 deletion components/starloop/actions/list-ids/list-ids.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "starloop-list-ids",
name: "List IDs",
description: "Returns your business id and a list of all profile id’s and names. [See the documentation](https://help.starloop.com/article/46-api-documentation)",
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/starloop/actions/send-invite/send-invite.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "starloop-send-invite",
name: "Send Invite",
description: "Creates a new recipient and sends a Starloop invite (Email | SMS | both) to your customer to leave a review. [See the documentation](https://help.starloop.com/article/46-api-documentation)",
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/starshipit/actions/create-order/create-order.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "starshipit-create-order",
name: "Create Order",
description: "Create an outbound order in Starshipit. [See the documentation](https://api-docs.starshipit.com/#b90251d2-1d1c-47b1-ac07-eeeb21cade7b)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
starshipit,
Expand Down
7 changes: 6 additions & 1 deletion components/starshipit/actions/get-tracking/get-tracking.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "starshipit-get-tracking",
name: "Get Tracking Details",
description: "Retrieve tracking details using a tracking number or order number. [See the documentation](https://api-docs.starshipit.com/#a655a3b4-ea39-42c4-acb4-d868ad40dc47)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
starshipit,
Expand Down
7 changes: 6 additions & 1 deletion components/starshipit/actions/print-label/print-label.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "starshipit-print-label",
name: "Print Shipping Label",
description: "Print a shipping label for a specific order. [See the documentation](https://api-docs.starshipit.com/#b6bc3576-a43f-4992-86d8-8fdf57f872f6)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
starshipit,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import app from "../../status_hero.app.mjs";
export default {
type: "action",
key: "status_hero-create-team-holiday",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
name: "Create Team Holiday",
description: "Creates a team-wide holiday., [See the docs](https://api.statushero.com/#team-absences)",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import app from "../../status_hero.app.mjs";
export default {
type: "action",
key: "status_hero-record-member-absence",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
name: "Record Member Absence",
description: "Creates a vacation or leave day for an individual team member, [See the docs](https://api.statushero.com/#add-member-absence)",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import statuspage from "../../statuspage.app.mjs";

export default {
name: "Create Incident",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "statuspage-create-incident",
description: "Creates an incident. [See docs here](https://developer.statuspage.io/#create-an-incident)",
type: "action",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import statuspage from "../../statuspage.app.mjs";

export default {
name: "Update Incident",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
key: "statuspage-update-incident",
description: "Updates an existing incident. [See docs here](https://developer.statuspage.io/#update-an-incident)",
type: "action",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "stiply-send-sign-request",
name: "Send Sign Request",
description: "Send a sign request to a recipient. [See the documentation](https://app.stiply.nl/api-documentation/v2#tag/sign-requests/operation/SendSignRequest)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
stiply,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "storeganise-add-invoice-payment",
name: "Add Invoice Payment",
description: "Adds a payment to the targeted invoice. [See the documentation](https://pipedream-dev-trial.storeganise.com/api/docs/admin/invoices#admin_invoices._invoiceId_payments)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
storeganise,
Expand Down
Loading
Loading