/** * Auto-generated Zod schema for DeploymentWorkflowRun * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { DeploymentWorkflowRun as DeploymentWorkflowRunOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const DeploymentWorkflowRunSchema: z.ZodObject<{ id: z.ZodNumber; name: z.ZodString; path: z.ZodOptional; display_title: z.ZodOptional; node_id: z.ZodString; head_branch: z.ZodString; head_sha: z.ZodString; run_number: z.ZodNumber; event: z.ZodString; status: z.ZodUnion, z.ZodLiteral<"in_progress">, z.ZodLiteral<"queued">, z.ZodLiteral<"requested">]>; conclusion: z.ZodNullable, z.ZodLiteral<"failure">, z.ZodLiteral<"neutral">, z.ZodLiteral<"cancelled">, z.ZodLiteral<"timed_out">, z.ZodLiteral<"action_required">, z.ZodLiteral<"stale">]>>; workflow_id: z.ZodNumber; check_suite_id: z.ZodNumber; check_suite_node_id: z.ZodString; url: z.ZodString; html_url: z.ZodString; pull_requests: z.ZodArray; }, z.core.$strip>; base: z.ZodObject<{ ref: z.ZodString; sha: z.ZodString; repo: z.ZodObject<{ id: z.ZodNumber; url: z.ZodString; name: z.ZodString; }, z.core.$strip>; }, z.core.$strip>; }, z.core.$strip>>; created_at: z.ZodString; updated_at: z.ZodString; actor: 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>; triggering_actor: 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>; run_attempt: z.ZodNumber; run_started_at: z.ZodString; referenced_workflows: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>; export type DeploymentWorkflowRun = DeploymentWorkflowRunOctokit; export declare function isDeploymentWorkflowRun(value: unknown): value is DeploymentWorkflowRun; //# sourceMappingURL=deployment-workflow-run.d.ts.map