Variable RestaurantAppLevelSchemaConst
RestaurantAppLevelSchema: ZodObject<
{
isKioskEnabled: ZodDefault<ZodBoolean>;
shouldAllowMultipleDevices: ZodDefault<ZodBoolean>;
shouldAllowOrderCreation: ZodDefault<ZodBoolean>;
},
"strip",
ZodTypeAny,
{
isKioskEnabled: boolean;
shouldAllowMultipleDevices: boolean;
shouldAllowOrderCreation: boolean;
},
{
isKioskEnabled?: boolean;
shouldAllowMultipleDevices?: boolean;
shouldAllowOrderCreation?: boolean;
},
> = ...