Skip to content

Commit fa9b831

Browse files
committed
updates
1 parent 73d4472 commit fa9b831

File tree

10 files changed

+8
-15
lines changed

10 files changed

+8
-15
lines changed

components/aws/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
"mailparser": "^3.6.6",
3939
"mailparser-mit": "^1.0.0",
4040
"nanoid": "^5.0.4",
41-
"stream": "^0.0.3",
4241
"uuid": "^9.0.1"
4342
},
4443
"gitHead": "e12480b94cc03bed4808ebc6b13e7fdb3a1ba535",

components/aws/sources/s3-restored-file/s3-restored-file.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
type: "source",
77
key: "aws-s3-restored-file",
88
name: "New Restored S3 File",
9-
description: "Emit new event when an file is restored into a S3 bucket",
9+
description: "Emit new event when a file is restored into an S3 bucket",
1010
version: "0.2.0",
1111
dedupe: "unique",
1212
props: {

components/google_drive/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"got": "13.0.0",
1818
"lodash": "^4.17.21",
1919
"mime-db": "^1.51.0",
20-
"stream": "^0.0.3",
2120
"uuid": "^8.3.2"
2221
},
2322
"gitHead": "e12480b94cc03bed4808ebc6b13e7fdb3a1ba535",

components/microsoft_onedrive/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"@pipedream/platform": "^3.1.0",
1414
"bottleneck": "^2.19.5",
1515
"isomorphic-fetch": "^3.0.0",
16-
"lodash.get": "^4.4.2",
17-
"stream": "^0.0.3"
16+
"lodash.get": "^4.4.2"
1817
}
1918
}

components/microsoft_onedrive/sources/new-file-created/new-file-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export default {
8383
responseType: "arraybuffer",
8484
});
8585
const buffer = Buffer.from(response, "base64");
86-
const filepath = `${driveItem.id}}/${driveItem.name}`;
86+
const filepath = `${driveItem.id}/${driveItem.name}`;
8787
const file = await this.dir.open(filepath).fromReadableStream(
8888
Readable.from(buffer),
8989
driveItem.file.mimeType,

components/microsoft_outlook/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
"axios": "^0.21.1",
1717
"js-base64": "^3.7.2",
1818
"md5": "^2.3.0",
19-
"mime-types": "^2.1.35",
20-
"stream": "^0.0.3"
19+
"mime-types": "^2.1.35"
2120
},
2221
"publishConfig": {
2322
"access": "public"

components/openai/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
"file-type": "^21.0.0",
2020
"form-data": "^4.0.0",
2121
"got": "^12.6.0",
22-
"openai": "^4.77.0",
23-
"stream": "^0.0.3"
22+
"openai": "^4.77.0"
2423
},
2524
"devDependencies": {
2625
"@pipedream/types": "^0.3.2",

components/openai/sources/new-file-created/new-file-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ export default {
8282
}
8383
}
8484
this.$emit(item, this.getMeta(item));
85+
count++;
8586
}
86-
count++;
8787
}
8888
},
8989
},

components/zoho_desk/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
"@pipedream/platform": "^3.1.0",
1414
"async-retry": "^1.3.3",
1515
"file-type": "^21.0.0",
16-
"form-data": "^4.0.0",
17-
"stream": "^0.0.3"
16+
"form-data": "^4.0.0"
1817
},
1918
"publishConfig": {
2019
"access": "public"

components/zoho_workdrive/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
"@pipedream/platform": "^3.1.0",
1717
"axios": "^1.5.1",
1818
"file-type": "^21.0.0",
19-
"form-data": "^4.0.0",
20-
"stream": "^0.0.3"
19+
"form-data": "^4.0.0"
2120
}
2221
}

0 commit comments

Comments
 (0)