@@ -133,6 +133,7 @@ def create(
133133 customers : typing .Optional [typing .Sequence [CreateCustomerDto ]] = OMIT ,
134134 name : typing .Optional [str ] = OMIT ,
135135 schedule_plan : typing .Optional [SchedulePlan ] = OMIT ,
136+ transport : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
136137 assistant_id : typing .Optional [str ] = OMIT ,
137138 assistant : typing .Optional [CreateAssistantDto ] = OMIT ,
138139 assistant_overrides : typing .Optional [AssistantOverrides ] = OMIT ,
@@ -158,6 +159,9 @@ def create(
158159 schedule_plan : typing.Optional[SchedulePlan]
159160 This is the schedule plan of the call.
160161
162+ transport : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
163+ This is the transport of the call.
164+
161165 assistant_id : typing.Optional[str]
162166 This is the assistant that will be used for the call. To use a transient assistant, use `assistant` instead.
163167
@@ -212,6 +216,7 @@ def create(
212216 "schedulePlan" : convert_and_respect_annotation_metadata (
213217 object_ = schedule_plan , annotation = SchedulePlan , direction = "write"
214218 ),
219+ "transport" : transport ,
215220 "assistantId" : assistant_id ,
216221 "assistant" : convert_and_respect_annotation_metadata (
217222 object_ = assistant , annotation = CreateAssistantDto , direction = "write"
@@ -473,6 +478,7 @@ async def create(
473478 customers : typing .Optional [typing .Sequence [CreateCustomerDto ]] = OMIT ,
474479 name : typing .Optional [str ] = OMIT ,
475480 schedule_plan : typing .Optional [SchedulePlan ] = OMIT ,
481+ transport : typing .Optional [typing .Dict [str , typing .Optional [typing .Any ]]] = OMIT ,
476482 assistant_id : typing .Optional [str ] = OMIT ,
477483 assistant : typing .Optional [CreateAssistantDto ] = OMIT ,
478484 assistant_overrides : typing .Optional [AssistantOverrides ] = OMIT ,
@@ -498,6 +504,9 @@ async def create(
498504 schedule_plan : typing.Optional[SchedulePlan]
499505 This is the schedule plan of the call.
500506
507+ transport : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
508+ This is the transport of the call.
509+
501510 assistant_id : typing.Optional[str]
502511 This is the assistant that will be used for the call. To use a transient assistant, use `assistant` instead.
503512
@@ -552,6 +561,7 @@ async def create(
552561 "schedulePlan" : convert_and_respect_annotation_metadata (
553562 object_ = schedule_plan , annotation = SchedulePlan , direction = "write"
554563 ),
564+ "transport" : transport ,
555565 "assistantId" : assistant_id ,
556566 "assistant" : convert_and_respect_annotation_metadata (
557567 object_ = assistant , annotation = CreateAssistantDto , direction = "write"
0 commit comments