/** * Auto-generated Zod schema for MembershipRemovedEvent * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { MembershipRemovedEvent as MembershipRemovedEventOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const MembershipRemovedEventSchema: z.ZodObject<{ action: z.ZodLiteral<"removed">; scope: z.ZodUnion, z.ZodLiteral<"team">]>; member: 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>; sender: 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>; team: z.ZodUnion; privacy: z.ZodUnion, z.ZodLiteral<"closed">, z.ZodLiteral<"secret">]>; url: z.ZodString; html_url: z.ZodString; members_url: z.ZodString; repositories_url: z.ZodString; permission: z.ZodString; parent: z.ZodOptional; privacy: z.ZodUnion, z.ZodLiteral<"closed">, z.ZodLiteral<"secret">]>; url: z.ZodString; html_url: z.ZodString; members_url: z.ZodString; repositories_url: z.ZodString; permission: z.ZodString; notification_setting: z.ZodOptional, z.ZodLiteral<"notifications_disabled">]>>; }, z.core.$strip>>>; notification_setting: z.ZodOptional, z.ZodLiteral<"notifications_disabled">]>>; }, z.core.$strip>, z.ZodObject<{ id: z.ZodNumber; name: z.ZodString; deleted: z.ZodOptional, z.ZodLiteral]>>; }, z.core.$strip>]>; organization: z.ZodObject<{ login: z.ZodString; id: z.ZodNumber; node_id: z.ZodString; url: z.ZodString; html_url: z.ZodOptional; repos_url: z.ZodString; events_url: z.ZodString; hooks_url: z.ZodString; issues_url: z.ZodString; members_url: z.ZodString; public_members_url: z.ZodString; avatar_url: z.ZodString; description: z.ZodNullable; }, z.core.$strip>; installation: z.ZodOptional>; }, z.core.$strip>; export type MembershipRemovedEvent = MembershipRemovedEventOctokit; export declare function isMembershipRemovedEvent(value: unknown): value is MembershipRemovedEvent; //# sourceMappingURL=membership-removed-event.d.ts.map