@timothyw/pat-common 1.0.17 → 1.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/enums/panel-type.js
CHANGED
|
@@ -3,9 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.userConfigSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const id_types_1 = require("../id-types");
|
|
6
|
-
const
|
|
6
|
+
const enums_1 = require("../../enums");
|
|
7
7
|
const panelSchema = zod_1.z.object({
|
|
8
|
-
type: zod_1.z.nativeEnum(
|
|
8
|
+
type: zod_1.z.nativeEnum(enums_1.PanelType),
|
|
9
9
|
visible: zod_1.z.boolean()
|
|
10
10
|
});
|
|
11
11
|
exports.userConfigSchema = zod_1.z.object({
|
package/package.json
CHANGED
package/src/enums/panel-type.ts
CHANGED