-
from jellyfish import RoomApi
+from fishjam import RoomApi
room_api = RoomApi(server_address="localhost:5002", server_api_token="development")
@@ -783,24 +783,24 @@ RoomApi
# Create a room
-jellyfish_address, room = room_api.create_room(video_codec="h264", webhook_url="http://localhost:5000/webhook")
+fishjam_address, room = room_api.create_room(video_codec="h264", webhook_url="http://localhost:5000/webhook")
# '127.0.0.1:5002', Room(components=[], config=RoomConfig(max_peers=None, video_codec=<RoomConfigVideoCodec.H264: 'h264'>, webhook_url='http://localhost:5000/webhook'), id='1d905478-ccfc-44d6-a6e7-8ccb1b38d955', peers=[])
# Add peer to the room
-from jellyfish import PeerOptionsWebRTC
+from fishjam import PeerOptionsWebRTC
peer_token, peer_webrtc = room_api.add_peer(room.id, options=PeerOptionsWebRTC())
# 'M8TUGhj-L11KpyG-2zBPIo', Peer(id='b1232c7e-c969-4450-acdf-ea24f3cdd7f6', status=<PeerStatus.DISCONNECTED: 'disconnected'>, type='webrtc')
# Add component to the room
-from jellyfish import ComponentOptionsHLS
+from fishjam import ComponentOptionsHLS
component_hls = room_api.add_component(room.id, options=ComponentOptionsHLS())
# ComponentHLS(id='5f062447-a9f7-45ed-8d1b-511f77dc78ae', properties=ComponentPropertiesHLS(low_latency=False, persistent=False, playable=False, subscribe_mode=<ComponentPropertiesHLSSubscribeMode.AUTO: 'auto'>, target_window_duration=None), type='hls')
-All methods in RoomApi
may raise one of the exceptions deriving from jellyfish.errors.HTTPError
. They are defined in jellyfish.errors
.
+All methods in RoomApi
may raise one of the exceptions deriving from fishjam.errors.HTTPError
. They are defined in fishjam.errors
.
Notifier
@@ -811,7 +811,7 @@ Notifier
Create Notifier
instance
-
from jellyfish import Notifier
+from fishjam import Notifier
notifier = Notifier(server_address='localhost:5002', server_api_token='development')
@@ -917,9 +917,9 @@ Copyright and License
Licensed under the Apache License, Version 2.0
-
+
-
+
1"""
2 .. include:: ../README.md
@@ -928,10 +928,10 @@ Copyright and License
5# pylint: disable=locally-disabled, no-name-in-module, import-error
6
7# Exceptions and Server Messages
- 8from jellyfish import errors, events
+ 8from fishjam import errors, events
9
10# Models
-11from jellyfish._openapi_client.models import (
+11from fishjam._openapi_client.models import (
12 ComponentFile,
13 ComponentHLS,
14 ComponentOptionsFile,
@@ -963,10 +963,10 @@ Copyright and License
40)
41
42# API
-43from jellyfish._webhook_notifier import receive_binary
-44from jellyfish._ws_notifier import Notifier
-45from jellyfish.api._recording_api import RecordingApi
-46from jellyfish.api._room_api import RoomApi
+43from fishjam._webhook_notifier import receive_binary
+44from fishjam._ws_notifier import Notifier
+45from fishjam.api._recording_api import RecordingApi
+46from fishjam.api._room_api import RoomApi
47
48__all__ = [
49 "RoomApi",
@@ -1015,7 +1015,7 @@ Copyright and License
class
-
RoomApi(jellyfish.api._base_api.BaseApi):
+ RoomApi(fishjam.api._base_api.BaseApi):
@@ -1031,7 +1031,7 @@ Copyright and License
50 secure: bool = False,
51 ):
52 """
- 53 Create RoomApi instance, providing the jellyfish address and api token.
+ 53 Create RoomApi instance, providing the fishjam address and api token.
54 Set secure to `True` for `https` and `False` for `http` connection (default).
55 """
56 super().__init__(
@@ -1052,7 +1052,7 @@ Copyright and License
71 """
72 Creates a new room
73
- 74 Returns a tuple (`jellyfish_address`, `Room`) - the address of the Jellyfish
+ 74 Returns a tuple (`fishjam_address`, `Room`) - the address of the Fishjam
75 in which the room has been created and the created `Room`
76
77 The returned address may be different from the current `RoomApi` instance.
@@ -1075,7 +1075,7 @@ Copyright and License
94 )
95
96 resp = self._request(room_create_room, json_body=room_config)
- 97 return (resp.data.jellyfish_address, resp.data.room)
+ 97 return (resp.data.fishjam_address, resp.data.room)
98
99 def delete_room(self, room_id: str) -> None:
100 """Deletes a room"""
@@ -1101,7 +1101,7 @@ Copyright and License
120 Currently only `webrtc` peer is supported
121
122 Returns a tuple (`peer_token`, `Peer`) - the token needed by Peer
-123 to authenticate to Jellyfish and the new `Peer`.
+123 to authenticate to Fishjam and the new `Peer`.
124
125 The possible options to pass for peer are `PeerOptionsWebRTC`.
126 """
@@ -1241,7 +1241,7 @@ Copyright and License
50 secure: bool = False,
51 ):
52 """
-53 Create RoomApi instance, providing the jellyfish address and api token.
+53 Create RoomApi instance, providing the fishjam address and api token.
54 Set secure to `True` for `https` and `False` for `http` connection (default).
55 """
56 super().__init__(
@@ -1252,7 +1252,7 @@ Copyright and License
- Create RoomApi instance, providing the jellyfish address and api token.
+
Create RoomApi instance, providing the fishjam address and api token.
Set secure to True
for https
and False
for http
connection (default).
@@ -1281,7 +1281,7 @@
Copyright and License
71 """
72 Creates a new room
73
-74 Returns a tuple (`jellyfish_address`, `Room`) - the address of the Jellyfish
+74 Returns a tuple (`fishjam_address`, `Room`) - the address of the Fishjam
75 in which the room has been created and the created `Room`
76
77 The returned address may be different from the current `RoomApi` instance.
@@ -1304,13 +1304,13 @@ Copyright and License
94 )
95
96 resp = self._request(room_create_room, json_body=room_config)
-97 return (resp.data.jellyfish_address, resp.data.room)
+97 return (resp.data.fishjam_address, resp.data.room)
Creates a new room
-
Returns a tuple (jellyfish_address
, Room
) - the address of the Jellyfish
+
Returns a tuple (fishjam_address
, Room
) - the address of the Fishjam
in which the room has been created and the created Room
The returned address may be different from the current RoomApi
instance.
@@ -1394,7 +1394,7 @@
Copyright and License
def
-
add_peer( self, room_id: str, options: PeerOptionsWebRTC) -> jellyfish._openapi_client.models.peer_details_response_data.PeerDetailsResponseData:
+
add_peer( self, room_id: str, options: PeerOptionsWebRTC) -> fishjam._openapi_client.models.peer_details_response_data.PeerDetailsResponseData:
@@ -1409,7 +1409,7 @@
Copyright and License
120 Currently only `webrtc` peer is supported
121
122 Returns a tuple (`peer_token`, `Peer`) - the token needed by Peer
-123 to authenticate to Jellyfish and the new `Peer`.
+123 to authenticate to Fishjam and the new `Peer`.
124
125 The possible options to pass for peer are `PeerOptionsWebRTC`.
126 """
@@ -1431,7 +1431,7 @@ Copyright and License
Currently only webrtc
peer is supported
Returns a tuple (peer_token
, Peer
) - the token needed by Peer
-to authenticate to Jellyfish and the new Peer
.
+to authenticate to Fishjam and the new Peer
.
The possible options to pass for peer are PeerOptionsWebRTC
.
@@ -1672,7 +1672,7 @@
Copyright and License
Inherited Members
- - jellyfish.api._base_api.BaseApi
+
- fishjam.api._base_api.BaseApi
- client
@@ -1684,7 +1684,7 @@
Inherited Members
class
-
RecordingApi(jellyfish.api._base_api.BaseApi):
+ RecordingApi(fishjam.api._base_api.BaseApi):
@@ -1700,7 +1700,7 @@ Inherited Members
17 secure: bool = False,
18 ):
19 """
-20 Create RecordingApi instance, providing the jellyfish address and api token.
+20 Create RecordingApi instance, providing the fishjam address and api token.
21 Set secure to `True` for `https` and `False` for `http` connection (default).
22 """
23
@@ -1743,7 +1743,7 @@ Inherited Members
17 secure: bool = False,
18 ):
19 """
-20 Create RecordingApi instance, providing the jellyfish address and api token.
+20 Create RecordingApi instance, providing the fishjam address and api token.
21 Set secure to `True` for `https` and `False` for `http` connection (default).
22 """
23
@@ -1755,7 +1755,7 @@ Inherited Members
-
Create RecordingApi instance, providing the jellyfish address and api token.
+
Create RecordingApi instance, providing the fishjam address and api token.
Set secure to True
for https
and False
for http
connection (default).
@@ -1810,7 +1810,7 @@
Inherited Members
Inherited Members
- - jellyfish.api._base_api.BaseApi
+
- fishjam.api._base_api.BaseApi
- client
@@ -1830,7 +1830,7 @@
Inherited Members
24class Notifier:
25 """
- 26 Allows for receiving WebSocket messages from Jellyfish.
+ 26 Allows for receiving WebSocket messages from Fishjam.
27 """
28
29 def __init__(
@@ -1840,7 +1840,7 @@ Inherited Members
33 secure: bool = False,
34 ):
35 """
- 36 Create Notifier instance, providing the jellyfish address and api token.
+ 36 Create Notifier instance, providing the fishjam address and api token.
37 Set secure to `True` for `wss` and `False` for `ws` connection (default).
38 """
39
@@ -1872,8 +1872,8 @@ Inherited Members
65
66 async def connect(self):
67 """
- 68 A coroutine which connects Notifier to Jellyfish and listens for all incoming
- 69 messages from the Jellyfish.
+ 68 A coroutine which connects Notifier to Fishjam and listens for all incoming
+ 69 messages from the Fishjam.
70
71 It runs until the connection isn't closed.
72
@@ -1908,7 +1908,7 @@ Inherited Members
101
102 async def wait_ready(self) -> True:
103 """
-104 Waits until the notifier is connected and authenticated to Jellyfish.
+104 Waits until the notifier is connected and authenticated to Fishjam.
105
106 If already connected, returns `True` immediately.
107 """
@@ -1960,7 +1960,7 @@ Inherited Members
-
Allows for receiving WebSocket messages from Jellyfish.
+
Allows for receiving WebSocket messages from Fishjam.
@@ -1981,7 +1981,7 @@
Inherited Members
33 secure: bool = False,
34 ):
35 """
-36 Create Notifier instance, providing the jellyfish address and api token.
+36 Create Notifier instance, providing the fishjam address and api token.
37 Set secure to `True` for `wss` and `False` for `ws` connection (default).
38 """
39
@@ -1998,7 +1998,7 @@ Inherited Members
-
Create Notifier instance, providing the jellyfish address and api token.
+
Create Notifier instance, providing the fishjam address and api token.
Set secure to True
for wss
and False
for ws
connection (default).
@@ -2036,7 +2036,7 @@
Inherited Members
def
-
on_metrics( self, handler: Callable[[jellyfish.events._protos.jellyfish.ServerMessageMetricsReport], NoneType]):
+
on_metrics( self, handler: Callable[[fishjam.events._protos.fishjam.ServerMessageMetricsReport], NoneType]):
@@ -2069,8 +2069,8 @@
Inherited Members
66 async def connect(self):
67 """
- 68 A coroutine which connects Notifier to Jellyfish and listens for all incoming
- 69 messages from the Jellyfish.
+ 68 A coroutine which connects Notifier to Fishjam and listens for all incoming
+ 69 messages from the Fishjam.
70
71 It runs until the connection isn't closed.
72
@@ -2105,8 +2105,8 @@ Inherited Members
-
A coroutine which connects Notifier to Jellyfish and listens for all incoming
-messages from the Jellyfish.
+
A coroutine which connects Notifier to Fishjam and listens for all incoming
+messages from the Fishjam.
It runs until the connection isn't closed.
@@ -2132,7 +2132,7 @@
Inherited Members
102 async def wait_ready(self) -> True:
103 """
-104 Waits until the notifier is connected and authenticated to Jellyfish.
+104 Waits until the notifier is connected and authenticated to Fishjam.
105
106 If already connected, returns `True` immediately.
107 """
@@ -2146,7 +2146,7 @@ Inherited Members
-
Waits until the notifier is connected and authenticated to Jellyfish.
+
Waits until the notifier is connected and authenticated to Fishjam.
If already connected, returns True
immediately.
@@ -2169,7 +2169,7 @@
Inherited Members
13 """
14 Transform received protobuf notification to adequate notification instance.
15
-16 The available notifications are listed in `jellyfish.events` module.
+16 The available notifications are listed in `fishjam.events` module.
17 """
18 message = ServerMessage().parse(binary)
19 _which, message = betterproto.which_one_of(message, "content")
@@ -2179,7 +2179,7 @@ Inherited Members
Transform received protobuf notification to adequate notification instance.
-
The available notifications are listed in jellyfish.events
module.
+
The available notifications are listed in fishjam.events
module.
@@ -2478,11 +2478,11 @@ Inherited Members
21 peerless_purge_timeout: Union[Unset, None, int] = UNSET
22 """Duration (in seconds) after which the room will be removed if no peers are connected. If not provided, this feature is disabled."""
23 room_id: Union[Unset, None, str] = UNSET
- 24 """Custom id used for identifying room within Jellyfish. Must be unique across all rooms. If not provided, random UUID is generated."""
+ 24 """Custom id used for identifying room within Fishjam. Must be unique across all rooms. If not provided, random UUID is generated."""
25 video_codec: Union[Unset, None, RoomConfigVideoCodec] = UNSET
26 """Enforces video codec for each peer in the room"""
27 webhook_url: Union[Unset, None, str] = UNSET
- 28 """URL where Jellyfish notifications will be sent"""
+ 28 """URL where Fishjam notifications will be sent"""
29 additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
30 """@private"""
31
@@ -2578,7 +2578,7 @@ Inherited Members
-
RoomConfig( max_peers: Union[jellyfish._openapi_client.types.Unset, NoneType, int] = <jellyfish._openapi_client.types.Unset object>, peer_disconnected_timeout: Union[jellyfish._openapi_client.types.Unset, NoneType, int] = <jellyfish._openapi_client.types.Unset object>, peerless_purge_timeout: Union[jellyfish._openapi_client.types.Unset, NoneType, int] = <jellyfish._openapi_client.types.Unset object>, room_id: Union[jellyfish._openapi_client.types.Unset, NoneType, str] = <jellyfish._openapi_client.types.Unset object>, video_codec: Union[jellyfish._openapi_client.types.Unset, NoneType, RoomConfigVideoCodec] = <jellyfish._openapi_client.types.Unset object>, webhook_url: Union[jellyfish._openapi_client.types.Unset, NoneType, str] = <jellyfish._openapi_client.types.Unset object>)
+
RoomConfig( max_peers: Union[fishjam._openapi_client.types.Unset, NoneType, int] = <fishjam._openapi_client.types.Unset object>, peer_disconnected_timeout: Union[fishjam._openapi_client.types.Unset, NoneType, int] = <fishjam._openapi_client.types.Unset object>, peerless_purge_timeout: Union[fishjam._openapi_client.types.Unset, NoneType, int] = <fishjam._openapi_client.types.Unset object>, room_id: Union[fishjam._openapi_client.types.Unset, NoneType, str] = <fishjam._openapi_client.types.Unset object>, video_codec: Union[fishjam._openapi_client.types.Unset, NoneType, RoomConfigVideoCodec] = <fishjam._openapi_client.types.Unset object>, webhook_url: Union[fishjam._openapi_client.types.Unset, NoneType, str] = <fishjam._openapi_client.types.Unset object>)
@@ -2602,7 +2602,7 @@
Inherited Members
- max_peers: Union[jellyfish._openapi_client.types.Unset, NoneType, int]
+ max_peers: Union[fishjam._openapi_client.types.Unset, NoneType, int]
@@ -2615,7 +2615,7 @@
Inherited Members
- peer_disconnected_timeout: Union[jellyfish._openapi_client.types.Unset, NoneType, int]
+ peer_disconnected_timeout: Union[fishjam._openapi_client.types.Unset, NoneType, int]
@@ -2628,7 +2628,7 @@
Inherited Members
- peerless_purge_timeout: Union[jellyfish._openapi_client.types.Unset, NoneType, int]
+ peerless_purge_timeout: Union[fishjam._openapi_client.types.Unset, NoneType, int]
@@ -2641,20 +2641,20 @@
Inherited Members
- room_id: Union[jellyfish._openapi_client.types.Unset, NoneType, str]
+ room_id: Union[fishjam._openapi_client.types.Unset, NoneType, str]
-
Custom id used for identifying room within Jellyfish. Must be unique across all rooms. If not provided, random UUID is generated.
+
Custom id used for identifying room within Fishjam. Must be unique across all rooms. If not provided, random UUID is generated.
@@ -2667,13 +2667,13 @@
Inherited Members
- webhook_url: Union[jellyfish._openapi_client.types.Unset, NoneType, str]
+ webhook_url: Union[fishjam._openapi_client.types.Unset, NoneType, str]
-
URL where Jellyfish notifications will be sent
+
URL where Fishjam notifications will be sent
@@ -2905,7 +2905,7 @@
Inherited Members
-
Peer( id: str, metadata: Any, status: PeerStatus, tracks: List[jellyfish._openapi_client.models.track.Track], type: str)
+
Peer( id: str, metadata: Any, status: PeerStatus, tracks: List[fishjam._openapi_client.models.track.Track], type: str)
@@ -2967,7 +2967,7 @@
Inherited Members
- tracks: List[jellyfish._openapi_client.models.track.Track]
+ tracks: List[fishjam._openapi_client.models.track.Track]
@@ -3064,7 +3064,7 @@
Inherited Members
- PeerOptionsWebRTC( enable_simulcast: Union[jellyfish._openapi_client.types.Unset, bool] = True)
+ PeerOptionsWebRTC( enable_simulcast: Union[fishjam._openapi_client.types.Unset, bool] = True)
@@ -3083,7 +3083,7 @@
Inherited Members
- enable_simulcast: Union[jellyfish._openapi_client.types.Unset, bool]
+ enable_simulcast: Union[fishjam._openapi_client.types.Unset, bool]
@@ -3315,7 +3315,7 @@
Inherited Members
-
ComponentHLS( id: str, properties: ComponentPropertiesHLS, tracks: List[jellyfish._openapi_client.models.track.Track], type: str)
+
ComponentHLS( id: str, properties: ComponentPropertiesHLS, tracks: List[fishjam._openapi_client.models.track.Track], type: str)
@@ -3363,7 +3363,7 @@
Inherited Members
- tracks: List[jellyfish._openapi_client.models.track.Track]
+ tracks: List[fishjam._openapi_client.models.track.Track]
@@ -3514,7 +3514,7 @@
Inherited Members
-
ComponentOptionsHLS( low_latency: Union[jellyfish._openapi_client.types.Unset, bool] = False, persistent: Union[jellyfish._openapi_client.types.Unset, bool] = False, s3: Union[jellyfish._openapi_client.types.Unset, NoneType, S3Credentials] = <jellyfish._openapi_client.types.Unset object>, subscribe_mode: Union[jellyfish._openapi_client.types.Unset, ComponentOptionsHLSSubscribeMode] = <ComponentOptionsHLSSubscribeMode.AUTO: 'auto'>, target_window_duration: Union[jellyfish._openapi_client.types.Unset, NoneType, int] = <jellyfish._openapi_client.types.Unset object>)
+
ComponentOptionsHLS( low_latency: Union[fishjam._openapi_client.types.Unset, bool] = False, persistent: Union[fishjam._openapi_client.types.Unset, bool] = False, s3: Union[fishjam._openapi_client.types.Unset, NoneType, S3Credentials] = <fishjam._openapi_client.types.Unset object>, subscribe_mode: Union[fishjam._openapi_client.types.Unset, ComponentOptionsHLSSubscribeMode] = <ComponentOptionsHLSSubscribeMode.AUTO: 'auto'>, target_window_duration: Union[fishjam._openapi_client.types.Unset, NoneType, int] = <fishjam._openapi_client.types.Unset object>)
@@ -3537,7 +3537,7 @@
Inherited Members
- low_latency: Union[jellyfish._openapi_client.types.Unset, bool]
+ low_latency: Union[fishjam._openapi_client.types.Unset, bool]
@@ -3550,7 +3550,7 @@
Inherited Members
- persistent: Union[jellyfish._openapi_client.types.Unset, bool]
+ persistent: Union[fishjam._openapi_client.types.Unset, bool]
@@ -3563,7 +3563,7 @@
Inherited Members
-
s3: Union[jellyfish._openapi_client.types.Unset, NoneType, S3Credentials]
+
s3: Union[fishjam._openapi_client.types.Unset, NoneType, S3Credentials]
@@ -3576,7 +3576,7 @@
Inherited Members
@@ -3589,7 +3589,7 @@
Inherited Members
- target_window_duration: Union[jellyfish._openapi_client.types.Unset, NoneType, int]
+ target_window_duration: Union[fishjam._openapi_client.types.Unset, NoneType, int]
@@ -4122,7 +4122,7 @@
Inherited Members
-
ComponentSIP( id: str, properties: ComponentPropertiesSIP, tracks: List[jellyfish._openapi_client.models.track.Track], type: str)
+
ComponentSIP( id: str, properties: ComponentPropertiesSIP, tracks: List[fishjam._openapi_client.models.track.Track], type: str)
@@ -4170,7 +4170,7 @@
Inherited Members
- tracks: List[jellyfish._openapi_client.models.track.Track]
+ tracks: List[fishjam._openapi_client.models.track.Track]
@@ -4275,7 +4275,7 @@
Inherited Members
- ComponentOptionsSIP( registrar_credentials: jellyfish._openapi_client.models.component_options_sipsip_credentials.ComponentOptionsSIPSIPCredentials)
+ ComponentOptionsSIP( registrar_credentials: fishjam._openapi_client.models.component_options_sipsip_credentials.ComponentOptionsSIPSIPCredentials)
@@ -4294,7 +4294,7 @@
Inherited Members
- registrar_credentials: jellyfish._openapi_client.models.component_options_sipsip_credentials.ComponentOptionsSIPSIPCredentials
+ registrar_credentials: fishjam._openapi_client.models.component_options_sipsip_credentials.ComponentOptionsSIPSIPCredentials
@@ -4680,7 +4680,7 @@
Inherited Members
-
ComponentFile( id: str, tracks: List[jellyfish._openapi_client.models.track.Track], type: str, properties: Union[jellyfish._openapi_client.types.Unset, ComponentPropertiesFile] = <jellyfish._openapi_client.types.Unset object>)
+
ComponentFile( id: str, tracks: List[fishjam._openapi_client.models.track.Track], type: str, properties: Union[fishjam._openapi_client.types.Unset, ComponentPropertiesFile] = <fishjam._openapi_client.types.Unset object>)
@@ -4715,7 +4715,7 @@
Inherited Members
- tracks: List[jellyfish._openapi_client.models.track.Track]
+ tracks: List[fishjam._openapi_client.models.track.Track]
@@ -4741,7 +4741,7 @@
Inherited Members
@@ -4862,7 +4862,7 @@
Inherited Members
-
ComponentRTSP( id: str, properties: ComponentPropertiesRTSP, tracks: List[jellyfish._openapi_client.models.track.Track], type: str)
+
ComponentRTSP( id: str, properties: ComponentPropertiesRTSP, tracks: List[fishjam._openapi_client.models.track.Track], type: str)
@@ -4910,7 +4910,7 @@
Inherited Members
- tracks: List[jellyfish._openapi_client.models.track.Track]
+ tracks: List[fishjam._openapi_client.models.track.Track]
@@ -5041,7 +5041,7 @@
Inherited Members
- ComponentOptionsRTSP( source_uri: str, keep_alive_interval: Union[jellyfish._openapi_client.types.Unset, int] = 15000, pierce_nat: Union[jellyfish._openapi_client.types.Unset, bool] = True, reconnect_delay: Union[jellyfish._openapi_client.types.Unset, int] = 15000, rtp_port: Union[jellyfish._openapi_client.types.Unset, int] = 20000)
+ ComponentOptionsRTSP( source_uri: str, keep_alive_interval: Union[fishjam._openapi_client.types.Unset, int] = 15000, pierce_nat: Union[fishjam._openapi_client.types.Unset, bool] = True, reconnect_delay: Union[fishjam._openapi_client.types.Unset, int] = 15000, rtp_port: Union[fishjam._openapi_client.types.Unset, int] = 20000)
@@ -5077,7 +5077,7 @@
Inherited Members
- keep_alive_interval: Union[jellyfish._openapi_client.types.Unset, int]
+ keep_alive_interval: Union[fishjam._openapi_client.types.Unset, int]
@@ -5090,7 +5090,7 @@
Inherited Members
- pierce_nat: Union[jellyfish._openapi_client.types.Unset, bool]
+ pierce_nat: Union[fishjam._openapi_client.types.Unset, bool]
@@ -5103,7 +5103,7 @@
Inherited Members
- reconnect_delay: Union[jellyfish._openapi_client.types.Unset, int]
+ reconnect_delay: Union[fishjam._openapi_client.types.Unset, int]
@@ -5116,7 +5116,7 @@
Inherited Members
- rtp_port: Union[jellyfish._openapi_client.types.Unset, int]
+ rtp_port: Union[fishjam._openapi_client.types.Unset, int]
@@ -5399,7 +5399,7 @@
Inherited Members
- ComponentOptionsFile( file_path: str, framerate: Union[jellyfish._openapi_client.types.Unset, NoneType, int] = <jellyfish._openapi_client.types.Unset object>)
+ ComponentOptionsFile( file_path: str, framerate: Union[fishjam._openapi_client.types.Unset, NoneType, int] = <fishjam._openapi_client.types.Unset object>)
@@ -5432,7 +5432,7 @@
Inherited Members
- framerate: Union[jellyfish._openapi_client.types.Unset, NoneType, int]
+ framerate: Union[fishjam._openapi_client.types.Unset, NoneType, int]
@@ -5826,7 +5826,7 @@
Inherited Members
-
ComponentRecording( id: str, properties: ComponentPropertiesRecording, tracks: List[jellyfish._openapi_client.models.track.Track], type: str)
+
ComponentRecording( id: str, properties: ComponentPropertiesRecording, tracks: List[fishjam._openapi_client.models.track.Track], type: str)
@@ -5874,7 +5874,7 @@
Inherited Members
- tracks: List[jellyfish._openapi_client.models.track.Track]
+ tracks: List[fishjam._openapi_client.models.track.Track]
@@ -6008,7 +6008,7 @@
Inherited Members
-
ComponentOptionsRecording( credentials: Union[jellyfish._openapi_client.types.Unset, NoneType, S3Credentials] = <jellyfish._openapi_client.types.Unset object>, path_prefix: Union[jellyfish._openapi_client.types.Unset, NoneType, str] = <jellyfish._openapi_client.types.Unset object>, subscribe_mode: Union[jellyfish._openapi_client.types.Unset, ComponentOptionsRecordingSubscribeMode] = <ComponentOptionsRecordingSubscribeMode.AUTO: 'auto'>)
+
ComponentOptionsRecording( credentials: Union[fishjam._openapi_client.types.Unset, NoneType, S3Credentials] = <fishjam._openapi_client.types.Unset object>, path_prefix: Union[fishjam._openapi_client.types.Unset, NoneType, str] = <fishjam._openapi_client.types.Unset object>, subscribe_mode: Union[fishjam._openapi_client.types.Unset, ComponentOptionsRecordingSubscribeMode] = <ComponentOptionsRecordingSubscribeMode.AUTO: 'auto'>)
@@ -6029,7 +6029,7 @@
Inherited Members
-
credentials: Union[jellyfish._openapi_client.types.Unset, NoneType, S3Credentials]
+
credentials: Union[fishjam._openapi_client.types.Unset, NoneType, S3Credentials]
@@ -6042,7 +6042,7 @@
Inherited Members
- path_prefix: Union[jellyfish._openapi_client.types.Unset, NoneType, str]
+ path_prefix: Union[fishjam._openapi_client.types.Unset, NoneType, str]
@@ -6055,7 +6055,7 @@
Inherited Members
diff --git a/latest/api/jellyfish/errors.html b/latest/api/fishjam/errors.html
similarity index 99%
rename from latest/api/jellyfish/errors.html
rename to latest/api/fishjam/errors.html
index 6dcc584..43ef5ed 100644
--- a/latest/api/jellyfish/errors.html
+++ b/latest/api/fishjam/errors.html
@@ -8,7 +8,7 @@
-
Errors - Jellyfish Python Server SDK
+
Errors - Fishjam Python Server SDK
@@ -22,7 +22,7 @@