contentful-export 7.22.5 → 8.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/README.md +5 -0
- package/dist/tasks/init-client.js +3 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -344,4 +344,9 @@ Read the [releases](https://github.com/contentful/contentful-export/releases) pa
|
|
|
344
344
|
|
|
345
345
|
This project is licensed under MIT license
|
|
346
346
|
|
|
347
|
+
## For AI Agents
|
|
348
|
+
|
|
349
|
+
<!-- Generated by seed-golden-context | Last updated: 2026-05-04 -->
|
|
350
|
+
If you are an AI coding agent working in this repository, read [AGENTS.md](./AGENTS.md) first. It tells you where to find architectural context, development setup, decision records, and repo-specific rules.
|
|
351
|
+
|
|
347
352
|
[1]: https://www.contentful.com
|
|
@@ -30,6 +30,8 @@ function initClient(opts, useCda = false) {
|
|
|
30
30
|
});
|
|
31
31
|
return (0, _contentful.createClient)(cdaConfig).withoutLinkResolution;
|
|
32
32
|
}
|
|
33
|
-
return (0, _contentfulManagement.createClient)(config
|
|
33
|
+
return (0, _contentfulManagement.createClient)(config, {
|
|
34
|
+
type: 'legacy'
|
|
35
|
+
});
|
|
34
36
|
}
|
|
35
37
|
module.exports = exports.default;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contentful-export",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.1",
|
|
4
4
|
"description": "this tool allows you to export a space to a JSON dump",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "types.d.ts",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
8
|
+
"node": ">=22"
|
|
9
9
|
},
|
|
10
10
|
"bin": {
|
|
11
11
|
"contentful-export": "./bin/contentful-export"
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"bluebird": "^3.3.3",
|
|
51
51
|
"cli-table3": "^0.6.0",
|
|
52
52
|
"contentful": "^11.5.10",
|
|
53
|
-
"contentful-batch-libs": "^
|
|
54
|
-
"contentful-management": "^
|
|
53
|
+
"contentful-batch-libs": "^11.0.0",
|
|
54
|
+
"contentful-management": "^12.2.0",
|
|
55
55
|
"date-fns": "^4.1.0",
|
|
56
56
|
"figures": "^3.2.0",
|
|
57
57
|
"jsonwebtoken": "^9.0.0",
|