Skip to content

Commit f7d09a6

Browse files
🌿 Fern Regeneration -- August 9, 2025 (#345)
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 8ba6f15 commit f7d09a6

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.mock/definition/tts/__package__.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,12 @@ types:
566566
via requests authenticated with your API key.
567567
source:
568568
openapi: tts-openapi.yml
569-
VoiceProvider: string
569+
VoiceProvider:
570+
enum:
571+
- HUME_AI
572+
- CUSTOM_VOICE
573+
source:
574+
openapi: tts-openapi.yml
570575
PostedUtteranceVoice:
571576
discriminated: false
572577
union:
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# This file was auto-generated by Fern from our API Definition.
22

3-
VoiceProvider = str
3+
import typing
4+
5+
VoiceProvider = typing.Union[typing.Literal["HUME_AI", "CUSTOM_VOICE"], typing.Any]

0 commit comments

Comments
 (0)