Skip to content

Variable: DashboardGadgetSettingsSchema

ts
const DashboardGadgetSettingsSchema: ZodObject<{
  color: ZodOptional<ZodString>;
  ignoreUriAndModuleKeyValidation: ZodOptional<ZodBoolean>;
  moduleKey: ZodOptional<ZodString>;
  position: ZodOptional<ZodObject<{
     The column position of the gadget.: ZodNumber;
     The row position of the gadget.: ZodNumber;
  }, $loose>>;
  title: ZodOptional<ZodString>;
  uri: ZodOptional<ZodString>;
}, $loose>;

Defined in: src/cloud/models/dashboardGadgetSettings.ts:6

Details of the settings for a dashboard gadget.