We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 340c8df commit f5161b7Copy full SHA for f5161b7
src/gen/feeds/FeedsApi.ts
@@ -1275,6 +1275,9 @@ export class FeedsApi {
1275
};
1276
const body = {
1277
created_by_id: request?.created_by_id,
1278
+ description: request?.description,
1279
+ name: request?.name,
1280
+ filter_tags: request?.filter_tags,
1281
custom: request?.custom,
1282
1283
src/gen/models/index.ts
@@ -13532,6 +13532,12 @@ export interface UpdateFeedMembersResponse {
13532
export interface UpdateFeedRequest {
13533
created_by_id?: string;
13534
13535
+ description?: string;
13536
+
13537
+ name?: string;
13538
13539
+ filter_tags?: string[];
13540
13541
custom?: Record<string, any>;
13542
}
13543
0 commit comments