From 71f462a395cf383237267d0eac4cea219f6db3b8 Mon Sep 17 00:00:00 2001 From: Jana Naumoska Date: Thu, 24 Sep 2026 15:05:22 +0200 Subject: [PATCH] Add include_soft_deleted_comments --- src/gen/feeds/FeedsApi.ts | 1 + src/gen/models/index.ts | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src/gen/feeds/FeedsApi.ts b/src/gen/feeds/FeedsApi.ts index 777360b..1ed2c37 100644 --- a/src/gen/feeds/FeedsApi.ts +++ b/src/gen/feeds/FeedsApi.ts @@ -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, diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index 5926b34..9ce501d 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -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 */