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;