Variable DashboardGadgetUpdateRequestSchemaConst
DashboardGadgetUpdateRequestSchema: ZodObject<
{
color: ZodOptional<ZodString>;
position: ZodOptional<
ZodObject<
{
"The column position of the gadget.": ZodNumber;
"The row position of the gadget.": ZodNumber;
},
$loose,
>,
>;
title: ZodOptional<ZodString>;
},
$loose,
> = ...
The details of the gadget to update.