cecon-interfaces 1.7.6 → 1.7.9
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/global-products/entities/global-product.entity.mjs +2 -4
- package/dist/esm2022/payio/global-products/interfaces/i-global-products.mjs +1 -1
- package/dist/esm2022/payio/products/entities/product.entity.mjs +3 -4
- package/dist/esm2022/payio/products/interfaces/i-products.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -6
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/global-products/entities/global-product.entity.d.ts +1 -0
- package/dist/payio/global-products/entities/global-product.entity.js +1 -3
- package/dist/payio/global-products/interfaces/i-global-products.d.ts +1 -0
- package/dist/payio/products/entities/product.entity.d.ts +2 -0
- package/dist/payio/products/entities/product.entity.js +2 -3
- package/dist/payio/products/interfaces/i-products.d.ts +2 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -2,10 +2,7 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.PayioGlobalProductEntity = void 0;
|
4
4
|
var PayioGlobalProductEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (16)
|
6
|
-
// #region Constructors (1)
|
7
5
|
function PayioGlobalProductEntity(data) {
|
8
|
-
// #region Properties (16)
|
9
6
|
this.active = true;
|
10
7
|
this.avgPrice = 0;
|
11
8
|
this.brand = '';
|
@@ -16,6 +13,7 @@ var PayioGlobalProductEntity = /** @class */ (function () {
|
|
16
13
|
this.maxPrice = 0;
|
17
14
|
this.minPrice = 0;
|
18
15
|
this.name = '';
|
16
|
+
this.ncm = null;
|
19
17
|
this.quantityPackaging = 0;
|
20
18
|
this.tags = [];
|
21
19
|
this.thumbnail = null;
|
@@ -2,17 +2,16 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.PayioProductEntity = void 0;
|
4
4
|
var PayioProductEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (13)
|
6
|
-
// #region Constructors (1)
|
7
5
|
function PayioProductEntity(data) {
|
8
|
-
// #region Properties (13)
|
9
6
|
this.active = true;
|
10
7
|
this.brand = '';
|
11
8
|
this.code = '';
|
12
9
|
this.createdAt = new Date();
|
13
10
|
this.id = '';
|
14
11
|
this.name = '';
|
12
|
+
this.ncm = '';
|
15
13
|
this.price = 0;
|
14
|
+
this.sandbox = false;
|
16
15
|
this.quantityPackaging = 0;
|
17
16
|
this.tags = [];
|
18
17
|
this.thumbnail = null;
|