We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1237e2c commit a0610faCopy full SHA for a0610fa
src/client.ts
@@ -803,6 +803,7 @@ export class StreamClient<StreamFeedGenerics extends DefaultGenerics = DefaultGe
803
foreignIDTimes?: ForeignIDTimes[];
804
ids?: string[];
805
reactions?: Record<string, boolean>;
806
+ user_id?: string;
807
}) {
808
const extraParams: { foreign_ids?: string; ids?: string; timestamps?: string } = {};
809
src/feed.ts
@@ -22,6 +22,10 @@ export type EnrichOptions = {
22
withOwnReactions?: boolean;
23
withReactionCounts?: boolean;
24
withRecentReactions?: boolean;
25
+
26
+ /**
27
+ * deprecated, use user_id
28
+ */
29
withUserId?: string;
30
};
31
0 commit comments