Skip to content

Commit e0f6c02

Browse files
committed
add new updateable fields in updateFeedRequest
1 parent c8367fa commit e0f6c02

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/gen/feeds/FeedsApi.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,6 +1275,9 @@ export class FeedsApi {
12751275
};
12761276
const body = {
12771277
created_by_id: request?.created_by_id,
1278+
description: request?.description,
1279+
name: request?.name,
1280+
filter_tags: request?.filter_tags,
12781281
custom: request?.custom,
12791282
};
12801283

src/gen/models/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13532,6 +13532,12 @@ export interface UpdateFeedMembersResponse {
1353213532
export interface UpdateFeedRequest {
1353313533
created_by_id?: string;
1353413534

13535+
description?: string;
13536+
13537+
name?: string;
13538+
13539+
filter_tags?: string[];
13540+
1353513541
custom?: Record<string, any>;
1353613542
}
1353713543

0 commit comments

Comments
 (0)