Skip to content
Merged
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
40 changes: 40 additions & 0 deletions doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -17834,6 +17834,26 @@
"type": "boolean",
"example": true
},
"tm_ids": {
"description": "List of TMS translation memory IDs, used to provide reference translations for the AI translation agent.",
"type": "array",
"items": {
"type": "string"
},
"example": [
"abcd1234cdef1234abcd1234cdef1234"
]
},
"term_base_ids": {
"description": "List of TMS term base IDs, used to ensure consistent terminology for the AI translation agent.",
"type": "array",
"items": {
"type": "string"
},
"example": [
"abcd1234cdef1234abcd1234cdef1234"
]
},
"project_image": {
"description": "Image to identify the project",
"type": "string",
Expand Down Expand Up @@ -18173,6 +18193,26 @@
"type": "boolean",
"example": true
},
"tm_ids": {
"description": "List of TMS translation memory IDs, used to provide reference translations for the AI translation agent.",
"type": "array",
"items": {
"type": "string"
},
"example": [
"abcd1234cdef1234abcd1234cdef1234"
]
},
"term_base_ids": {
"description": "List of TMS term base IDs, used to ensure consistent terminology for the AI translation agent.",
"type": "array",
"items": {
"type": "string"
},
"example": [
"abcd1234cdef1234abcd1234cdef1234"
]
},
"project_image": {
"description": "(Optional) Image to identify the project",
"type": "string",
Expand Down
14 changes: 14 additions & 0 deletions paths/projects/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,20 @@ requestBody:
description: Indicates whether the project should share the account's translation memory
type: boolean
example: true
tm_ids:
description: "List of TMS translation memory IDs, used to provide reference translations for the AI translation agent."
type: array
items:
type: string
example:
- abcd1234cdef1234abcd1234cdef1234
term_base_ids:
description: "List of TMS term base IDs, used to ensure consistent terminology for the AI translation agent."
type: array
items:
type: string
example:
- abcd1234cdef1234abcd1234cdef1234
project_image:
description: Image to identify the project
type: string
Expand Down
14 changes: 14 additions & 0 deletions paths/projects/update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,20 @@ requestBody:
description: "(Optional) Indicates whether the project should share the account's translation memory"
type: boolean
example: true
tm_ids:
description: "List of TMS translation memory IDs, used to provide reference translations for the AI translation agent."
type: array
items:
type: string
example:
- abcd1234cdef1234abcd1234cdef1234
term_base_ids:
description: "List of TMS term base IDs, used to ensure consistent terminology for the AI translation agent."
type: array
items:
type: string
example:
- abcd1234cdef1234abcd1234cdef1234
project_image:
description: "(Optional) Image to identify the project"
type: string
Expand Down
Loading