Skip to content

Commit 2e500dc

Browse files
committed
updates
1 parent 1620d7a commit 2e500dc

File tree

26 files changed

+32
-32
lines changed

26 files changed

+32
-32
lines changed

components/dropbox/actions/upload-file/upload-file.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default {
2727
},
2828
filePath: {
2929
type: "string",
30-
label: "File",
30+
label: "File Path or URL",
3131
description: "Provide either a file URL or a path to a file in the /tmp directory (for example, /tmp/myFlie.pdf).",
3232
},
3333
autorename: {

components/dropbox/actions/upload-multiple-files/upload-multiple-files.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default {
2424
},
2525
filesPaths: {
2626
type: "string[]",
27-
label: "Files",
27+
label: "File Paths or URLs",
2828
description: "Provide an array of either file URLs or paths to a files in the /tmp directory (for example, /tmp/myFlie.pdf).",
2929
},
3030
filenames: {

components/dropbox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/dropbox",
3-
"version": "0.4.2",
3+
"version": "1.0.0",
44
"description": "Pipedream Dropbox Components",
55
"main": "dropbox.app.mjs",
66
"keywords": [

components/elevenlabs/actions/add-voice/add-voice.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default {
1717
},
1818
files: {
1919
type: "string[]",
20-
label: "Files",
20+
label: "File Paths or URLs",
2121
description: "Provide either a n array of file URLs or an array of paths to a files in the /tmp directory (for example, /tmp/myFlie.pdf).",
2222
},
2323
description: {

components/jira/actions/add-attachment-to-issue/add-attachment-to-issue.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ export default {
2525
}),
2626
],
2727
},
28-
filename: {
28+
file: {
2929
type: "string",
30-
label: "File",
30+
label: "File Path or URL",
3131
description: "Provide either a file URL or a path to a file in the /tmp directory (for example, /tmp/myFlie.pdf).",
3232
},
3333
},
3434
async run({ $ }) {
3535
const data = new FormData();
36-
const file = this.filename;
36+
const file = this.file;
3737

3838
const {
3939
stream, metadata,

components/jira/actions/add-multiple-attachments-to-issue/add-multiple-attachments-to-issue.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ export default {
2525
}),
2626
],
2727
},
28-
filenames: {
28+
files: {
2929
type: "string",
30-
label: "File",
30+
label: "File Paths or URLs",
3131
description: "Provide either an array of file URLs or paths to files in the /tmp directory (for example, /tmp/myFlie.pdf).",
3232
},
3333
},
3434
async run({ $ }) {
3535
const responses = [];
3636

37-
for (let i = 0; i < this.filenames.length; i++) {
38-
const file = this.filenames[i];
37+
for (let i = 0; i < this.files.length; i++) {
38+
const file = this.files[i];
3939
const data = new FormData();
4040
const {
4141
stream, metadata,

components/microsoft_outlook/microsoft_outlook.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default {
5555
},
5656
files: {
5757
type: "string[]",
58-
label: "Files",
58+
label: "File Paths or URLs",
5959
description: "Provide either an array of file URLs or an array of paths to a files in the /tmp directory (for example, /tmp/myFlie.pdf).",
6060
optional: true,
6161
},

components/speechace/actions/score-scripted-recording/score-scripted-recording.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default {
1313
filePath: {
1414
propDefinition: [
1515
speechace,
16-
"file",
16+
"filePath",
1717
],
1818
},
1919
text: {

components/speechace/actions/transcribe-and-score-recording/transcribe-and-score-recording.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default {
1313
filePath: {
1414
propDefinition: [
1515
speechace,
16-
"file",
16+
"filePath",
1717
],
1818
},
1919
relevanceContext: {

components/speechace/speechace.app.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ export default {
2121
optional: true,
2222
default: "en-us",
2323
},
24-
file: {
24+
filePath: {
2525
type: "string",
26-
label: "File",
26+
label: "File Path or URL",
2727
description: "Provide either a file URL or a path to a file in the /tmp directory (for example, /tmp/myFlie.pdf).",
2828
},
2929
userId: {

0 commit comments

Comments
 (0)