cecon-interfaces 1.7.6 → 1.7.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.06",
3
+ "version": "1.7.08",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,6 +10,7 @@ export declare class PayioGlobalProductEntity implements IPayioGlobalProduct {
10
10
  maxPrice: number;
11
11
  minPrice: number;
12
12
  name: string;
13
+ ncm: string | null;
13
14
  quantityPackaging: number;
14
15
  tags: string[];
15
16
  thumbnail: string | null;
@@ -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;
@@ -7,6 +7,7 @@ export interface IPayioGlobalProduct {
7
7
  id: string;
8
8
  lastPrices: number[];
9
9
  maxPrice: number;
10
+ ncm: string | null;
10
11
  minPrice: number;
11
12
  name: string;
12
13
  quantityPackaging: number;
@@ -6,6 +6,7 @@ export declare class PayioProductEntity implements IPayioProduct {
6
6
  createdAt: Date;
7
7
  id: string;
8
8
  name: string;
9
+ ncm: string | null;
9
10
  price: number;
10
11
  quantityPackaging: number;
11
12
  tags: string[];
@@ -2,16 +2,14 @@
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;
16
14
  this.quantityPackaging = 0;
17
15
  this.tags = [];
@@ -10,6 +10,7 @@ export interface IPayioProduct {
10
10
  tags: string[];
11
11
  thumbnail: string | null;
12
12
  unit: string;
13
+ ncm: string | null;
13
14
  updatedAt: Date;
14
15
  weight: number;
15
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.06",
3
+ "version": "1.7.08",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",