stream-chat 4.18.0__tar.gz → 4.19.0__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.
- {stream-chat-4.18.0/stream_chat.egg-info → stream-chat-4.19.0}/PKG-INFO +2 -2
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/__pkg__.py +1 -1
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/base/client.py +5 -1
- {stream-chat-4.18.0 → stream-chat-4.19.0/stream_chat.egg-info}/PKG-INFO +2 -2
- {stream-chat-4.18.0 → stream-chat-4.19.0}/LICENSE +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/MANIFEST.in +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/README.md +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/pyproject.toml +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/setup.cfg +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/setup.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/__init__.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/async_chat/__init__.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/async_chat/campaign.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/async_chat/channel.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/async_chat/client.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/async_chat/segment.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/base/__init__.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/base/campaign.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/base/channel.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/base/exceptions.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/base/segment.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/campaign.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/channel.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/client.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/py.typed +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/segment.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/types/__init__.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/types/base.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/types/campaign.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/types/rate_limit.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/types/segment.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat/types/stream_response.py +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat.egg-info/SOURCES.txt +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat.egg-info/dependency_links.txt +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat.egg-info/not-zip-safe +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat.egg-info/requires.txt +0 -0
- {stream-chat-4.18.0 → stream-chat-4.19.0}/stream_chat.egg-info/top_level.txt +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: stream-chat
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.19.0
|
|
4
4
|
Summary: Client for Stream Chat.
|
|
5
5
|
Home-page: https://github.com/GetStream/stream-chat-python
|
|
6
6
|
Author: Tommaso Barbugli
|
|
7
7
|
Author-email: support@getstream.io
|
|
8
8
|
Project-URL: Bug Tracker, https://github.com/GetStream/stream-chat-python/issues
|
|
9
9
|
Project-URL: Documentation, https://getstream.io/activity-feeds/docs/python/?language=python
|
|
10
|
-
Project-URL: Release Notes, https://github.com/GetStream/stream-chat-python/releases/tag/v4.
|
|
10
|
+
Project-URL: Release Notes, https://github.com/GetStream/stream-chat-python/releases/tag/v4.19.0
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: Intended Audience :: System Administrators
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
@@ -73,7 +73,11 @@ class StreamChatInterface(abc.ABC):
|
|
|
73
73
|
return sort_fields
|
|
74
74
|
|
|
75
75
|
def create_token(
|
|
76
|
-
self,
|
|
76
|
+
self,
|
|
77
|
+
user_id: str,
|
|
78
|
+
exp: Optional[int] = None,
|
|
79
|
+
iat: Optional[int] = None,
|
|
80
|
+
**claims: Any,
|
|
77
81
|
) -> str:
|
|
78
82
|
"""
|
|
79
83
|
Creates a JWT for a user.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: stream-chat
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.19.0
|
|
4
4
|
Summary: Client for Stream Chat.
|
|
5
5
|
Home-page: https://github.com/GetStream/stream-chat-python
|
|
6
6
|
Author: Tommaso Barbugli
|
|
7
7
|
Author-email: support@getstream.io
|
|
8
8
|
Project-URL: Bug Tracker, https://github.com/GetStream/stream-chat-python/issues
|
|
9
9
|
Project-URL: Documentation, https://getstream.io/activity-feeds/docs/python/?language=python
|
|
10
|
-
Project-URL: Release Notes, https://github.com/GetStream/stream-chat-python/releases/tag/v4.
|
|
10
|
+
Project-URL: Release Notes, https://github.com/GetStream/stream-chat-python/releases/tag/v4.19.0
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: Intended Audience :: System Administrators
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
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
|
|
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
|