@adobe/helix-google-support 1.2.0 → 1.2.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.2.1](https://github.com/adobe/helix-google-support/compare/v1.2.0...v1.2.1) (2022-04-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * include mimeType ([#10](https://github.com/adobe/helix-google-support/issues/10)) ([993e24a](https://github.com/adobe/helix-google-support/commit/993e24acdd723402a6d85a8bf74e3b93df8c5d0e))
7
+
1
8
  # [1.2.0](https://github.com/adobe/helix-google-support/compare/v1.1.0...v1.2.0) (2022-04-28)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-google-support",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Helix Google Support",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -169,7 +169,7 @@ export class GoogleClient {
169
169
  // folder if path continues, sheet otherwise
170
170
  `and mimeType ${pathSegments.length ? '=' : '!='} 'application/vnd.google-apps.folder'`,
171
171
  ].join(' '),
172
- fields: 'nextPageToken, files(id, name, modifiedTime)',
172
+ fields: 'nextPageToken, files(id, name, mimeType, modifiedTime)',
173
173
  includeItemsFromAllDrives: true,
174
174
  supportsAllDrives: true,
175
175
  pageSize: 1000,