@@ -37,6 +37,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed and issue with `DailyRESTHelper.create_room()` expirations which would
|
||||||
|
cause this function to stop working after the initial expiration elapsed.
|
||||||
|
|
||||||
- Improved `EndFrame` and `CancelFrame` handling. `EndFrame` should end things
|
- Improved `EndFrame` and `CancelFrame` handling. `EndFrame` should end things
|
||||||
gracefully while a `CancelFrame` should cancel all running tasks as soon as
|
gracefully while a `CancelFrame` should cancel all running tasks as soon as
|
||||||
possible.
|
possible.
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ class DailyRoomProperties(BaseModel, extra="allow"):
|
|||||||
class DailyRoomParams(BaseModel):
|
class DailyRoomParams(BaseModel):
|
||||||
name: Optional[str] = None
|
name: Optional[str] = None
|
||||||
privacy: Literal['private', 'public'] = "public"
|
privacy: Literal['private', 'public'] = "public"
|
||||||
properties: DailyRoomProperties = DailyRoomProperties()
|
properties: DailyRoomProperties = Field(default_factory=DailyRoomProperties)
|
||||||
|
|
||||||
|
|
||||||
class DailyRoomObject(BaseModel):
|
class DailyRoomObject(BaseModel):
|
||||||
|
|||||||
Reference in New Issue
Block a user