workspace: ZodObject<
{
company_name: ZodString;
connect_partner_name: ZodNullable<ZodNullable<ZodString>>;
connect_webview_customization: ZodObject<
{
inviter_logo_url: ZodOptional<ZodString>;
logo_shape: ZodOptional<ZodEnum<["circle", "square"]>>;
primary_button_color: ZodOptional<ZodEffects<ZodString, string, string>>;
primary_button_text_color: ZodOptional<
ZodEffects<ZodString, string, string>,
>;
success_message: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
inviter_logo_url?: string;
logo_shape?: "square"
| "circle";
primary_button_color?: string;
primary_button_text_color?: string;
success_message?: string;
},
{
inviter_logo_url?: string;
logo_shape?: "square"
| "circle";
primary_button_color?: string;
primary_button_text_color?: string;
success_message?: string;
},
>;
is_sandbox: ZodBoolean;
is_suspended: ZodBoolean;
name: ZodString;
workspace_id: ZodString;
},
"strip",
ZodTypeAny,
{
company_name: string;
connect_partner_name: null
| string;
connect_webview_customization: {
inviter_logo_url?: string;
logo_shape?: "square" | "circle";
primary_button_color?: string;
primary_button_text_color?: string;
success_message?: string;
};
is_sandbox: boolean;
is_suspended: boolean;
name: string;
workspace_id: string;
},
{
company_name: string;
connect_partner_name: null
| string;
connect_webview_customization: {
inviter_logo_url?: string;
logo_shape?: "square" | "circle";
primary_button_color?: string;
primary_button_text_color?: string;
success_message?: string;
};
is_sandbox: boolean;
is_suspended: boolean;
name: string;
workspace_id: string;
},
> = ...