@stream-io/node-sdk 0.7.28 → 0.7.29
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.
|
@@ -7632,6 +7632,9 @@ export interface UpdateFeedMembersResponse {
|
|
|
7632
7632
|
}
|
|
7633
7633
|
export interface UpdateFeedRequest {
|
|
7634
7634
|
created_by_id?: string;
|
|
7635
|
+
description?: string;
|
|
7636
|
+
name?: string;
|
|
7637
|
+
filter_tags?: string[];
|
|
7635
7638
|
custom?: Record<string, any>;
|
|
7636
7639
|
}
|
|
7637
7640
|
export interface UpdateFeedResponse {
|
package/package.json
CHANGED
|
@@ -1275,6 +1275,9 @@ export class FeedsApi {
|
|
|
1275
1275
|
};
|
|
1276
1276
|
const body = {
|
|
1277
1277
|
created_by_id: request?.created_by_id,
|
|
1278
|
+
description: request?.description,
|
|
1279
|
+
name: request?.name,
|
|
1280
|
+
filter_tags: request?.filter_tags,
|
|
1278
1281
|
custom: request?.custom,
|
|
1279
1282
|
};
|
|
1280
1283
|
|
package/src/gen/models/index.ts
CHANGED
|
@@ -13532,6 +13532,12 @@ export interface UpdateFeedMembersResponse {
|
|
|
13532
13532
|
export interface UpdateFeedRequest {
|
|
13533
13533
|
created_by_id?: string;
|
|
13534
13534
|
|
|
13535
|
+
description?: string;
|
|
13536
|
+
|
|
13537
|
+
name?: string;
|
|
13538
|
+
|
|
13539
|
+
filter_tags?: string[];
|
|
13540
|
+
|
|
13535
13541
|
custom?: Record<string, any>;
|
|
13536
13542
|
}
|
|
13537
13543
|
|