Skip to content

Commit 125105f

Browse files
committed
fix: new gen specs
1 parent 6ccb23e commit 125105f

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/gen/feeds/FeedsApi.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -603,9 +603,11 @@ export class FeedsApi {
603603
object_id: request?.object_id,
604604
object_type: request?.object_type,
605605
parent_id: request?.parent_id,
606+
user_id: request?.user_id,
606607
attachments: request?.attachments,
607608
mentioned_user_ids: request?.mentioned_user_ids,
608609
custom: request?.custom,
610+
user: request?.user,
609611
};
610612

611613
const response = await this.apiClient.sendRequest<

src/gen/models/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -613,11 +613,15 @@ export interface AddCommentRequest {
613613

614614
parent_id?: string;
615615

616+
user_id?: string;
617+
616618
attachments?: Attachment[];
617619

618620
mentioned_user_ids?: string[];
619621

620622
custom?: Record<string, any>;
623+
624+
user?: UserRequest;
621625
}
622626

623627
export interface AddCommentResponse {

0 commit comments

Comments
 (0)