From 3944402a4930768fb06da96dcae703df75fb8371 Mon Sep 17 00:00:00 2001 From: Matt Dole Date: Sat, 11 Feb 2023 12:03:16 +0100 Subject: [PATCH] Update example-config.json The CLI no longer supports `skipEditorInterfaces, limit` and now supports `header, timeout, retryLimit, skipTags, stripTags` --- example-config.json | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/example-config.json b/example-config.json index ef434e24..b8180ca8 100644 --- a/example-config.json +++ b/example-config.json @@ -9,24 +9,22 @@ "includeDrafts": false, "includeArchived": false, "skipContentModel": false, - "skipEditorInterfaces": false, "skipContent": false, "skipRoles": false, + "skipTags": false, "skipWebhooks": false, + "stripTags": false, "contentOnly": false, - "queryEntries": [ - "content_type=", - "sys.id=" - ], - "queryAssets": [ - "fields.title=Example" - ], + "queryEntries": ["content_type=", "sys.id="], + "queryAssets": ["fields.title=Example"], "downloadAssets": false, "host": "api.contentful.com", "proxy": "https://user:password@host:port", "rawProxy": false, "maxAllowedLimit": 1000, - "limit": 25000, "errorLogFile": "/path/to/error.log", - "useVerboseRenderer": false -} \ No newline at end of file + "useVerboseRenderer": false, + "timeout": 20000, + "retryLimit": 10, + "header": "additional-http-header" +}