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 */