@adobe/helix-google-support 1.2.1 → 1.2.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.
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/GoogleClient.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.2.2](https://github.com/adobe/helix-google-support/compare/v1.2.1...v1.2.2) (2022-04-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* include mimeType ([#11](https://github.com/adobe/helix-google-support/issues/11)) ([67ab999](https://github.com/adobe/helix-google-support/commit/67ab999a7fee111978a15c4393761e4b614ee2fc))
|
|
7
|
+
|
|
1
8
|
## [1.2.1](https://github.com/adobe/helix-google-support/compare/v1.2.0...v1.2.1) (2022-04-28)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/GoogleClient.js
CHANGED
|
@@ -236,6 +236,7 @@ export class GoogleClient {
|
|
|
236
236
|
name,
|
|
237
237
|
path: itemPath,
|
|
238
238
|
id: item.id,
|
|
239
|
+
mimeType: item.mimeType,
|
|
239
240
|
}, item);
|
|
240
241
|
|
|
241
242
|
if (children.length) {
|
|
@@ -292,6 +293,7 @@ export class GoogleClient {
|
|
|
292
293
|
name: '',
|
|
293
294
|
path: '/',
|
|
294
295
|
id: parentId,
|
|
296
|
+
mimeType: 'application/vnd.google-apps.folder',
|
|
295
297
|
}];
|
|
296
298
|
}
|
|
297
299
|
|