stream-chat 8.57.5 → 8.57.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stream-chat",
3
- "version": "8.57.5",
3
+ "version": "8.57.6",
4
4
  "description": "JS SDK for the Stream Chat API",
5
5
  "author": "GetStream",
6
6
  "homepage": "https://getstream.io/chat/",
package/src/client.ts CHANGED
@@ -2705,6 +2705,7 @@ export class StreamChat<StreamChatGenerics extends ExtendableGenerics = DefaultG
2705
2705
  'type',
2706
2706
  'updated_at',
2707
2707
  'user',
2708
+ 'pinned_at',
2708
2709
  '__html',
2709
2710
  ];
2710
2711
 
package/src/types.ts CHANGED
@@ -2896,6 +2896,7 @@ export type ReservedMessageFields =
2896
2896
  | 'reply_count'
2897
2897
  | 'type'
2898
2898
  | 'updated_at'
2899
+ | 'pinned_at'
2899
2900
  | 'user'
2900
2901
  | '__html';
2901
2902