Skip to content

Type Alias: VCSReview

Makaio Framework


Makaio Framework / contracts / VCSReview

VCSReview = z.infer<typeof VCSReviewSchema>

Defined in: ../../../packages/contracts/src/capabilities/vcs/schemas/pr.ts:96

  • VCSReview
    • z.infer<typeof VCSReviewSchema>
      • typeof VCSReviewSchema
type VCSReview = {
id: number;
author: string;
state: 'APPROVED' | 'CHANGES_REQUESTED' | 'COMMENTED' | 'PENDING' | 'DISMISSED';
body: string | null;
submittedAt: string | null;
};