UNPKG

@letanure/resend-cli

Version:

A command-line interface for Resend email API

16 lines 577 B
import { z } from 'zod'; export declare const CreateApiKeyOptionsSchema: z.ZodObject<{ name: z.ZodString; permission: z.ZodEnum<["full_access", "sending_access"]>; domain_id: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { name: string; permission: "full_access" | "sending_access"; domain_id?: string | undefined; }, { name: string; permission: "full_access" | "sending_access"; domain_id?: string | undefined; }>; export type CreateApiKeyOptionsType = z.infer<typeof CreateApiKeyOptionsSchema>; //# sourceMappingURL=schema.d.ts.map