cecon-interfaces 1.2.54 → 1.2.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/esm2022/installation/entities/index.mjs +2 -1
- package/dist/esm2022/installation/interfaces/index.mjs +1 -1
- package/dist/esm2022/product-global/entities/index.mjs +2 -2
- package/dist/fesm2022/cecon-interfaces.mjs +21 -21
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/installation/entities/index.d.ts +1 -0
- package/dist/installation/entities/index.js +3 -1
- package/dist/installation/interfaces/index.d.ts +1 -0
- package/dist/package.json +1 -1
- package/dist/product-global/entities/index.d.ts +1 -1
- package/dist/product-global/entities/index.js +2 -2
- package/package.json +1 -1
@@ -1,5 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.InstallationEntity = void 0;
|
3
|
+
exports.InstallationEntity = exports.InstallationAppEntity = void 0;
|
4
|
+
var installation_app_entity_1 = require("./installation-app.entity");
|
5
|
+
Object.defineProperty(exports, "InstallationAppEntity", { enumerable: true, get: function () { return installation_app_entity_1.InstallationAppEntity; } });
|
4
6
|
var installation_entity_1 = require("./installation.entity");
|
5
7
|
Object.defineProperty(exports, "InstallationEntity", { enumerable: true, get: function () { return installation_entity_1.InstallationEntity; } });
|
package/dist/package.json
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.ProductGlobalEntity = exports.ProductNcmEntity = exports.ProductBrandEntity = void 0;
|
4
4
|
var product_brand_entity_1 = require("./product-brand.entity");
|
5
5
|
Object.defineProperty(exports, "ProductBrandEntity", { enumerable: true, get: function () { return product_brand_entity_1.ProductBrandEntity; } });
|
6
6
|
var product_ncm_entity_1 = require("./product-ncm.entity");
|
7
7
|
Object.defineProperty(exports, "ProductNcmEntity", { enumerable: true, get: function () { return product_ncm_entity_1.ProductNcmEntity; } });
|
8
8
|
var product_entity_1 = require("./product.entity");
|
9
|
-
Object.defineProperty(exports, "
|
9
|
+
Object.defineProperty(exports, "ProductGlobalEntity", { enumerable: true, get: function () { return product_entity_1.ProductGlobalEntity; } });
|