Skip to content

Commit 6bc1ca1

Browse files
committed
Release 0.0.38
1 parent 5b71f36 commit 6bc1ca1

6 files changed

+29
-14
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "vocode-api"
3-
version = "0.0.37"
3+
version = "0.0.38"
44
description = ""
55
readme = "README.md"
66
authors = []

src/vocode/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def get_headers(self) -> typing.Dict[str, str]:
1414
headers: typing.Dict[str, str] = {
1515
"X-Fern-Language": "Python",
1616
"X-Fern-SDK-Name": "vocode-api",
17-
"X-Fern-SDK-Version": "0.0.37",
17+
"X-Fern-SDK-Version": "0.0.38",
1818
}
1919
headers["Authorization"] = f"Bearer {self._get_token()}"
2020
return headers
Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# This file was auto-generated by Fern from our API Definition.
22

3-
from __future__ import annotations
4-
53
import typing
64

5+
import typing_extensions
6+
77
from .undefined import Undefined
88

9-
AgentUpdateParamsEndpointingSensitivity = typing.Union[AgentUpdateParamsEndpointingSensitivity, Undefined]
9+
AgentUpdateParamsEndpointingSensitivity = typing.Union[
10+
typing_extensions.Literal["auto"],
11+
typing_extensions.Literal["relaxed"],
12+
typing_extensions.Literal["sensitive"],
13+
Undefined,
14+
]
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# This file was auto-generated by Fern from our API Definition.
22

3-
from __future__ import annotations
4-
53
import typing
64

5+
import typing_extensions
6+
77
from .undefined import Undefined
88

9-
AgentUpdateParamsIvrNavigationMode = typing.Union[AgentUpdateParamsIvrNavigationMode, Undefined]
9+
AgentUpdateParamsIvrNavigationMode = typing.Union[
10+
typing_extensions.Literal["default"], typing_extensions.Literal["off"], Undefined
11+
]
Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
# This file was auto-generated by Fern from our API Definition.
22

3-
from __future__ import annotations
4-
53
import typing
64

5+
import typing_extensions
6+
77
from .undefined import Undefined
88

9-
PlayHtVoiceUpdateParamsQuality = typing.Union[PlayHtVoiceUpdateParamsQuality, Undefined]
9+
PlayHtVoiceUpdateParamsQuality = typing.Union[
10+
typing_extensions.Literal["faster"],
11+
typing_extensions.Literal["draft"],
12+
typing_extensions.Literal["low"],
13+
typing_extensions.Literal["medium"],
14+
typing_extensions.Literal["high"],
15+
typing_extensions.Literal["premium"],
16+
Undefined,
17+
]
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# This file was auto-generated by Fern from our API Definition.
22

3-
from __future__ import annotations
4-
53
import typing
64

5+
import typing_extensions
6+
77
from .undefined import Undefined
88

9-
PlayHtVoiceUpdateParamsVersion = typing.Union[PlayHtVoiceUpdateParamsVersion, Undefined]
9+
PlayHtVoiceUpdateParamsVersion = typing.Union[typing_extensions.Literal["1"], typing_extensions.Literal["2"], Undefined]

0 commit comments

Comments
 (0)