Skip to content

Commit fb8b0e5

Browse files
committed
Removed user_id to follow request and added count_truncated to notification status response
1 parent 9b7b46e commit fb8b0e5

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/gen/feeds/FeedsApi.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1682,7 +1682,6 @@ 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,
16861685
custom: request?.custom,
16871686
};
16881687

@@ -1711,7 +1710,6 @@ export class FeedsApi {
17111710
create_notification_activity: request?.create_notification_activity,
17121711
push_preference: request?.push_preference,
17131712
skip_push: request?.skip_push,
1714-
user_id: request?.user_id,
17151713
custom: request?.custom,
17161714
};
17171715

src/gen/models/index.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5726,8 +5726,6 @@ export interface FollowRequest {
57265726

57275727
skip_push?: boolean;
57285728

5729-
user_id?: string;
5730-
57315729
custom?: Record<string, any>;
57325730
}
57335731

@@ -8054,6 +8052,8 @@ export interface NotificationSettings {
80548052
}
80558053

80568054
export interface NotificationStatusResponse {
8055+
count_truncated: boolean;
8056+
80578057
unread: number;
80588058

80598059
unseen: number;
@@ -12496,8 +12496,6 @@ export interface UpdateFollowRequest {
1249612496

1249712497
skip_push?: boolean;
1249812498

12499-
user_id?: string;
12500-
1250112499
custom?: Record<string, any>;
1250212500
}
1250312501

0 commit comments

Comments
 (0)