lib/phrase/api/uploads_api.rb in phrase-2.15.0 vs lib/phrase/api/uploads_api.rb in phrase-2.16.0
- old
+ new
@@ -25,10 +25,11 @@
# @option opts [String] :file_encoding Enforces a specific encoding on the file contents. Valid options are \\\"UTF-8\\\", \\\"UTF-16\\\" and \\\"ISO-8859-1\\\".
# @option opts [Object] :locale_mapping Optional, format specific mapping between locale names and the columns the translations to those locales are contained in.
# @option opts [Object] :format_options Additional options available for specific formats. See our format guide for complete list.
# @option opts [Boolean] :autotranslate If set, translations for the uploaded language will be fetched automatically.
# @option opts [Boolean] :mark_reviewed Indicated whether the imported translations should be marked as reviewed. This setting is available if the review workflow is enabled for the project.
+ # @option opts [Boolean] :tag_only_affected_keys Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false` (default to false)
# @return [Upload]
def upload_create(project_id, opts = {})
data, _status_code, _headers = upload_create_with_http_info(project_id, opts)
data
end
@@ -51,10 +52,11 @@
# @option opts [String] :file_encoding Enforces a specific encoding on the file contents. Valid options are \\\"UTF-8\\\", \\\"UTF-16\\\" and \\\"ISO-8859-1\\\".
# @option opts [Object] :locale_mapping Optional, format specific mapping between locale names and the columns the translations to those locales are contained in.
# @option opts [Object] :format_options Additional options available for specific formats. See our format guide for complete list.
# @option opts [Boolean] :autotranslate If set, translations for the uploaded language will be fetched automatically.
# @option opts [Boolean] :mark_reviewed Indicated whether the imported translations should be marked as reviewed. This setting is available if the review workflow is enabled for the project.
+ # @option opts [Boolean] :tag_only_affected_keys Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false`
# @return [Array<(Response<(Upload)>, Integer, Hash)>] Response<(Upload)> data, response status code and response headers
def upload_create_with_http_info(project_id, opts = {})
if @api_client.config.debugging
@api_client.config.logger.debug 'Calling API: UploadsApi.upload_create ...'
end
@@ -91,9 +93,10 @@
form_params['file_encoding'] = opts[:'file_encoding'] if !opts[:'file_encoding'].nil?
form_params['locale_mapping'] = opts[:'locale_mapping'] if !opts[:'locale_mapping'].nil?
form_params['format_options'] = opts[:'format_options'] if !opts[:'format_options'].nil?
form_params['autotranslate'] = opts[:'autotranslate'] if !opts[:'autotranslate'].nil?
form_params['mark_reviewed'] = opts[:'mark_reviewed'] if !opts[:'mark_reviewed'].nil?
+ form_params['tag_only_affected_keys'] = opts[:'tag_only_affected_keys'] if !opts[:'tag_only_affected_keys'].nil?
# http body (model)
post_body = opts[:body]
# return_type