File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff 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 <
Original file line number Diff line number Diff line change @@ -6309,6 +6309,8 @@ export interface GetOrCreateFeedGroupRequest {
63096309 push_notification ?: PushNotificationConfig ;
63106310
63116311 ranking ?: RankingConfig ;
6312+
6313+ stories ?: StoriesConfig ;
63126314}
63136315
63146316export interface GetOrCreateFeedGroupResponse {
@@ -12552,6 +12554,8 @@ export interface UpdateFeedGroupRequest {
1255212554 push_notification ?: PushNotificationConfig ;
1255312555
1255412556 ranking ?: RankingConfig ;
12557+
12558+ stories ?: StoriesConfig ;
1255512559}
1255612560
1255712561export interface UpdateFeedGroupResponse {
You can’t perform that action at this time.
0 commit comments