You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/stannp/actions/create-campaign/create-campaign.mjs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ export default {
9
9
key: "stannp-create-campaign",
10
10
name: "Create a New Campaign",
11
11
description: "Create a new campaign in Stannp. [See the documentation](https://www.stannp.com/us/direct-mail-api/campaigns)",
12
-
version: "0.0.1",
12
+
version: "0.1.0",
13
13
type: "action",
14
14
props: {
15
15
stannp,
@@ -58,22 +58,22 @@ export default {
58
58
},
59
59
file: {
60
60
type: "string",
61
-
label: "File",
62
-
description: "A single or multi-page PDF file to use as the design artwork. can be a URL or a path to a file in the `/tmp` directory. [See the documentation on working with files](https://pipedream.com/docs/code/nodejs/working-with-files/#writing-a-file-to-tmp). Make sure the image is in the correct format.",
61
+
label: "PDF File Path or URL",
62
+
description: "A PDF file to use as the design artwork. Provide either a file URL or a path to a file in the `/tmp` directory (for example, `/tmp/myFile.pdf`)",
63
63
optional: true,
64
64
reloadProps: true,
65
65
},
66
66
front: {
67
67
type: "string",
68
-
label: "Front",
69
-
description: "A PDF or JPG file to use as the front image. Can be a URL or a path to a file in the `/tmp` directory. [See the documentation on working with files](https://pipedream.com/docs/code/nodejs/working-with-files/#writing-a-file-to-tmp). Make sure the image is in the correct format.",
68
+
label: "Front Image Path or URL",
69
+
description: "A PDF or JPG file to use as the front image. Provide either a file URL or a path to a file in the `/tmp` directory (for example, `/tmp/myFile.jpg`)",
70
70
optional: true,
71
71
reloadProps: true,
72
72
},
73
73
back: {
74
74
type: "string",
75
-
label: "Back",
76
-
description: "A PDF or JPG file to use as the back image. Can be a URL or a path to a file in the `/tmp` directory. [See the documentation on working with files](https://pipedream.com/docs/code/nodejs/working-with-files/#writing-a-file-to-tmp). Make sure the image is in the correct format.",
75
+
label: "Back Image Path or URL",
76
+
description: "A PDF or JPG file to use as the back image. Provide either a file URL or a path to a file in the `/tmp` directory (for example, `/tmp/myFile.jpg`)",
Copy file name to clipboardExpand all lines: components/zamzar/zamzar.app.mjs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,8 @@ export default {
8
8
propDefinitions: {
9
9
sourceFile: {
10
10
type: "string",
11
-
label: "Source File",
12
-
description: "The path to the file saved to the `/tmp` directory (e.g. `/tmp/image.png`). [See the documentation](https://pipedream.com/docs/workflows/steps/code/nodejs/working-with-files/#the-tmp-directory).",
11
+
label: "Source File Path or URL",
12
+
description: "The file to convert. Provide either a file URL or a path to a file in the `/tmp` directory (for example, `/tmp/myFile.txt`)",
Copy file name to clipboardExpand all lines: components/zoho_desk/actions/add-ticket-attachment/add-ticket-attachment.mjs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ export default {
6
6
name: "Add Ticket Attachment",
7
7
description: "Attaches a file to a ticket. [See the docs here](https://desk.zoho.com/DeskAPIDocument#TicketAttachments#TicketAttachments_CreateTicketattachment)",
8
8
type: "action",
9
-
version: "0.0.2",
9
+
version: "0.1.0",
10
10
props: {
11
11
zohoDesk,
12
12
orgId: {
@@ -32,8 +32,8 @@ export default {
32
32
},
33
33
file: {
34
34
type: "string",
35
-
label: "File",
36
-
description: "File path of a file previously downloaded in Pipedream E.g. (`/tmp/my-file.txt`). [Download a file to the `/tmp` directory](https://pipedream.com/docs/code/nodejs/http-requests/#download-a-file-to-the-tmp-directory)",
35
+
label: "File Path or URL",
36
+
description: "The file to attach. Provide either a file URL or a path to a file in the `/tmp` directory (for example, `/tmp/myFile.txt`)",
0 commit comments