@@ -5209,6 +5209,8 @@ export interface EnrichedReaction {
52095209}
52105210
52115211export interface EnrichmentOptions {
5212+ enrich_own_followings ?: boolean ;
5213+
52125214 skip_activity ?: boolean ;
52135215
52145216 skip_activity_collections ?: boolean ;
@@ -5239,8 +5241,6 @@ export interface EnrichmentOptions {
52395241
52405242 skip_own_capabilities ?: boolean ;
52415243
5242- skip_own_followings ?: boolean ;
5243-
52445244 skip_own_follows ?: boolean ;
52455245
52465246 skip_pins ?: boolean ;
@@ -10672,6 +10672,22 @@ export interface RankingConfig {
1067210672 functions ?: Record < string , DecayFunctionConfig > ;
1067310673}
1067410674
10675+ export interface RawRecordSettings {
10676+ mode : 'available' | 'disabled' | 'auto-on' ;
10677+ }
10678+
10679+ export interface RawRecordingResponse {
10680+ status : string ;
10681+ }
10682+
10683+ export interface RawRecordingSettingsRequest {
10684+ mode : 'available' | 'disabled' | 'auto-on' ;
10685+ }
10686+
10687+ export interface RawRecordingSettingsResponse {
10688+ mode : 'available' | 'disabled' | 'auto-on' ;
10689+ }
10690+
1067510691export interface Reaction {
1067610692 created_at : Date ;
1067710693
@@ -12947,6 +12963,8 @@ export interface UpdateActivityRequest {
1294712963
1294812964 interest_tags ?: string [ ] ;
1294912965
12966+ mentioned_user_ids ?: string [ ] ;
12967+
1295012968 custom ?: Record < string , any > ;
1295112969
1295212970 location ?: ActivityLocation ;
0 commit comments