stream-chat-react 13.4.0 → 13.5.0

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.
@@ -52,3 +52,6 @@ export type PartialSelected<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T,
52
52
  export type DeepRequired<T> = {
53
53
  [K in keyof T]-?: T[K] extends object ? DeepRequired<T[K]> : T[K];
54
54
  };
55
+ export type DeepPartial<T> = {
56
+ [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P];
57
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stream-chat-react",
3
- "version": "13.4.0",
3
+ "version": "13.5.0",
4
4
  "description": "React components to create chat conversations or livestream style chat",
5
5
  "author": "GetStream",
6
6
  "homepage": "https://getstream.io/chat/",
@@ -142,7 +142,7 @@
142
142
  "emoji-mart": "^5.4.0",
143
143
  "react": "^19.0.0 || ^18.0.0 || ^17.0.0 || ^16.14.0",
144
144
  "react-dom": "^19.0.0 || ^18.0.0 || ^17.0.0 || ^16.14.0",
145
- "stream-chat": "^9.15.0"
145
+ "stream-chat": "^9.17.0"
146
146
  },
147
147
  "peerDependenciesMeta": {
148
148
  "@breezystack/lamejs": {
@@ -236,7 +236,7 @@
236
236
  "react": "^19.0.0",
237
237
  "react-dom": "^19.0.0",
238
238
  "semantic-release": "^24.2.3",
239
- "stream-chat": "^9.15.0",
239
+ "stream-chat": "^9.17.0",
240
240
  "ts-jest": "^29.2.5",
241
241
  "typescript": "^5.4.5",
242
242
  "typescript-eslint": "^8.17.0"