@stream-io/node-sdk 0.7.14 → 0.7.15
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
|
@@ -6770,7 +6770,7 @@ class ApiClient {
|
|
|
6770
6770
|
const headers = {
|
|
6771
6771
|
Authorization: this.apiConfig.token,
|
|
6772
6772
|
'stream-auth-type': 'jwt',
|
|
6773
|
-
'X-Stream-Client': 'stream-node-' + "0.7.
|
|
6773
|
+
'X-Stream-Client': 'stream-node-' + "0.7.15",
|
|
6774
6774
|
'Accept-Encoding': 'gzip',
|
|
6775
6775
|
'x-client-request-id': clientRequestId,
|
|
6776
6776
|
};
|
|
@@ -7229,7 +7229,9 @@ class FeedsApi {
|
|
|
7229
7229
|
const body = {
|
|
7230
7230
|
comment: request?.comment,
|
|
7231
7231
|
skip_push: request?.skip_push,
|
|
7232
|
+
user_id: request?.user_id,
|
|
7232
7233
|
custom: request?.custom,
|
|
7234
|
+
user: request?.user,
|
|
7233
7235
|
};
|
|
7234
7236
|
const response = await this.apiClient.sendRequest('PATCH', '/api/v2/feeds/comments/{id}', pathParams, undefined, body, 'application/json');
|
|
7235
7237
|
decoders.UpdateCommentResponse?.(response.body);
|