Type Alias: ChecksSummary
Makaio Framework / contracts / ChecksSummary
Type Alias: ChecksSummary
Section titled “Type Alias: ChecksSummary”ChecksSummary =
z.infer<typeofChecksSummarySchema>
Defined in: ../../../packages/contracts/src/capabilities/vcs-pr/schemas.ts:66
Type Composition
Section titled “Type Composition”ChecksSummaryz.infer<typeof ChecksSummarySchema>typeof ChecksSummarySchema
Resolved Shape
Section titled “Resolved Shape”type ChecksSummary = { status: 'pending' | 'passing' | 'failing' | 'mixed'; total: number; passed: number; failed: number; pending: number; skipped: number; failedChecks: Array<{ id: number; name: string; workflowName: string; conclusion: string; failedStep: string | null; detailsUrl: string | null; completedAt: string | null; source: 'check-run' | 'commit-status'; }>; summary: string;};