@pipedream/google_drive 0.4.15 → 0.6.0

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.
Files changed (35) hide show
  1. package/actions/add-file-sharing-preference/add-file-sharing-preference.mjs +1 -1
  2. package/actions/copy-file/copy-file.mjs +1 -1
  3. package/actions/create-file/create-file.mjs +9 -9
  4. package/actions/create-file-from-template/create-file-from-template.mjs +1 -1
  5. package/actions/create-file-from-text/create-file-from-text.mjs +1 -1
  6. package/actions/create-folder/create-folder.mjs +1 -1
  7. package/actions/create-shared-drive/create-shared-drive.mjs +1 -1
  8. package/actions/delete-file/delete-file.mjs +1 -1
  9. package/actions/delete-shared-drive/delete-shared-drive.mjs +1 -1
  10. package/actions/download-file/download-file.mjs +1 -1
  11. package/actions/find-file/find-file.mjs +1 -1
  12. package/actions/find-folder/find-folder.mjs +1 -1
  13. package/actions/find-forms/find-forms.mjs +54 -0
  14. package/actions/find-spreadsheets/find-spreadsheets.mjs +1 -1
  15. package/actions/get-folder-id-for-path/get-folder-id-for-path.mjs +1 -1
  16. package/actions/get-shared-drive/get-shared-drive.mjs +1 -1
  17. package/actions/list-files/list-files.mjs +1 -1
  18. package/actions/move-file/move-file.mjs +1 -1
  19. package/actions/move-file-to-trash/move-file-to-trash.mjs +1 -1
  20. package/actions/replace-file/replace-file.mjs +1 -1
  21. package/actions/search-shared-drives/search-shared-drives.mjs +1 -1
  22. package/actions/update-file/update-file.mjs +1 -1
  23. package/actions/update-shared-drive/update-shared-drive.mjs +1 -1
  24. package/actions/upload-file/upload-file.mjs +1 -1
  25. package/common/utils.mjs +3 -3
  26. package/google_drive.app.mjs +13 -15
  27. package/package.json +2 -3
  28. package/sources/changes-to-specific-files/changes-to-specific-files.mjs +1 -1
  29. package/sources/changes-to-specific-files-shared-drive/changes-to-specific-files-shared-drive.mjs +1 -1
  30. package/sources/new-files-instant/new-files-instant.mjs +1 -1
  31. package/sources/new-or-modified-comments/new-or-modified-comments.mjs +1 -1
  32. package/sources/new-or-modified-files/new-or-modified-files.mjs +1 -1
  33. package/sources/new-or-modified-folders/new-or-modified-folders.mjs +1 -1
  34. package/sources/new-shared-drive/new-shared-drive.mjs +1 -1
  35. package/sources/new-spreadsheet/new-spreadsheet.mjs +1 -1
