@pipedream/google_drive 0.6.9 → 0.6.10
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.
- package/README.md +4 -2
- package/actions/create-file/create-file.mjs +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,6 +11,8 @@ Using the Google Drive API, you can build applications that:
|
|
|
11
11
|
|
|
12
12
|
## Troubleshooting
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
**Error: "Google cannot give this app access to your account data because Advanced Protection is turned on for your Google Account"**
|
|
15
15
|
|
|
16
|
-
If you
|
|
16
|
+
If you are using a free Google account, [Google Advanced Protection Program](https://support.google.com/accounts/answer/7539956?hl=en) must be disabled in order to use the Google Drive app on Pipedream.
|
|
17
|
+
|
|
18
|
+
For Google Workspace users, your Google Workspace Administrator can manually allow the Pipedream Google Drive app; please follow the instructions [here](https://support.google.com/a/answer/7281227#zippy=%2Cadd-a-new-app).
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import googleDrive from "../../google_drive.app.mjs";
|
|
2
2
|
import fs from "fs";
|
|
3
|
-
import got from "got@
|
|
3
|
+
import got from "got@13.0.0";
|
|
4
4
|
import { toSingleLineString } from "../../common/utils.mjs";
|
|
5
5
|
|
|
6
6
|
export default {
|
|
7
7
|
key: "google_drive-create-file",
|
|
8
8
|
name: "Create a New File",
|
|
9
9
|
description: "Create a new file from a URL or /tmp/filepath. [See the docs](https://developers.google.com/drive/api/v3/reference/files/create) for more information",
|
|
10
|
-
version: "0.1.
|
|
10
|
+
version: "0.1.3",
|
|
11
11
|
type: "action",
|
|
12
12
|
props: {
|
|
13
13
|
googleDrive,
|