Skip to content

Commit 5388852

Browse files
authored
Merge pull request #2803 from GetStream/develop
Next Release
2 parents cd6ba01 + 376ac7d commit 5388852

File tree

13 files changed

+113
-91
lines changed

13 files changed

+113
-91
lines changed

examples/ExpoMessaging/types.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@ export type LocalEventType = Record<string, unknown>;
55
export type LocalMessageType = Record<string, unknown>;
66
export type LocalReactionType = Record<string, unknown>;
77
export type LocalUserType = Record<string, unknown>;
8-
type LocalPollOptionType = Record<string, unknown>;
9-
type LocalPollType = Record<string, unknown>;
8+
export type LocalPollOptionType = Record<string, unknown>;
9+
export type LocalPollType = Record<string, unknown>;
10+
export type LocalMemberType = Record<string, unknown>;
1011

1112
export type StreamChatGenerics = {
1213
attachmentType: LocalAttachmentType;
1314
channelType: LocalChannelType;
1415
commandType: LocalCommandType;
1516
eventType: LocalEventType;
17+
memberType: LocalMemberType;
1618
messageType: LocalMessageType;
1719
pollOptionType: LocalPollOptionType;
1820
pollType: LocalPollType;

examples/ExpoMessaging/yarn.lock

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7310,10 +7310,10 @@ [email protected], stream-buffers@~2.2.0:
73107310
version "0.0.0"
73117311
uid ""
73127312

7313-
stream-chat-react-native-core@5.41.0:
7314-
version "5.41.0"
7315-
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-5.41.0.tgz#defaeee932459c6357147c553167adee8d34493d"
7316-
integrity sha512-x46BYWWfRaRw3FbLLzCoJP636jHQrX+my9DG680t9p8wNWKX59imnqX9LjZVcOYo45vpJ8T5Zjs0kYXbDgppTQ==
7313+
stream-chat-react-native-core@5.42.2:
7314+
version "5.42.2"
7315+
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-5.42.2.tgz#edb92b490d4beb894ba549c7deefc770f501360c"
7316+
integrity sha512-eA2fK3eYdhr2RSbB22s1ha29y4EPbj9yPAskWxGo1aJK+KXwXDlAYqGtJa/8saRSSU4DdV89yG5ihvTFgP+Huw==
73177317
dependencies:
73187318
"@gorhom/bottom-sheet" "^4.6.4"
73197319
dayjs "1.10.5"
@@ -7326,16 +7326,31 @@ [email protected]:
73267326
path "0.12.7"
73277327
react-native-markdown-package "1.8.2"
73287328
react-native-url-polyfill "^1.3.0"
7329-
stream-chat "8.42.0"
7329+
stream-chat "8.44.0"
73307330

73317331
"stream-chat-react-native-core@link:../../package":
73327332
version "0.0.0"
73337333
uid ""
73347334

7335-
7336-
version "8.42.0"
7337-
resolved "https://registry.yarnpkg.com/stream-chat/-/stream-chat-8.42.0.tgz#124ea2c10c6e8f7990304e1101c66751daf63e6c"
7338-
integrity sha512-8xZz+fmdHSOa3L1rHUOC4Wah+ipvLvdiOmeOfGK6uXnLOKlSHMOblwmQErrOoFM4SKfX9Bea3V8viaKUu6bPng==
7335+
7336+
version "8.44.0"
7337+
resolved "https://registry.yarnpkg.com/stream-chat/-/stream-chat-8.44.0.tgz#e48446cf91db786e80a2e7358ac4f1601e5e97f0"
7338+
integrity sha512-7HNtimD8sT/51rsFibGcD6uBgKj+vlKyYCZMDzjYQEaEsrLqyAg48dOyNM4L2FTF5aXgo9SlxZr21SPleeA2BA==
7339+
dependencies:
7340+
"@babel/runtime" "^7.16.3"
7341+
"@types/jsonwebtoken" "~9.0.0"
7342+
"@types/ws" "^7.4.0"
7343+
axios "^1.6.0"
7344+
base64-js "^1.5.1"
7345+
form-data "^4.0.0"
7346+
isomorphic-ws "^4.0.1"
7347+
jsonwebtoken "~9.0.0"
7348+
ws "^7.5.10"
7349+
7350+
7351+
version "8.45.1"
7352+
resolved "https://registry.yarnpkg.com/stream-chat/-/stream-chat-8.45.1.tgz#001f452520602ebffe45f1634b5f5dd1ff036ec5"
7353+
integrity sha512-7OMpL2RHUd+PXSWzhTUAIjjXlI9Oqc4HhUBRfc5i6dK+Ug9S5ertb7RvyzGL5N4ITpq/6ZUAwXtTqRaN9+UUkw==
73397354
dependencies:
73407355
"@babel/runtime" "^7.16.3"
73417356
"@types/jsonwebtoken" "~9.0.0"

examples/SampleApp/src/components/NewDirectMessagingSendButton.tsx

Lines changed: 15 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -4,49 +4,30 @@ import { TouchableOpacity } from 'react-native-gesture-handler';
44
import { useNavigation } from '@react-navigation/core';
55

66
import {
7-
DefaultAttachmentType,
8-
DefaultChannelType,
9-
DefaultCommandType,
10-
DefaultEventType,
11-
DefaultMessageType,
12-
DefaultReactionType,
13-
DefaultUserType,
7+
DefaultStreamChatGenerics,
148
MessageInputContextValue,
159
Search,
1610
SendRight,
1711
SendUp,
18-
UnknownType,
1912
useChannelContext,
2013
useMessageInputContext,
2114
useTheme,
2215
} from 'stream-chat-react-native';
2316

2417
import { NewDirectMessagingScreenNavigationProp } from '../screens/NewDirectMessagingScreen';
2518

26-
import { StreamChatGenerics } from '../types';
19+
import { StreamChatGenerics as LocalStreamChatGenerics } from '../types';
2720

2821
type NewDirectMessagingSendButtonPropsWithContext<
29-
At extends UnknownType = DefaultAttachmentType,
30-
Ch extends UnknownType = DefaultChannelType,
31-
Co extends string = DefaultCommandType,
32-
Ev extends UnknownType = DefaultEventType,
33-
Me extends UnknownType = DefaultMessageType,
34-
Re extends UnknownType = DefaultReactionType,
35-
Us extends UnknownType = DefaultUserType,
36-
> = Pick<MessageInputContextValue<At, Ch, Co, Ev, Me, Re, Us>, 'giphyActive' | 'sendMessage'> & {
22+
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
23+
> = Pick<MessageInputContextValue<StreamChatGenerics>, 'giphyActive' | 'sendMessage'> & {
3724
/** Disables the button */ disabled: boolean;
3825
};
3926

4027
const SendButtonWithContext = <
41-
At extends UnknownType = DefaultAttachmentType,
42-
Ch extends UnknownType = DefaultChannelType,
43-
Co extends string = DefaultCommandType,
44-
Ev extends UnknownType = DefaultEventType,
45-
Me extends UnknownType = DefaultMessageType,
46-
Re extends UnknownType = DefaultReactionType,
47-
Us extends UnknownType = DefaultUserType,
28+
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
4829
>(
49-
props: NewDirectMessagingSendButtonPropsWithContext<At, Ch, Co, Ev, Me, Re, Us>,
30+
props: NewDirectMessagingSendButtonPropsWithContext<StreamChatGenerics>,
5031
) => {
5132
const { disabled = false, giphyActive, sendMessage } = props;
5233
const {
@@ -70,17 +51,9 @@ const SendButtonWithContext = <
7051
);
7152
};
7253

73-
const areEqual = <
74-
At extends UnknownType = DefaultAttachmentType,
75-
Ch extends UnknownType = DefaultChannelType,
76-
Co extends string = DefaultCommandType,
77-
Ev extends UnknownType = DefaultEventType,
78-
Me extends UnknownType = DefaultMessageType,
79-
Re extends UnknownType = DefaultReactionType,
80-
Us extends UnknownType = DefaultUserType,
81-
>(
82-
prevProps: NewDirectMessagingSendButtonPropsWithContext<At, Ch, Co, Ev, Me, Re, Us>,
83-
nextProps: NewDirectMessagingSendButtonPropsWithContext<At, Ch, Co, Ev, Me, Re, Us>,
54+
const areEqual = <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(
55+
prevProps: NewDirectMessagingSendButtonPropsWithContext<StreamChatGenerics>,
56+
nextProps: NewDirectMessagingSendButtonPropsWithContext<StreamChatGenerics>,
8457
) => {
8558
const {
8659
disabled: prevDisabled,
@@ -117,23 +90,17 @@ const MemoizedNewDirectMessagingSendButton = React.memo(
11790
) as typeof SendButtonWithContext;
11891

11992
export type SendButtonProps<
120-
At extends UnknownType = DefaultAttachmentType,
121-
Ch extends UnknownType = DefaultChannelType,
122-
Co extends string = DefaultCommandType,
123-
Ev extends UnknownType = DefaultEventType,
124-
Me extends UnknownType = DefaultMessageType,
125-
Re extends UnknownType = DefaultReactionType,
126-
Us extends UnknownType = DefaultUserType,
127-
> = Partial<NewDirectMessagingSendButtonPropsWithContext<At, Ch, Co, Ev, Me, Re, Us>>;
93+
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
94+
> = Partial<NewDirectMessagingSendButtonPropsWithContext<StreamChatGenerics>>;
12895

12996
/**
13097
* UI Component for send button in MessageInput component.
13198
*/
132-
export const NewDirectMessagingSendButton = (props: SendButtonProps<StreamChatGenerics>) => {
99+
export const NewDirectMessagingSendButton = (props: SendButtonProps<LocalStreamChatGenerics>) => {
133100
const navigation = useNavigation<NewDirectMessagingScreenNavigationProp>();
134-
const { channel } = useChannelContext<StreamChatGenerics>();
101+
const { channel } = useChannelContext<LocalStreamChatGenerics>();
135102

136-
const { giphyActive, text } = useMessageInputContext<StreamChatGenerics>();
103+
const { giphyActive, text } = useMessageInputContext<LocalStreamChatGenerics>();
137104

138105
const sendMessage = async () => {
139106
if (!channel) {
@@ -152,7 +119,7 @@ export const NewDirectMessagingSendButton = (props: SendButtonProps<StreamChatGe
152119
};
153120

154121
return (
155-
<MemoizedNewDirectMessagingSendButton<StreamChatGenerics>
122+
<MemoizedNewDirectMessagingSendButton<LocalStreamChatGenerics>
156123
{...{ giphyActive, sendMessage }}
157124
{...props}
158125
{...{ disabled: props.disabled || false }}

examples/SampleApp/src/types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@ export type LocalUserType = {
1717
};
1818
type LocalPollOptionType = Record<string, unknown>;
1919
type LocalPollType = Record<string, unknown>;
20+
type LocalMemberType = Record<string, unknown>;
2021

2122
export type StreamChatGenerics = {
2223
attachmentType: LocalAttachmentType;
2324
channelType: LocalChannelType;
2425
commandType: LocalCommandType;
2526
eventType: LocalEventType;
27+
memberType: LocalMemberType;
2628
messageType: LocalMessageType;
2729
pollOptionType: LocalPollOptionType;
2830
pollType: LocalPollType;

examples/SampleApp/yarn.lock

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6837,10 +6837,10 @@ statuses@~1.5.0:
68376837
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
68386838
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
68396839

6840-
stream-chat-react-native-core@5.41.0:
6841-
version "5.41.0"
6842-
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-5.41.0.tgz#defaeee932459c6357147c553167adee8d34493d"
6843-
integrity sha512-x46BYWWfRaRw3FbLLzCoJP636jHQrX+my9DG680t9p8wNWKX59imnqX9LjZVcOYo45vpJ8T5Zjs0kYXbDgppTQ==
6840+
stream-chat-react-native-core@5.42.2:
6841+
version "5.42.2"
6842+
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-5.42.2.tgz#edb92b490d4beb894ba549c7deefc770f501360c"
6843+
integrity sha512-eA2fK3eYdhr2RSbB22s1ha29y4EPbj9yPAskWxGo1aJK+KXwXDlAYqGtJa/8saRSSU4DdV89yG5ihvTFgP+Huw==
68446844
dependencies:
68456845
"@gorhom/bottom-sheet" "^4.6.4"
68466846
dayjs "1.10.5"
@@ -6853,7 +6853,7 @@ [email protected]:
68536853
path "0.12.7"
68546854
react-native-markdown-package "1.8.2"
68556855
react-native-url-polyfill "^1.3.0"
6856-
stream-chat "8.42.0"
6856+
stream-chat "8.44.0"
68576857

68586858
"stream-chat-react-native-core@link:../../package":
68596859
version "0.0.0"
@@ -6863,10 +6863,25 @@ [email protected]:
68636863
version "0.0.0"
68646864
uid ""
68656865

6866-
6867-
version "8.42.0"
6868-
resolved "https://registry.yarnpkg.com/stream-chat/-/stream-chat-8.42.0.tgz#124ea2c10c6e8f7990304e1101c66751daf63e6c"
6869-
integrity sha512-8xZz+fmdHSOa3L1rHUOC4Wah+ipvLvdiOmeOfGK6uXnLOKlSHMOblwmQErrOoFM4SKfX9Bea3V8viaKUu6bPng==
6866+
6867+
version "8.44.0"
6868+
resolved "https://registry.yarnpkg.com/stream-chat/-/stream-chat-8.44.0.tgz#e48446cf91db786e80a2e7358ac4f1601e5e97f0"
6869+
integrity sha512-7HNtimD8sT/51rsFibGcD6uBgKj+vlKyYCZMDzjYQEaEsrLqyAg48dOyNM4L2FTF5aXgo9SlxZr21SPleeA2BA==
6870+
dependencies:
6871+
"@babel/runtime" "^7.16.3"
6872+
"@types/jsonwebtoken" "~9.0.0"
6873+
"@types/ws" "^7.4.0"
6874+
axios "^1.6.0"
6875+
base64-js "^1.5.1"
6876+
form-data "^4.0.0"
6877+
isomorphic-ws "^4.0.1"
6878+
jsonwebtoken "~9.0.0"
6879+
ws "^7.5.10"
6880+
6881+
6882+
version "8.45.1"
6883+
resolved "https://registry.yarnpkg.com/stream-chat/-/stream-chat-8.45.1.tgz#001f452520602ebffe45f1634b5f5dd1ff036ec5"
6884+
integrity sha512-7OMpL2RHUd+PXSWzhTUAIjjXlI9Oqc4HhUBRfc5i6dK+Ug9S5ertb7RvyzGL5N4ITpq/6ZUAwXtTqRaN9+UUkw==
68706885
dependencies:
68716886
"@babel/runtime" "^7.16.3"
68726887
"@types/jsonwebtoken" "~9.0.0"

examples/TypeScriptMessaging/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,14 @@ type LocalReactionType = Record<string, unknown>;
3838
type LocalUserType = Record<string, unknown>;
3939
type LocalPollOptionType = Record<string, unknown>;
4040
type LocalPollType = Record<string, unknown>;
41+
type LocalMemberType = Record<string, unknown>;
4142

4243
type StreamChatGenerics = {
4344
attachmentType: LocalAttachmentType;
4445
channelType: LocalChannelType;
4546
commandType: LocalCommandType;
4647
eventType: LocalEventType;
48+
memberType: LocalMemberType;
4749
messageType: LocalMessageType;
4850
pollOptionType: LocalPollOptionType;
4951
pollType: LocalPollType;

examples/TypeScriptMessaging/yarn.lock

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6899,10 +6899,10 @@ statuses@~1.5.0:
68996899
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
69006900
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
69016901

6902-
stream-chat-react-native-core@5.41.0:
6903-
version "5.41.0"
6904-
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-5.41.0.tgz#defaeee932459c6357147c553167adee8d34493d"
6905-
integrity sha512-x46BYWWfRaRw3FbLLzCoJP636jHQrX+my9DG680t9p8wNWKX59imnqX9LjZVcOYo45vpJ8T5Zjs0kYXbDgppTQ==
6902+
stream-chat-react-native-core@5.42.2:
6903+
version "5.42.2"
6904+
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-5.42.2.tgz#edb92b490d4beb894ba549c7deefc770f501360c"
6905+
integrity sha512-eA2fK3eYdhr2RSbB22s1ha29y4EPbj9yPAskWxGo1aJK+KXwXDlAYqGtJa/8saRSSU4DdV89yG5ihvTFgP+Huw==
69066906
dependencies:
69076907
"@gorhom/bottom-sheet" "^4.6.4"
69086908
dayjs "1.10.5"
@@ -6915,7 +6915,7 @@ [email protected]:
69156915
path "0.12.7"
69166916
react-native-markdown-package "1.8.2"
69176917
react-native-url-polyfill "^1.3.0"
6918-
stream-chat "8.42.0"
6918+
stream-chat "8.44.0"
69196919

69206920
"stream-chat-react-native-core@link:../../package":
69216921
version "0.0.0"
@@ -6930,10 +6930,25 @@ stream-chat-react-native-devtools@^1.1.0:
69306930
version "0.0.0"
69316931
uid ""
69326932

6933-
6934-
version "8.42.0"
6935-
resolved "https://registry.yarnpkg.com/stream-chat/-/stream-chat-8.42.0.tgz#124ea2c10c6e8f7990304e1101c66751daf63e6c"
6936-
integrity sha512-8xZz+fmdHSOa3L1rHUOC4Wah+ipvLvdiOmeOfGK6uXnLOKlSHMOblwmQErrOoFM4SKfX9Bea3V8viaKUu6bPng==
6933+
6934+
version "8.44.0"
6935+
resolved "https://registry.yarnpkg.com/stream-chat/-/stream-chat-8.44.0.tgz#e48446cf91db786e80a2e7358ac4f1601e5e97f0"
6936+
integrity sha512-7HNtimD8sT/51rsFibGcD6uBgKj+vlKyYCZMDzjYQEaEsrLqyAg48dOyNM4L2FTF5aXgo9SlxZr21SPleeA2BA==
6937+
dependencies:
6938+
"@babel/runtime" "^7.16.3"
6939+
"@types/jsonwebtoken" "~9.0.0"
6940+
"@types/ws" "^7.4.0"
6941+
axios "^1.6.0"
6942+
base64-js "^1.5.1"
6943+
form-data "^4.0.0"
6944+
isomorphic-ws "^4.0.1"
6945+
jsonwebtoken "~9.0.0"
6946+
ws "^7.5.10"
6947+
6948+
6949+
version "8.45.1"
6950+
resolved "https://registry.yarnpkg.com/stream-chat/-/stream-chat-8.45.1.tgz#001f452520602ebffe45f1634b5f5dd1ff036ec5"
6951+
integrity sha512-7OMpL2RHUd+PXSWzhTUAIjjXlI9Oqc4HhUBRfc5i6dK+Ug9S5ertb7RvyzGL5N4ITpq/6ZUAwXtTqRaN9+UUkw==
69376952
dependencies:
69386953
"@babel/runtime" "^7.16.3"
69396954
"@types/jsonwebtoken" "~9.0.0"

package/expo-package/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2929,10 +2929,10 @@ [email protected]:
29292929
resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4"
29302930
integrity sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==
29312931

2932-
2933-
version "5.42.1"
2934-
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-5.42.1.tgz#4e58ae50130b7ce47bfe13f76f970a6b1688eb97"
2935-
integrity sha512-GVFtsjup3pjx9yN1i5suGIG/I14dSmgY/7bOq0n3NXxrf5i3IiWTjogk4m9N51P94VzNHENZQtd/lxa3hli35A==
2932+
2933+
version "5.42.2"
2934+
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-5.42.2.tgz#edb92b490d4beb894ba549c7deefc770f501360c"
2935+
integrity sha512-eA2fK3eYdhr2RSbB22s1ha29y4EPbj9yPAskWxGo1aJK+KXwXDlAYqGtJa/8saRSSU4DdV89yG5ihvTFgP+Huw==
29362936
dependencies:
29372937
"@gorhom/bottom-sheet" "^4.6.4"
29382938
dayjs "1.10.5"

package/native-package/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4244,10 +4244,10 @@ statuses@~1.5.0:
42444244
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
42454245
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
42464246

4247-
4248-
version "5.42.1"
4249-
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-5.42.1.tgz#4e58ae50130b7ce47bfe13f76f970a6b1688eb97"
4250-
integrity sha512-GVFtsjup3pjx9yN1i5suGIG/I14dSmgY/7bOq0n3NXxrf5i3IiWTjogk4m9N51P94VzNHENZQtd/lxa3hli35A==
4247+
4248+
version "5.42.2"
4249+
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-5.42.2.tgz#edb92b490d4beb894ba549c7deefc770f501360c"
4250+
integrity sha512-eA2fK3eYdhr2RSbB22s1ha29y4EPbj9yPAskWxGo1aJK+KXwXDlAYqGtJa/8saRSSU4DdV89yG5ihvTFgP+Huw==
42514251
dependencies:
42524252
"@gorhom/bottom-sheet" "^4.6.4"
42534253
dayjs "1.10.5"

package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"path": "0.12.7",
7979
"react-native-markdown-package": "1.8.2",
8080
"react-native-url-polyfill": "^1.3.0",
81-
"stream-chat": "8.44.0"
81+
"stream-chat": "8.45.1"
8282
},
8383
"peerDependencies": {
8484
"react-native-quick-sqlite": ">=5.1.0",

0 commit comments

Comments
 (0)