/** * Auto-generated Zod schema for MarketplacePurchase * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { MarketplacePurchase as MarketplacePurchaseOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const MarketplacePurchaseSchema: z.ZodObject<{ account: z.ZodObject<{ type: z.ZodString; id: z.ZodNumber; node_id: z.ZodString; login: z.ZodString; organization_billing_email: z.ZodString; }, z.core.$strip>; billing_cycle: z.ZodString; unit_count: z.ZodNumber; on_free_trial: z.ZodBoolean; free_trial_ends_on: z.ZodNullable; next_billing_date: z.ZodOptional; plan: z.ZodObject<{ id: z.ZodNumber; name: z.ZodString; description: z.ZodString; monthly_price_in_cents: z.ZodNumber; yearly_price_in_cents: z.ZodNumber; price_model: z.ZodString; has_free_trial: z.ZodBoolean; unit_name: z.ZodNullable; bullets: z.ZodArray; }, z.core.$strip>; }, z.core.$strip>; export type MarketplacePurchase = MarketplacePurchaseOctokit; export declare function isMarketplacePurchase(value: unknown): value is MarketplacePurchase; //# sourceMappingURL=marketplace-purchase.d.ts.map