From 27b55dd535f6a152566270b5962c0537f8611395 Mon Sep 17 00:00:00 2001 From: Jana Naumoska Date: Thu, 2 Oct 2025 13:49:20 +0200 Subject: [PATCH] Added missing stories config --- src/gen/feeds/FeedsApi.ts | 3 +++ src/gen/models/index.ts | 4 ++++ 2 files changed, 7 insertions(+) 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 {