Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/gen/feeds/FeedsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1257,6 +1257,7 @@ export class FeedsApi {
const body = {
filter: request?.filter,
id_around: request?.id_around,
include_soft_deleted_comments: request?.include_soft_deleted_comments,
limit: request?.limit,
next: request?.next,
prev: request?.prev,
Expand Down
4 changes: 4 additions & 0 deletions src/gen/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15600,6 +15600,10 @@ export interface QueryCommentsRequest {
* Returns the comment with the specified ID along with surrounding comments for context
*/
id_around?: string;
/**
* When true, include soft-deleted comments in the result. Server-side only, and requires an object_id filter. Returns comments deleted by any path, including user-data deletion. Moderation-actioned comments (removed, hidden) remain excluded, and comments whose parent activity is itself deleted are not returned.
*/
include_soft_deleted_comments?: boolean;
/**
* Maximum number of comments to return
*/
Expand Down
Loading