Skip to content

Commit

Permalink
Release 0.0.38
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Jan 10, 2024
1 parent 5b71f36 commit 6bc1ca1
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 14 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "vocode-api"
version = "0.0.37"
version = "0.0.38"
description = ""
readme = "README.md"
authors = []
Expand Down
2 changes: 1 addition & 1 deletion src/vocode/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "vocode-api",
"X-Fern-SDK-Version": "0.0.37",
"X-Fern-SDK-Version": "0.0.38",
}
headers["Authorization"] = f"Bearer {self._get_token()}"
return headers
Expand Down
11 changes: 8 additions & 3 deletions src/vocode/types/agent_update_params_endpointing_sensitivity.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# This file was auto-generated by Fern from our API Definition.

from __future__ import annotations

import typing

import typing_extensions

from .undefined import Undefined

AgentUpdateParamsEndpointingSensitivity = typing.Union[AgentUpdateParamsEndpointingSensitivity, Undefined]
AgentUpdateParamsEndpointingSensitivity = typing.Union[
typing_extensions.Literal["auto"],
typing_extensions.Literal["relaxed"],
typing_extensions.Literal["sensitive"],
Undefined,
]
8 changes: 5 additions & 3 deletions src/vocode/types/agent_update_params_ivr_navigation_mode.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# This file was auto-generated by Fern from our API Definition.

from __future__ import annotations

import typing

import typing_extensions

from .undefined import Undefined

AgentUpdateParamsIvrNavigationMode = typing.Union[AgentUpdateParamsIvrNavigationMode, Undefined]
AgentUpdateParamsIvrNavigationMode = typing.Union[
typing_extensions.Literal["default"], typing_extensions.Literal["off"], Undefined
]
14 changes: 11 additions & 3 deletions src/vocode/types/play_ht_voice_update_params_quality.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
# This file was auto-generated by Fern from our API Definition.

from __future__ import annotations

import typing

import typing_extensions

from .undefined import Undefined

PlayHtVoiceUpdateParamsQuality = typing.Union[PlayHtVoiceUpdateParamsQuality, Undefined]
PlayHtVoiceUpdateParamsQuality = typing.Union[
typing_extensions.Literal["faster"],
typing_extensions.Literal["draft"],
typing_extensions.Literal["low"],
typing_extensions.Literal["medium"],
typing_extensions.Literal["high"],
typing_extensions.Literal["premium"],
Undefined,
]
6 changes: 3 additions & 3 deletions src/vocode/types/play_ht_voice_update_params_version.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# This file was auto-generated by Fern from our API Definition.

from __future__ import annotations

import typing

import typing_extensions

from .undefined import Undefined

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

0 comments on commit 6bc1ca1

Please sign in to comment.