Skip to content

Commit d6ae15d

Browse files
Release 0.16.0
1 parent 894d775 commit d6ae15d

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

fishjam/_openapi_client/api/viewer/generate_token.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def sync_detailed(
6666
*,
6767
client: Union[AuthenticatedClient, Client],
6868
) -> Response[Union[Error, ViewerToken]]:
69-
"""Generate single broadcaster access token
69+
"""Generate single livestream access token
7070
7171
Args:
7272
room_id (str):
@@ -95,7 +95,7 @@ def sync(
9595
*,
9696
client: Union[AuthenticatedClient, Client],
9797
) -> Optional[Union[Error, ViewerToken]]:
98-
"""Generate single broadcaster access token
98+
"""Generate single livestream access token
9999
100100
Args:
101101
room_id (str):
@@ -119,7 +119,7 @@ async def asyncio_detailed(
119119
*,
120120
client: Union[AuthenticatedClient, Client],
121121
) -> Response[Union[Error, ViewerToken]]:
122-
"""Generate single broadcaster access token
122+
"""Generate single livestream access token
123123
124124
Args:
125125
room_id (str):
@@ -146,7 +146,7 @@ async def asyncio(
146146
*,
147147
client: Union[AuthenticatedClient, Client],
148148
) -> Optional[Union[Error, ViewerToken]]:
149-
"""Generate single broadcaster access token
149+
"""Generate single livestream access token
150150
151151
Args:
152152
room_id (str):

fishjam/_openapi_client/models/room_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ class RoomConfig:
1616

1717
max_peers: Union[Unset, None, int] = UNSET
1818
"""Maximum amount of peers allowed into the room"""
19-
room_type: Union[Unset, RoomConfigRoomType] = RoomConfigRoomType.FULL_FEATURE
20-
"""The use-case of the room. If not provided, this defaults to full_feature."""
19+
room_type: Union[Unset, RoomConfigRoomType] = RoomConfigRoomType.CONFERENCE
20+
"""The use-case of the room. If not provided, this defaults to conference."""
2121
video_codec: Union[Unset, None, RoomConfigVideoCodec] = UNSET
2222
"""Enforces video codec for each peer in the room"""
2323
webhook_url: Union[Unset, None, str] = UNSET

fishjam/_openapi_client/models/room_config_room_type.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22

33

44
class RoomConfigRoomType(str, Enum):
5-
"""The use-case of the room. If not provided, this defaults to full_feature."""
5+
"""The use-case of the room. If not provided, this defaults to conference."""
66

77
AUDIO_ONLY = "audio_only"
88
BROADCASTER = "broadcaster"
9+
CONFERENCE = "conference"
910
FULL_FEATURE = "full_feature"
11+
LIVESTREAM = "livestream"
1012

1113
def __str__(self) -> str:
1214
return str(self.value)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fishjam-server-sdk"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
description = "Python server SDK for the Fishjam"
55
authors = ["Fishjam Team"]
66
homepage = "https://github.com/fishjam-cloud/python-server-sdk"

0 commit comments

Comments
 (0)