@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.
|
@@ -7010,7 +7010,9 @@ export interface UpdateCommandResponse {
|
|
|
7010
7010
|
export interface UpdateCommentRequest {
|
|
7011
7011
|
comment?: string;
|
|
7012
7012
|
skip_push?: boolean;
|
|
7013
|
+
user_id?: string;
|
|
7013
7014
|
custom?: Record<string, any>;
|
|
7015
|
+
user?: UserRequest;
|
|
7014
7016
|
}
|
|
7015
7017
|
export interface UpdateCommentResponse {
|
|
7016
7018
|
duration: string;
|
package/package.json
CHANGED
|
@@ -878,7 +878,9 @@ export class FeedsApi {
|
|
|
878
878
|
const body = {
|
|
879
879
|
comment: request?.comment,
|
|
880
880
|
skip_push: request?.skip_push,
|
|
881
|
+
user_id: request?.user_id,
|
|
881
882
|
custom: request?.custom,
|
|
883
|
+
user: request?.user,
|
|
882
884
|
};
|
|
883
885
|
|
|
884
886
|
const response = await this.apiClient.sendRequest<
|
package/src/gen/models/index.ts
CHANGED
|
@@ -12444,7 +12444,11 @@ export interface UpdateCommentRequest {
|
|
|
12444
12444
|
|
|
12445
12445
|
skip_push?: boolean;
|
|
12446
12446
|
|
|
12447
|
+
user_id?: string;
|
|
12448
|
+
|
|
12447
12449
|
custom?: Record<string, any>;
|
|
12450
|
+
|
|
12451
|
+
user?: UserRequest;
|
|
12448
12452
|
}
|
|
12449
12453
|
|
|
12450
12454
|
export interface UpdateCommentResponse {
|