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
2 changes: 1 addition & 1 deletion components/posthog/actions/capture-event/capture-event.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "posthog-capture-event",
name: "Capture Event",
description: "Captures a given event within the PostHog system. [See the documentation](https://posthog.com/docs/api/post-only-endpoints#single-event)",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
2 changes: 1 addition & 1 deletion components/posthog/actions/create-query/create-query.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "posthog-create-query",
name: "Create Query",
description: "Create a HogQLQuery and return the results. [See the documentation](https://posthog.com/docs/api/queries#creating-a-query)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
2 changes: 1 addition & 1 deletion components/posthog/actions/get-cohorts/get-cohorts.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "posthog-get-cohorts",
name: "Get Cohorts",
description: "Retrieve a list of cohorts. [See the documentation](https://posthog.com/docs/api/cohorts#get-api-projects-project_id-cohorts)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
2 changes: 1 addition & 1 deletion components/posthog/actions/get-persons/get-persons.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "posthog-get-persons",
name: "Get Persons",
description: "Retrieve a list of persons. [See the documentation](https://posthog.com/docs/api/persons#get-api-projects-project_id-persons)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
2 changes: 1 addition & 1 deletion components/posthog/actions/get-surveys/get-surveys.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "posthog-get-surveys",
name: "Get Surveys",
description: "Retrieve a list of surveys. [See the documentation](https://posthog.com/docs/api/surveys#get-api-projects-project_id-surveys)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "predictleads-get-technologies",
name: "Get Technologies",
description: "Retrieve a list of technologies that PredictLeads tracks. [See the documentation](https://docs.predictleads.com/v3/api_endpoints/technologies_dataset/retrieve_all_tracked_technologies)",
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: "predictleads-lookup-company",
name: "Lookup Company By Domain",
description: "Lookup a company by their domain. [See the documentation](https://docs.predictleads.com/v3/api_endpoints/companies_dataset/retrieve_company)",
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: "predictleads-retrieve-companies-by-technology",
name: "Retrieve Companies By Technology",
description: "Retrieve companies that use a specific technology. [See the documentation](https://docs.predictleads.com/v3/api_endpoints/technologies_dataset/retrieve_a_single_technology_by_id)",
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: "predictleads-retrieve-news-events-by-domain",
name: "Retrieve News Events By Domain",
description: "Retrieve news events for a company by domain. [See the documentation](https://docs.predictleads.com/v3/api_endpoints/news_events_dataset/retrieve_company_s_news_events)",
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 @@ -3,7 +3,12 @@ import pretix from "../../pretix.app.mjs";
export default {
key: "pretix-get-order-details",
name: "Get Order Details",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
description: "Returns information on one order, identified by its order code. [See the documentation](https://docs.pretix.eu/en/latest/api/resources/orders.html#fetching-individual-orders)",
type: "action",
props: {
Expand Down
7 changes: 6 additions & 1 deletion components/pretix/actions/update-event/update-event.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import pretix from "../../pretix.app.mjs";
export default {
key: "pretix-update-event",
name: "Update Event",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
description: "Updates a specific event. [See the documentation](https://docs.pretix.eu/en/latest/api/resources/events.html#patch--api-v1-organizers-(organizer)-events-(event)-)",
type: "action",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "printautopilot-add-pdf-to-queue",
name: "Add PDF to Print Autopilot Queue",
description: "Uploads a PDF document to the print-autopilot queue. [See the documentation](https://documenter.getpostman.com/view/1334461/TW6wJonb#53f82327-4f23-416d-b2f0-ce17b8037933)",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
printAutopilot,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
name: "Create Customer",
description: "Create a new customer. [See the docs here](https://printavo.docs.apiary.io/#reference/customers/customers-collection/customer-create)",
key: "printavo-create-customer",
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 {
name: "Delete Customer",
description: "Delete a customer. [See the docs here](https://printavo.docs.apiary.io/#reference/customers/customer/customer-delete)",
key: "printavo-delete-customer",
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 {
name: "Search Customers",
description: "Search customers. [See the docs here](https://printavo.docs.apiary.io/#reference/customers/customers-collection/customers-search)",
key: "printavo-search-customers",
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: "Update Customer",
description: "Update a new customer. [See the docs here](https://printavo.docs.apiary.io/#reference/customers/customer/customer-update)",
key: "printavo-update-customer",
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: "printful-calculate-shipping-rates",
name: "Calculate Shipping Rates",
description: "Fetches available shipping rates for a given destination. [See the documentation](https://developers.printful.com/docs/#tag/Shipping-Rate-API/operation/calculateShippingRates)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
printful,
Expand Down
7 changes: 6 additions & 1 deletion components/printful/actions/create-order/create-order.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import printful from "../../printful.app.mjs";

export default {
name: "Create Order",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "printful-create-order",
description: "Creates a new order in your Printful account. [See the documentaion](https://developers.printful.com/docs/#operation/createOrder)",
type: "action",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
key: "printful-update-product",
name: "Update Product",
description: "Updates an existing product in your Printful store. [See the documentation](https://developers.printful.com/docs/#tag/Products-API/operation/updateSyncProduct)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
printful,
Expand All @@ -24,7 +29,7 @@
}),
],
},
alert: {

Check warning on line 32 in components/printful/actions/update-product/update-product.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop alert must have a description. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 32 in components/printful/actions/update-product/update-product.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop alert must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "alert",
alertType: "warning",
content: `Please note that in the request body you only need to specify the fields that need to be changed.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import printful_oauth from "../../printful_oauth.app.mjs";

export default {
name: "Create Order",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "printful_oauth-create-order",
description: "Creates an order. [See docs here](https://developers.printful.com/docs/#operation/createOrder)",
type: "action",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "printify-create-product",
name: "Create a Product",
description: "Creates a new product on Printify. [See the documentation](https://developers.printify.com/#create-a-new-product)",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
printify,
Expand Down
7 changes: 6 additions & 1 deletion components/printify/actions/submit-order/submit-order.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "printify-submit-order",
name: "Submit Order",
description: "Places an order of an existing product on Printify. [See the documentation](https://developers.printify.com/#submit-an-order)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
printify,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "printify-update-product",
name: "Update Product",
description: "Updates an existing product on Printify. [See the documentation](https://developers.printify.com/#update-a-product)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
printify,
Expand Down
7 changes: 6 additions & 1 deletion components/printnode/actions/get-printer/get-printer.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "printnode-get-printer",
name: "Get Printer",
description: "Retrieves data about a specific printer. [See the documentation](https://www.printnode.com/en/docs/api/curl#printers)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
printnode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "printnode-list-print-jobs",
name: "List Print Jobs",
description: "Returns a list of all print jobs that have been submitted. [See the documentation](https://www.printnode.com/en/docs/api/curl#printjob-viewing)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
printnode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "printnode-send-print-job",
name: "Send Print Job",
description: "Sends a print job to a specified printer. [See the documentation](https://www.printnode.com/en/docs/api/curl#creating-print-jobs)",
version: "1.0.1",
version: "1.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
printnode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

export default {
name: "Create Database Connection String",
version: "1.0.0",
version: "1.0.1",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "prisma_management_api-create-database-connection-string",
description: "Creates a new connection string for an existing database via Prisma Management API. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)",
type: "action",
Expand All @@ -29,8 +34,8 @@
});

if (response) {
$.export("$summary", `Successfully created connection string for database ${this.databaseId}${response.id ? ` with connection ID ${response.id}` : ""}`);

Check failure on line 37 in components/prisma_management_api/actions/create-database-connection-string/create-database-connection-string.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Expected newline between consequent and alternate of ternary expression

Check failure on line 37 in components/prisma_management_api/actions/create-database-connection-string/create-database-connection-string.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Expected newline between test and consequent of ternary expression
}

return response;
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

export default {
name: "Create Database",
version: "1.0.0",
version: "1.0.1",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "prisma_management_api-create-database",
description: "Creates a new Postgres database project via Prisma Management API. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)",
type: "action",
Expand Down Expand Up @@ -33,7 +38,7 @@
if (response) {
const projectId = response.data?.id;
const databaseId = response.data?.database?.id;

Check failure on line 41 in components/prisma_management_api/actions/create-database/create-database.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Trailing spaces not allowed
let summary = `Successfully created Postgres database project "${this.name}"`;
if (projectId) {
summary += ` with Project ID ${projectId}`;
Expand All @@ -41,9 +46,9 @@
if (databaseId) {
summary += ` and Database ID ${databaseId}`;
}

Check failure on line 49 in components/prisma_management_api/actions/create-database/create-database.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Trailing spaces not allowed
$.export("$summary", summary);
}

return response;
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

export default {
name: "Create New Database in Existing Project",
version: "1.0.0",
version: "1.0.1",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
key: "prisma_management_api-create-new-database-in-existing-project",
description: "Create a new database in an existing Prisma project. Requires Project ID. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)",
type: "action",
Expand Down Expand Up @@ -31,7 +36,7 @@
if (!this.region) {
throw new Error("Region is required for creating a database");
}

Check failure on line 39 in components/prisma_management_api/actions/create-new-database-in-existing-project/create-new-database-in-existing-project.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Trailing spaces not allowed
const data = {
region: this.region,
};
Expand All @@ -44,8 +49,8 @@
});

if (response) {
$.export("$summary", `Successfully created database in project ${this.projectId}${response.id ? ` with ID ${response.id}` : ""}`);

Check failure on line 52 in components/prisma_management_api/actions/create-new-database-in-existing-project/create-new-database-in-existing-project.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Expected newline between consequent and alternate of ternary expression

Check failure on line 52 in components/prisma_management_api/actions/create-new-database-in-existing-project/create-new-database-in-existing-project.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Expected newline between test and consequent of ternary expression
}

return response;
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs";

export default {
name: "Delete Database by Database ID",
version: "1.0.0",
version: "1.0.1",
annotations: {
destructiveHint: true,
openWorldHint: true,
readOnlyHint: false,
},
key: "prisma_management_api-delete-database-by-database-id",
description: "Delete a specific database by Database ID via Prisma Management API. This action is irreversible. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)",
type: "action",
Expand Down
Loading
Loading