Skip to content

Commit 7704673

Browse files
committed
Release 0.0.43
1 parent ce3d953 commit 7704673

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-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.42"
3+
version = "0.0.43"
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.42",
17+
"X-Fern-SDK-Version": "0.0.43",
1818
}
1919
headers["Authorization"] = f"Bearer {self._get_token()}"
2020
return headers

src/vocode/types/action_update_params_request.py

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ class Config:
2323
allow_population_by_field_name = True
2424

2525

26-
class ActionUpdateParamsRequest_ActionEndConversation(
27-
EndConversationActionUpdateParams
28-
):
26+
class ActionUpdateParamsRequest_ActionEndConversation(EndConversationActionUpdateParams):
2927
type: typing_extensions.Literal["action_end_conversation"]
3028

3129
class Config:
@@ -43,9 +41,7 @@ class Config:
4341
allow_population_by_field_name = True
4442

4543

46-
class ActionUpdateParamsRequest_ActionAddToConference(
47-
AddToConferenceActionUpdateParams
48-
):
44+
class ActionUpdateParamsRequest_ActionAddToConference(AddToConferenceActionUpdateParams):
4945
type: typing_extensions.Literal["action_add_to_conference"]
5046

5147
class Config:
@@ -73,10 +69,10 @@ class Config:
7369

7470

7571
ActionUpdateParamsRequest = typing.Union[
76-
TransferCallActionUpdateParams,
77-
EndConversationActionUpdateParams,
78-
DtmfActionUpdateParams,
79-
AddToConferenceActionUpdateParams,
80-
SetHoldActionUpdateParams,
81-
ExternalActionUpdateParams,
72+
ActionUpdateParamsRequest_ActionTransferCall,
73+
ActionUpdateParamsRequest_ActionEndConversation,
74+
ActionUpdateParamsRequest_ActionDtmf,
75+
ActionUpdateParamsRequest_ActionAddToConference,
76+
ActionUpdateParamsRequest_ActionSetHold,
77+
ActionUpdateParamsRequest_ActionExternal,
8278
]

0 commit comments

Comments
 (0)