Skip to content

Commit 511c7ab

Browse files
authored
fix: change own_followings from opt_out to opt_in (#225)
1 parent 81d2fc7 commit 511c7ab

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

src/gen/feeds/FeedsApi.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -612,6 +612,7 @@ export class FeedsApi {
612612
feeds: request?.feeds,
613613
filter_tags: request?.filter_tags,
614614
interest_tags: request?.interest_tags,
615+
mentioned_user_ids: request?.mentioned_user_ids,
615616
custom: request?.custom,
616617
location: request?.location,
617618
user: request?.user,

src/gen/models/index.ts

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5209,6 +5209,8 @@ export interface EnrichedReaction {
52095209
}
52105210

52115211
export 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+
1067510691
export 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

Comments
 (0)