UNPKG

@cdwr/fly-node

Version:

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

39 lines (38 loc) 800 B
import { z } from 'zod'; /** * Fly secrets list response element schema * * ```ts * fly secrets list --app [name] --json * ``` */ export declare const SecretsListFlyResponseElementSchema: z.ZodObject<{ name: z.ZodString; digest: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; digest: string; }, { name: string; digest: string; }>; /** * Transformed secrets list response schema * * ```ts * fly secrets list --app [name] --json * ``` */ export declare const SecretsListTransformedResponseSchema: z.ZodArray<z.ZodEffects<z.ZodObject<{ name: z.ZodString; digest: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; digest: string; }, { name: string; digest: string; }>, { name: string; digest: string; }, unknown>, "many">;