Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}
Expand Down Expand Up @@ -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
}
}
}
Expand Down Expand Up @@ -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
}
}
}
Expand Down Expand Up @@ -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",
Expand Down
4 changes: 4 additions & 0 deletions paths/jobs/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
4 changes: 4 additions & 0 deletions paths/jobs/update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
4 changes: 4 additions & 0 deletions paths/projects/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 4 additions & 0 deletions paths/projects/update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading