Skip to content

Commit

Permalink
Release 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Aug 19, 2023
1 parent 80a24f3 commit 393d93f
Show file tree
Hide file tree
Showing 65 changed files with 105 additions and 2 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.7"
version = "0.0.8"
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.7",
"X-Fern-SDK-Version": "0.0.8",
}
headers["Authorization"] = f"Bearer {self._get_token()}"
return headers
Expand Down
1 change: 1 addition & 0 deletions src/vocode/types/action_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:

class Config:
frozen = True
smart_union = True
json_encoders = {dt.datetime: serialize_datetime}
3 changes: 3 additions & 0 deletions src/vocode/types/action_page_items_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class ActionPageItemsItem_ActionTransferCall(TransferCallAction):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -24,6 +25,7 @@ class ActionPageItemsItem_ActionEndConversation(EndConversationAction):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -32,6 +34,7 @@ class ActionPageItemsItem_ActionDtmf(DtmfAction):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand Down
3 changes: 3 additions & 0 deletions src/vocode/types/action_params_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class ActionParamsRequest_ActionTransferCall(TransferCallActionParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -24,6 +25,7 @@ class ActionParamsRequest_ActionEndConversation(EndConversationActionParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -32,6 +34,7 @@ class ActionParamsRequest_ActionDtmf(DtmfActionParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand Down
3 changes: 3 additions & 0 deletions src/vocode/types/action_response_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class ActionResponseModel_ActionTransferCall(TransferCallAction):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -24,6 +25,7 @@ class ActionResponseModel_ActionEndConversation(EndConversationAction):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -32,6 +34,7 @@ class ActionResponseModel_ActionDtmf(DtmfAction):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand Down
3 changes: 3 additions & 0 deletions src/vocode/types/action_update_params_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class ActionUpdateParamsRequest_ActionTransferCall(TransferCallActionUpdateParam

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -24,6 +25,7 @@ class ActionUpdateParamsRequest_ActionEndConversation(EndConversationActionUpdat

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -32,6 +34,7 @@ class ActionUpdateParamsRequest_ActionDtmf(DtmfActionUpdateParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand Down
1 change: 1 addition & 0 deletions src/vocode/types/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,5 @@ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:

class Config:
frozen = True
smart_union = True
json_encoders = {dt.datetime: serialize_datetime}
3 changes: 3 additions & 0 deletions src/vocode/types/agent_actions_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class AgentActionsItem_ActionTransferCall(TransferCallAction):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -24,6 +25,7 @@ class AgentActionsItem_ActionEndConversation(EndConversationAction):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -32,6 +34,7 @@ class AgentActionsItem_ActionDtmf(DtmfAction):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand Down
1 change: 1 addition & 0 deletions src/vocode/types/agent_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:

class Config:
frozen = True
smart_union = True
json_encoders = {dt.datetime: serialize_datetime}
3 changes: 3 additions & 0 deletions src/vocode/types/agent_params_actions_item_one.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class AgentParamsActionsItemOne_ActionTransferCall(TransferCallActionParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -24,6 +25,7 @@ class AgentParamsActionsItemOne_ActionEndConversation(EndConversationActionParam

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -32,6 +34,7 @@ class AgentParamsActionsItemOne_ActionDtmf(DtmfActionParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand Down
4 changes: 4 additions & 0 deletions src/vocode/types/agent_params_voice_one.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class AgentParamsVoiceOne_VoiceAzure(AzureVoiceParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -25,6 +26,7 @@ class AgentParamsVoiceOne_VoiceRime(RimeVoiceParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -33,6 +35,7 @@ class AgentParamsVoiceOne_VoiceElevenLabs(ElevenLabsVoiceParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -41,6 +44,7 @@ class AgentParamsVoiceOne_VoicePlayHt(PlayHtVoiceParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand Down
1 change: 1 addition & 0 deletions src/vocode/types/agent_update_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:

class Config:
frozen = True
smart_union = True
json_encoders = {dt.datetime: serialize_datetime}
3 changes: 3 additions & 0 deletions src/vocode/types/agent_update_params_actions_item_one.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class AgentUpdateParamsActionsItemOne_ActionTransferCall(TransferCallActionUpdat

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -24,6 +25,7 @@ class AgentUpdateParamsActionsItemOne_ActionEndConversation(EndConversationActio

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -32,6 +34,7 @@ class AgentUpdateParamsActionsItemOne_ActionDtmf(DtmfActionUpdateParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand Down
4 changes: 4 additions & 0 deletions src/vocode/types/agent_update_params_voice_one.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class AgentUpdateParamsVoiceOne_VoiceAzure(AzureVoiceUpdateParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -25,6 +26,7 @@ class AgentUpdateParamsVoiceOne_VoiceRime(RimeVoiceUpdateParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -33,6 +35,7 @@ class AgentUpdateParamsVoiceOne_VoiceElevenLabs(ElevenLabsVoiceUpdateParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -41,6 +44,7 @@ class AgentUpdateParamsVoiceOne_VoicePlayHt(PlayHtVoiceUpdateParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand Down
4 changes: 4 additions & 0 deletions src/vocode/types/agent_voice.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class AgentVoice_VoiceAzure(AzureVoice):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -25,6 +26,7 @@ class AgentVoice_VoiceRime(RimeVoice):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -33,6 +35,7 @@ class AgentVoice_VoiceElevenLabs(ElevenLabsVoice):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -41,6 +44,7 @@ class AgentVoice_VoicePlayHt(PlayHtVoice):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand Down
1 change: 1 addition & 0 deletions src/vocode/types/azure_voice.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:

class Config:
frozen = True
smart_union = True
json_encoders = {dt.datetime: serialize_datetime}
1 change: 1 addition & 0 deletions src/vocode/types/azure_voice_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:

class Config:
frozen = True
smart_union = True
json_encoders = {dt.datetime: serialize_datetime}
1 change: 1 addition & 0 deletions src/vocode/types/azure_voice_update_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:

class Config:
frozen = True
smart_union = True
json_encoders = {dt.datetime: serialize_datetime}
1 change: 1 addition & 0 deletions src/vocode/types/call.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:

class Config:
frozen = True
smart_union = True
json_encoders = {dt.datetime: serialize_datetime}
1 change: 1 addition & 0 deletions src/vocode/types/call_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:

class Config:
frozen = True
smart_union = True
json_encoders = {dt.datetime: serialize_datetime}
1 change: 1 addition & 0 deletions src/vocode/types/create_call_agent_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:

class Config:
frozen = True
smart_union = True
json_encoders = {dt.datetime: serialize_datetime}
3 changes: 3 additions & 0 deletions src/vocode/types/create_call_agent_params_actions_item_one.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class CreateCallAgentParamsActionsItemOne_ActionTransferCall(TransferCallActionP

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -24,6 +25,7 @@ class CreateCallAgentParamsActionsItemOne_ActionEndConversation(EndConversationA

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -32,6 +34,7 @@ class CreateCallAgentParamsActionsItemOne_ActionDtmf(DtmfActionParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand Down
4 changes: 4 additions & 0 deletions src/vocode/types/create_call_agent_params_voice_one.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class CreateCallAgentParamsVoiceOne_VoiceAzure(AzureVoiceParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -25,6 +26,7 @@ class CreateCallAgentParamsVoiceOne_VoiceRime(RimeVoiceParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -33,6 +35,7 @@ class CreateCallAgentParamsVoiceOne_VoiceElevenLabs(ElevenLabsVoiceParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand All @@ -41,6 +44,7 @@ class CreateCallAgentParamsVoiceOne_VoicePlayHt(PlayHtVoiceParams):

class Config:
frozen = True
smart_union = True
allow_population_by_field_name = True


Expand Down
Loading

0 comments on commit 393d93f

Please sign in to comment.