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
14 changes: 14 additions & 0 deletions doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -1675,6 +1675,9 @@
"fallback_locale": {
"$ref": "#/components/schemas/locale_preview"
},
"language_ai_profile": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time"
Expand Down Expand Up @@ -1710,6 +1713,7 @@
"name": "en",
"code": "en-GB"
},
"language_ai_profile": "abcd1234abcd1234abcd1234abcd1234",
"created_at": "2015-01-28T09:52:53Z",
"updated_at": "2015-01-28T09:52:53Z"
}
Expand Down Expand Up @@ -9168,6 +9172,11 @@
"description": "If set, translations for this locale will be fetched automatically, right after creation.",
"type": "boolean",
"example": null
},
"language_ai_profile": {
"description": "Identifier of the Language AI profile to use for this locale.",
"type": "string",
"example": "abcd1234abcd1234abcd1234abcd1234"
}
}
}
Expand Down Expand Up @@ -9388,6 +9397,11 @@
"description": "If set, translations for this locale will be fetched automatically, right after creation.",
"type": "boolean",
"example": null
},
"language_ai_profile": {
"description": "Identifier of the Language AI profile to use for this locale.",
"type": "string",
"example": "abcd1234abcd1234abcd1234abcd1234"
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions paths/locales/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,8 @@ requestBody:
description: If set, translations for this locale will be fetched automatically, right after creation.
type: boolean
example:
language_ai_profile:
description: Identifier of the Language AI profile to use for this locale.
type: string
example: abcd1234abcd1234abcd1234abcd1234
x-cli-version: '2.5'
4 changes: 4 additions & 0 deletions paths/locales/update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,8 @@ requestBody:
description: If set, translations for this locale will be fetched automatically, right after creation.
type: boolean
example:
language_ai_profile:
description: Identifier of the Language AI profile to use for this locale.
type: string
example: abcd1234abcd1234abcd1234abcd1234
x-cli-version: '2.5'
3 changes: 3 additions & 0 deletions schemas/locale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ locale:
"$ref": "./locale_preview.yaml#/locale_preview"
fallback_locale:
"$ref": "./locale_preview.yaml#/locale_preview"
language_ai_profile:
type: string
created_at:
type: string
format: date-time
Expand Down Expand Up @@ -55,5 +57,6 @@ locale:
id: abcd1234cdef1234abcd1234cdef1234
name: en
code: en-GB
language_ai_profile: abcd1234abcd1234abcd1234abcd1234
created_at: '2015-01-28T09:52:53Z'
updated_at: '2015-01-28T09:52:53Z'
Loading