cecon-interfaces 1.7.8 → 1.7.10
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/products/entities/product.entity.mjs +4 -1
- package/dist/esm2022/payio/products/interfaces/i-products.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -0
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/products/entities/product.entity.d.ts +3 -0
- package/dist/payio/products/entities/product.entity.js +3 -0
- package/dist/payio/products/interfaces/i-products.d.ts +3 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -3,12 +3,15 @@ export declare class PayioProductEntity implements IPayioProduct {
|
|
3
3
|
active: boolean;
|
4
4
|
brand: string;
|
5
5
|
code: string;
|
6
|
+
companyId: string;
|
7
|
+
containerId: string | null;
|
6
8
|
createdAt: Date;
|
7
9
|
id: string;
|
8
10
|
name: string;
|
9
11
|
ncm: string | null;
|
10
12
|
price: number;
|
11
13
|
quantityPackaging: number;
|
14
|
+
sandbox: boolean;
|
12
15
|
tags: string[];
|
13
16
|
thumbnail: string | null;
|
14
17
|
unit: string;
|
@@ -6,12 +6,15 @@ var PayioProductEntity = /** @class */ (function () {
|
|
6
6
|
this.active = true;
|
7
7
|
this.brand = '';
|
8
8
|
this.code = '';
|
9
|
+
this.companyId = '';
|
10
|
+
this.containerId = null;
|
9
11
|
this.createdAt = new Date();
|
10
12
|
this.id = '';
|
11
13
|
this.name = '';
|
12
14
|
this.ncm = '';
|
13
15
|
this.price = 0;
|
14
16
|
this.quantityPackaging = 0;
|
17
|
+
this.sandbox = false;
|
15
18
|
this.tags = [];
|
16
19
|
this.thumbnail = null;
|
17
20
|
this.unit = 'UN';
|
@@ -2,12 +2,15 @@ export interface IPayioProduct {
|
|
2
2
|
active: boolean;
|
3
3
|
brand: string;
|
4
4
|
code: string;
|
5
|
+
companyId: string;
|
6
|
+
containerId: string | null;
|
5
7
|
createdAt: Date;
|
6
8
|
id: string;
|
7
9
|
name: string;
|
8
10
|
price: number;
|
9
11
|
quantityPackaging: number;
|
10
12
|
tags: string[];
|
13
|
+
sandbox: boolean;
|
11
14
|
thumbnail: string | null;
|
12
15
|
unit: string;
|
13
16
|
ncm: string | null;
|