From bc619910f679959411d8872732697f488b92d7c3 Mon Sep 17 00:00:00 2001 From: zoranmiladinoski Date: Thu, 18 Dec 2025 14:12:41 +0100 Subject: [PATCH 1/2] change own_followings from opt_out to opt_in --- src/gen/feeds/FeedsApi.ts | 1 + src/gen/models/index.ts | 22 ++++++++++++++++++++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/src/gen/feeds/FeedsApi.ts b/src/gen/feeds/FeedsApi.ts index 6cd8dab..21c67fb 100644 --- a/src/gen/feeds/FeedsApi.ts +++ b/src/gen/feeds/FeedsApi.ts @@ -612,6 +612,7 @@ export class FeedsApi { feeds: request?.feeds, filter_tags: request?.filter_tags, interest_tags: request?.interest_tags, + mentioned_user_ids: request?.mentioned_user_ids, custom: request?.custom, location: request?.location, user: request?.user, diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index ed7a034..2cc5979 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -5209,6 +5209,8 @@ export interface EnrichedReaction { } export interface EnrichmentOptions { + enrich_own_followings?: boolean; + skip_activity?: boolean; skip_activity_collections?: boolean; @@ -5239,8 +5241,6 @@ export interface EnrichmentOptions { skip_own_capabilities?: boolean; - skip_own_followings?: boolean; - skip_own_follows?: boolean; skip_pins?: boolean; @@ -10672,6 +10672,22 @@ export interface RankingConfig { functions?: Record; } +export interface RawRecordSettings { + mode: 'available' | 'disabled' | 'auto-on'; +} + +export interface RawRecordingResponse { + status: string; +} + +export interface RawRecordingSettingsRequest { + mode: 'available' | 'disabled' | 'auto-on'; +} + +export interface RawRecordingSettingsResponse { + mode: 'available' | 'disabled' | 'auto-on'; +} + export interface Reaction { created_at: Date; @@ -12947,6 +12963,8 @@ export interface UpdateActivityRequest { interest_tags?: string[]; + mentioned_user_ids?: string[]; + custom?: Record; location?: ActivityLocation; From e0f6c0218a86f97ed37016dd661a028b9bd238e3 Mon Sep 17 00:00:00 2001 From: zoranmiladinoski Date: Mon, 22 Dec 2025 11:44:53 +0100 Subject: [PATCH 2/2] add new updateable fields in updateFeedRequest --- src/gen/feeds/FeedsApi.ts | 3 +++ src/gen/models/index.ts | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/src/gen/feeds/FeedsApi.ts b/src/gen/feeds/FeedsApi.ts index 21c67fb..8562811 100644 --- a/src/gen/feeds/FeedsApi.ts +++ b/src/gen/feeds/FeedsApi.ts @@ -1275,6 +1275,9 @@ export class FeedsApi { }; const body = { created_by_id: request?.created_by_id, + description: request?.description, + name: request?.name, + filter_tags: request?.filter_tags, custom: request?.custom, }; diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index 2cc5979..b75ae1b 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -13532,6 +13532,12 @@ export interface UpdateFeedMembersResponse { export interface UpdateFeedRequest { created_by_id?: string; + description?: string; + + name?: string; + + filter_tags?: string[]; + custom?: Record; }