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 @@ -5,11 +5,16 @@
key: "helper_functions-base64-decode-string",
name: "Base64 Decode String",
description: "Accepts a base64-encoded string, returns a decoded UTF-8 string",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helper_functions,
data: {

Check warning on line 17 in components/helper_functions/actions/base64-decode-string/base64-decode-string.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

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

Check warning on line 17 in components/helper_functions/actions/base64-decode-string/base64-decode-string.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop data must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "helper_functions-compare-arrays",
name: "Compare Arrays",
description: "Get the difference, intersection, union, or symetric difference of two arrays/sets.",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
helperFunctions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "helper_functions-convert-currency",
name: "Convert Currency",
description: "Convert an amount between currencies. [See the documentation](https://www.frankfurter.app/docs/)",
version: "0.2.0",
version: "0.2.1",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
helperFunctions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@
key: "helper_functions-convert-html-to-slack-mrkdwn",
name: "Convert HTML to Slack mrkdwn format",
description: "Converts an HTML string to the Slack mrkdwn format using",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
helper_functions,
html: {

Check warning on line 18 in components/helper_functions/actions/convert-html-to-slack-mrkdwn/convert-html-to-slack-mrkdwn.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop html must have a description. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
label: "HTML",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@
key: "helper_functions-convert-object-to-json-string",
name: "Convert JavaScript Object to JSON String",
description: "Accepts a JavaScript object, returns that object converted to a JSON string",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
helper_functions,
object: {

Check warning on line 17 in components/helper_functions/actions/convert-object-to-json-string/convert-object-to-json-string.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop object must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
description: "The JavaScript object you'd like to convert to a JSON string",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ export default {
key: "helper_functions-csv-file-to-objects",
name: "CSV File To Objects",
description: "Convert a CSV file to an array of objects.",
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/helper_functions/actions/delay/delay.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@
key: "helper_functions-delay",
name: "Delay by N milliseconds",
description: "Delays the execution of your workflow for the specified number of milliseconds",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helper_functions,
ms: {

Check warning on line 17 in components/helper_functions/actions/delay/delay.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop ms must have a description. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
label: "Number of milliseconds to delay workflow execution",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "helper_functions-download-file-to-tmp",
name: "Download File To /tmp",
description: "Downloads a file to [your workflow's /tmp directory](https://pipedream.com/docs/code/nodejs/working-with-files/#the-tmp-directory)",
version: "0.3.1",
version: "0.3.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helper_functions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "helper_functions-export-variables",
name: "Export Variables",
description: "Export variables for use in your workflow",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helperFunctions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@
key: "helper_functions-format-iso8601-datetime",
name: "Format ISO8601 Date/Time for Google Sheets",
description: "Use the moment.js npm package to format an ISO8601 date/time as Google Sheets friendly formats. This action exports an object with compound date/time, date-only, and time-only values.",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helper_functions,
iso8601: {

Check warning on line 18 in components/helper_functions/actions/format-iso8601-datetime/format-iso8601-datetime.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop iso8601 must have a description. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
label: "ISO 8601 Date/Time",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@
key: "helper_functions-get-coutry-name-by-code-iso",
name: "Country name, given code (2-letter)",
description: "Return the country name (in English) when given the 2-letter country code",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
helper_functions,
countryCode: {

Check warning on line 17 in components/helper_functions/actions/get-coutry-name-by-code-iso/get-coutry-name-by-code-iso.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop countryCode must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
description: "The 2 letter capitalized country code",
},
Expand Down Expand Up @@ -264,7 +269,7 @@
"ZW": "Zimbabwe",
};

if (isoCountries.hasOwnProperty(countryCode)) {

Check failure on line 272 in components/helper_functions/actions/get-coutry-name-by-code-iso/get-coutry-name-by-code-iso.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Do not access Object.prototype method 'hasOwnProperty' from target object
return isoCountries[countryCode];
} else {
return countryCode;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@
key: "helper_functions-get-current-time-in-specific-timezone",
name: "Get Current Time in Timezone",
description: "Returns the current time, tied to this workflow invocation, in the target timezone",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
helper_functions,
timezone: {

Check warning on line 18 in components/helper_functions/actions/get-current-time-in-specific-timezone/get-current-time-in-specific-timezone.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop timezone must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
description: "The IANA timezone name, e.g. `America/Los_Angeles`. [See the full list here](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@
key: "helper_functions-get-iso-string-n-days-ago",
name: "Get ISO String N Days Ago",
description: "Returns an ISO string (UTC TZ) N days ago",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
helper_functions,
days: {

Check warning on line 18 in components/helper_functions/actions/get-iso-string-n-days-ago/get-iso-string-n-days-ago.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop days must have a description. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
label: "N Days Ago",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
key: "helper_functions-get-time-in-specific-timezone",
name: "Get Time in Timezone",
description: "Given an ISO 8601 timestamp, and a timezone, convert the time to the target timezone.",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
helper_functions,
Expand All @@ -15,7 +20,7 @@
label: "ISO 8601 Time",
description: "An [ISO 8601 string](https://en.wikipedia.org/wiki/ISO_8601) representing the time you'd like to convert to your target timezone. If this timestamp doesn't have a timezone component, it's assumed to be in UTC.",
},
timezone: {

Check warning on line 23 in components/helper_functions/actions/get-time-in-specific-timezone/get-time-in-specific-timezone.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop timezone must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
description: "The IANA timezone name, e.g. `America/Los_Angeles`. [See the full list here](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "helper_functions-html-to-markdown",
name: "HTML to Markdown",
description: "Convert via turndown",
version: "1.0.1",
version: "1.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
helper_functions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "helper_functions-prettify-json",
name: "Pretty Print JSON",
description: "Pretty print a JavaScript object or value",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helper_functions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "helper_functions-random-integer",
name: "Random Integer",
description: "Generate a random integer (whole number). Useful for random delays.",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helperFunctions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
name: "Random Item(s) from List",
description:
"Returns a randomly selected value(s) from a user-defined list of options.",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
helperFunctions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "helper_functions-retrieve-all-rss-stories",
name: "Retrieve all RSS Stories",
description: "Retrieve all stories from one or more RSS feeds.",
version: "0.1.2",
version: "0.1.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
helper_functions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "helper_functions-retrieve-new-rss-stories",
name: "Retrieve New RSS Stories",
description: "Gets new stories from a specified RSS feed that have not already been processed.",
version: "0.2.2",
version: "0.2.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",
props: {
helper_functions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "helper_functions-schedule-task-in-future",
name: "Pipedream Task Scheduler - Schedule Task",
description: "Schedule a task with an existing task scheduler source. See [here](https://pipedream.com/apps/pipedream/triggers/new-scheduled-tasks) for more details.",
version: "0.2.2",
version: "0.2.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helper_functions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export default {
key: "helper_functions-send-email-with-nodemailer",
name: "Send email with Nodemailer",
description: "Sends an email using the nodemailer package",
version: "0.2.1",
version: "0.2.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helper_functions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "helper_functions-send-http-request",
name: "Send Webhook",
description: "Send Webhook and Payload",
version: "1.0.0",
version: "1.0.1",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helperFunctions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "helper_functions-send-to-s3",
name: "Send to Amazon S3",
description: "Send data to Amazon S3 using Pipedream's destination integration. See https://docs.pipedream.com/destinations/s3/",
version: "0.2.1",
version: "0.2.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helper_functions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "helper_functions-trigger-workflow",
name: "Trigger Workflow",
description: "Trigger another Pipedream workflow in your workspace.",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helperFunctions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default {
key: "helper_functions-xml-to-json",
name: "XML to JSON",
description: "See [xml-js](https://github.com/nashwaan/xml-js)",
version: "0.2.2",
version: "0.2.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helper_functions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "helpspace-create-customer",
name: "Create Customer",
description: "Creates a new customer in Helpspace. [See the documentation](https://documentation.helpspace.com/api-customers)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helpspace,
Expand Down
7 changes: 6 additions & 1 deletion components/helpspace/actions/create-ticket/create-ticket.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export default {
key: "helpspace-create-ticket",
name: "Create Ticket",
description: "Creates a new ticket in Helpspace. [See the documentation](https://documentation.helpspace.com/api-tickets)",
version: "0.0.1",
version: "0.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",
props: {
helpspace,
Expand Down
Loading
Loading