Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/gen/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1148,6 +1148,8 @@ export interface ActivitySelectorConfig {
*/
sort?: Array<SortParamRequest>;

feed_groups?: FeedGroupScope;

/**
* Filter for activity selection
*/
Expand Down Expand Up @@ -1190,6 +1192,8 @@ export interface ActivitySelectorConfigResponse {
*/
sort?: Array<SortParamRequest>;

feed_groups?: FeedGroupScope;

/**
* Filter for activity selection
*/
Expand Down Expand Up @@ -11288,6 +11292,18 @@ export interface FeedGroupRestoredEvent {
received_at?: Date;
}

export interface FeedGroupScope {
/**
* Select activities from every feed group except these. An activity cross-posted to an excluded and a non-excluded group is still selected. Mutually exclusive with include
*/
exclude?: Array<string>;

/**
* Select only activities that live in a feed belonging to one of these feed groups. Mutually exclusive with exclude
*/
include?: Array<string>;
}

export interface FeedInput {
description?: string;

Expand Down
Loading