Skip to content

Commit 9b7b46e

Browse files
committed
Added user_id to follow request and user_count_truncated to aggregated activity response
1 parent 81d87aa commit 9b7b46e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/gen/feeds/FeedsApi.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1682,6 +1682,7 @@ export class FeedsApi {
16821682
follower_role: request?.follower_role,
16831683
push_preference: request?.push_preference,
16841684
skip_push: request?.skip_push,
1685+
user_id: request?.user_id,
16851686
custom: request?.custom,
16861687
};
16871688

@@ -1710,6 +1711,7 @@ export class FeedsApi {
17101711
create_notification_activity: request?.create_notification_activity,
17111712
push_preference: request?.push_preference,
17121713
skip_push: request?.skip_push,
1714+
user_id: request?.user_id,
17131715
custom: request?.custom,
17141716
};
17151717

src/gen/models/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -805,6 +805,8 @@ export interface AggregatedActivityResponse {
805805

806806
user_count: number;
807807

808+
user_count_truncated: boolean;
809+
808810
activities: ActivityResponse[];
809811
}
810812

@@ -5724,6 +5726,8 @@ export interface FollowRequest {
57245726

57255727
skip_push?: boolean;
57265728

5729+
user_id?: string;
5730+
57275731
custom?: Record<string, any>;
57285732
}
57295733

@@ -12492,6 +12496,8 @@ export interface UpdateFollowRequest {
1249212496

1249312497
skip_push?: boolean;
1249412498

12499+
user_id?: string;
12500+
1249512501
custom?: Record<string, any>;
1249612502
}
1249712503

0 commit comments

Comments
 (0)