stream-js icon indicating copy to clipboard operation
stream-js copied to clipboard

JS / Browser Client - Build Activity Feeds & Streams with GetStream.io

Results 49 stream-js issues
Sort by recently updated
recently updated
newest added

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...

need api support

The declaration is missing key `collection` in the path `data.key`. See the attached image: ![image](https://user-images.githubusercontent.com/32706194/142847934-ad581369-6688-4ee9-b9e8-d6932e5e1b28.png) ![image](https://user-images.githubusercontent.com/32706194/142848016-033164f9-f33b-4dca-abdb-d4b6f5af352c.png)

Endpoint POST /reaction returns `EnrichedReactionAPIResponse` instead of ReactionAPIResponse: ![image](https://user-images.githubusercontent.com/32706194/142848317-3e7dd56a-d3f6-44ec-8eb9-5378232abfa5.png) 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, }) ```...