@@ -207,36 +207,3 @@ async def update_data(
207207 }
208208 return await self .client .update_channels_batch (options )
209209
210- async def add_filter_tags (
211- self , filter : ChannelsBatchFilters , tags : List [str ]
212- ) -> StreamResponse :
213- """
214- Adds filter tags to channels matching the filter.
215-
216- :param filter: The filter to match channels.
217- :param tags: List of filter tags to add.
218- :return: StreamResponse containing task_id.
219- """
220- options : ChannelsBatchOptions = {
221- "operation" : "addFilterTags" ,
222- "filter" : filter ,
223- "filter_tags_update" : tags ,
224- }
225- return await self .client .update_channels_batch (options )
226-
227- async def remove_filter_tags (
228- self , filter : ChannelsBatchFilters , tags : List [str ]
229- ) -> StreamResponse :
230- """
231- Removes filter tags from channels matching the filter.
232-
233- :param filter: The filter to match channels.
234- :param tags: List of filter tags to remove.
235- :return: StreamResponse containing task_id.
236- """
237- options : ChannelsBatchOptions = {
238- "operation" : "removeFilterTags" ,
239- "filter" : filter ,
240- "filter_tags_update" : tags ,
241- }
242- return await self .client .update_channels_batch (options )
0 commit comments