UNPKG

@cdwr/fly-node

Version:

The flyctl node wrapper for programmatic deployments to fly.io.

46 lines (45 loc) 971 B
import { z } from 'zod'; /** * Fly version response schema * * ```ts * fly version --json * ``` */ export declare const VersionTransformedResponseSchema: z.ZodEffects<z.ZodObject<{ name: z.ZodString; version: z.ZodString; commit: z.ZodString; branchName: z.ZodString; buildDate: z.ZodString; os: z.ZodString; architecture: z.ZodString; environment: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; version: string; commit: string; branchName: string; buildDate: string; os: string; architecture: string; environment: string; }, { name: string; version: string; commit: string; branchName: string; buildDate: string; os: string; architecture: string; environment: string; }>, { name: string; version: string; commit: string; branchName: string; buildDate: string; os: string; architecture: string; environment: string; }, unknown>;