@famgia/omnify-core 0.0.53 → 0.0.55
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/index.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -510,6 +510,7 @@ var VALID_SCHEMA_OPTIONS_FIELDS = /* @__PURE__ */ new Set([
|
|
|
510
510
|
"indexes",
|
|
511
511
|
"translations",
|
|
512
512
|
"tableName",
|
|
513
|
+
"hidden",
|
|
513
514
|
"authenticatable",
|
|
514
515
|
"authenticatableLoginIdField",
|
|
515
516
|
"authenticatablePasswordField",
|
|
@@ -606,6 +607,9 @@ function buildSchemaOptions(data) {
|
|
|
606
607
|
if (data.authenticatableGuardName !== void 0 && typeof data.authenticatableGuardName === "string") {
|
|
607
608
|
options.authenticatableGuardName = data.authenticatableGuardName;
|
|
608
609
|
}
|
|
610
|
+
if (data.hidden !== void 0 && typeof data.hidden === "boolean") {
|
|
611
|
+
options.hidden = data.hidden;
|
|
612
|
+
}
|
|
609
613
|
return options;
|
|
610
614
|
}
|
|
611
615
|
function buildProperties(data) {
|