/** * Auto-generated Zod schema for PullRequestReview * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { PullRequestReview as PullRequestReviewOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const PullRequestReviewSchema: z.ZodObject<{ id: z.ZodNumber; node_id: z.ZodString; user: z.ZodObject<{ login: z.ZodString; id: z.ZodNumber; node_id: z.ZodString; name: z.ZodOptional; email: z.ZodOptional>; avatar_url: z.ZodString; gravatar_id: z.ZodString; url: z.ZodString; html_url: z.ZodString; followers_url: z.ZodString; following_url: z.ZodString; gists_url: z.ZodString; starred_url: z.ZodString; subscriptions_url: z.ZodString; organizations_url: z.ZodString; repos_url: z.ZodString; events_url: z.ZodString; received_events_url: z.ZodString; type: z.ZodUnion, z.ZodLiteral<"User">, z.ZodLiteral<"Organization">]>; site_admin: z.ZodBoolean; }, z.core.$strip>; body: z.ZodNullable; commit_id: z.ZodString; submitted_at: z.ZodNullable; state: z.ZodUnion, z.ZodLiteral<"approved">, z.ZodLiteral<"commented">, z.ZodLiteral<"changes_requested">]>; html_url: z.ZodString; pull_request_url: z.ZodString; author_association: z.ZodUnion, z.ZodLiteral<"CONTRIBUTOR">, z.ZodLiteral<"FIRST_TIMER">, z.ZodLiteral<"FIRST_TIME_CONTRIBUTOR">, z.ZodLiteral<"MANNEQUIN">, z.ZodLiteral<"MEMBER">, z.ZodLiteral<"NONE">, z.ZodLiteral<"OWNER">]>; _links: z.ZodObject<{ html: z.ZodObject<{ href: z.ZodString; }, z.core.$strip>; pull_request: z.ZodObject<{ href: z.ZodString; }, z.core.$strip>; }, z.core.$strip>; }, z.core.$strip>; export type PullRequestReview = PullRequestReviewOctokit; export declare function isPullRequestReview(value: unknown): value is PullRequestReview; //# sourceMappingURL=pull-request-review.d.ts.map