@stream-io/node-sdk 0.7.27 → 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.
package/dist/index.es.mjs CHANGED
@@ -7083,7 +7083,7 @@ class ApiClient {
7083
7083
  const headers = {
7084
7084
  Authorization: this.apiConfig.token,
7085
7085
  'stream-auth-type': 'jwt',
7086
- 'X-Stream-Client': 'stream-node-' + "0.7.27",
7086
+ 'X-Stream-Client': 'stream-node-' + "0.7.29",
7087
7087
  'Accept-Encoding': 'gzip',
7088
7088
  'x-client-request-id': clientRequestId,
7089
7089
  };
@@ -7415,6 +7415,7 @@ class FeedsApi {
7415
7415
  feeds: request?.feeds,
7416
7416
  filter_tags: request?.filter_tags,
7417
7417
  interest_tags: request?.interest_tags,
7418
+ mentioned_user_ids: request?.mentioned_user_ids,
7418
7419
  custom: request?.custom,
7419
7420
  location: request?.location,
7420
7421
  user: request?.user,
@@ -7735,6 +7736,9 @@ class FeedsApi {
7735
7736
  };
7736
7737
  const body = {
7737
7738
  created_by_id: request?.created_by_id,
7739
+ description: request?.description,
7740
+ name: request?.name,
7741
+ filter_tags: request?.filter_tags,
7738
7742
  custom: request?.custom,
7739
7743
  };
7740
7744
  const response = await this.apiClient.sendRequest('PUT', '/api/v2/feeds/feed_groups/{feed_group_id}/feeds/{feed_id}', pathParams, undefined, body, 'application/json');