optionsSchema: ZodUnion<[ZodUnion<[ZodUnion<[ZodObject<{
    apiKey: ZodString;
    apiUrl: ZodOptional<ZodString>;
}, "strict", ZodTypeAny, {
    apiKey: string;
    apiUrl?: string;
}, {
    apiKey: string;
    apiUrl?: string;
}>, ZodObject<{
    apiUrl: ZodOptional<ZodString>;
    authClient: ZodString;
}, "strict", ZodTypeAny, {
    apiUrl?: string;
    authClient: string;
}, {
    apiUrl?: string;
    authClient: string;
}>]>, ZodObject<{
    apiUrl: ZodOptional<ZodString>;
    authClientForwardedUser: ZodString;
}, "strict", ZodTypeAny, {
    apiUrl?: string;
    authClientForwardedUser: string;
}, {
    apiUrl?: string;
    authClientForwardedUser: string;
}>]>, ZodObject<{
    apiUrl: ZodOptional<ZodString>;
}, "strict", ZodTypeAny, {
    apiUrl?: string;
}, {
    apiUrl?: string;
}>]> = ...

Generated using TypeDoc