/** * Auto-generated Zod schema for SimpleCommit * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { SimpleCommit as SimpleCommitOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const SimpleCommitSchema: z.ZodObject<{ id: z.ZodString; tree_id: z.ZodString; message: z.ZodString; timestamp: z.ZodString; author: z.ZodObject<{ name: z.ZodString; email: z.ZodNullable; date: z.ZodOptional; username: z.ZodOptional; }, z.core.$strip>; committer: z.ZodObject<{ name: z.ZodString; email: z.ZodNullable; date: z.ZodOptional; username: z.ZodOptional; }, z.core.$strip>; }, z.core.$strip>; export type SimpleCommit = SimpleCommitOctokit; export declare function isSimpleCommit(value: unknown): value is SimpleCommit; //# sourceMappingURL=simple-commit.d.ts.map