diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index 7cd940a..c8db36d 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -1148,6 +1148,8 @@ export interface ActivitySelectorConfig { */ sort?: Array; + feed_groups?: FeedGroupScope; + /** * Filter for activity selection */ @@ -1190,6 +1192,8 @@ export interface ActivitySelectorConfigResponse { */ sort?: Array; + feed_groups?: FeedGroupScope; + /** * Filter for activity selection */ @@ -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; + + /** + * Select only activities that live in a feed belonging to one of these feed groups. Mutually exclusive with exclude + */ + include?: Array; +} + export interface FeedInput { description?: string;