@stream-io/node-sdk 0.7.4 → 0.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3605,6 +3605,7 @@ export interface GetOrCreateFeedGroupRequest {
|
|
|
3605
3605
|
notification?: NotificationConfig;
|
|
3606
3606
|
push_notification?: PushNotificationConfig;
|
|
3607
3607
|
ranking?: RankingConfig;
|
|
3608
|
+
stories?: StoriesConfig;
|
|
3608
3609
|
}
|
|
3609
3610
|
export interface GetOrCreateFeedGroupResponse {
|
|
3610
3611
|
duration: string;
|
|
@@ -7067,6 +7068,7 @@ export interface UpdateFeedGroupRequest {
|
|
|
7067
7068
|
notification?: NotificationConfig;
|
|
7068
7069
|
push_notification?: PushNotificationConfig;
|
|
7069
7070
|
ranking?: RankingConfig;
|
|
7071
|
+
stories?: StoriesConfig;
|
|
7070
7072
|
}
|
|
7071
7073
|
export interface UpdateFeedGroupResponse {
|
|
7072
7074
|
duration: string;
|
package/package.json
CHANGED
|
@@ -1031,6 +1031,7 @@ export class FeedsApi {
|
|
|
1031
1031
|
notification: request?.notification,
|
|
1032
1032
|
push_notification: request?.push_notification,
|
|
1033
1033
|
ranking: request?.ranking,
|
|
1034
|
+
stories: request?.stories,
|
|
1034
1035
|
};
|
|
1035
1036
|
|
|
1036
1037
|
const response = await this.apiClient.sendRequest<
|
|
@@ -1449,6 +1450,7 @@ export class FeedsApi {
|
|
|
1449
1450
|
notification: request?.notification,
|
|
1450
1451
|
push_notification: request?.push_notification,
|
|
1451
1452
|
ranking: request?.ranking,
|
|
1453
|
+
stories: request?.stories,
|
|
1452
1454
|
};
|
|
1453
1455
|
|
|
1454
1456
|
const response = await this.apiClient.sendRequest<
|
|
@@ -1481,6 +1483,7 @@ export class FeedsApi {
|
|
|
1481
1483
|
notification: request?.notification,
|
|
1482
1484
|
push_notification: request?.push_notification,
|
|
1483
1485
|
ranking: request?.ranking,
|
|
1486
|
+
stories: request?.stories,
|
|
1484
1487
|
};
|
|
1485
1488
|
|
|
1486
1489
|
const response = await this.apiClient.sendRequest<
|
package/src/gen/models/index.ts
CHANGED
|
@@ -6309,6 +6309,8 @@ export interface GetOrCreateFeedGroupRequest {
|
|
|
6309
6309
|
push_notification?: PushNotificationConfig;
|
|
6310
6310
|
|
|
6311
6311
|
ranking?: RankingConfig;
|
|
6312
|
+
|
|
6313
|
+
stories?: StoriesConfig;
|
|
6312
6314
|
}
|
|
6313
6315
|
|
|
6314
6316
|
export interface GetOrCreateFeedGroupResponse {
|
|
@@ -12552,6 +12554,8 @@ export interface UpdateFeedGroupRequest {
|
|
|
12552
12554
|
push_notification?: PushNotificationConfig;
|
|
12553
12555
|
|
|
12554
12556
|
ranking?: RankingConfig;
|
|
12557
|
+
|
|
12558
|
+
stories?: StoriesConfig;
|
|
12555
12559
|
}
|
|
12556
12560
|
|
|
12557
12561
|
export interface UpdateFeedGroupResponse {
|