@@ -91,40 +91,36 @@ class CallClient:
91
91
...
92
92
93
93
def update_remote_participants (self ,
94
- remote_participants : Mapping [str ,
95
- Any ],
96
- completion : Optional [Callable [[Optional [str ]],
97
- None ]] = None ) -> None :
94
+ remote_participants : Mapping [str , Any ],
95
+ completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
98
96
...
99
97
100
- def eject_remote_participants (self ,
101
- ids : Sequence [str ],
102
- completion : Optional [Callable [[Optional [str ]],
103
- None ]] = None ) -> None :
98
+ def eject_remote_participants (
99
+ self , ids : Sequence [str ], completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
104
100
...
105
101
106
102
def inputs (self ) -> Mapping [str , Any ]:
107
103
...
108
104
109
- def update_inputs (self , input_settings : Mapping [str , Any ], completion : Optional [Callable [[
110
- Optional [str ]], None ]] = None ) -> None :
105
+ def update_inputs (self ,
106
+ input_settings : Mapping [str , Any ],
107
+ completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
111
108
...
112
109
113
110
def publishing (self ) -> Mapping [str , Any ]:
114
111
...
115
112
116
- def update_publishing (self , publishing_settings : Mapping [str , Any ], completion : Optional [Callable [[
117
- Optional [str ]], None ]] = None ) -> None :
113
+ def update_publishing (self ,
114
+ publishing_settings : Mapping [str , Any ],
115
+ completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
118
116
...
119
117
120
118
def subscriptions (self ) -> Mapping [str , Any ]:
121
119
...
122
120
123
121
def update_subscriptions (self ,
124
- participant_settings : Optional [Mapping [str ,
125
- Any ]] = None ,
126
- profile_settings : Optional [Mapping [str ,
127
- Any ]] = None ,
122
+ participant_settings : Optional [Mapping [str , Any ]] = None ,
123
+ profile_settings : Optional [Mapping [str , Any ]] = None ,
128
124
completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
129
125
...
130
126
@@ -139,51 +135,40 @@ class CallClient:
139
135
...
140
136
141
137
def update_permissions (self ,
142
- permissions : Mapping [str ,
143
- Any ],
144
- completion : Optional [Callable [[Optional [str ]],
145
- None ]] = None ) -> None :
138
+ permissions : Mapping [str , Any ],
139
+ completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
146
140
...
147
141
148
142
def start_recording (self ,
149
- streaming_settings : Optional [Mapping [str ,
150
- Any ]] = None ,
143
+ streaming_settings : Optional [Mapping [str , Any ]] = None ,
151
144
stream_id : Optional [str ] = None ,
152
145
force_new : Optional [bool ] = None ,
153
- completion : Optional [Callable [[Optional [str ]],
154
- None ]] = None ) -> None :
146
+ completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
155
147
...
156
148
157
149
def stop_recording (self ,
158
150
stream_id : Optional [str ] = None ,
159
- completion : Optional [Callable [[Optional [str ]],
160
- None ]] = None ) -> None :
151
+ completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
161
152
...
162
153
163
154
def update_recording (self ,
164
- update_settings : Optional [Mapping [str ,
165
- Any ]] = None ,
155
+ update_settings : Optional [Mapping [str , Any ]] = None ,
166
156
stream_id : Optional [str ] = None ,
167
- completion : Optional [Callable [[Optional [str ]],
168
- None ]] = None ) -> None :
157
+ completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
169
158
...
170
159
171
160
def start_transcription (self ,
172
- settings : Optional [Mapping [str ,
173
- Any ]] = None ,
174
- completion : Optional [Callable [[Optional [str ]],
175
- None ]] = None ) -> None :
161
+ settings : Optional [Mapping [str , Any ]] = None ,
162
+ completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
176
163
...
177
164
178
165
def stop_transcription (
179
166
self , completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
180
167
...
181
168
182
169
def start_dialout (self ,
183
- settings : Optional [Mapping [str ,
184
- Any ]] = None ,
185
- completion : Optional [Callable [[Optional [str ]],
186
- None ]] = None ) -> None :
170
+ settings : Optional [Mapping [str , Any ]] = None ,
171
+ completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
187
172
...
188
173
189
174
def stop_dialout (self , completion : Optional [Callable [[
@@ -193,8 +178,7 @@ class CallClient:
193
178
def send_app_message (self ,
194
179
message : Any ,
195
180
participant : Optional [str ] = None ,
196
- completion : Optional [Callable [[Optional [str ]],
197
- None ]] = None ) -> None :
181
+ completion : Optional [Callable [[Optional [str ]], None ]] = None ) -> None :
198
182
...
199
183
200
184
def send_prebuilt_chat_message (self ,
@@ -401,7 +385,8 @@ class VirtualMicrophoneDevice:
401
385
def channels (self ) -> int :
402
386
...
403
387
404
- def write_frames (self , frame : bytes ,
388
+ def write_frames (self ,
389
+ frame : bytes ,
405
390
completion : Optional [Callable [[int ], None ]] = None ) -> int :
406
391
...
407
392
@@ -422,8 +407,7 @@ class VirtualSpeakerDevice:
422
407
423
408
def read_frames (self ,
424
409
num_frame : int ,
425
- completion : Optional [Callable [[bytes ],
426
- None ]] = None ) -> bytes :
410
+ completion : Optional [Callable [[bytes ], None ]] = None ) -> bytes :
427
411
...
428
412
429
413
0 commit comments