diff --git a/doc/compiled.json b/doc/compiled.json index ba504c34b..e2f2d2213 100644 --- a/doc/compiled.json +++ b/doc/compiled.json @@ -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", @@ -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", diff --git a/paths/projects/create.yaml b/paths/projects/create.yaml index 5d6d0e6b4..4e671a6f2 100644 --- a/paths/projects/create.yaml +++ b/paths/projects/create.yaml @@ -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 diff --git a/paths/projects/update.yaml b/paths/projects/update.yaml index f1161b286..552c46f3f 100644 --- a/paths/projects/update.yaml +++ b/paths/projects/update.yaml @@ -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