@cdwr/fly-node
Version:
The flyctl node wrapper for programmatic deployments to fly.io.
26 lines (25 loc) • 631 B
TypeScript
import { z } from 'zod';
/**
* Transformed postgres users list response schema
*
* ```ts
* fly postgres users list --app [name] --json
* ```
*/
export declare const PostgresUsersListTransformedResponseSchema: z.ZodArray<z.ZodEffects<z.ZodObject<{
username: z.ZodString;
superuser: z.ZodBoolean;
databases: z.ZodArray<z.ZodString, "many">;
}, "strip", z.ZodTypeAny, {
username: string;
superuser: boolean;
databases: string[];
}, {
username: string;
superuser: boolean;
databases: string[];
}>, {
username: string;
superuser: boolean;
databases: string[];
}, unknown>, "many">;