Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions fishjam/_openapi_client/models/room_config_room_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ class RoomConfigRoomType(str, Enum):
"""The use-case of the room. If not provided, this defaults to conference."""

AUDIO_ONLY = "audio_only"
AUDIO_ONLY_LIVESTREAM = "audio_only_livestream"
BROADCASTER = "broadcaster"
CONFERENCE = "conference"
FULL_FEATURE = "full_feature"
Expand Down
7 changes: 6 additions & 1 deletion fishjam/api/_fishjam_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,12 @@ class RoomOptions:
webhook_url: str | None = None
"""URL where Fishjam notifications will be sent"""
room_type: Literal[
"conference", "audio_only", "livestream", "full_feature", "broadcaster"
"conference",
"audio_only",
"livestream",
"full_feature",
"broadcaster",
"audio_only_livestream",
] = "conference"
"""The use-case of the room. If not provided, this defaults to conference."""
public: bool = False
Expand Down
Loading