@adobe/helix-google-support 2.3.14 → 3.0.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # [3.0.0](https://github.com/adobe/helix-google-support/compare/v2.3.14...v3.0.0) (2023-10-02)
2
+
3
+
4
+ ### Features
5
+
6
+ * include item mimeType ([#260](https://github.com/adobe/helix-google-support/issues/260)) ([6bd1a5a](https://github.com/adobe/helix-google-support/commit/6bd1a5ae17719c0eb1afaaa0d896e163a8f29e09))
7
+
8
+
9
+ ### BREAKING CHANGES
10
+
11
+ * getItemsFromPath() now includes the mimetype for the items. tests might fail.
12
+
1
13
  ## [2.3.14](https://github.com/adobe/helix-google-support/compare/v2.3.13...v2.3.14) (2023-09-29)
2
14
 
3
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-google-support",
3
- "version": "2.3.14",
3
+ "version": "3.0.0",
4
4
  "description": "Helix Google Support",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -49,7 +49,7 @@
49
49
  "mocha": "10.2.0",
50
50
  "mocha-multi-reporters": "1.5.1",
51
51
  "nock": "13.3.3",
52
- "semantic-release": "22.0.4"
52
+ "semantic-release": "22.0.5"
53
53
  },
54
54
  "lint-staged": {
55
55
  "*.js": "eslint",
@@ -265,6 +265,7 @@ export class GoogleClient {
265
265
  const pathItem = addFields({
266
266
  name,
267
267
  path: itemPath,
268
+ mimeType: item.mimeType,
268
269
  id: item.id,
269
270
  }, item);
270
271