stream-chat-react 13.13.2 → 13.13.3

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.
package/README.md CHANGED
@@ -117,3 +117,7 @@ The library source code is dynamically imported and used only if audio recording
117
117
 
118
118
  You can obtain the source code for `lamejs` from the [lamejs repository](https://github.com/gideonstele/lamejs) that is a fork of [the original JS library](https://github.com/zhuker/lamejs).
119
119
  You can find the source code for LAME at https://lame.sourceforge.net and its license at: https://lame.sourceforge.net/license.txt
120
+
121
+ Using AI assistants (Cursor/Codex/Copilot):
122
+ See [AI.md](./AI.md) for integration guide, rules and common pitfalls.
123
+ See [AGENTS.md](./AGENTS.md) about repository and project structure, contribution guides.
@@ -24,7 +24,7 @@ export const useChat = ({ client, defaultLanguage = 'en', i18nInstance, initialN
24
24
  useEffect(() => {
25
25
  if (!client)
26
26
  return;
27
- const version = "13.13.2";
27
+ const version = "13.13.3";
28
28
  const userAgent = client.getUserAgent();
29
29
  if (!userAgent.includes('stream-chat-react')) {
30
30
  // result looks like: 'stream-chat-react-2.3.2-stream-chat-javascript-client-browser-2.2.2'
@@ -37399,7 +37399,7 @@ var useChat = ({
37399
37399
  };
37400
37400
  (0, import_react289.useEffect)(() => {
37401
37401
  if (!client) return;
37402
- const version = "13.13.2";
37402
+ const version = "13.13.3";
37403
37403
  const userAgent = client.getUserAgent();
37404
37404
  if (!userAgent.includes("stream-chat-react")) {
37405
37405
  client.setUserAgent(`stream-chat-react-${version}-${userAgent}`);
@@ -39269,7 +39269,7 @@ var useChat = ({
39269
39269
  };
39270
39270
  (0, import_react289.useEffect)(() => {
39271
39271
  if (!client) return;
39272
- const version = "13.13.2";
39272
+ const version = "13.13.3";
39273
39273
  const userAgent = client.getUserAgent();
39274
39274
  if (!userAgent.includes("stream-chat-react")) {
39275
39275
  client.setUserAgent(`stream-chat-react-${version}-${userAgent}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stream-chat-react",
3
- "version": "13.13.2",
3
+ "version": "13.13.3",
4
4
  "description": "React components to create chat conversations or livestream style chat",
5
5
  "author": "GetStream",
6
6
  "homepage": "https://getstream.io/chat/",
@@ -160,7 +160,7 @@
160
160
  "dist",
161
161
  "package.json",
162
162
  "README.md",
163
- "INTEGRATION_GUIDE.md"
163
+ "AI.md"
164
164
  ],
165
165
  "devDependencies": {
166
166
  "@axe-core/react": "^4.3.2",
File without changes