docs/UploadCreateParameters.md in phrase-2.15.0 vs docs/UploadCreateParameters.md in phrase-2.16.0

- old
+ new

@@ -17,10 +17,11 @@ **file_encoding** | **String** | Enforces a specific encoding on the file contents. Valid options are \"UTF-8\", \"UTF-16\" and \"ISO-8859-1\". | [optional] **locale_mapping** | [**Object**](.md) | Optional, format specific mapping between locale names and the columns the translations to those locales are contained in. | [optional] **format_options** | [**Object**](.md) | Additional options available for specific formats. See our format guide for complete list. | [optional] **autotranslate** | **Boolean** | If set, translations for the uploaded language will be fetched automatically. | [optional] **mark_reviewed** | **Boolean** | Indicated whether the imported translations should be marked as reviewed. This setting is available if the review workflow is enabled for the project. | [optional] +**tag_only_affected_keys** | **Boolean** | Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false` | [optional] [default to false] ## Code Sample ```ruby require 'Phrase' @@ -37,9 +38,10 @@ skip_unverification: null, file_encoding: null, locale_mapping: {"en": "2"}, format_options: {"foo": "bar"}, autotranslate: null, - mark_reviewed: null) + mark_reviewed: null, + tag_only_affected_keys: null) ```