@famgia/omnify-core 0.0.5 → 0.0.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/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -686,6 +686,9 @@ function buildPropertyDefinition(data) {
|
|
|
686
686
|
if (data.description !== void 0 && typeof data.description === "string") {
|
|
687
687
|
prop.description = data.description;
|
|
688
688
|
}
|
|
689
|
+
if (data.renamedFrom !== void 0 && typeof data.renamedFrom === "string") {
|
|
690
|
+
prop.renamedFrom = data.renamedFrom;
|
|
691
|
+
}
|
|
689
692
|
if (data.length !== void 0 && typeof data.length === "number") {
|
|
690
693
|
prop.length = data.length;
|
|
691
694
|
}
|