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.
Files changed (26) hide show
  1. {livekit_api-0.8.1 → livekit_api-0.8.2}/PKG-INFO +13 -3
  2. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/room_service.py +3 -0
  3. livekit_api-0.8.2/livekit/api/version.py +1 -0
  4. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit_api.egg-info/PKG-INFO +13 -3
  5. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit_api.egg-info/requires.txt +1 -1
  6. {livekit_api-0.8.1 → livekit_api-0.8.2}/setup.py +1 -1
  7. livekit_api-0.8.1/livekit/api/version.py +0 -1
  8. {livekit_api-0.8.1 → livekit_api-0.8.2}/README.md +0 -0
  9. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/__init__.py +0 -0
  10. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/_service.py +0 -0
  11. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/access_token.py +0 -0
  12. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/agent_dispatch_service.py +0 -0
  13. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/egress_service.py +0 -0
  14. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/ingress_service.py +0 -0
  15. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/livekit_api.py +0 -0
  16. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/py.typed +0 -0
  17. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/sip_service.py +0 -0
  18. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/twirp_client.py +0 -0
  19. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit/api/webhook.py +0 -0
  20. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit_api.egg-info/SOURCES.txt +0 -0
  21. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit_api.egg-info/dependency_links.txt +0 -0
  22. {livekit_api-0.8.1 → livekit_api-0.8.2}/livekit_api.egg-info/top_level.txt +0 -0
  23. {livekit_api-0.8.1 → livekit_api-0.8.2}/pyproject.toml +0 -0
  24. {livekit_api-0.8.1 → livekit_api-0.8.2}/setup.cfg +0 -0
  25. {livekit_api-0.8.1 → livekit_api-0.8.2}/tests/test_access_token.py +0 -0
  26. {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
1
+ Metadata-Version: 2.2
2
2
  Name: livekit-api
3
- Version: 0.8.1
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.0
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
1
+ Metadata-Version: 2.2
2
2
  Name: livekit-api
3
- Version: 0.8.1
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.0
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
 
@@ -2,4 +2,4 @@ pyjwt>=2.0.0
2
2
  aiohttp>=3.9.0
3
3
  protobuf>=3
4
4
  types-protobuf<5,>=4
5
- livekit-protocol<2,>=0.8.0
5
+ livekit-protocol<2,>=0.8.2
@@ -53,7 +53,7 @@ setuptools.setup(
53
53
  "aiohttp>=3.9.0",
54
54
  "protobuf>=3",
55
55
  "types-protobuf>=4,<5",
56
- "livekit-protocol>=0.8.0,<2",
56
+ "livekit-protocol>=0.8.2,<2",
57
57
  ],
58
58
  package_data={
59
59
  "livekit.api": ["py.typed", "*.pyi", "**/*.pyi"],
@@ -1 +0,0 @@
1
- __version__ = "0.8.1"
File without changes
File without changes
File without changes