Skip to content

Commit 68825a6

Browse files
Quick patch
To make the fileUrl and filePath props optional
1 parent d9f1ce1 commit 68825a6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default {
1313
key: "google_drive-upload-file",
1414
name: "Upload File",
1515
description: "Upload a file to Google Drive. [See the documentation](https://developers.google.com/drive/api/v3/manage-uploads) for more information",
16-
version: "1.0.1",
16+
version: "1.0.2",
1717
type: "action",
1818
additionalProps,
1919
props: {
@@ -43,15 +43,15 @@ export default {
4343
googleDrive,
4444
"fileUrl",
4545
],
46-
optional: false,
46+
optional: true,
4747
hidden: true,
4848
},
4949
filePath: {
5050
propDefinition: [
5151
googleDrive,
5252
"filePath",
5353
],
54-
optional: false,
54+
optional: true,
5555
hidden: true,
5656
},
5757
name: {

components/google_drive/package.json

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

0 commit comments

Comments
 (0)