Skip to content

Commit e9547cb

Browse files
authored
feat: [FEEDS 640] get or create feed group req expand (#131)
1 parent c141163 commit e9547cb

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/gen/feeds/FeedsApi.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1426,8 +1426,12 @@ export class FeedsApi {
14261426
};
14271427
const body = {
14281428
default_visibility: request?.default_visibility,
1429+
activity_processors: request?.activity_processors,
1430+
activity_selectors: request?.activity_selectors,
1431+
aggregation: request?.aggregation,
14291432
custom: request?.custom,
14301433
notification: request?.notification,
1434+
ranking: request?.ranking,
14311435
};
14321436

14331437
const response = await this.apiClient.sendRequest<

src/gen/models/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6169,9 +6169,17 @@ export interface GetOrCreateFeedGroupRequest {
61696169
| 'members'
61706170
| 'private';
61716171

6172+
activity_processors?: ActivityProcessorConfig[];
6173+
6174+
activity_selectors?: ActivitySelectorConfig[];
6175+
6176+
aggregation?: AggregationConfig;
6177+
61726178
custom?: Record<string, any>;
61736179

61746180
notification?: NotificationConfig;
6181+
6182+
ranking?: RankingConfig;
61756183
}
61766184

61776185
export interface GetOrCreateFeedGroupResponse {

0 commit comments

Comments
 (0)