new-front-common-library 0.0.85 → 0.0.87
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/bundles/new-front-common-library.umd.js +15 -0
- package/bundles/new-front-common-library.umd.js.map +1 -1
- package/esm2015/lib/util/models/index.js +2 -1
- package/esm2015/lib/util/models/referential/keywords.model.js +13 -2
- package/fesm2015/new-front-common-library.js +14 -1
- package/fesm2015/new-front-common-library.js.map +1 -1
- package/lib/util/models/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3833,6 +3833,20 @@
|
|
|
3833
3833
|
return InvoiceProductTypeModel;
|
|
3834
3834
|
}());
|
|
3835
3835
|
|
|
3836
|
+
var KeywordsModel = /** @class */ (function () {
|
|
3837
|
+
function KeywordsModel() {
|
|
3838
|
+
}
|
|
3839
|
+
KeywordsModel.prototype.fromJSON = function (json) {
|
|
3840
|
+
for (var propName in json) {
|
|
3841
|
+
if (json.hasOwnProperty(propName)) {
|
|
3842
|
+
this[propName] = json[propName];
|
|
3843
|
+
}
|
|
3844
|
+
}
|
|
3845
|
+
return this;
|
|
3846
|
+
};
|
|
3847
|
+
return KeywordsModel;
|
|
3848
|
+
}());
|
|
3849
|
+
|
|
3836
3850
|
var MediaFilterModel = /** @class */ (function () {
|
|
3837
3851
|
function MediaFilterModel() {
|
|
3838
3852
|
}
|
|
@@ -5147,6 +5161,7 @@
|
|
|
5147
5161
|
exports.InvoiceBankAccountModel = InvoiceBankAccountModel;
|
|
5148
5162
|
exports.InvoiceProductTypeModel = InvoiceProductTypeModel;
|
|
5149
5163
|
exports.JwtHelper = JwtHelper;
|
|
5164
|
+
exports.KeywordsModel = KeywordsModel;
|
|
5150
5165
|
exports.LangLineModel = LangLineModel;
|
|
5151
5166
|
exports.LangService = LangService;
|
|
5152
5167
|
exports.LanguageModel = LanguageModel;
|