contentful-export 7.19.144 → 7.19.146
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 +0 -3
- package/example-config.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
@@ -213,9 +213,6 @@ Pass proxy config to Axios instead of creating a custom httpsAgent
|
|
213
213
|
#### `maxAllowedLimit` [number] [default: 1000]
|
214
214
|
The number of items per page per request
|
215
215
|
|
216
|
-
#### `limit` [number]
|
217
|
-
The total number of items to return. Can be used with entries or assets. If not provided, then all entries or assets will be returned. The entries or assets will be ordered using: `sys.createdAt,sys.id`.
|
218
|
-
|
219
216
|
#### `headers` [object]
|
220
217
|
Additional headers to attach to the requests.
|
221
218
|
|
package/example-config.json
CHANGED
@@ -16,7 +16,8 @@
|
|
16
16
|
"contentOnly": false,
|
17
17
|
"queryEntries": [
|
18
18
|
"content_type=<content_type_id>",
|
19
|
-
"sys.id=<entry_id>"
|
19
|
+
"sys.id=<entry_id>",
|
20
|
+
"limit=1000"
|
20
21
|
],
|
21
22
|
"queryAssets": [
|
22
23
|
"fields.title=Example"
|
@@ -26,7 +27,6 @@
|
|
26
27
|
"proxy": "https://user:password@host:port",
|
27
28
|
"rawProxy": false,
|
28
29
|
"maxAllowedLimit": 1000,
|
29
|
-
"limit": 25000,
|
30
30
|
"errorLogFile": "/path/to/error.log",
|
31
31
|
"useVerboseRenderer": false
|
32
32
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "contentful-export",
|
3
|
-
"version": "7.19.
|
3
|
+
"version": "7.19.146",
|
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",
|
@@ -75,7 +75,7 @@
|
|
75
75
|
"eslint": "^8.27.0",
|
76
76
|
"eslint-config-standard": "^17.0.0",
|
77
77
|
"eslint-plugin-import": "^2.12.0",
|
78
|
-
"eslint-plugin-jest": "^
|
78
|
+
"eslint-plugin-jest": "^28.5.0",
|
79
79
|
"eslint-plugin-node": "^11.1.0",
|
80
80
|
"eslint-plugin-promise": "^6.0.0",
|
81
81
|
"eslint-plugin-standard": "^5.0.0",
|