@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.cjs.js CHANGED
@@ -7102,7 +7102,7 @@ class ApiClient {
7102
7102
  const headers = {
7103
7103
  Authorization: this.apiConfig.token,
7104
7104
  'stream-auth-type': 'jwt',
7105
- 'X-Stream-Client': 'stream-node-' + "0.7.27",
7105
+ 'X-Stream-Client': 'stream-node-' + "0.7.29",
7106
7106
  'Accept-Encoding': 'gzip',
7107
7107
  'x-client-request-id': clientRequestId,
7108
7108
  };
@@ -7434,6 +7434,7 @@ class FeedsApi {
7434
7434
  feeds: request?.feeds,
7435
7435
  filter_tags: request?.filter_tags,
7436
7436
  interest_tags: request?.interest_tags,
7437
+ mentioned_user_ids: request?.mentioned_user_ids,
7437
7438
  custom: request?.custom,
7438
7439
  location: request?.location,
7439
7440
  user: request?.user,
@@ -7754,6 +7755,9 @@ class FeedsApi {
7754
7755
  };
7755
7756
  const body = {
7756
7757
  created_by_id: request?.created_by_id,
7758
+ description: request?.description,
7759
+ name: request?.name,
7760
+ filter_tags: request?.filter_tags,
7757
7761
  custom: request?.custom,
7758
7762
  };
7759
7763
  const response = await this.apiClient.sendRequest('PUT', '/api/v2/feeds/feed_groups/{feed_group_id}/feeds/{feed_id}', pathParams, undefined, body, 'application/json');