diff --git a/doc/compiled.json b/doc/compiled.json index d405cf834..3e0da4f62 100644 --- a/doc/compiled.json +++ b/doc/compiled.json @@ -10920,6 +10920,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": { + "description": "Automatically translate the job using machine translation.", + "type": "boolean", + "example": true } } } @@ -11183,6 +11188,11 @@ "description": "URL to a ticket for this job (e.g. Jira, Trello)", "type": "string", "example": "https://example.atlassian.net/browse/FOO" + }, + "autotranslate": { + "description": "Automatically translate the job using machine translation", + "type": "boolean", + "example": true } } } @@ -11930,6 +11940,11 @@ "description": "Briefing for the translators", "type": "string", "example": "text" + }, + "autotranslate": { + "description": "Automatically translate the job using machine translation.", + "type": "boolean", + "example": true } }, "required": [ @@ -12096,6 +12111,11 @@ "description": "Briefing for the translators", "type": "string", "example": "text" + }, + "autotranslate": { + "description": "Automatically translate the job using machine translation.", + "type": "boolean", + "example": true } }, "required": [ @@ -15978,6 +15998,11 @@ "type": "boolean", "example": true }, + "autotranslate_overwrite_unverified_translations": { + "description": "(Optional) Requires autotranslate_enabled to be true", + "type": "boolean", + "example": true + }, "placeholder_styles": { "description": "(Optional) List of placeholder styles enabled for the project.", "type": "array", @@ -16233,6 +16258,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", @@ -27807,6 +27837,11 @@ "description": "Briefing for the translators", "type": "string", "example": "text" + }, + "autotranslate": { + "description": "Automatically translate the job using machine translation.", + "type": "boolean", + "example": true } }, "required": [ @@ -27959,6 +27994,11 @@ "description": "Briefing for the translators", "type": "string", "example": "text" + }, + "autotranslate": { + "description": "Automatically translate the job using machine translation.", + "type": "boolean", + "example": true } }, "required": [ diff --git a/paths/job_templates/create.yaml b/paths/job_templates/create.yaml index 74481c6ff..8f04dcc67 100644 --- a/paths/job_templates/create.yaml +++ b/paths/job_templates/create.yaml @@ -61,6 +61,10 @@ requestBody: description: Briefing for the translators type: string example: text + autotranslate: + description: Automatically translate the job using machine translation. + type: boolean + example: true required: - name x-cli-version: '2.5' diff --git a/paths/job_templates/update.yaml b/paths/job_templates/update.yaml index 1613466cc..e8972bfee 100644 --- a/paths/job_templates/update.yaml +++ b/paths/job_templates/update.yaml @@ -63,6 +63,10 @@ requestBody: description: Briefing for the translators type: string example: text + autotranslate: + description: Automatically translate the job using machine translation. + type: boolean + example: true required: - name x-cli-version: '2.5' diff --git a/paths/jobs/create.yaml b/paths/jobs/create.yaml index 556d342fb..8296a4ddc 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: + 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..2308e8832 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: + description: Automatically translate the job using machine translation + type: boolean + example: true x-cli-version: '2.5' diff --git a/paths/organization_job_templates/create.yaml b/paths/organization_job_templates/create.yaml index 917df58a7..f38ba3dbf 100644 --- a/paths/organization_job_templates/create.yaml +++ b/paths/organization_job_templates/create.yaml @@ -57,6 +57,10 @@ requestBody: description: Briefing for the translators type: string example: text + autotranslate: + description: Automatically translate the job using machine translation. + type: boolean + example: true required: - name x-cli-version: "2.7.0" diff --git a/paths/organization_job_templates/update.yaml b/paths/organization_job_templates/update.yaml index 9a86fdce6..621a244e0 100644 --- a/paths/organization_job_templates/update.yaml +++ b/paths/organization_job_templates/update.yaml @@ -57,6 +57,10 @@ requestBody: description: Briefing for the translators type: string example: text + autotranslate: + description: Automatically translate the job using machine translation. + type: boolean + example: true required: - name x-cli-version: "2.7.0" diff --git a/paths/projects/create.yaml b/paths/projects/create.yaml index b8f5a1107..f5d9e82b0 100644 --- a/paths/projects/create.yaml +++ b/paths/projects/create.yaml @@ -145,6 +145,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 placeholder_styles: description: "(Optional) List of placeholder styles enabled for the project." type: array diff --git a/paths/projects/update.yaml b/paths/projects/update.yaml index 144a9a298..a669ffd3f 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