@cdwr/fly-node
Version:
The flyctl node wrapper for programmatic deployments to fly.io.
27 lines (26 loc) • 653 B
TypeScript
import { z } from 'zod';
/**
* certs list response extended with application name
*/
export declare const CertsListWithAppTransformedResponseSchema: z.ZodArray<z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
createdAt: z.ZodString;
hostname: z.ZodString;
clientStatus: z.ZodString;
}, {
app: z.ZodString;
}>, "strip", z.ZodTypeAny, {
hostname: string;
createdAt: string;
clientStatus: string;
app: string;
}, {
hostname: string;
createdAt: string;
clientStatus: string;
app: string;
}>, {
hostname: string;
createdAt: string;
clientStatus: string;
app: string;
}, unknown>, "many">;