diff --git a/src/gen/feeds/FeedsApi.ts b/src/gen/feeds/FeedsApi.ts index 73e1800..e88ae4b 100644 --- a/src/gen/feeds/FeedsApi.ts +++ b/src/gen/feeds/FeedsApi.ts @@ -1031,6 +1031,7 @@ export class FeedsApi { notification: request?.notification, push_notification: request?.push_notification, ranking: request?.ranking, + stories: request?.stories, }; const response = await this.apiClient.sendRequest< @@ -1449,6 +1450,7 @@ export class FeedsApi { notification: request?.notification, push_notification: request?.push_notification, ranking: request?.ranking, + stories: request?.stories, }; const response = await this.apiClient.sendRequest< @@ -1481,6 +1483,7 @@ export class FeedsApi { notification: request?.notification, push_notification: request?.push_notification, ranking: request?.ranking, + stories: request?.stories, }; const response = await this.apiClient.sendRequest< diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index f38825c..d3c13d6 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -6309,6 +6309,8 @@ export interface GetOrCreateFeedGroupRequest { push_notification?: PushNotificationConfig; ranking?: RankingConfig; + + stories?: StoriesConfig; } export interface GetOrCreateFeedGroupResponse { @@ -12552,6 +12554,8 @@ export interface UpdateFeedGroupRequest { push_notification?: PushNotificationConfig; ranking?: RankingConfig; + + stories?: StoriesConfig; } export interface UpdateFeedGroupResponse {