livekit-api 0.4.2__tar.gz → 0.4.3__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.4.2 → livekit-api-0.4.3}/PKG-INFO +1 -1
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit/api/__init__.py +6 -7
- livekit-api-0.4.3/livekit/api/py.typed +0 -0
- livekit-api-0.4.3/livekit/api/version.py +1 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit_api.egg-info/PKG-INFO +1 -1
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit_api.egg-info/SOURCES.txt +1 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/setup.py +3 -2
- {livekit-api-0.4.2 → livekit-api-0.4.3}/tests/test_access_token.py +2 -1
- {livekit-api-0.4.2 → livekit-api-0.4.3}/tests/test_webhook.py +4 -3
- livekit-api-0.4.2/livekit/api/version.py +0 -1
- {livekit-api-0.4.2 → livekit-api-0.4.3}/README.md +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit/api/_service.py +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit/api/access_token.py +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit/api/egress_service.py +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit/api/ingress_service.py +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit/api/livekit_api.py +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit/api/room_service.py +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit/api/twirp_client.py +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit/api/webhook.py +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit_api.egg-info/dependency_links.txt +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit_api.egg-info/requires.txt +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/livekit_api.egg-info/top_level.txt +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/pyproject.toml +0 -0
- {livekit-api-0.4.2 → livekit-api-0.4.3}/setup.cfg +0 -0
|
@@ -12,16 +12,15 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
-
"""LiveKit API SDK
|
|
16
|
-
"""
|
|
15
|
+
"""LiveKit API SDK"""
|
|
17
16
|
|
|
18
17
|
# flake8: noqa
|
|
19
18
|
# re-export packages from protocol
|
|
20
|
-
from livekit.protocol.egress import *
|
|
21
|
-
from livekit.protocol.ingress import *
|
|
22
|
-
from livekit.protocol.models import *
|
|
23
|
-
from livekit.protocol.room import *
|
|
24
|
-
from livekit.protocol.webhook import *
|
|
19
|
+
from livekit.protocol.egress import *
|
|
20
|
+
from livekit.protocol.ingress import *
|
|
21
|
+
from livekit.protocol.models import *
|
|
22
|
+
from livekit.protocol.room import *
|
|
23
|
+
from livekit.protocol.webhook import *
|
|
25
24
|
|
|
26
25
|
from .twirp_client import TwirpError, TwirpErrorCode
|
|
27
26
|
from .livekit_api import LiveKitAPI
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.4.3"
|
|
@@ -14,11 +14,12 @@
|
|
|
14
14
|
|
|
15
15
|
import os
|
|
16
16
|
import pathlib
|
|
17
|
+
from typing import Any, Dict
|
|
17
18
|
|
|
18
|
-
import setuptools
|
|
19
|
+
import setuptools # type: ignore
|
|
19
20
|
|
|
20
21
|
here = pathlib.Path(__file__).parent.resolve()
|
|
21
|
-
about = {}
|
|
22
|
+
about: Dict[Any, Any] = {}
|
|
22
23
|
with open(os.path.join(here, "livekit", "api", "version.py"), "r") as f:
|
|
23
24
|
exec(f.read(), about)
|
|
24
25
|
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import pytest
|
|
2
|
-
from livekit.api import WebhookReceiver, TokenVerifier, AccessToken
|
|
3
|
-
import hashlib
|
|
4
1
|
import base64
|
|
2
|
+
import hashlib
|
|
3
|
+
|
|
4
|
+
import pytest # type: ignore
|
|
5
|
+
from livekit.api import AccessToken, TokenVerifier, WebhookReceiver
|
|
5
6
|
|
|
6
7
|
TEST_API_KEY = "myapikey"
|
|
7
8
|
TEST_API_SECRET = "thiskeyistotallyunsafe"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.4.2"
|
|
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
|