stream-js
stream-js copied to clipboard
JS / Browser Client - Build Activity Feeds & Streams with GetStream.io
I came across this bug in a react native app ([https://github.com/GetStream/react-native-activity-feed/issues/93](see)). Originally reported in their repo but I think it belongs here. Essentially, if a subscription is created to a...
It happens in a few places, e.g. https://github.com/GetStream/stream-js/blob/main/src/feed.ts#L103 Note that `string | unknown` evaluates to just `unknown` - which likely defeats the purpose of the type annotation. Looks like in...
`getstream` is currently exported as UMD only. ESM support has been around in NodeJS (and the [browser](https://caniuse.com/?search=modules)) for some time and, I believe, since v12.20 it can be used without...
I can't get this library to integrate with the `remix.run` React framework. The first error I got was ```sh ReferenceError: Can't find variable: global # from custom-event/index.js ``` I patched...
I keep getting the same error trying to upload the functions to firebase. The errors point to the ts parts of this package. ``` node_modules/getstream/lib/client.d.ts:97:35 - error TS1005: ',' expected....
When we create a user, we pass certain attributes about the user (say username). Now, when we update the user, the intention is to add more attributes (or update existing...
The declaration is missing key `collection` in the path `data.key`. See the attached image:  
Endpoint POST /reaction returns `EnrichedReactionAPIResponse` instead of ReactionAPIResponse:  The returned response body: ``` { "created_at": "2021-11-19T12:34:25.385922Z", "updated_at": "2021-11-19T12:34:25.385922Z", "id": "f7547cac-491c-11ec-87dd-a4bb6d26ac2f", "user_id": "MustermannMax", "user": { "created_at": "2021-10-07T11:17:54.858890Z", "updated_at": "2021-10-07T11:17:54.858890Z", "id":...
- Version: 5+ - System: Node.js ### What steps will reproduce the bug? Mark individual or groups of notifications as read/seen returns unchanged data ``` client.feed('notification', feedId).get({ limit: 10, mark_read:...
1. I use this code to get feed ``` timeline.get({ ranking: '...', enrich: true, limit: 3, recentReactionsLimit: 2 ownReactions: true, withOwnReactions: true, withOwnChildren: true, withReactionCounts: true, withRecentReactions: true, }) ```...