Skip to content

Commit f03921e

Browse files
committed
ESLint and fixes
1 parent 6944ee2 commit f03921e

File tree

8 files changed

+10
-8
lines changed

8 files changed

+10
-8
lines changed

components/printnode/actions/send-print-job/send-print-job.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "printnode-send-print-job",
66
name: "Send Print Job",
77
description: "Sends a print job to a specified printer. [See the documentation](https://www.printnode.com/en/docs/api/curl#creating-print-jobs)",
8-
version: "0.1.0",
8+
version: "1.0.0",
99
type: "action",
1010
props: {
1111
printnode,

components/raindrop/actions/parse-bookmark-file/parse-bookmark-file.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "raindrop-parse-bookmark-file",
77
name: "Parse HTML Bookmark File",
88
description: "Convert an HTML bookmark file to JSON. Supports Nestcape, Pocket and Instapaper file formats. [See the documentation](https://developer.raindrop.io/v1/import#parse-html-import-file)",
9-
version: "0.1.0",
9+
version: "1.0.0",
1010
type: "action",
1111
props: {
1212
raindrop,

components/roboflow/actions/upload-image/upload-image.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "roboflow-upload-image",
88
name: "Upload Image",
99
description: "Upload an image to a project on the Roboflow platform. [See the documentation](https://docs.roboflow.com/datasets/adding-data/upload-api).",
10-
version: "0.1.0",
10+
version: "1.0.0",
1111
type: "action",
1212
props: {
1313
roboflow,

components/security_reporter/actions/create-finding/create-finding.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export default {
116116
},
117117
draftDocumentsFile: {
118118
type: "string[]",
119-
label: "Draft Documents File",
119+
label: "Draft Document File Paths or URLs",
120120
description: "One or more files to upload. For each entry, provide either a file URL or a path to a file in the `/tmp` directory (for example, `/tmp/myFile.txt`)",
121121
optional: true,
122122
},

components/security_reporter/actions/update-finding/update-finding.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export default {
146146
},
147147
draftDocumentsFile: {
148148
type: "string[]",
149-
label: "Draft Documents File",
149+
label: "Draft Document File Paths or URLs",
150150
description: "One or more files to upload. For each entry, provide either a file URL or a path to a file in the `/tmp` directory (for example, `/tmp/myFile.txt`)",
151151
optional: true,
152152
},

components/tinypng/actions/compress-image/compress-image.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "tinypng-compress-image",
66
name: "Compress Image",
77
description: "Compress a WebP, JPEG, or PNG image using the TinyPNG API. [See the documentation](https://tinypng.com/developers/reference#compressing-images)",
8-
version: "0.1.0",
8+
version: "1.0.0",
99
type: "action",
1010
props: {
1111
tinypng,

components/zip_archive_api/actions/compress-files/compress-files.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
key: "zip_archive_api-compress-files",
99
name: "Compress Files",
1010
description: "Compress files provided through URLs into a zip folder. [See the documentation](https://archiveapi.com/rest-api/file-compression/)",
11-
version: "0.1.0",
11+
version: "1.0.0",
1212
type: "action",
1313
props: {
1414
app,

components/zoho_catalyst/common/methods.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ import { getFileStreamAndMetadata } from "@pipedream/platform";
22
import FormData from "form-data";
33

44
export async function getImageFormData(imagePath: string) {
5-
const { stream, metadata } = await getFileStreamAndMetadata(imagePath);
5+
const {
6+
stream, metadata,
7+
} = await getFileStreamAndMetadata(imagePath);
68

79
const data = new FormData();
810
data.append("image", stream, {

0 commit comments

Comments
 (0)