livekit-api 0.8.1__tar.gz → 0.8.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {livekit_api-0.8.1 → livekit_api-0.8.2}/PKG-INFO +13 -3
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/room_service.py +3 -0
- livekit_api-0.8.2/livekit/api/version.py +1 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit_api.egg-info/PKG-INFO +13 -3
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit_api.egg-info/requires.txt +1 -1
- {livekit_api-0.8.1 → livekit_api-0.8.2}/setup.py +1 -1
- livekit_api-0.8.1/livekit/api/version.py +0 -1
- {livekit_api-0.8.1 → livekit_api-0.8.2}/README.md +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/__init__.py +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/_service.py +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/access_token.py +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/agent_dispatch_service.py +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/egress_service.py +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/ingress_service.py +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/livekit_api.py +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/py.typed +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/sip_service.py +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/twirp_client.py +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/webhook.py +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit_api.egg-info/SOURCES.txt +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit_api.egg-info/dependency_links.txt +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit_api.egg-info/top_level.txt +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/pyproject.toml +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/setup.cfg +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/tests/test_access_token.py +0 -0
- {livekit_api-0.8.1 → livekit_api-0.8.2}/tests/test_webhook.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: livekit-api
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.2
|
|
4
4
|
Summary: Python Server API for LiveKit
|
|
5
5
|
Home-page: https://github.com/livekit/python-sdks
|
|
6
6
|
License: Apache-2.0
|
|
@@ -25,7 +25,17 @@ Requires-Dist: pyjwt>=2.0.0
|
|
|
25
25
|
Requires-Dist: aiohttp>=3.9.0
|
|
26
26
|
Requires-Dist: protobuf>=3
|
|
27
27
|
Requires-Dist: types-protobuf<5,>=4
|
|
28
|
-
Requires-Dist: livekit-protocol<2,>=0.8.
|
|
28
|
+
Requires-Dist: livekit-protocol<2,>=0.8.2
|
|
29
|
+
Dynamic: classifier
|
|
30
|
+
Dynamic: description
|
|
31
|
+
Dynamic: description-content-type
|
|
32
|
+
Dynamic: home-page
|
|
33
|
+
Dynamic: keywords
|
|
34
|
+
Dynamic: license
|
|
35
|
+
Dynamic: project-url
|
|
36
|
+
Dynamic: requires-dist
|
|
37
|
+
Dynamic: requires-python
|
|
38
|
+
Dynamic: summary
|
|
29
39
|
|
|
30
40
|
# LiveKit Server APIs
|
|
31
41
|
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import aiohttp
|
|
2
|
+
from uuid import uuid4
|
|
2
3
|
from livekit.protocol.room import (
|
|
3
4
|
CreateRoomRequest,
|
|
4
5
|
ListRoomsRequest,
|
|
@@ -288,6 +289,8 @@ class RoomService(Service):
|
|
|
288
289
|
Returns:
|
|
289
290
|
SendDataResponse: Empty response object
|
|
290
291
|
"""
|
|
292
|
+
|
|
293
|
+
send.nonce = uuid4().bytes
|
|
291
294
|
return await self._client.request(
|
|
292
295
|
SVC,
|
|
293
296
|
"SendData",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.8.2"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: livekit-api
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.2
|
|
4
4
|
Summary: Python Server API for LiveKit
|
|
5
5
|
Home-page: https://github.com/livekit/python-sdks
|
|
6
6
|
License: Apache-2.0
|
|
@@ -25,7 +25,17 @@ Requires-Dist: pyjwt>=2.0.0
|
|
|
25
25
|
Requires-Dist: aiohttp>=3.9.0
|
|
26
26
|
Requires-Dist: protobuf>=3
|
|
27
27
|
Requires-Dist: types-protobuf<5,>=4
|
|
28
|
-
Requires-Dist: livekit-protocol<2,>=0.8.
|
|
28
|
+
Requires-Dist: livekit-protocol<2,>=0.8.2
|
|
29
|
+
Dynamic: classifier
|
|
30
|
+
Dynamic: description
|
|
31
|
+
Dynamic: description-content-type
|
|
32
|
+
Dynamic: home-page
|
|
33
|
+
Dynamic: keywords
|
|
34
|
+
Dynamic: license
|
|
35
|
+
Dynamic: project-url
|
|
36
|
+
Dynamic: requires-dist
|
|
37
|
+
Dynamic: requires-python
|
|
38
|
+
Dynamic: summary
|
|
29
39
|
|
|
30
40
|
# LiveKit Server APIs
|
|
31
41
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.8.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|