@adobe/helix-google-support 2.3.14 → 3.0.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,22 @@
1
+ ## [3.0.1](https://github.com/adobe/helix-google-support/compare/v3.0.0...v3.0.1) (2023-10-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @adobe/helix-onedrive-support to v10.8.5 ([ed7740e](https://github.com/adobe/helix-google-support/commit/ed7740e448bd4db0e1492fdfd6cc4901ee4efc16))
7
+
8
+ # [3.0.0](https://github.com/adobe/helix-google-support/compare/v2.3.14...v3.0.0) (2023-10-02)
9
+
10
+
11
+ ### Features
12
+
13
+ * include item mimeType ([#260](https://github.com/adobe/helix-google-support/issues/260)) ([6bd1a5a](https://github.com/adobe/helix-google-support/commit/6bd1a5ae17719c0eb1afaaa0d896e163a8f29e09))
14
+
15
+
16
+ ### BREAKING CHANGES
17
+
18
+ * getItemsFromPath() now includes the mimetype for the items. tests might fail.
19
+
1
20
  ## [2.3.14](https://github.com/adobe/helix-google-support/compare/v2.3.13...v2.3.14) (2023-09-29)
2
21
 
3
22
 
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.1",
4
4
  "description": "Helix Google Support",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -30,17 +30,17 @@
30
30
  "reporter-options": "configFile=.mocha-multi.json"
31
31
  },
32
32
  "dependencies": {
33
- "@adobe/helix-onedrive-support": "10.8.4",
33
+ "@adobe/helix-onedrive-support": "10.8.5",
34
34
  "googleapis": "126.0.1",
35
35
  "lru-cache": "10.0.1"
36
36
  },
37
37
  "devDependencies": {
38
- "@adobe/helix-shared-tokencache": "1.3.10",
38
+ "@adobe/helix-shared-tokencache": "1.3.11",
39
39
  "@adobe/eslint-config-helix": "2.0.3",
40
40
  "@semantic-release/changelog": "6.0.3",
41
41
  "@semantic-release/git": "10.0.1",
42
42
  "c8": "8.0.1",
43
- "eslint": "8.50.0",
43
+ "eslint": "8.51.0",
44
44
  "eslint-plugin-header": "3.1.1",
45
45
  "eslint-plugin-import": "2.28.1",
46
46
  "husky": "8.0.3",
@@ -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