File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff 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 <
Original file line number Diff line number Diff 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
61776185export interface GetOrCreateFeedGroupResponse {
You can’t perform that action at this time.
0 commit comments