diff --git a/doc/compiled.json b/doc/compiled.json index 9cb2352b2..56415f2eb 100644 --- a/doc/compiled.json +++ b/doc/compiled.json @@ -10881,6 +10881,11 @@ "description": "id of a job template you would like to model the created job after. Any manually added parameters will take preference over template attributes.", "type": "string", "example": "abcd1234cdef1234abcd1234cdef1234" + }, + "autotranslate_enabled": { + "description": "Automatically translate the job using machine translation.", + "type": "boolean", + "example": true } } } @@ -11144,6 +11149,11 @@ "description": "URL to a ticket for this job (e.g. Jira, Trello)", "type": "string", "example": "https://example.atlassian.net/browse/FOO" + }, + "autotranslate_enabled": { + "description": "Automatically translate the job using machine translation", + "type": "boolean", + "example": true } } } @@ -15793,6 +15803,11 @@ "description": "(Optional) Requires autotranslate_enabled to be true", "type": "boolean", "example": true + }, + "autotranslate_overwrite_unverified_translations": { + "description": "(Optional) Requires autotranslate_enabled to be true", + "type": "boolean", + "example": true } } } @@ -16038,6 +16053,11 @@ "type": "boolean", "example": true }, + "autotranslate_overwrite_unverified_translations": { + "description": "(Optional) Requires autotranslate_enabled to be true", + "type": "boolean", + "example": true + }, "default_encoding": { "description": "(Optional) Sets the default encoding for Uploads. If you leave it empty, we will try to guess it automatically for you when you Upload a file. You can still override this value by setting the [`file_encoding`](/en/api/strings/uploads/upload-a-new-file) parameter for Uploads.", "type": "string", diff --git a/paths/jobs/create.yaml b/paths/jobs/create.yaml index 556d342fb..9164ca772 100644 --- a/paths/jobs/create.yaml +++ b/paths/jobs/create.yaml @@ -95,4 +95,8 @@ requestBody: description: id of a job template you would like to model the created job after. Any manually added parameters will take preference over template attributes. type: string example: abcd1234cdef1234abcd1234cdef1234 + autotranslate_enabled: + description: Automatically translate the job using machine translation. + type: boolean + example: true x-cli-version: '2.5' diff --git a/paths/jobs/update.yaml b/paths/jobs/update.yaml index 04fba87f7..735a4a526 100644 --- a/paths/jobs/update.yaml +++ b/paths/jobs/update.yaml @@ -73,4 +73,8 @@ requestBody: description: URL to a ticket for this job (e.g. Jira, Trello) type: string example: https://example.atlassian.net/browse/FOO + autotranslate_enabled: + description: Automatically translate the job using machine translation + type: boolean + example: true x-cli-version: '2.5' diff --git a/paths/projects/create.yaml b/paths/projects/create.yaml index c481390c0..978b6738c 100644 --- a/paths/projects/create.yaml +++ b/paths/projects/create.yaml @@ -145,4 +145,8 @@ requestBody: description: "(Optional) Requires autotranslate_enabled to be true" type: boolean example: true + autotranslate_overwrite_unverified_translations: + description: "(Optional) Requires autotranslate_enabled to be true" + type: boolean + example: true x-cli-version: "2.6.3" diff --git a/paths/projects/update.yaml b/paths/projects/update.yaml index 0b0c469f1..d1bd7c0e8 100644 --- a/paths/projects/update.yaml +++ b/paths/projects/update.yaml @@ -141,6 +141,10 @@ requestBody: description: "(Optional) Requires autotranslate_enabled to be true" type: boolean example: true + autotranslate_overwrite_unverified_translations: + description: "(Optional) Requires autotranslate_enabled to be true" + type: boolean + example: true default_encoding: description: "(Optional) Sets the default encoding for Uploads. If you leave it empty, we will try to guess it automatically for you when you Upload a file. You can still override this value by setting the [`file_encoding`](/en/api/strings/uploads/upload-a-new-file) parameter for Uploads." type: string