/** * Auto-generated Zod schema for SecurityAdvisoryPerformedEvent * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { SecurityAdvisoryPerformedEvent as SecurityAdvisoryPerformedEventOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const SecurityAdvisoryPerformedEventSchema: z.ZodObject<{ action: z.ZodLiteral<"performed">; security_advisory: z.ZodObject<{ cvss: z.ZodObject<{ vector_string: z.ZodNullable; score: z.ZodNumber; }, z.core.$strip>; cwes: z.ZodArray>; ghsa_id: z.ZodString; cve_id: z.ZodNullable; summary: z.ZodString; description: z.ZodString; severity: z.ZodString; identifiers: z.ZodArray>; references: z.ZodArray>; published_at: z.ZodString; updated_at: z.ZodString; withdrawn_at: z.ZodNullable; vulnerabilities: z.ZodArray; severity: z.ZodString; vulnerable_version_range: z.ZodString; first_patched_version: z.ZodNullable>; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$strip>; export type SecurityAdvisoryPerformedEvent = SecurityAdvisoryPerformedEventOctokit; export declare function isSecurityAdvisoryPerformedEvent(value: unknown): value is SecurityAdvisoryPerformedEvent; //# sourceMappingURL=security-advisory-performed-event.d.ts.map