@pipedream/google_drive 0.8.1 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,7 +11,7 @@ export default {
|
|
11
11
|
key: "google_drive-upload-file",
|
12
12
|
name: "Upload File",
|
13
13
|
description: "Upload a file to Google Drive. [See the documentation](https://developers.google.com/drive/api/v3/manage-uploads) for more information",
|
14
|
-
version: "0.1.
|
14
|
+
version: "0.1.8",
|
15
15
|
type: "action",
|
16
16
|
props: {
|
17
17
|
googleDrive,
|
@@ -104,7 +104,7 @@ export default {
|
|
104
104
|
const file = await getFileStream({
|
105
105
|
$,
|
106
106
|
fileUrl,
|
107
|
-
filePath: filePath
|
107
|
+
filePath: filePath?.startsWith("/tmp/")
|
108
108
|
? filePath
|
109
109
|
: `/tmp/${filePath}`,
|
110
110
|
});
|