@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.
package/dist/index.es.mjs CHANGED
@@ -6649,7 +6649,7 @@ class ApiClient {
6649
6649
  const headers = {
6650
6650
  Authorization: this.apiConfig.token,
6651
6651
  'stream-auth-type': 'jwt',
6652
- 'X-Stream-Client': 'stream-node-' + "0.7.4",
6652
+ 'X-Stream-Client': 'stream-node-' + "0.7.5",
6653
6653
  'Accept-Encoding': 'gzip',
6654
6654
  'x-client-request-id': clientRequestId,
6655
6655
  };
@@ -7189,6 +7189,7 @@ class FeedsApi {
7189
7189
  notification: request?.notification,
7190
7190
  push_notification: request?.push_notification,
7191
7191
  ranking: request?.ranking,
7192
+ stories: request?.stories,
7192
7193
  };
7193
7194
  const response = await this.apiClient.sendRequest('POST', '/api/v2/feeds/feed_groups', undefined, undefined, body, 'application/json');
7194
7195
  decoders.CreateFeedGroupResponse?.(response.body);
@@ -7392,6 +7393,7 @@ class FeedsApi {
7392
7393
  notification: request?.notification,
7393
7394
  push_notification: request?.push_notification,
7394
7395
  ranking: request?.ranking,
7396
+ stories: request?.stories,
7395
7397
  };
7396
7398
  const response = await this.apiClient.sendRequest('POST', '/api/v2/feeds/feed_groups/{id}', pathParams, undefined, body, 'application/json');
7397
7399
  decoders.GetOrCreateFeedGroupResponse?.(response.body);
@@ -7409,6 +7411,7 @@ class FeedsApi {
7409
7411
  notification: request?.notification,
7410
7412
  push_notification: request?.push_notification,
7411
7413
  ranking: request?.ranking,
7414
+ stories: request?.stories,
7412
7415
  };
7413
7416
  const response = await this.apiClient.sendRequest('PUT', '/api/v2/feeds/feed_groups/{id}', pathParams, undefined, body, 'application/json');
7414
7417
  decoders.UpdateFeedGroupResponse?.(response.body);