Skip to content

Commit a4d9b0e

Browse files
authored
Added missing stories config (#173)
1 parent a259f3b commit a4d9b0e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/gen/feeds/FeedsApi.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1031,6 +1031,7 @@ export class FeedsApi {
10311031
notification: request?.notification,
10321032
push_notification: request?.push_notification,
10331033
ranking: request?.ranking,
1034+
stories: request?.stories,
10341035
};
10351036

10361037
const response = await this.apiClient.sendRequest<
@@ -1449,6 +1450,7 @@ export class FeedsApi {
14491450
notification: request?.notification,
14501451
push_notification: request?.push_notification,
14511452
ranking: request?.ranking,
1453+
stories: request?.stories,
14521454
};
14531455

14541456
const response = await this.apiClient.sendRequest<
@@ -1481,6 +1483,7 @@ export class FeedsApi {
14811483
notification: request?.notification,
14821484
push_notification: request?.push_notification,
14831485
ranking: request?.ranking,
1486+
stories: request?.stories,
14841487
};
14851488

14861489
const response = await this.apiClient.sendRequest<

src/gen/models/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6309,6 +6309,8 @@ export interface GetOrCreateFeedGroupRequest {
63096309
push_notification?: PushNotificationConfig;
63106310

63116311
ranking?: RankingConfig;
6312+
6313+
stories?: StoriesConfig;
63126314
}
63136315

63146316
export interface GetOrCreateFeedGroupResponse {
@@ -12552,6 +12554,8 @@ export interface UpdateFeedGroupRequest {
1255212554
push_notification?: PushNotificationConfig;
1255312555

1255412556
ranking?: RankingConfig;
12557+
12558+
stories?: StoriesConfig;
1255512559
}
1255612560

1255712561
export interface UpdateFeedGroupResponse {

0 commit comments

Comments
 (0)