Skip to content

Commit

Permalink
Release 0.0.43
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Apr 16, 2024
1 parent ce3d953 commit 7704673
Show file tree
Hide file tree
Showing 3 changed files with 10 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.42"
version = "0.0.43"
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.42",
"X-Fern-SDK-Version": "0.0.43",
}
headers["Authorization"] = f"Bearer {self._get_token()}"
return headers
Expand Down
20 changes: 8 additions & 12 deletions src/vocode/types/action_update_params_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ class Config:
allow_population_by_field_name = True


class ActionUpdateParamsRequest_ActionEndConversation(
EndConversationActionUpdateParams
):
class ActionUpdateParamsRequest_ActionEndConversation(EndConversationActionUpdateParams):
type: typing_extensions.Literal["action_end_conversation"]

class Config:
Expand All @@ -43,9 +41,7 @@ class Config:
allow_population_by_field_name = True


class ActionUpdateParamsRequest_ActionAddToConference(
AddToConferenceActionUpdateParams
):
class ActionUpdateParamsRequest_ActionAddToConference(AddToConferenceActionUpdateParams):
type: typing_extensions.Literal["action_add_to_conference"]

class Config:
Expand Down Expand Up @@ -73,10 +69,10 @@ class Config:


ActionUpdateParamsRequest = typing.Union[
TransferCallActionUpdateParams,
EndConversationActionUpdateParams,
DtmfActionUpdateParams,
AddToConferenceActionUpdateParams,
SetHoldActionUpdateParams,
ExternalActionUpdateParams,
ActionUpdateParamsRequest_ActionTransferCall,
ActionUpdateParamsRequest_ActionEndConversation,
ActionUpdateParamsRequest_ActionDtmf,
ActionUpdateParamsRequest_ActionAddToConference,
ActionUpdateParamsRequest_ActionSetHold,
ActionUpdateParamsRequest_ActionExternal,
]

0 comments on commit 7704673

Please sign in to comment.