Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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/amplenote/actions/create-note/create-note.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ import { ConfigurationError } from "@pipedream/platform";

export default defineAction({
name: "Create Note",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "amplenote-create-note",
description: "Creates a new note. [See docs here](https://www.amplenote.com/api_documentation#post-/notes)",
type: "action",
Expand Down
7 changes: 6 additions & 1 deletion components/amplenote/actions/create-task/create-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ import { ConfigurationError } from "@pipedream/platform";

export default defineAction({
name: "Create Task",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "amplenote-create-task",
description: "Creates a new task. [See docs here](https://www.amplenote.com/api_documentation#post-/notes/-uuid-/actions)",
type: "action",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default defineAction({
name: "Account Information",
description: "Retrieves information about your account. [See the docs](https://apitemplate.io/apiv2/) for more information",
key: "apitemplate_io-account-information",
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 @@ -6,7 +6,12 @@ export default defineAction({
name: "Create an Image",
description: "Create a JPEG file(along with PNG) with JSON data and your template. [See the docs](https://apitemplate.io/apiv2/#tag/API-Integration/operation/create-image) for more information",
key: "apitemplate_io-create-image",
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/apitemplate_io/actions/create-pdf/create-pdf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default defineAction({
name: "Create a PDF",
description: "Create a PDF file with JSON data and your template. [See the docs](https://apitemplate.io/apiv2/#tag/API-Integration/operation/create-pdf) for more information",
key: "apitemplate_io-create-pdf",
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 @@ -5,7 +5,12 @@ export default defineAction({
name: "Delete an Object",
description: "Delete a PDF or an image from CDN and mark the transaction as deleted. [See the docs](https://apitemplate.io/apiv2/#tag/API-Integration/operation/delete-object) for more information",
key: "apitemplate_io-delete-object",
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 @@ -5,7 +5,12 @@ export default defineAction({
name: "List Generated Objects",
description: "Retrieves all the generated PDFs and images. [See the docs](https://apitemplate.io/apiv2/#tag/API-Integration/operation/list-objects) for more information",
key: "apitemplate_io-list-objects",
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/baserow/actions/create-row/create-row.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ export default defineAction({
name: "Create Row",
description: `Create a row [See docs here](${DOCS_LINK})`,
key: "baserow-create-row",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
...common.props,
Expand Down
7 changes: 6 additions & 1 deletion components/baserow/actions/delete-row/delete-row.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ export default defineAction({
description:
`Delete a row [See docs here](${DOCS_LINK})`,
key: "baserow-delete-row",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
...common.props,
Expand Down
7 changes: 6 additions & 1 deletion components/baserow/actions/get-row/get-row.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ export default defineAction({
description:
`Get a single row [See docs here](${DOCS_LINK})`,
key: "baserow-get-row",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
...common.props,
Expand Down
7 changes: 6 additions & 1 deletion components/baserow/actions/list-rows/list-rows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ export default defineAction({
description:
`List a table's rows [See docs here](${DOCS_LINK})`,
key: "baserow-list-rows",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
async run({ $ }) {
const { tableId } = this;
Expand Down
7 changes: 6 additions & 1 deletion components/baserow/actions/update-row/update-row.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ export default defineAction({
name: "Update Row",
description: `Update a row [See docs here](${DOCS_LINK})`,
key: "baserow-update-row",
version: "0.0.3",
version: "0.0.4",
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 defineAction({
name: "Create Subscriber",
description: "Create a new subscriber. [See docs](https://www.beehiiv.com/developers/docs)",
key: "beehiiv-create-subscriber",
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 @@ -5,7 +5,12 @@ export default defineAction({
name: "List All Publications",
description: "Get a list of all your publications. [See docs](https://www.beehiiv.com/developers/docs)",
key: "beehiiv-list-all-publications",
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/clientary/actions/create-client/create-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import app from "../../app/clientary.app";

export default defineAction({
key: "clientary-create-client",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
name: "Create Client",
description: "Creates a new client. [See docs here](https://www.clientary.com/api/clients)",
type: "action",
Expand Down
11 changes: 9 additions & 2 deletions components/clientary/actions/create-estimate/create-estimate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ import app from "../../app/clientary.app";

export default defineAction({
key: "clientary-create-estimate",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
name: "Create Estimate",
description: "Creates a new estimate. [See docs here](https://www.clientary.com/api/estimates)",
type: "action",
Expand Down Expand Up @@ -39,7 +44,9 @@ export default defineAction({
try {
estimateItemsAttributes = JSON.parse(this.estimateItemsAttributes);
} catch (err) {
throw new ConfigurationError("`Estimate Items Attributes` must be a valid JSON Array string");
throw new ConfigurationError(`Estimate Items Attributes must be a valid JSON Array string

${err.message}`);
}
}
const response = await this.app.getRequestMethod("createEstimate")({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import app from "../../app/clientary.app";

export default defineAction({
key: "clientary-create-expense",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
name: "Create Expense",
description: "Creates a new expense. [See docs here](https://www.clientary.com/api/expenses)",
type: "action",
Expand Down
11 changes: 9 additions & 2 deletions components/clientary/actions/create-invoice/create-invoice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ import app from "../../app/clientary.app";

export default defineAction({
key: "clientary-create-invoice",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
name: "Create Invoice",
description: "Creates a new invoice. [See docs here](https://www.clientary.com/api/invoices)",
type: "action",
Expand Down Expand Up @@ -44,7 +49,9 @@ export default defineAction({
try {
invoiceItemsAttributes = JSON.parse(this.invoiceItemsAttributes);
} catch (err) {
throw new ConfigurationError("`Estimate Items Attributes` must be a valid JSON Array string");
throw new ConfigurationError(`\`Estimate Items Attributes\` must be a valid JSON Array string

${err.message}`);
}
}
const response = await this.app.getRequestMethod("createInvoice")({
Expand Down
7 changes: 6 additions & 1 deletion components/clientary/actions/create-task/create-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import app from "../../app/clientary.app";

export default defineAction({
key: "clientary-create-task",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
name: "Create Task",
description: "Creates a new task. [See docs here](https://www.clientary.com/api/tasks)",
type: "action",
Expand Down
2 changes: 1 addition & 1 deletion components/clientary/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/clientary",
"version": "0.0.4",
"version": "0.0.5",
"description": "Pipedream Clientary Components",
"main": "dist/app/clientary.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ export default defineAction({
name: "Convert to PDF",
description: `Convert Office Word Documents (docx) to PDF [See the documentation](${DOCS.convertToPDF})`,
key: "cloudmersive-convert-to-pdf",
version: "1.0.0",
version: "1.0.1",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
cloudmersive,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default defineAction({
name: "Screenshot Website",
description: `Take a screenshot of a website [See docs here](${DOCS.screenshotWebsite})`,
key: "cloudmersive-screenshot-website",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
cloudmersive,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default defineAction({
name: "Validate Email Address",
description: `Validate an email address [See docs here](${DOCS.validateEmailAddress})`,
key: "cloudmersive-validate-email-address",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
cloudmersive,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import coassemble from "../../app/coassemble.app";
export default {
key: "coassemble-create-new-course",
name: "Create New Course",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
description: "Use this endpoint to create new courses in your workspace. [See the docs here](https://developers.coassemble.com/api/courses#create-a-new-course)",
type: "action",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import coassemble from "../../app/coassemble.app";
export default {
key: "coassemble-create-new-user",
name: "Create New User",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
description: "Create a user as a member of your campus or add an existing user to it. [See the docs here](https://developers.coassemble.com/api/users#add-users)",
type: "action",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import coassemble from "../../app/coassemble.app";
export default {
key: "coassemble-send-course-invitation",
name: "Send Course Invitation",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
description: "Enrol existing users into a course. [See the docs here](https://developers.coassemble.com/api/enrolments#create-enrolments)",
type: "action",
props: {
Expand Down
7 changes: 6 additions & 1 deletion components/concord/actions/copy-contract/copy-contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ export default defineAction({
description:
"Create a Contract from another Contract [See the documentation](https://api.doc.concordnow.com/#tag/Agreement/operation/AgreementCreate)",
key: "concord-copy-contract",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
Loading
Loading