Skip to content

Commit 2b5dad2

Browse files
committed
Add include_flat_activities to enrichment options
1 parent 790854a commit 2b5dad2

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

src/gen/models/index.ts

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8358,6 +8358,11 @@ export interface EnrichmentOptions {
83588358
*/
83598359
enrich_own_followings?: boolean;
83608360

8361+
/**
8362+
* Default: false. When true, includes the top-level flat 'activities' array in responses for aggregated feeds. By default, aggregated feeds only return 'aggregated_activities'.
8363+
*/
8364+
include_flat_activities?: boolean;
8365+
83618366
/**
83628367
* Default: false. When true, includes score_vars in activity responses containing variable values used at ranking time.
83638368
*/
@@ -16901,8 +16906,14 @@ export interface QueryReactionsRequest {
1690116906

1690216907
user_id?: string;
1690316908

16909+
/**
16910+
* Array of sort parameters
16911+
*/
1690416912
sort?: SortParamRequest[];
1690516913

16914+
/**
16915+
* Filter to apply to the query
16916+
*/
1690616917
filter?: Record<string, any>;
1690716918

1690816919
user?: UserRequest;
@@ -17163,12 +17174,12 @@ export interface QueryThreadsRequest {
1716317174
user_id?: string;
1716417175

1716517176
/**
17166-
* Sort conditions to apply to threads
17177+
* Array of sort parameters
1716717178
*/
1716817179
sort?: SortParamRequest[];
1716917180

1717017181
/**
17171-
* Filter conditions to apply to threads
17182+
* Filter to apply to the query
1717217183
*/
1717317184
filter?: Record<string, any>;
1717417185

0 commit comments

Comments
 (0)