Skip to content

Commit 8fec8a3

Browse files
author
Release Automation Bot
committed
chore: bump version to 0.23.0
1 parent 5544a54 commit 8fec8a3

File tree

4 files changed

+3
-12
lines changed

4 files changed

+3
-12
lines changed

fishjam/_openapi_client/models/peer_options_web_rtc.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,18 @@ class PeerOptionsWebRTC:
2424
"""Options specific to the WebRTC peer
2525
2626
Attributes:
27-
enable_simulcast (Union[Unset, bool]): Enables the peer to use simulcast Default: True.
2827
metadata (Union[Unset, PeerOptionsWebRTCMetadata]): Custom peer metadata
2928
subscribe_mode (Union[Unset, PeerOptionsWebRTCSubscribeMode]): Configuration of peer's subscribing policy
3029
Default: PeerOptionsWebRTCSubscribeMode.AUTO.
3130
"""
3231

33-
enable_simulcast: Union[Unset, bool] = True
3432
metadata: Union[Unset, "PeerOptionsWebRTCMetadata"] = UNSET
3533
subscribe_mode: Union[
3634
Unset, PeerOptionsWebRTCSubscribeMode
3735
] = PeerOptionsWebRTCSubscribeMode.AUTO
3836
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
3937

4038
def to_dict(self) -> dict[str, Any]:
41-
enable_simulcast = self.enable_simulcast
42-
4339
metadata: Union[Unset, dict[str, Any]] = UNSET
4440
if not isinstance(self.metadata, Unset):
4541
metadata = self.metadata.to_dict()
@@ -51,8 +47,6 @@ def to_dict(self) -> dict[str, Any]:
5147
field_dict: dict[str, Any] = {}
5248
field_dict.update(self.additional_properties)
5349
field_dict.update({})
54-
if enable_simulcast is not UNSET:
55-
field_dict["enableSimulcast"] = enable_simulcast
5650
if metadata is not UNSET:
5751
field_dict["metadata"] = metadata
5852
if subscribe_mode is not UNSET:
@@ -65,8 +59,6 @@ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
6559
from ..models.peer_options_web_rtc_metadata import PeerOptionsWebRTCMetadata
6660

6761
d = dict(src_dict)
68-
enable_simulcast = d.pop("enableSimulcast", UNSET)
69-
7062
_metadata = d.pop("metadata", UNSET)
7163
metadata: Union[Unset, PeerOptionsWebRTCMetadata]
7264
if isinstance(_metadata, Unset):
@@ -82,7 +74,6 @@ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
8274
subscribe_mode = PeerOptionsWebRTCSubscribeMode(_subscribe_mode)
8375

8476
peer_options_web_rtc = cls(
85-
enable_simulcast=enable_simulcast,
8677
metadata=metadata,
8778
subscribe_mode=subscribe_mode,
8879
)

protos

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fishjam-server-sdk"
3-
version = "0.22.1"
3+
version = "0.23.0"
44
description = "Python server SDK for the Fishjam"
55
authors = [{ name = "Fishjam Team", email = "contact@fishjam.io" }]
66
requires-python = ">=3.11"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)