UNPKG

@cdwr/fly-node

Version:

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

60 lines (59 loc) 1.22 kB
import { z } from 'zod'; /** * Transformed postgres list response schema * * ```ts * fly postgres list --json * ``` */ export declare const PostgresListTransformedResponseSchema: z.ZodArray<z.ZodEffects<z.ZodObject<{ deployed: z.ZodBoolean; hostname: z.ZodString; id: z.ZodString; name: z.ZodString; organization: z.ZodObject<{ id: z.ZodString; slug: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; slug: string; }, { id: string; slug: string; }>; status: z.ZodString; version: z.ZodNumber; }, "strip", z.ZodTypeAny, { id: string; status: string; name: string; organization: { id: string; slug: string; }; deployed: boolean; hostname: string; version: number; }, { id: string; status: string; name: string; organization: { id: string; slug: string; }; deployed: boolean; hostname: string; version: number; }>, { id: string; status: string; name: string; organization: { id: string; slug: string; }; deployed: boolean; hostname: string; version: number; }, unknown>, "many">;