Skip to content

Commit

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


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

0 comments on commit ec4d8f1

Please sign in to comment.