@mattisvensson/strapi-plugin-webatlas 0.2.5 → 0.2.6
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/_chunks/{index-BjbgWZrg.mjs → index-BMQSVj43.mjs} +11 -7
- package/dist/_chunks/{index-B5ilx6DT.mjs → index-BMlQpLGa.mjs} +1 -1
- package/dist/_chunks/{index-BxuR805w.mjs → index-B_RPO9ty.mjs} +1 -1
- package/dist/_chunks/{index-kz3NL7uv.js → index-BvXbuF1E.js} +1 -1
- package/dist/_chunks/{index-B-ABW-o6.js → index-D4IHmUrH.js} +1 -1
- package/dist/_chunks/{index-B7vKSyAn.js → index-DIyVy-8D.js} +20 -14
- package/dist/_chunks/{index-CAjBRbaH.js → index-DrlYDm6a.js} +11 -7
- package/dist/_chunks/{index-D_OdzeaU.mjs → index-uoH_HJQr.mjs} +1 -1
- package/dist/admin/index.js +1 -1
- package/dist/admin/index.mjs +1 -1
- package/dist/admin/src/components/CMEditViewAside/Alias.d.ts +1 -1
- package/dist/server/index.js +12 -12
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.mjs +12 -12
- package/dist/server/index.mjs.map +1 -1
- package/dist/server/src/content-types/index.d.ts +5 -5
- package/dist/server/src/content-types/navigation/index.d.ts +1 -1
- package/dist/server/src/content-types/navigation/schema.d.ts +1 -1
- package/dist/server/src/content-types/navitem/index.d.ts +3 -3
- package/dist/server/src/content-types/navitem/schema.d.ts +3 -3
- package/dist/server/src/content-types/route/index.d.ts +1 -1
- package/dist/server/src/content-types/route/schema.d.ts +1 -1
- package/dist/server/src/index.d.ts +5 -5
- package/package.json +1 -1
- package/dist/_chunks/EmptyBox-7D4LrvdH.mjs.map +0 -1
- package/dist/_chunks/EmptyBox-DT6D5gcf.js.map +0 -1
- package/dist/_chunks/_baseConvert-CDjccxdO.mjs +0 -859
- package/dist/_chunks/_baseConvert-CDjccxdO.mjs.map +0 -1
- package/dist/_chunks/_baseConvert-DVIhGQH6.js +0 -858
- package/dist/_chunks/_baseConvert-DVIhGQH6.js.map +0 -1
- package/dist/_chunks/en-B4KWt_jN.js.map +0 -1
- package/dist/_chunks/en-Byx4XI2L.mjs.map +0 -1
- package/dist/_chunks/index-1VNPebOd.mjs +0 -45
- package/dist/_chunks/index-1VNPebOd.mjs.map +0 -1
- package/dist/_chunks/index-B7vKSyAn.js.map +0 -1
- package/dist/_chunks/index-CPE1Ne_e.js +0 -4102
- package/dist/_chunks/index-CPE1Ne_e.js.map +0 -1
- package/dist/_chunks/index-ChOgKZGK.mjs +0 -9924
- package/dist/_chunks/index-ChOgKZGK.mjs.map +0 -1
- package/dist/_chunks/index-Cs_oxZfX.js +0 -17134
- package/dist/_chunks/index-CuMn96qA.js +0 -9924
- package/dist/_chunks/index-CuMn96qA.js.map +0 -1
- package/dist/_chunks/index-Djk_-mU6.js +0 -45
- package/dist/_chunks/index-Djk_-mU6.js.map +0 -1
- package/dist/_chunks/index-HHBjOGX5.mjs +0 -17130
- package/dist/_chunks/index-HHBjOGX5.mjs.map +0 -1
- package/dist/_chunks/index-yLrZAFVv.mjs +0 -4086
- package/dist/_chunks/index-yLrZAFVv.mjs.map +0 -1
- package/dist/admin/index.js.map +0 -1
- package/dist/admin/index.mjs.map +0 -1
package/dist/server/index.mjs
CHANGED
|
@@ -19,7 +19,7 @@ function transformToUrl(input) {
|
|
|
19
19
|
input = input.replace(/-+/g, "-");
|
|
20
20
|
return input;
|
|
21
21
|
}
|
|
22
|
-
const version = "0.2.
|
|
22
|
+
const version = "0.2.6";
|
|
23
23
|
const keywords = [];
|
|
24
24
|
const type = "commonjs";
|
|
25
25
|
const exports = {
|
|
@@ -973,10 +973,10 @@ const schema$2 = {
|
|
|
973
973
|
},
|
|
974
974
|
navitem: {
|
|
975
975
|
type: "relation",
|
|
976
|
-
|
|
976
|
+
configurable: true,
|
|
977
|
+
relation: "oneToMany",
|
|
977
978
|
target: "plugin::webatlas.navitem",
|
|
978
|
-
mappedBy: "route"
|
|
979
|
-
configurable: false
|
|
979
|
+
mappedBy: "route"
|
|
980
980
|
},
|
|
981
981
|
wrapper: {
|
|
982
982
|
type: "boolean",
|
|
@@ -1027,10 +1027,10 @@ const schema$1 = {
|
|
|
1027
1027
|
},
|
|
1028
1028
|
items: {
|
|
1029
1029
|
type: "relation",
|
|
1030
|
+
configurable: false,
|
|
1030
1031
|
relation: "oneToMany",
|
|
1031
1032
|
target: "plugin::webatlas.navitem",
|
|
1032
|
-
|
|
1033
|
-
mappedBy: "plugin::webatlas.navigation"
|
|
1033
|
+
mappedBy: "navigation"
|
|
1034
1034
|
}
|
|
1035
1035
|
}
|
|
1036
1036
|
};
|
|
@@ -1060,23 +1060,23 @@ const schema = {
|
|
|
1060
1060
|
attributes: {
|
|
1061
1061
|
navigation: {
|
|
1062
1062
|
type: "relation",
|
|
1063
|
+
configurable: false,
|
|
1063
1064
|
relation: "manyToOne",
|
|
1064
1065
|
target: "plugin::webatlas.navigation",
|
|
1065
|
-
configurable: false,
|
|
1066
1066
|
inversedBy: "items"
|
|
1067
1067
|
},
|
|
1068
1068
|
route: {
|
|
1069
1069
|
type: "relation",
|
|
1070
|
-
|
|
1070
|
+
configurable: false,
|
|
1071
|
+
relation: "manyToOne",
|
|
1071
1072
|
target: "plugin::webatlas.route",
|
|
1072
|
-
inversedBy: "navitem"
|
|
1073
|
-
configurable: false
|
|
1073
|
+
inversedBy: "navitem"
|
|
1074
1074
|
},
|
|
1075
1075
|
parent: {
|
|
1076
1076
|
type: "relation",
|
|
1077
|
+
configurable: false,
|
|
1077
1078
|
relation: "oneToOne",
|
|
1078
|
-
target: "plugin::webatlas.navitem"
|
|
1079
|
-
configurable: false
|
|
1079
|
+
target: "plugin::webatlas.navitem"
|
|
1080
1080
|
},
|
|
1081
1081
|
order: {
|
|
1082
1082
|
type: "integer",
|