diff --git a/src/gen/feeds/FeedsApi.ts b/src/gen/feeds/FeedsApi.ts index 21c67fb..8562811 100644 --- a/src/gen/feeds/FeedsApi.ts +++ b/src/gen/feeds/FeedsApi.ts @@ -1275,6 +1275,9 @@ export class FeedsApi { }; const body = { created_by_id: request?.created_by_id, + description: request?.description, + name: request?.name, + filter_tags: request?.filter_tags, custom: request?.custom, }; diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index 2cc5979..b75ae1b 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -13532,6 +13532,12 @@ export interface UpdateFeedMembersResponse { export interface UpdateFeedRequest { created_by_id?: string; + description?: string; + + name?: string; + + filter_tags?: string[]; + custom?: Record; }