@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.es.mjs
CHANGED
|
@@ -6751,7 +6751,7 @@ class ApiClient {
|
|
|
6751
6751
|
const headers = {
|
|
6752
6752
|
Authorization: this.apiConfig.token,
|
|
6753
6753
|
'stream-auth-type': 'jwt',
|
|
6754
|
-
'X-Stream-Client': 'stream-node-' + "0.7.
|
|
6754
|
+
'X-Stream-Client': 'stream-node-' + "0.7.15",
|
|
6755
6755
|
'Accept-Encoding': 'gzip',
|
|
6756
6756
|
'x-client-request-id': clientRequestId,
|
|
6757
6757
|
};
|
|
@@ -7210,7 +7210,9 @@ class FeedsApi {
|
|
|
7210
7210
|
const body = {
|
|
7211
7211
|
comment: request?.comment,
|
|
7212
7212
|
skip_push: request?.skip_push,
|
|
7213
|
+
user_id: request?.user_id,
|
|
7213
7214
|
custom: request?.custom,
|
|
7215
|
+
user: request?.user,
|
|
7214
7216
|
};
|
|
7215
7217
|
const response = await this.apiClient.sendRequest('PATCH', '/api/v2/feeds/comments/{id}', pathParams, undefined, body, 'application/json');
|
|
7216
7218
|
decoders.UpdateCommentResponse?.(response.body);
|