livekit-api 1.0.1__tar.gz → 1.0.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-1.0.1 → livekit_api-1.0.2}/PKG-INFO +1 -1
  2. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit/api/sip_service.py +9 -7
  3. livekit_api-1.0.2/livekit/api/version.py +1 -0
  4. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit_api.egg-info/PKG-INFO +1 -1
  5. livekit_api-1.0.1/livekit/api/version.py +0 -1
  6. {livekit_api-1.0.1 → livekit_api-1.0.2}/README.md +0 -0
  7. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit/api/__init__.py +0 -0
  8. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit/api/_service.py +0 -0
  9. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit/api/access_token.py +0 -0
  10. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit/api/agent_dispatch_service.py +0 -0
  11. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit/api/egress_service.py +0 -0
  12. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit/api/ingress_service.py +0 -0
  13. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit/api/livekit_api.py +0 -0
  14. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit/api/py.typed +0 -0
  15. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit/api/room_service.py +0 -0
  16. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit/api/twirp_client.py +0 -0
  17. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit/api/webhook.py +0 -0
  18. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit_api.egg-info/SOURCES.txt +0 -0
  19. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit_api.egg-info/dependency_links.txt +0 -0
  20. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit_api.egg-info/requires.txt +0 -0
  21. {livekit_api-1.0.1 → livekit_api-1.0.2}/livekit_api.egg-info/top_level.txt +0 -0
  22. {livekit_api-1.0.1 → livekit_api-1.0.2}/pyproject.toml +0 -0
  23. {livekit_api-1.0.1 → livekit_api-1.0.2}/setup.cfg +0 -0
  24. {livekit_api-1.0.1 → livekit_api-1.0.2}/setup.py +0 -0
  25. {livekit_api-1.0.1 → livekit_api-1.0.2}/tests/test_access_token.py +0 -0
  26. {livekit_api-1.0.1 → livekit_api-1.0.2}/tests/test_webhook.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: livekit-api
3
- Version: 1.0.1
3
+ Version: 1.0.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
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  import aiohttp
2
4
  from typing import Optional
3
5
 
@@ -184,13 +186,13 @@ class SipService(Service):
184
186
  self,
185
187
  trunk_id: str,
186
188
  *,
187
- address: Optional[str] = None,
188
- transport: Optional[SIPTransport] = None,
189
- numbers: Optional[list[str]] = None,
190
- auth_username: Optional[str] = None,
191
- auth_password: Optional[str] = None,
192
- name: Optional[str] = None,
193
- metadata: Optional[str] = None,
189
+ address: str | None = None,
190
+ transport: SIPTransport | None = None,
191
+ numbers: list[str] | None = None,
192
+ auth_username: str | None = None,
193
+ auth_password: str | None = None,
194
+ name: str | None = None,
195
+ metadata: str | None = None,
194
196
  ) -> SIPOutboundTrunkInfo:
195
197
  """Updates specific fields of an existing SIP outbound trunk.
196
198
 
@@ -0,0 +1 @@
1
+ __version__ = "1.0.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: livekit-api
3
- Version: 1.0.1
3
+ Version: 1.0.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
@@ -1 +0,0 @@
1
- __version__ = "1.0.1"
File without changes
File without changes
File without changes
File without changes