monkey-front-core 0.0.471 → 0.0.473
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/esm2020/lib/core/model/monkeyecx-model.mjs +3 -2
- package/fesm2015/monkey-front-core.mjs +1 -0
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +2 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/model/monkeyecx-model.d.ts +1 -0
- package/monkey-front-core-0.0.473.tgz +0 -0
- package/package.json +3 -3
- package/monkey-front-core-0.0.471.tgz +0 -0
|
@@ -2720,6 +2720,7 @@ class Link {
|
|
|
2720
2720
|
constructor(data) {
|
|
2721
2721
|
this.href = data?.href;
|
|
2722
2722
|
this.type = data?.type;
|
|
2723
|
+
this.profile = data?.profile;
|
|
2723
2724
|
this.templated = data?.templated;
|
|
2724
2725
|
}
|
|
2725
2726
|
}
|
|
@@ -2734,7 +2735,7 @@ class MonkeyEcxModel {
|
|
|
2734
2735
|
const { from, to } = replaceOptions;
|
|
2735
2736
|
link = new Link({
|
|
2736
2737
|
...link,
|
|
2737
|
-
href: `${link.href}`.replace(from, to)
|
|
2738
|
+
href: `${link.href}`.replace(from, to)
|
|
2738
2739
|
});
|
|
2739
2740
|
}
|
|
2740
2741
|
return link;
|