Skip to content

Type Alias: VCSReviewComment

Makaio Framework


Makaio Framework / contracts / VCSReviewComment

VCSReviewComment = z.infer<typeof VCSReviewCommentSchema>

Defined in: ../../../packages/contracts/src/capabilities/vcs/schemas/review.ts:36

Inferred TypeScript type for VCS review comments.

  • VCSReviewComment
    • z.infer<typeof VCSReviewCommentSchema>
      • typeof VCSReviewCommentSchema
type VCSReviewComment = {
id: number;
author: string;
body: string;
path: string | null;
line: number | null;
createdAt: string;
updatedAt: string;
inReplyToId: number | null;
diffHunk?: string | null | undefined;
threadId?: string | null | undefined;
isResolved?: boolean | null | undefined;
};