Variable customization_profileConst
customization_profile: ZodObject<
{
created_at: ZodString;
customer_portal_theme: ZodOptional<
ZodObject<
{
primary_color: ZodOptional<ZodEffects<ZodString, string, string>>;
primary_foreground_color: ZodOptional<
ZodEffects<ZodString, string, string>,
>;
secondary_color: ZodOptional<ZodEffects<ZodString, string, string>>;
secondary_foreground_color: ZodOptional<
ZodEffects<ZodString, string, string>,
>;
},
"strip",
ZodTypeAny,
{
primary_color?: string;
primary_foreground_color?: string;
secondary_color?: string;
secondary_foreground_color?: string;
},
{
primary_color?: string;
primary_foreground_color?: string;
secondary_color?: string;
secondary_foreground_color?: string;
},
>,
>;
customization_profile_id: ZodString;
logo_url: ZodOptional<ZodString>;
name: ZodNullable<ZodString>;
primary_color: ZodOptional<ZodString>;
secondary_color: ZodOptional<ZodString>;
workspace_id: ZodString;
},
"strip",
ZodTypeAny,
{
created_at: string;
customer_portal_theme?: {
primary_color?: string;
primary_foreground_color?: string;
secondary_color?: string;
secondary_foreground_color?: string;
};
customization_profile_id: string;
logo_url?: string;
name: null
| string;
primary_color?: string;
secondary_color?: string;
workspace_id: string;
},
{
created_at: string;
customer_portal_theme?: {
primary_color?: string;
primary_foreground_color?: string;
secondary_color?: string;
secondary_foreground_color?: string;
};
customization_profile_id: string;
logo_url?: string;
name: null
| string;
primary_color?: string;
secondary_color?: string;
workspace_id: string;
},
> = ...