Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@pipedream/helper_functions

Package Overview
Dependencies
Maintainers
8
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pipedream/helper_functions - npm Package Compare versions

Comparing version
0.5.3
to
0.5.4
+6
-1
actions/base64-decode-string/base64-decode-string.mjs

@@ -8,3 +8,8 @@ // legacy_hash_id: a_0Mio28

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",

@@ -11,0 +16,0 @@ props: {

@@ -7,3 +7,8 @@ import helperFunctions from "../../helper_functions.app.mjs";

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",

@@ -10,0 +15,0 @@ props: {

@@ -8,3 +8,8 @@ import { axios } from "@pipedream/platform";

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",

@@ -11,0 +16,0 @@ props: {

@@ -9,3 +9,8 @@ // legacy_hash_id: a_eliYz4

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",

@@ -12,0 +17,0 @@ props: {

@@ -8,3 +8,8 @@ // legacy_hash_id: a_a4i80O

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",

@@ -11,0 +16,0 @@ props: {

@@ -10,3 +10,8 @@ import { readFileSync } from "fs";

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",

@@ -13,0 +18,0 @@ props: {

@@ -8,3 +8,8 @@ // legacy_hash_id: a_m8iXpW

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",

@@ -11,0 +16,0 @@ props: {

@@ -9,3 +9,8 @@ import helper_functions from "../../helper_functions.app.mjs";

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.6",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",

@@ -24,2 +29,8 @@ props: {

},
headers: {
type: "object",
label: "HTTP Headers",
description: "Optional HTTP headers to send with the request (e.g., for authentication or bypassing hotlink protection)",
optional: true,
},
syncDir: {

@@ -33,3 +44,5 @@ type: "dir",

const {
url, filename,
url,
filename,
headers = {},
} = this;

@@ -40,2 +53,6 @@

responseType: "arraybuffer",
headers: {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
...headers,
},
});

@@ -42,0 +59,0 @@

@@ -8,3 +8,8 @@ import { ConfigurationError } from "@pipedream/platform";

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",

@@ -11,0 +16,0 @@ props: {

@@ -9,3 +9,8 @@ // legacy_hash_id: a_nji3no

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",

@@ -12,0 +17,0 @@ props: {

@@ -8,3 +8,8 @@ // legacy_hash_id: a_njiVEV

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",

@@ -11,0 +16,0 @@ props: {

@@ -9,3 +9,8 @@ // legacy_hash_id: a_PNiBGY

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",

@@ -12,0 +17,0 @@ props: {

@@ -9,3 +9,8 @@ // legacy_hash_id: a_67il6m

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",

@@ -12,0 +17,0 @@ props: {

@@ -9,3 +9,8 @@ // legacy_hash_id: a_m8ijqa

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",

@@ -12,0 +17,0 @@ props: {

@@ -9,3 +9,8 @@ // legacy_hash_id: a_oViLn2

description: "Convert via turndown",
version: "1.0.1",
version: "1.0.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: true,
},
type: "action",

@@ -12,0 +17,0 @@ props: {

@@ -9,3 +9,8 @@ // legacy_hash_id: a_A6i7q8

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",

@@ -12,0 +17,0 @@ props: {

@@ -7,3 +7,8 @@ import helperFunctions from "../../helper_functions.app.mjs";

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",

@@ -10,0 +15,0 @@ props: {

@@ -9,3 +9,8 @@ import helperFunctions from "../../helper_functions.app.mjs";

"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",

@@ -12,0 +17,0 @@ props: {

@@ -9,3 +9,8 @@ // legacy_hash_id: a_Vpi7QO

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",

@@ -12,0 +17,0 @@ props: {

@@ -9,3 +9,8 @@ // legacy_hash_id: a_k6iY38

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",

@@ -12,0 +17,0 @@ props: {

@@ -9,3 +9,8 @@ // legacy_hash_id: a_3LiebX

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",

@@ -12,0 +17,0 @@ props: {

@@ -9,3 +9,8 @@ // legacy_hash_id: a_EViLg3

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",

@@ -12,0 +17,0 @@ props: {

@@ -7,3 +7,8 @@ import helperFunctions from "../../helper_functions.app.mjs";

description: "Send Webhook and Payload",
version: "1.0.0",
version: "1.0.1",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
type: "action",

@@ -10,0 +15,0 @@ props: {

@@ -8,3 +8,8 @@ // legacy_hash_id: a_Vpi8Rv

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",

@@ -11,0 +16,0 @@ props: {

@@ -7,3 +7,8 @@ import helperFunctions from "../../helper_functions.app.mjs";

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",

@@ -10,0 +15,0 @@ props: {

@@ -8,3 +8,8 @@ import helper_functions from "../../helper_functions.app.mjs";

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",

@@ -11,0 +16,0 @@ props: {

+2
-2
{
"name": "@pipedream/helper_functions",
"version": "0.5.3",
"version": "0.5.4",
"description": "Pipedream Helper_functions Components",

@@ -17,3 +17,3 @@ "main": "helper_functions.app.mjs",

"dependencies": {
"@pipedream/platform": "^3.0.0",
"@pipedream/platform": "^3.1.1",
"csv-parse": "^5.5.6",

@@ -20,0 +20,0 @@ "streamifier": "^0.1.1",