@@ -11,7 +11,7 @@ export default {
11
11
  name: "Add File Sharing Preference",
12
12
  description:
13
13
  "Add a [sharing](https://support.google.com/drive/answer/7166529) permission to the sharing preferences of a file and provide a sharing URL. [See the docs](https://developers.google.com/drive/api/v3/reference/permissions/create) for more information",
14
- version: "0.0.5",
14
+ version: "0.1.0",
15
15
  type: "action",
16
16
  props: {
17
17
  googleDrive,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "google_drive-copy-file",
5
5
  name: "Copy File",
6
6
  description: "Create a copy of the specified file. [See the docs](https://developers.google.com/drive/api/v3/reference/files/copy) for more information",
7
- version: "0.0.4",
7
+ version: "0.1.0",
8
8
  type: "action",
9
9
  props: {
10
10
  googleDrive,
@@ -7,7 +7,7 @@ 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.0.9",
10
+ version: "0.1.0",
11
11
  type: "action",
12
12
  props: {
13
13
  googleDrive,
@@ -54,9 +54,9 @@ export default {
54
54
  type: "boolean",
55
55
  label: "Ignore Default Visibility",
56
56
  description: toSingleLineString(`
57
- Whether to ignore the domain's default visibility settings for the created
58
- file. Domain administrators can choose to make all uploaded files visible to the domain
59
- by default; this parameter bypasses that behavior for the request. Permissions are still
57
+ Whether to ignore the domain's default visibility settings for the created
58
+ file. Domain administrators can choose to make all uploaded files visible to the domain
59
+ by default; this parameter bypasses that behavior for the request. Permissions are still
60
60
  inherited from parent folders.
61
61
  `),
62
62
  default: false,
@@ -65,7 +65,7 @@ export default {
65
65
  type: "string",
66
66
  label: "Include Permissions For View",
67
67
  description: toSingleLineString(`
68
- Specifies which additional view's permissions to include in the response. Only
68
+ Specifies which additional view's permissions to include in the response. Only
69
69
  'published' is supported.
70
70
  `),
71
71
  optional: true,
@@ -115,8 +115,8 @@ export default {
115
115
  type: "boolean",
116
116
  label: "Content Restrictions Read Only",
117
117
  description: toSingleLineString(`
118
- Whether the content of the file is read-only. If a file is read-only, a new revision of
119
- the file may not be added, comments may not be added or modified, and the title of the file
118
+ Whether the content of the file is read-only. If a file is read-only, a new revision of
119
+ the file may not be added, comments may not be added or modified, and the title of the file
120
120
  may not be modified.
121
121
  `),
122
122
  optional: true,
@@ -125,7 +125,7 @@ export default {
125
125
  type: "string",
126
126
  label: "Content Restrictions Reason",
127
127
  description: toSingleLineString(`
128
- Reason for why the content of the file is restricted. This is only mutable on requests
128
+ Reason for why the content of the file is restricted. This is only mutable on requests
129
129
  that also set readOnly=true.
130
130
  `),
131
131
  optional: true,
@@ -134,7 +134,7 @@ export default {
134
134
  type: "boolean",
135
135
  label: "Copy Requires Writer Permission",
136
136
  description: toSingleLineString(`
137
- Whether the options to copy, print, or download this file, should be disabled for
137
+ Whether the options to copy, print, or download this file, should be disabled for
138
138
  readers and commentators
139
139
  `),
140
140
  optional: true,
@@ -8,7 +8,7 @@ export default {
8
8
  key: "google_drive-create-file-from-template",
9
9
  name: "Create New File From Template",
10
10
  description: "Create a new Google Docs file from a template. Optionally include placeholders in the template document that will get replaced from this action. [See documentation](https://www.npmjs.com/package/google-docs-mustaches)",
11
- version: "0.0.5",
11
+ version: "0.1.0",
12
12
  type: "action",
13
13
  props: {
14
14
  googleDrive,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "google_drive-create-file-from-text",
6
6
  name: "Create New File From Text",
7
7
  description: "Create a new file from plain text. [See the docs](https://developers.google.com/drive/api/v3/reference/files/create) for more information",
8
- version: "0.0.5",
8
+ version: "0.1.0",
9
9
  type: "action",
10
10
  props: {
11
11
  googleDrive,
@@ -13,7 +13,7 @@ export default {
13
13
  key: "google_drive-create-folder",
14
14
  name: "Create Folder",
15
15
  description: "Create a new empty folder. [See the docs](https://developers.google.com/drive/api/v3/reference/files/create) for more information",
16
- version: "0.0.8",
16
+ version: "0.1.0",
17
17
  type: "action",
18
18
  props: {
19
19
  googleDrive,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "google_drive-create-shared-drive",
5
5
  name: "Create Shared Drive",
6
6
  description: "Create a new shared drive. [See the docs](https://developers.google.com/drive/api/v3/reference/drives/create) for more information",
7
- version: "0.0.4",
7
+ version: "0.1.0",
8
8
  type: "action",
9
9
  props: {
10
10
  googleDrive,
@@ -5,7 +5,7 @@ export default {
5
5
  name: "Delete File",
6
6
  description:
7
7
  "Permanently delete a file or folder without moving it to the trash. [See the docs](https://developers.google.com/drive/api/v3/reference/files/delete) for more information",
8
- version: "0.0.5",
8
+ version: "0.1.0",
9
9
  type: "action",
10
10
  props: {
11
11
  googleDrive,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "google_drive-delete-shared-drive",
5
5
  name: "Delete Shared Drive",
6
6
  description: "Delete a shared drive without any content. [See the docs](https://developers.google.com/drive/api/v3/reference/drives/delete) for more information",
7
- version: "0.0.4",
7
+ version: "0.1.0",
8
8
  type: "action",
9
9
  props: {
10
10
  googleDrive,
@@ -18,7 +18,7 @@ export default {
18
18
  key: "google_drive-download-file",
19
19
  name: "Download File",
20
20
  description: "Download a file. [See the docs](https://developers.google.com/drive/api/v3/manage-downloads) for more information",
21
- version: "0.0.4",
21
+ version: "0.1.0",
22
22
  type: "action",
23
23
  props: {
24
24
  googleDrive,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "google_drive-find-file",
6
6
  name: "Find File",
7
7
  description: "Search for a specific file by name. [See the docs](https://developers.google.com/drive/api/v3/search-files) for more information",
8
- version: "0.0.4",
8
+ version: "0.1.0",
9
9
  type: "action",
10
10
  props: {
11
11
  googleDrive,
@@ -7,7 +7,7 @@ export default {
7
7
  key: "google_drive-find-folder",
8
8
  name: "Find Folder",
9
9
  description: "Search for a specific folder by name. [See the docs](https://developers.google.com/drive/api/v3/search-files) for more information",
10
- version: "0.0.6",
10
+ version: "0.1.0",
11
11
  type: "action",
12
12
  props: {
13
13
  googleDrive,
@@ -0,0 +1,54 @@
1
+ import googleDrive from "../../google_drive.app.mjs";
2
+ import { getListFilesOpts } from "../../common/utils.mjs";
3
+
4
+ export default {
5
+ key: "google_drive-find-forms",
6
+ name: "Find Forms",
7
+ description: "List Google Form documents or search for a Form by name. [See the docs](https://developers.google.com/drive/api/v3/search-files) for more information",
8
+ version: "0.0.1",
9
+ type: "action",
10
+ props: {
11
+ googleDrive,
12
+ drive: {
13
+ propDefinition: [
14
+ googleDrive,
15
+ "watchedDrive",
16
+ ],
17
+ optional: true,
18
+ },
19
+ folderId: {
20
+ propDefinition: [
21
+ googleDrive,
22
+ "folderId",
23
+ (c) => ({
24
+ drive: c.drive,
25
+ }),
26
+ ],
27
+ label: "Parent Folder",
28
+ description: "The ID of the parent folder which contains the file. If not specified, it will list files from the drive's top-level folder.",
29
+ optional: true,
30
+ },
31
+ nameSearchTerm: {
32
+ propDefinition: [
33
+ googleDrive,
34
+ "fileNameSearchTerm",
35
+ ],
36
+ optional: true,
37
+ },
38
+ },
39
+ async run({ $ }) {
40
+ let q = "mimeType = 'application/vnd.google-apps.form'";
41
+ if (this.nameSearchTerm) {
42
+ q = `${q} and name contains '${this.nameSearchTerm}'`;
43
+ }
44
+ if (this.folderId) {
45
+ q = `${q} and "${this.folderId}" in parents`;
46
+ }
47
+ const opts = getListFilesOpts(this.drive, {
48
+ q: q.trim(),
49
+ });
50
+ const files = (await this.googleDrive.listFilesInPage(null, opts)).files;
51
+ $.export("$summary", `Successfully found ${files.length} form(s)`);
52
+ return files;
53
+ },
54
+ };
@@ -5,7 +5,7 @@ export default {
5
5
  key: "google_drive-find-spreadsheets",
6
6
  name: "Find Spreadsheets",
7
7
  description: "Search for a specific spreadsheet by name. [See the docs](https://developers.google.com/drive/api/v3/search-files) for more information",
8
- version: "0.0.1",
8
+ version: "0.1.0",
9
9
  type: "action",
10
10
  props: {
11
11
  googleDrive,
@@ -12,7 +12,7 @@ export default {
12
12
  key: "google_drive-get-folder-id-for-path",
13
13
  name: "Get Folder ID for a Path",
14
14
  description: "Retrieve a folderId for a path. [See the docs](https://developers.google.com/drive/api/v3/search-files) for more information",
15
- version: "0.0.4",
15
+ version: "0.1.0",
16
16
  type: "action",
17
17
  props: {
18
18
  googleDrive,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "google_drive-get-shared-drive",
5
5
  name: "Get Shared Drive",
6
6
  description: "Get a shared drive's metadata by ID. [See the docs](https://developers.google.com/drive/api/v3/reference/drives/get) for more information",
7
- version: "0.0.4",
7
+ version: "0.1.0",
8
8
  type: "action",
9
9
  props: {
10
10
  googleDrive,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "google_drive-list-files",
6
6
  name: "List Files",
7
7
  description: "List files from a specific folder. [See the docs](https://developers.google.com/drive/api/v3/reference/files/list) for more information",
8
- version: "0.0.3",
8
+ version: "0.1.0",
9
9
  type: "action",
10
10
  props: {
11
11
  googleDrive,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "google_drive-move-file",
5
5
  name: "Move File",
6
6
  description: "Move a file from one folder to another. [See the docs](https://developers.google.com/drive/api/v3/reference/files/update) for more information",
7
- version: "0.0.5",
7
+ version: "0.1.0",
8
8
  type: "action",
9
9
  props: {
10
10
  googleDrive,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "google_drive-move-file-to-trash",
6
6
  name: "Move File to Trash",
7
7
  description: "Move a file or folder to trash. [See the docs](https://developers.google.com/drive/api/v3/reference/files/update) for more information",
8
- version: "0.0.5",
8
+ version: "0.1.0",
9
9
  type: "action",
10
10
  props: {
11
11
  googleDrive,
@@ -15,7 +15,7 @@ export default {
15
15
  key: "google_drive-replace-file",
16
16
  name: "Replace File",
17
17
  description: "Upload a file that replaces an existing file. [See the docs](https://developers.google.com/drive/api/v3/reference/files/update) for more information",
18
- version: "0.0.6",
18
+ version: "0.1.0",
19
19
  type: "action",
20
20
  props: {
21
21
  googleDrive,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "google_drive-search-shared-drives",
5
5
  name: "Search for Shared Drives",
6
6
  description: "Search for shared drives with query options. [See the docs](https://developers.google.com/drive/api/v3/search-shareddrives) for more information",
7
- version: "0.0.4",
7
+ version: "0.1.0",
8
8
  type: "action",
9
9
  props: {
10
10
  googleDrive,
@@ -8,7 +8,7 @@ export default {
8
8
  key: "google_drive-update-file",
9
9
  name: "Update File",
10
10
  description: "Update a file's metadata and/or content. [See the docs](https://developers.google.com/drive/api/v3/reference/files/update) for more information",
11
- version: "0.0.5",
11
+ version: "0.1.0",
12
12
  type: "action",
13
13
  props: {
14
14
  googleDrive,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "google_drive-update-shared-drive",
5
5
  name: "Update Shared Drive",
6
6
  description: "Update an existing shared drive. [See the docs](https://developers.google.com/drive/api/v3/reference/drives/update) for more information",
7
- version: "0.0.5",
7
+ version: "0.1.0",
8
8
  type: "action",
9
9
  props: {
10
10
  googleDrive,
@@ -10,7 +10,7 @@ export default {
10
10
  key: "google_drive-upload-file",
11
11
  name: "Upload File",
12
12
  description: "Copy an existing file to Google Drive. [See the docs](https://developers.google.com/drive/api/v3/manage-uploads) for more information",
13
- version: "0.0.8",
13
+ version: "0.1.0",
14
14
  type: "action",
15
15
  props: {
16
16
  googleDrive,
package/common/utils.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import fs from "fs";
2
- import axios from "axios";
2
+ import { axios } from "@pipedream/platform";
3
3
  import {
4
4
  MY_DRIVE_VALUE,
5
5
  LEGACY_MY_DRIVE_VALUE,
@@ -74,11 +74,11 @@ async function getFileStream({
74
74
  }) {
75
75
  if (fileUrl) {
76
76
  try {
77
- return (await axios({
77
+ return await axios(this, {
78
78
  url: fileUrl,
79
79
  method: "GET",
80
80
  responseType: "stream",
81
- })).data;
81
+ });
82
82
  } catch (e) {
83
83
  throw new Error(`Status ${e.response.status} ${e.response.statusText}. ${e.message}`);
84
84
  }
@@ -1,4 +1,4 @@
1
- import axios from "axios";
1
+ import { axios } from "@pipedream/platform";
2
2
  import drive from "@googleapis/drive";
3
3
  import { v4 as uuid } from "uuid";
4
4
  import isoLanguages from "./actions/language-codes.mjs";
@@ -116,7 +116,7 @@ export default {
116
116
  updateTypes: {
117
117
  type: "string[]",
118
118
  label: "Types of updates",
119
- description: `The types of updates you want to watch for on these files.
119
+ description: `The types of updates you want to watch for on these files.
120
120
  [See Google's docs]
121
121
  (https://developers.google.com/drive/api/v3/push#understanding-drive-api-notification-events).`,
122
122
  default: GOOGLE_DRIVE_UPDATE_TYPES,
@@ -134,7 +134,7 @@ export default {
134
134
  type: "string",
135
135
  label: "File URL",
136
136
  description: toSingleLineString(`
137
- The URL of the file you want to upload to Google Drive. Must specify either **File URL**
137
+ The URL of the file you want to upload to Google Drive. Must specify either **File URL**
138
138
  or **File Path**.
139
139
  `),
140
140
  optional: true,
@@ -184,10 +184,10 @@ export default {
184
184
  label: "Upload Type",
185
185
  description: `The type of upload request to the /upload URI. If you are uploading data
186
186
  (using an /upload URI), this field is required. If you are creating a metadata-only file,
187
- this field is not required.
187
+ this field is not required.
188
188
  media - Simple upload. Upload the media only, without any metadata.
189
189
  multipart - Multipart upload. Upload both the media and its metadata, in a single request.
190
- resumable - Resumable upload. Upload the file in a resumable fashion, using a series of
190
+ resumable - Resumable upload. Upload the file in a resumable fashion, using a series of
191
191
  at least two requests where the first request includes the metadata.`,
192
192
  options: GOOGLE_DRIVE_UPLOAD_TYPES,
193
193
  },
@@ -249,7 +249,7 @@ export default {
249
249
  label: "Keep Revision Forever",
250
250
  description: toSingleLineString(`
251
251
  Whether to set the 'keepForever' field in the new head revision. This is only applicable
252
- to files with binary content in Google Drive. Only 200 revisions for the file can be kept
252
+ to files with binary content in Google Drive. Only 200 revisions for the file can be kept
253
253
  forever. If the limit is reached, try deleting pinned revisions.
254
254
  `),
255
255
  optional: true,
@@ -277,15 +277,13 @@ export default {
277
277
  // which we can use to fetch the file's metadata. So we use axios here
278
278
  // (vs. the Node client) to get that.
279
279
  async getFileMetadata(url) {
280
- return (
281
- await axios({
282
- method: "GET",
283
- headers: {
284
- Authorization: `Bearer ${this.$auth.oauth_access_token}`,
285
- },
286
- url,
287
- })
288
- ).data;
280
+ return axios(this, {
281
+ method: "GET",
282
+ url,
283
+ headers: {
284
+ Authorization: `Bearer ${this.$auth.oauth_access_token}`,
285
+ },
286
+ });
289
287
  },
290
288
  /**
291
289
  * This method yields a list of changes that occurred to files in a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/google_drive",
3
- "version": "0.4.15",
3
+ "version": "0.6.0",
4
4
  "description": "Pipedream Google_drive Components",
5
5
  "main": "google_drive.app.mjs",
6
6
  "keywords": [
@@ -11,8 +11,7 @@
11
11
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12
12
  "dependencies": {
13
13
  "@googleapis/drive": "^2.3.0",
14
- "@pipedream/platform": "^1.2.0",
15
- "axios": "^0.21.1",
14
+ "@pipedream/platform": "^1.4.0",
16
15
  "mime-db": "^1.51.0",
17
16
  "uuid": "^8.3.2"
18
17
  },
@@ -16,7 +16,7 @@ export default {
16
16
  key: "google_drive-changes-to-specific-files",
17
17
  name: "Changes to Specific Files",
18
18
  description: "Watches for changes to specific files, emitting an event any time a change is made to one of those files. To watch for changes to [shared drive](https://support.google.com/a/users/answer/9310351) files, use the **Changes to Specific Files (Shared Drive)** source instead.",
19
- version: "0.0.20",
19
+ version: "0.1.0",
20
20
  type: "source",
21
21
  // Dedupe events based on the "x-goog-message-number" header for the target channel:
22
22
  // https://developers.google.com/drive/api/v3/push#making-watch-requests
@@ -25,7 +25,7 @@ export default {
25
25
  key: "google_drive-changes-to-specific-files-shared-drive",
26
26
  name: "Changes to Specific Files (Shared Drive)",
27
27
  description: "Watches for changes to specific files in a shared drive, emitting an event any time a change is made to one of those files",
28
- version: "0.0.2",
28
+ version: "0.1.0",
29
29
  type: "source",
30
30
  // Dedupe events based on the "x-goog-message-number" header for the target channel:
31
31
  // https://developers.google.com/drive/api/v3/push#making-watch-requests
@@ -9,7 +9,7 @@ export default {
9
9
  key: "google_drive-new-files-instant",
10
10
  name: "New Files (Instant)",
11
11
  description: "Emit new event any time a new file is added in your linked Google Drive",
12
- version: "0.0.16",
12
+ version: "0.1.0",
13
13
  type: "source",
14
14
  dedupe: "unique",
15
15
  props: {
@@ -17,7 +17,7 @@ export default {
17
17
  name: "New or Modified Comments",
18
18
  description:
19
19
  "Emits a new event any time a file comment is added, modified, or deleted in your linked Google Drive",
20
- version: "0.0.10",
20
+ version: "0.1.0",
21
21
  type: "source",
22
22
  // Dedupe events based on the "x-goog-message-number" header for the target channel:
23
23
  // https://developers.google.com/drive/api/v3/push#making-watch-requests
@@ -20,7 +20,7 @@ export default {
20
20
  key: "google_drive-new-or-modified-files",
21
21
  name: "New or Modified Files",
22
22
  description: "Emit new event any time any file in your linked Google Drive is added, modified, or deleted",
23
- version: "0.0.22",
23
+ version: "0.1.0",
24
24
  type: "source",
25
25
  // Dedupe events based on the "x-goog-message-number" header for the target channel:
26
26
  // https://developers.google.com/drive/api/v3/push#making-watch-requests
@@ -20,7 +20,7 @@ export default {
20
20
  key: "google_drive-new-or-modified-folders",
21
21
  name: "New or Modified Folders",
22
22
  description: "Emit new event any time any folder in your linked Google Drive is added, modified, or deleted",
23
- version: "0.0.11",
23
+ version: "0.1.0",
24
24
  type: "source",
25
25
  // Dedupe events based on the "x-goog-message-number" header for the target channel:
26
26
  // https://developers.google.com/drive/api/v3/push#making-watch-requests
@@ -5,7 +5,7 @@ export default {
5
5
  key: "google_drive-new-shared-drive",
6
6
  name: "New Shared Drive",
7
7
  description: "Emits a new event any time a shared drive is created.",
8
- version: "0.0.12",
8
+ version: "0.1.0",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  props: {
@@ -6,7 +6,7 @@ export default {
6
6
  type: "source",
7
7
  name: "New Spreadsheet (Instant)",
8
8
  description: "Emit new event each time a new spreadsheet is created in a drive.",
9
- version: "0.0.2",
9
+ version: "0.1.0",
10
10
  props: {
11
11
  googleDrive: newFilesInstant.props.googleDrive,
12
12
  db: newFilesInstant.props.db,