We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 322abbc commit 4d6479eCopy full SHA for 4d6479e
src/gen/feeds/FeedsApi.ts
@@ -878,7 +878,9 @@ export class FeedsApi {
878
const body = {
879
comment: request?.comment,
880
skip_push: request?.skip_push,
881
+ user_id: request?.user_id,
882
custom: request?.custom,
883
+ user: request?.user,
884
};
885
886
const response = await this.apiClient.sendRequest<
src/gen/models/index.ts
@@ -12444,7 +12444,11 @@ export interface UpdateCommentRequest {
12444
12445
skip_push?: boolean;
12446
12447
+ user_id?: string;
12448
+
12449
custom?: Record<string, any>;
12450
12451
+ user?: UserRequest;
12452
}
12453
12454
export interface UpdateCommentResponse {
0 commit comments